From b69c283964411f7fb00a9eafdafd1290e07aaa3a Mon Sep 17 00:00:00 2001 From: jleroy Date: Tue, 23 Apr 2024 16:34:40 +0200 Subject: [PATCH 1/7] Controller Article --- .../controllers/ArticleController.java | 62 +++++++++++++++++++ .../enchere/security/WebSecurityConfig.java | 1 - src/main/resources/templates/accueil.html | 1 - src/main/resources/templates/admin.html | 13 ++-- src/main/resources/templates/article.html | 11 ++++ src/main/resources/templates/newArticle.html | 11 ++++ src/main/resources/templates/profile.html | 1 - 7 files changed, 90 insertions(+), 10 deletions(-) create mode 100644 src/main/java/fr/eni/enchere/controllers/ArticleController.java create mode 100644 src/main/resources/templates/article.html create mode 100644 src/main/resources/templates/newArticle.html diff --git a/src/main/java/fr/eni/enchere/controllers/ArticleController.java b/src/main/java/fr/eni/enchere/controllers/ArticleController.java new file mode 100644 index 0000000..6b9ef13 --- /dev/null +++ b/src/main/java/fr/eni/enchere/controllers/ArticleController.java @@ -0,0 +1,62 @@ +package fr.eni.enchere.controllers; + +import fr.eni.enchere.bll.ArticleService; +import fr.eni.enchere.bll.UserService; +import fr.eni.enchere.bo.Article; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.*; + +@Controller() +@RequestMapping("/article") +public class ArticleController { + + private final ArticleService articleService; + private final UserService userService; + + public ArticleController(ArticleService articleService, UserService userService) { + this.articleService = articleService; + this.userService = userService; + } + + @GetMapping + public String viewArticle(Model model) { + return "accueil"; + } + + @GetMapping("/article") + public String showArticle(@RequestParam(name = "slug")int id, Model model) { + Article article = articleService.findArticleById(id); + return "article"; + } + + @GetMapping("/{slug}") + public String testShowArticle(@PathVariable(name = "slug")int id, Model model) { + Article article = articleService.findArticleById(id); + model.addAttribute("article", article); + return "article"; + } + + @GetMapping("/new") + public String test(@PathVariable(name = "slug")int id, Model model) { + + return "article"; + } + + @PostMapping("/new/add") + public String newArticle(@ModelAttribute("article") Article article) { + articleService.saveArticle(article); + return "redirect:/article"; + } + + @PostMapping("/update") + public String updateArticle() { + return "redirect:/accueil"; + } + + @PostMapping("/delete") + public String deleteArticle() { + return "redirect:/accueil"; + } + +} diff --git a/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java b/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java index 1f4e974..796f344 100644 --- a/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java +++ b/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java @@ -5,7 +5,6 @@ import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; -import org.springframework.security.crypto.factory.PasswordEncoderFactories; import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.security.web.SecurityFilterChain; import org.springframework.security.web.util.matcher.AntPathRequestMatcher; diff --git a/src/main/resources/templates/accueil.html b/src/main/resources/templates/accueil.html index 9f9dd89..42e7ca4 100644 --- a/src/main/resources/templates/accueil.html +++ b/src/main/resources/templates/accueil.html @@ -2,7 +2,6 @@ - Accueil diff --git a/src/main/resources/templates/admin.html b/src/main/resources/templates/admin.html index 27304c3..900f3af 100644 --- a/src/main/resources/templates/admin.html +++ b/src/main/resources/templates/admin.html @@ -1,12 +1,11 @@ - + - Panel administrateur - - + +
- - - \ No newline at end of file +
+ + diff --git a/src/main/resources/templates/article.html b/src/main/resources/templates/article.html new file mode 100644 index 0000000..663fbfa --- /dev/null +++ b/src/main/resources/templates/article.html @@ -0,0 +1,11 @@ + + + + + + +
+ +
+ + diff --git a/src/main/resources/templates/newArticle.html b/src/main/resources/templates/newArticle.html new file mode 100644 index 0000000..3b51fbd --- /dev/null +++ b/src/main/resources/templates/newArticle.html @@ -0,0 +1,11 @@ + + + + + + +
+ +
+ + diff --git a/src/main/resources/templates/profile.html b/src/main/resources/templates/profile.html index 7ba1a51..748111a 100644 --- a/src/main/resources/templates/profile.html +++ b/src/main/resources/templates/profile.html @@ -2,7 +2,6 @@ - Mon profile
From 5c2b72ddf5673e314de57132f328ea78663249fb Mon Sep 17 00:00:00 2001 From: jleroy Date: Tue, 23 Apr 2024 16:52:09 +0200 Subject: [PATCH 2/7] patch --- .../fr/eni/enchere/dal/UserRepository.java | 2 +- .../eni/enchere/dal/UserRepositoryImpl.java | 24 +++++++++---------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/src/main/java/fr/eni/enchere/dal/UserRepository.java b/src/main/java/fr/eni/enchere/dal/UserRepository.java index adfe6d7..cd03bae 100644 --- a/src/main/java/fr/eni/enchere/dal/UserRepository.java +++ b/src/main/java/fr/eni/enchere/dal/UserRepository.java @@ -7,7 +7,7 @@ import java.util.List; public interface UserRepository { List findAll(); UserProfil findById(int id); - UserProfil findByUsername(String username, String email); + UserProfil findByUsername(String username); void save(UserProfil utilisateur); void delete(int id); } diff --git a/src/main/java/fr/eni/enchere/dal/UserRepositoryImpl.java b/src/main/java/fr/eni/enchere/dal/UserRepositoryImpl.java index 3e9eeee..3eeb67f 100644 --- a/src/main/java/fr/eni/enchere/dal/UserRepositoryImpl.java +++ b/src/main/java/fr/eni/enchere/dal/UserRepositoryImpl.java @@ -57,17 +57,10 @@ public class UserRepositoryImpl implements UserRepository { } @Override - public UserProfil findByUsername(String username, String email) { - UserProfil user = null; - if (username != null) { - String sql = "SELECT * FROM UTILISATEURS WHERE pseudo = ? AND isDelete = 0"; - user = jdbcTemplate.queryForObject(sql, new UserRowMapper(), username); - } else if (email != null) { - String sql = "SELECT * FROM UTILISATEURS WHERE email = ? AND isDelete = 0"; - user = jdbcTemplate.queryForObject(sql, new UserRowMapper(), email); - } - System.out.println(user.getPassword()); - return user; + public UserProfil findByUsername(String username) { + String sql = "SELECT * FROM UTILISATEURS WHERE pseudo = ? OR email = ? AND isDelete = 0"; + UserProfil useruser = jdbcTemplate.queryForObject(sql, new UserRowMapper(), username, username); + return useruser; } @@ -105,8 +98,14 @@ public class UserRepositoryImpl implements UserRepository { } }else { //Mettre à jour - String sql = "UPDATE UTILISATEURS SET pseudo = :pseudo, nom = :nom, prenom = :prenom, email = :email, telephone = :telephone, rue = :rue, code_postal = :code_postal, ville = :ville, mot_de_passe = :mot_de_passe WHERE no_utilisateur = :id"; + String sql; MapSqlParameterSource parameters = new MapSqlParameterSource(); + if(utilisateur.getPassword().isEmpty()){ + sql = "UPDATE UTILISATEURS SET pseudo = :pseudo, nom = :nom, prenom = :prenom, email = :email, telephone = :telephone, rue = :rue, code_postal = :code_postal, ville = :ville WHERE no_utilisateur = :id"; + }else{ + sql = "UPDATE UTILISATEURS SET pseudo = :pseudo, nom = :nom, prenom = :prenom, email = :email, telephone = :telephone, rue = :rue, code_postal = :code_postal, ville = :ville, mot_de_passe = :mot_de_passe WHERE no_utilisateur = :id"; + parameters.addValue("mot_de_passe", passwordEncoder.encode(utilisateur.getPassword())); + } parameters.addValue("pseudo", utilisateur.getPseudo()); parameters.addValue("nom", utilisateur.getNom()); parameters.addValue("prenom", utilisateur.getPrenom()); @@ -115,7 +114,6 @@ public class UserRepositoryImpl implements UserRepository { parameters.addValue("rue", utilisateur.getRue()); parameters.addValue("code_postal", utilisateur.getCode_postal()); parameters.addValue("ville", utilisateur.getVille()); - parameters.addValue("mot_de_passe", passwordEncoder.encode(utilisateur.getPassword())); // Assurez-vous de hasher le nouveau mot de passe si nécessaire parameters.addValue("id", utilisateur.getId()); namedParameterJdbcTemplate.update(sql, parameters); } From 105fdfb7d60315d8af168f9a18f679fe27a9dfe9 Mon Sep 17 00:00:00 2001 From: mepiphana2023 Date: Tue, 23 Apr 2024 16:56:36 +0200 Subject: [PATCH 3/7] fichier langue --- .../java/fr/eni/enchere/config/WebConfig.java | 30 +++++++++++++++++++ .../static/messages/messages_en.properties | 1 + .../static/messages/messages_fr.properties | 1 + 3 files changed, 32 insertions(+) create mode 100644 src/main/java/fr/eni/enchere/config/WebConfig.java create mode 100644 src/main/resources/static/messages/messages_en.properties create mode 100644 src/main/resources/static/messages/messages_fr.properties diff --git a/src/main/java/fr/eni/enchere/config/WebConfig.java b/src/main/java/fr/eni/enchere/config/WebConfig.java new file mode 100644 index 0000000..bc40fea --- /dev/null +++ b/src/main/java/fr/eni/enchere/config/WebConfig.java @@ -0,0 +1,30 @@ +package fr.eni.enchere.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.servlet.LocaleResolver; +import org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver; +import org.springframework.context.annotation.Bean; +import org.springframework.context.support.ResourceBundleMessageSource; + +import java.util.Locale; + +@Configuration +public class WebConfig { + + @Bean + public LocaleResolver localeResolver() { + AcceptHeaderLocaleResolver localeResolver = new AcceptHeaderLocaleResolver(); + localeResolver.setDefaultLocale(Locale.FRENCH); + return localeResolver; + } + + @Bean + public ResourceBundleMessageSource messageSource() { + ResourceBundleMessageSource source = new ResourceBundleMessageSource(); + source.setBasenames("messages"); + source.setDefaultEncoding("UTF-8"); + source.setUseCodeAsDefaultMessage(true); + return source; + } +} \ No newline at end of file diff --git a/src/main/resources/static/messages/messages_en.properties b/src/main/resources/static/messages/messages_en.properties new file mode 100644 index 0000000..9de4ea6 --- /dev/null +++ b/src/main/resources/static/messages/messages_en.properties @@ -0,0 +1 @@ +accueil.search.title = Search for an article by name... \ No newline at end of file diff --git a/src/main/resources/static/messages/messages_fr.properties b/src/main/resources/static/messages/messages_fr.properties new file mode 100644 index 0000000..6f897e7 --- /dev/null +++ b/src/main/resources/static/messages/messages_fr.properties @@ -0,0 +1 @@ +accueil.search.title = Rechercher un article par nom... \ No newline at end of file From a57ff3d837ab8e544e0d6a9d3c486f4a9dea9ef3 Mon Sep 17 00:00:00 2001 From: ionak Date: Tue, 23 Apr 2024 21:56:12 +0200 Subject: [PATCH 4/7] emoji langue --- .../java/fr/eni/enchere/config/WebConfig.java | 9 +- .../controllers/AccueilController.java | 6 + .../enchere/security/WebSecurityConfig.java | 2 +- .../messages => i18n}/messages_en.properties | 0 .../messages => i18n}/messages_fr.properties | 0 .../assets/bootstrap-icons/0-circle-fill.svg | 4 - .../assets/bootstrap-icons/0-circle.svg | 4 - .../assets/bootstrap-icons/0-square-fill.svg | 4 - .../assets/bootstrap-icons/0-square.svg | 4 - .../assets/bootstrap-icons/1-circle-fill.svg | 3 - .../assets/bootstrap-icons/1-circle.svg | 3 - .../assets/bootstrap-icons/1-square-fill.svg | 3 - .../assets/bootstrap-icons/1-square.svg | 4 - .../static/assets/bootstrap-icons/123.svg | 3 - .../assets/bootstrap-icons/2-circle-fill.svg | 3 - .../assets/bootstrap-icons/2-circle.svg | 3 - .../assets/bootstrap-icons/2-square-fill.svg | 3 - .../assets/bootstrap-icons/2-square.svg | 4 - .../assets/bootstrap-icons/3-circle-fill.svg | 3 - .../assets/bootstrap-icons/3-circle.svg | 4 - .../assets/bootstrap-icons/3-square-fill.svg | 3 - .../assets/bootstrap-icons/3-square.svg | 4 - .../assets/bootstrap-icons/4-circle-fill.svg | 3 - .../assets/bootstrap-icons/4-circle.svg | 4 - .../assets/bootstrap-icons/4-square-fill.svg | 4 - .../assets/bootstrap-icons/4-square.svg | 4 - .../assets/bootstrap-icons/5-circle-fill.svg | 3 - .../assets/bootstrap-icons/5-circle.svg | 3 - .../assets/bootstrap-icons/5-square-fill.svg | 3 - .../assets/bootstrap-icons/5-square.svg | 4 - .../assets/bootstrap-icons/6-circle-fill.svg | 3 - .../assets/bootstrap-icons/6-circle.svg | 3 - .../assets/bootstrap-icons/6-square-fill.svg | 4 - .../assets/bootstrap-icons/6-square.svg | 4 - .../assets/bootstrap-icons/7-circle-fill.svg | 3 - .../assets/bootstrap-icons/7-circle.svg | 3 - .../assets/bootstrap-icons/7-square-fill.svg | 3 - .../assets/bootstrap-icons/7-square.svg | 4 - .../assets/bootstrap-icons/8-circle-fill.svg | 3 - .../assets/bootstrap-icons/8-circle.svg | 3 - .../assets/bootstrap-icons/8-square-fill.svg | 4 - .../assets/bootstrap-icons/8-square.svg | 4 - .../assets/bootstrap-icons/9-circle-fill.svg | 3 - .../assets/bootstrap-icons/9-circle.svg | 3 - .../assets/bootstrap-icons/9-square-fill.svg | 4 - .../assets/bootstrap-icons/9-square.svg | 4 - .../assets/bootstrap-icons/activity.svg | 3 - .../bootstrap-icons/airplane-engines-fill.svg | 3 - .../bootstrap-icons/airplane-engines.svg | 3 - .../assets/bootstrap-icons/airplane-fill.svg | 3 - .../assets/bootstrap-icons/airplane.svg | 3 - .../assets/bootstrap-icons/alarm-fill.svg | 3 - .../static/assets/bootstrap-icons/alarm.svg | 4 - .../static/assets/bootstrap-icons/alexa.svg | 3 - .../assets/bootstrap-icons/align-bottom.svg | 4 - .../assets/bootstrap-icons/align-center.svg | 3 - .../assets/bootstrap-icons/align-end.svg | 4 - .../assets/bootstrap-icons/align-middle.svg | 3 - .../assets/bootstrap-icons/align-start.svg | 4 - .../assets/bootstrap-icons/align-top.svg | 4 - .../static/assets/bootstrap-icons/alipay.svg | 4 - .../bootstrap-icons/alphabet-uppercase.svg | 3 - .../assets/bootstrap-icons/alphabet.svg | 3 - .../static/assets/bootstrap-icons/alt.svg | 3 - .../static/assets/bootstrap-icons/amazon.svg | 4 - .../static/assets/bootstrap-icons/amd.svg | 3 - .../static/assets/bootstrap-icons/android.svg | 3 - .../assets/bootstrap-icons/android2.svg | 3 - .../assets/bootstrap-icons/app-indicator.svg | 4 - .../static/assets/bootstrap-icons/app.svg | 3 - .../static/assets/bootstrap-icons/apple.svg | 4 - .../assets/bootstrap-icons/archive-fill.svg | 3 - .../static/assets/bootstrap-icons/archive.svg | 3 - .../bootstrap-icons/arrow-90deg-down.svg | 3 - .../bootstrap-icons/arrow-90deg-left.svg | 3 - .../bootstrap-icons/arrow-90deg-right.svg | 3 - .../assets/bootstrap-icons/arrow-90deg-up.svg | 3 - .../assets/bootstrap-icons/arrow-bar-down.svg | 3 - .../assets/bootstrap-icons/arrow-bar-left.svg | 3 - .../bootstrap-icons/arrow-bar-right.svg | 3 - .../assets/bootstrap-icons/arrow-bar-up.svg | 3 - .../bootstrap-icons/arrow-clockwise.svg | 4 - .../arrow-counterclockwise.svg | 4 - .../arrow-down-circle-fill.svg | 3 - .../bootstrap-icons/arrow-down-circle.svg | 3 - .../arrow-down-left-circle-fill.svg | 3 - .../arrow-down-left-circle.svg | 3 - .../arrow-down-left-square-fill.svg | 3 - .../arrow-down-left-square.svg | 3 - .../bootstrap-icons/arrow-down-left.svg | 3 - .../arrow-down-right-circle-fill.svg | 3 - .../arrow-down-right-circle.svg | 3 - .../arrow-down-right-square-fill.svg | 3 - .../arrow-down-right-square.svg | 3 - .../bootstrap-icons/arrow-down-right.svg | 3 - .../bootstrap-icons/arrow-down-short.svg | 3 - .../arrow-down-square-fill.svg | 3 - .../bootstrap-icons/arrow-down-square.svg | 3 - .../assets/bootstrap-icons/arrow-down-up.svg | 3 - .../assets/bootstrap-icons/arrow-down.svg | 3 - .../arrow-left-circle-fill.svg | 3 - .../bootstrap-icons/arrow-left-circle.svg | 3 - .../bootstrap-icons/arrow-left-right.svg | 3 - .../bootstrap-icons/arrow-left-short.svg | 3 - .../arrow-left-square-fill.svg | 3 - .../bootstrap-icons/arrow-left-square.svg | 3 - .../assets/bootstrap-icons/arrow-left.svg | 3 - .../assets/bootstrap-icons/arrow-repeat.svg | 4 - .../bootstrap-icons/arrow-return-left.svg | 3 - .../bootstrap-icons/arrow-return-right.svg | 3 - .../arrow-right-circle-fill.svg | 3 - .../bootstrap-icons/arrow-right-circle.svg | 3 - .../bootstrap-icons/arrow-right-short.svg | 3 - .../arrow-right-square-fill.svg | 3 - .../bootstrap-icons/arrow-right-square.svg | 3 - .../assets/bootstrap-icons/arrow-right.svg | 3 - .../arrow-through-heart-fill.svg | 3 - .../bootstrap-icons/arrow-through-heart.svg | 3 - .../bootstrap-icons/arrow-up-circle-fill.svg | 3 - .../bootstrap-icons/arrow-up-circle.svg | 3 - .../arrow-up-left-circle-fill.svg | 3 - .../bootstrap-icons/arrow-up-left-circle.svg | 3 - .../arrow-up-left-square-fill.svg | 3 - .../bootstrap-icons/arrow-up-left-square.svg | 3 - .../assets/bootstrap-icons/arrow-up-left.svg | 3 - .../arrow-up-right-circle-fill.svg | 3 - .../bootstrap-icons/arrow-up-right-circle.svg | 3 - .../arrow-up-right-square-fill.svg | 3 - .../bootstrap-icons/arrow-up-right-square.svg | 3 - .../assets/bootstrap-icons/arrow-up-right.svg | 3 - .../assets/bootstrap-icons/arrow-up-short.svg | 3 - .../bootstrap-icons/arrow-up-square-fill.svg | 3 - .../bootstrap-icons/arrow-up-square.svg | 3 - .../assets/bootstrap-icons/arrow-up.svg | 3 - .../bootstrap-icons/arrows-angle-contract.svg | 3 - .../bootstrap-icons/arrows-angle-expand.svg | 3 - .../arrows-collapse-vertical.svg | 3 - .../bootstrap-icons/arrows-collapse.svg | 3 - .../arrows-expand-vertical.svg | 3 - .../assets/bootstrap-icons/arrows-expand.svg | 3 - .../bootstrap-icons/arrows-fullscreen.svg | 3 - .../assets/bootstrap-icons/arrows-move.svg | 3 - .../bootstrap-icons/arrows-vertical.svg | 3 - .../static/assets/bootstrap-icons/arrows.svg | 3 - .../bootstrap-icons/aspect-ratio-fill.svg | 3 - .../assets/bootstrap-icons/aspect-ratio.svg | 4 - .../assets/bootstrap-icons/asterisk.svg | 3 - .../static/assets/bootstrap-icons/at.svg | 3 - .../assets/bootstrap-icons/award-fill.svg | 4 - .../static/assets/bootstrap-icons/award.svg | 4 - .../static/assets/bootstrap-icons/back.svg | 3 - .../assets/bootstrap-icons/backpack-fill.svg | 4 - .../assets/bootstrap-icons/backpack.svg | 4 - .../assets/bootstrap-icons/backpack2-fill.svg | 4 - .../assets/bootstrap-icons/backpack2.svg | 5 - .../assets/bootstrap-icons/backpack3-fill.svg | 4 - .../assets/bootstrap-icons/backpack3.svg | 4 - .../assets/bootstrap-icons/backpack4-fill.svg | 4 - .../assets/bootstrap-icons/backpack4.svg | 4 - .../assets/bootstrap-icons/backspace-fill.svg | 3 - .../backspace-reverse-fill.svg | 3 - .../bootstrap-icons/backspace-reverse.svg | 4 - .../assets/bootstrap-icons/backspace.svg | 4 - .../assets/bootstrap-icons/badge-3d-fill.svg | 4 - .../assets/bootstrap-icons/badge-3d.svg | 4 - .../assets/bootstrap-icons/badge-4k-fill.svg | 4 - .../assets/bootstrap-icons/badge-4k.svg | 4 - .../assets/bootstrap-icons/badge-8k-fill.svg | 4 - .../assets/bootstrap-icons/badge-8k.svg | 4 - .../assets/bootstrap-icons/badge-ad-fill.svg | 4 - .../assets/bootstrap-icons/badge-ad.svg | 4 - .../assets/bootstrap-icons/badge-ar-fill.svg | 4 - .../assets/bootstrap-icons/badge-ar.svg | 4 - .../assets/bootstrap-icons/badge-cc-fill.svg | 3 - .../assets/bootstrap-icons/badge-cc.svg | 4 - .../assets/bootstrap-icons/badge-hd-fill.svg | 4 - .../assets/bootstrap-icons/badge-hd.svg | 4 - .../assets/bootstrap-icons/badge-sd-fill.svg | 4 - .../assets/bootstrap-icons/badge-sd.svg | 3 - .../assets/bootstrap-icons/badge-tm-fill.svg | 3 - .../assets/bootstrap-icons/badge-tm.svg | 4 - .../assets/bootstrap-icons/badge-vo-fill.svg | 4 - .../assets/bootstrap-icons/badge-vo.svg | 4 - .../assets/bootstrap-icons/badge-vr-fill.svg | 4 - .../assets/bootstrap-icons/badge-vr.svg | 4 - .../assets/bootstrap-icons/badge-wc-fill.svg | 3 - .../assets/bootstrap-icons/badge-wc.svg | 4 - .../assets/bootstrap-icons/bag-check-fill.svg | 3 - .../assets/bootstrap-icons/bag-check.svg | 4 - .../assets/bootstrap-icons/bag-dash-fill.svg | 3 - .../assets/bootstrap-icons/bag-dash.svg | 4 - .../assets/bootstrap-icons/bag-fill.svg | 3 - .../assets/bootstrap-icons/bag-heart-fill.svg | 3 - .../assets/bootstrap-icons/bag-heart.svg | 3 - .../assets/bootstrap-icons/bag-plus-fill.svg | 3 - .../assets/bootstrap-icons/bag-plus.svg | 4 - .../assets/bootstrap-icons/bag-x-fill.svg | 3 - .../static/assets/bootstrap-icons/bag-x.svg | 4 - .../static/assets/bootstrap-icons/bag.svg | 3 - .../assets/bootstrap-icons/balloon-fill.svg | 3 - .../bootstrap-icons/balloon-heart-fill.svg | 3 - .../assets/bootstrap-icons/balloon-heart.svg | 3 - .../static/assets/bootstrap-icons/balloon.svg | 3 - .../assets/bootstrap-icons/ban-fill.svg | 3 - .../static/assets/bootstrap-icons/ban.svg | 3 - .../assets/bootstrap-icons/bandaid-fill.svg | 3 - .../static/assets/bootstrap-icons/bandaid.svg | 4 - .../static/assets/bootstrap-icons/bank.svg | 3 - .../static/assets/bootstrap-icons/bank2.svg | 3 - .../assets/bootstrap-icons/bar-chart-fill.svg | 3 - .../bootstrap-icons/bar-chart-line-fill.svg | 3 - .../assets/bootstrap-icons/bar-chart-line.svg | 3 - .../bootstrap-icons/bar-chart-steps.svg | 3 - .../assets/bootstrap-icons/bar-chart.svg | 3 - .../assets/bootstrap-icons/basket-fill.svg | 3 - .../static/assets/bootstrap-icons/basket.svg | 3 - .../assets/bootstrap-icons/basket2-fill.svg | 3 - .../static/assets/bootstrap-icons/basket2.svg | 4 - .../assets/bootstrap-icons/basket3-fill.svg | 3 - .../static/assets/bootstrap-icons/basket3.svg | 3 - .../bootstrap-icons/battery-charging.svg | 6 - .../assets/bootstrap-icons/battery-full.svg | 4 - .../assets/bootstrap-icons/battery-half.svg | 4 - .../static/assets/bootstrap-icons/battery.svg | 3 - .../static/assets/bootstrap-icons/behance.svg | 3 - .../assets/bootstrap-icons/bell-fill.svg | 3 - .../bootstrap-icons/bell-slash-fill.svg | 3 - .../assets/bootstrap-icons/bell-slash.svg | 3 - .../static/assets/bootstrap-icons/bell.svg | 3 - .../static/assets/bootstrap-icons/bezier.svg | 4 - .../static/assets/bootstrap-icons/bezier2.svg | 3 - .../static/assets/bootstrap-icons/bicycle.svg | 3 - .../static/assets/bootstrap-icons/bing.svg | 5 - .../bootstrap-icons/binoculars-fill.svg | 3 - .../assets/bootstrap-icons/binoculars.svg | 3 - .../bootstrap-icons/blockquote-left.svg | 3 - .../bootstrap-icons/blockquote-right.svg | 3 - .../assets/bootstrap-icons/bluetooth.svg | 3 - .../assets/bootstrap-icons/body-text.svg | 3 - .../assets/bootstrap-icons/book-fill.svg | 3 - .../assets/bootstrap-icons/book-half.svg | 3 - .../static/assets/bootstrap-icons/book.svg | 3 - .../bootstrap-icons/bookmark-check-fill.svg | 3 - .../assets/bootstrap-icons/bookmark-check.svg | 4 - .../bootstrap-icons/bookmark-dash-fill.svg | 3 - .../assets/bootstrap-icons/bookmark-dash.svg | 4 - .../assets/bootstrap-icons/bookmark-fill.svg | 3 - .../bootstrap-icons/bookmark-heart-fill.svg | 3 - .../assets/bootstrap-icons/bookmark-heart.svg | 4 - .../bootstrap-icons/bookmark-plus-fill.svg | 3 - .../assets/bootstrap-icons/bookmark-plus.svg | 4 - .../bootstrap-icons/bookmark-star-fill.svg | 3 - .../assets/bootstrap-icons/bookmark-star.svg | 4 - .../bootstrap-icons/bookmark-x-fill.svg | 3 - .../assets/bootstrap-icons/bookmark-x.svg | 4 - .../assets/bootstrap-icons/bookmark.svg | 3 - .../assets/bootstrap-icons/bookmarks-fill.svg | 4 - .../assets/bootstrap-icons/bookmarks.svg | 4 - .../assets/bootstrap-icons/bookshelf.svg | 3 - .../assets/bootstrap-icons/boombox-fill.svg | 4 - .../static/assets/bootstrap-icons/boombox.svg | 6 - .../assets/bootstrap-icons/bootstrap-fill.svg | 4 - .../bootstrap-icons/bootstrap-icons.css | 2078 ---------------- .../bootstrap-icons/bootstrap-icons.json | 2052 ---------------- .../bootstrap-icons/bootstrap-icons.min.css | 5 - .../bootstrap-icons/bootstrap-icons.scss | 2090 ----------------- .../bootstrap-icons/bootstrap-icons.svg | 1 - .../bootstrap-icons/bootstrap-reboot.svg | 4 - .../assets/bootstrap-icons/bootstrap.svg | 4 - .../assets/bootstrap-icons/border-all.svg | 3 - .../assets/bootstrap-icons/border-bottom.svg | 3 - .../assets/bootstrap-icons/border-center.svg | 3 - .../assets/bootstrap-icons/border-inner.svg | 5 - .../assets/bootstrap-icons/border-left.svg | 3 - .../assets/bootstrap-icons/border-middle.svg | 3 - .../assets/bootstrap-icons/border-outer.svg | 4 - .../assets/bootstrap-icons/border-right.svg | 3 - .../assets/bootstrap-icons/border-style.svg | 3 - .../assets/bootstrap-icons/border-top.svg | 3 - .../assets/bootstrap-icons/border-width.svg | 3 - .../static/assets/bootstrap-icons/border.svg | 3 - .../bootstrap-icons/bounding-box-circles.svg | 3 - .../assets/bootstrap-icons/bounding-box.svg | 3 - .../bootstrap-icons/box-arrow-down-left.svg | 4 - .../bootstrap-icons/box-arrow-down-right.svg | 4 - .../assets/bootstrap-icons/box-arrow-down.svg | 4 - .../box-arrow-in-down-left.svg | 4 - .../box-arrow-in-down-right.svg | 4 - .../bootstrap-icons/box-arrow-in-down.svg | 4 - .../bootstrap-icons/box-arrow-in-left.svg | 4 - .../bootstrap-icons/box-arrow-in-right.svg | 4 - .../bootstrap-icons/box-arrow-in-up-left.svg | 4 - .../bootstrap-icons/box-arrow-in-up-right.svg | 4 - .../bootstrap-icons/box-arrow-in-up.svg | 4 - .../assets/bootstrap-icons/box-arrow-left.svg | 4 - .../bootstrap-icons/box-arrow-right.svg | 4 - .../bootstrap-icons/box-arrow-up-left.svg | 4 - .../bootstrap-icons/box-arrow-up-right.svg | 4 - .../assets/bootstrap-icons/box-arrow-up.svg | 4 - .../assets/bootstrap-icons/box-fill.svg | 3 - .../assets/bootstrap-icons/box-seam-fill.svg | 3 - .../assets/bootstrap-icons/box-seam.svg | 3 - .../static/assets/bootstrap-icons/box.svg | 3 - .../assets/bootstrap-icons/box2-fill.svg | 3 - .../bootstrap-icons/box2-heart-fill.svg | 3 - .../assets/bootstrap-icons/box2-heart.svg | 4 - .../static/assets/bootstrap-icons/box2.svg | 3 - .../static/assets/bootstrap-icons/boxes.svg | 3 - .../bootstrap-icons/braces-asterisk.svg | 3 - .../static/assets/bootstrap-icons/braces.svg | 3 - .../static/assets/bootstrap-icons/bricks.svg | 3 - .../assets/bootstrap-icons/briefcase-fill.svg | 4 - .../assets/bootstrap-icons/briefcase.svg | 3 - .../brightness-alt-high-fill.svg | 3 - .../bootstrap-icons/brightness-alt-high.svg | 3 - .../brightness-alt-low-fill.svg | 3 - .../bootstrap-icons/brightness-alt-low.svg | 3 - .../bootstrap-icons/brightness-high-fill.svg | 3 - .../bootstrap-icons/brightness-high.svg | 3 - .../bootstrap-icons/brightness-low-fill.svg | 3 - .../assets/bootstrap-icons/brightness-low.svg | 3 - .../assets/bootstrap-icons/brilliance.svg | 3 - .../assets/bootstrap-icons/broadcast-pin.svg | 3 - .../assets/bootstrap-icons/broadcast.svg | 3 - .../assets/bootstrap-icons/browser-chrome.svg | 3 - .../assets/bootstrap-icons/browser-edge.svg | 5 - .../bootstrap-icons/browser-firefox.svg | 3 - .../assets/bootstrap-icons/browser-safari.svg | 3 - .../assets/bootstrap-icons/brush-fill.svg | 3 - .../static/assets/bootstrap-icons/brush.svg | 3 - .../assets/bootstrap-icons/bucket-fill.svg | 3 - .../static/assets/bootstrap-icons/bucket.svg | 3 - .../assets/bootstrap-icons/bug-fill.svg | 4 - .../static/assets/bootstrap-icons/bug.svg | 3 - .../assets/bootstrap-icons/building-add.svg | 5 - .../assets/bootstrap-icons/building-check.svg | 5 - .../assets/bootstrap-icons/building-dash.svg | 5 - .../assets/bootstrap-icons/building-down.svg | 5 - .../bootstrap-icons/building-exclamation.svg | 4 - .../bootstrap-icons/building-fill-add.svg | 4 - .../bootstrap-icons/building-fill-check.svg | 4 - .../bootstrap-icons/building-fill-dash.svg | 4 - .../bootstrap-icons/building-fill-down.svg | 4 - .../building-fill-exclamation.svg | 4 - .../bootstrap-icons/building-fill-gear.svg | 4 - .../bootstrap-icons/building-fill-lock.svg | 4 - .../bootstrap-icons/building-fill-slash.svg | 4 - .../bootstrap-icons/building-fill-up.svg | 4 - .../bootstrap-icons/building-fill-x.svg | 4 - .../assets/bootstrap-icons/building-fill.svg | 3 - .../assets/bootstrap-icons/building-gear.svg | 4 - .../assets/bootstrap-icons/building-lock.svg | 4 - .../assets/bootstrap-icons/building-slash.svg | 5 - .../assets/bootstrap-icons/building-up.svg | 5 - .../assets/bootstrap-icons/building-x.svg | 4 - .../assets/bootstrap-icons/building.svg | 4 - .../assets/bootstrap-icons/buildings-fill.svg | 3 - .../assets/bootstrap-icons/buildings.svg | 4 - .../assets/bootstrap-icons/bullseye.svg | 6 - .../assets/bootstrap-icons/bus-front-fill.svg | 3 - .../assets/bootstrap-icons/bus-front.svg | 4 - .../assets/bootstrap-icons/c-circle-fill.svg | 3 - .../assets/bootstrap-icons/c-circle.svg | 3 - .../assets/bootstrap-icons/c-square-fill.svg | 3 - .../assets/bootstrap-icons/c-square.svg | 4 - .../assets/bootstrap-icons/cake-fill.svg | 3 - .../static/assets/bootstrap-icons/cake.svg | 3 - .../assets/bootstrap-icons/cake2-fill.svg | 4 - .../static/assets/bootstrap-icons/cake2.svg | 3 - .../bootstrap-icons/calculator-fill.svg | 3 - .../assets/bootstrap-icons/calculator.svg | 4 - .../bootstrap-icons/calendar-check-fill.svg | 3 - .../assets/bootstrap-icons/calendar-check.svg | 4 - .../bootstrap-icons/calendar-date-fill.svg | 4 - .../assets/bootstrap-icons/calendar-date.svg | 4 - .../bootstrap-icons/calendar-day-fill.svg | 3 - .../assets/bootstrap-icons/calendar-day.svg | 4 - .../bootstrap-icons/calendar-event-fill.svg | 3 - .../assets/bootstrap-icons/calendar-event.svg | 4 - .../assets/bootstrap-icons/calendar-fill.svg | 3 - .../bootstrap-icons/calendar-heart-fill.svg | 3 - .../assets/bootstrap-icons/calendar-heart.svg | 3 - .../bootstrap-icons/calendar-minus-fill.svg | 3 - .../assets/bootstrap-icons/calendar-minus.svg | 4 - .../bootstrap-icons/calendar-month-fill.svg | 4 - .../assets/bootstrap-icons/calendar-month.svg | 4 - .../bootstrap-icons/calendar-plus-fill.svg | 3 - .../assets/bootstrap-icons/calendar-plus.svg | 4 - .../bootstrap-icons/calendar-range-fill.svg | 3 - .../assets/bootstrap-icons/calendar-range.svg | 4 - .../bootstrap-icons/calendar-week-fill.svg | 3 - .../assets/bootstrap-icons/calendar-week.svg | 4 - .../bootstrap-icons/calendar-x-fill.svg | 3 - .../assets/bootstrap-icons/calendar-x.svg | 4 - .../assets/bootstrap-icons/calendar.svg | 3 - .../bootstrap-icons/calendar2-check-fill.svg | 3 - .../bootstrap-icons/calendar2-check.svg | 5 - .../bootstrap-icons/calendar2-date-fill.svg | 4 - .../assets/bootstrap-icons/calendar2-date.svg | 5 - .../bootstrap-icons/calendar2-day-fill.svg | 3 - .../assets/bootstrap-icons/calendar2-day.svg | 5 - .../bootstrap-icons/calendar2-event-fill.svg | 3 - .../bootstrap-icons/calendar2-event.svg | 5 - .../assets/bootstrap-icons/calendar2-fill.svg | 3 - .../bootstrap-icons/calendar2-heart-fill.svg | 3 - .../bootstrap-icons/calendar2-heart.svg | 3 - .../bootstrap-icons/calendar2-minus-fill.svg | 3 - .../bootstrap-icons/calendar2-minus.svg | 5 - .../bootstrap-icons/calendar2-month-fill.svg | 4 - .../bootstrap-icons/calendar2-month.svg | 5 - .../bootstrap-icons/calendar2-plus-fill.svg | 3 - .../assets/bootstrap-icons/calendar2-plus.svg | 4 - .../bootstrap-icons/calendar2-range-fill.svg | 3 - .../bootstrap-icons/calendar2-range.svg | 4 - .../bootstrap-icons/calendar2-week-fill.svg | 3 - .../assets/bootstrap-icons/calendar2-week.svg | 4 - .../bootstrap-icons/calendar2-x-fill.svg | 3 - .../assets/bootstrap-icons/calendar2-x.svg | 5 - .../assets/bootstrap-icons/calendar2.svg | 4 - .../bootstrap-icons/calendar3-event-fill.svg | 3 - .../bootstrap-icons/calendar3-event.svg | 4 - .../assets/bootstrap-icons/calendar3-fill.svg | 3 - .../bootstrap-icons/calendar3-range-fill.svg | 3 - .../bootstrap-icons/calendar3-range.svg | 4 - .../bootstrap-icons/calendar3-week-fill.svg | 3 - .../assets/bootstrap-icons/calendar3-week.svg | 4 - .../assets/bootstrap-icons/calendar3.svg | 4 - .../bootstrap-icons/calendar4-event.svg | 4 - .../bootstrap-icons/calendar4-range.svg | 4 - .../assets/bootstrap-icons/calendar4-week.svg | 4 - .../assets/bootstrap-icons/calendar4.svg | 3 - .../assets/bootstrap-icons/camera-fill.svg | 4 - .../bootstrap-icons/camera-reels-fill.svg | 5 - .../assets/bootstrap-icons/camera-reels.svg | 5 - .../bootstrap-icons/camera-video-fill.svg | 3 - .../bootstrap-icons/camera-video-off-fill.svg | 3 - .../bootstrap-icons/camera-video-off.svg | 3 - .../assets/bootstrap-icons/camera-video.svg | 3 - .../static/assets/bootstrap-icons/camera.svg | 4 - .../static/assets/bootstrap-icons/camera2.svg | 4 - .../assets/bootstrap-icons/capslock-fill.svg | 3 - .../assets/bootstrap-icons/capslock.svg | 3 - .../assets/bootstrap-icons/capsule-pill.svg | 3 - .../static/assets/bootstrap-icons/capsule.svg | 3 - .../assets/bootstrap-icons/car-front-fill.svg | 3 - .../assets/bootstrap-icons/car-front.svg | 4 - .../assets/bootstrap-icons/card-checklist.svg | 4 - .../assets/bootstrap-icons/card-heading.svg | 4 - .../assets/bootstrap-icons/card-image.svg | 4 - .../assets/bootstrap-icons/card-list.svg | 4 - .../assets/bootstrap-icons/card-text.svg | 4 - .../bootstrap-icons/caret-down-fill.svg | 3 - .../caret-down-square-fill.svg | 3 - .../bootstrap-icons/caret-down-square.svg | 4 - .../assets/bootstrap-icons/caret-down.svg | 3 - .../bootstrap-icons/caret-left-fill.svg | 3 - .../caret-left-square-fill.svg | 3 - .../bootstrap-icons/caret-left-square.svg | 4 - .../assets/bootstrap-icons/caret-left.svg | 3 - .../bootstrap-icons/caret-right-fill.svg | 3 - .../caret-right-square-fill.svg | 3 - .../bootstrap-icons/caret-right-square.svg | 4 - .../assets/bootstrap-icons/caret-right.svg | 3 - .../assets/bootstrap-icons/caret-up-fill.svg | 3 - .../bootstrap-icons/caret-up-square-fill.svg | 3 - .../bootstrap-icons/caret-up-square.svg | 4 - .../assets/bootstrap-icons/caret-up.svg | 3 - .../bootstrap-icons/cart-check-fill.svg | 3 - .../assets/bootstrap-icons/cart-check.svg | 4 - .../assets/bootstrap-icons/cart-dash-fill.svg | 3 - .../assets/bootstrap-icons/cart-dash.svg | 4 - .../assets/bootstrap-icons/cart-fill.svg | 3 - .../assets/bootstrap-icons/cart-plus-fill.svg | 3 - .../assets/bootstrap-icons/cart-plus.svg | 4 - .../assets/bootstrap-icons/cart-x-fill.svg | 3 - .../static/assets/bootstrap-icons/cart-x.svg | 4 - .../static/assets/bootstrap-icons/cart.svg | 3 - .../static/assets/bootstrap-icons/cart2.svg | 3 - .../static/assets/bootstrap-icons/cart3.svg | 3 - .../static/assets/bootstrap-icons/cart4.svg | 3 - .../assets/bootstrap-icons/cash-coin.svg | 6 - .../assets/bootstrap-icons/cash-stack.svg | 4 - .../static/assets/bootstrap-icons/cash.svg | 4 - .../assets/bootstrap-icons/cassette-fill.svg | 4 - .../assets/bootstrap-icons/cassette.svg | 4 - .../static/assets/bootstrap-icons/cast.svg | 4 - .../assets/bootstrap-icons/cc-circle-fill.svg | 3 - .../assets/bootstrap-icons/cc-circle.svg | 3 - .../assets/bootstrap-icons/cc-square-fill.svg | 3 - .../assets/bootstrap-icons/cc-square.svg | 4 - .../assets/bootstrap-icons/chat-dots-fill.svg | 3 - .../assets/bootstrap-icons/chat-dots.svg | 4 - .../assets/bootstrap-icons/chat-fill.svg | 3 - .../bootstrap-icons/chat-heart-fill.svg | 3 - .../assets/bootstrap-icons/chat-heart.svg | 3 - .../bootstrap-icons/chat-left-dots-fill.svg | 3 - .../assets/bootstrap-icons/chat-left-dots.svg | 4 - .../assets/bootstrap-icons/chat-left-fill.svg | 3 - .../bootstrap-icons/chat-left-heart-fill.svg | 3 - .../bootstrap-icons/chat-left-heart.svg | 4 - .../bootstrap-icons/chat-left-quote-fill.svg | 3 - .../bootstrap-icons/chat-left-quote.svg | 4 - .../bootstrap-icons/chat-left-text-fill.svg | 3 - .../assets/bootstrap-icons/chat-left-text.svg | 4 - .../assets/bootstrap-icons/chat-left.svg | 3 - .../bootstrap-icons/chat-quote-fill.svg | 3 - .../assets/bootstrap-icons/chat-quote.svg | 4 - .../bootstrap-icons/chat-right-dots-fill.svg | 3 - .../bootstrap-icons/chat-right-dots.svg | 4 - .../bootstrap-icons/chat-right-fill.svg | 3 - .../bootstrap-icons/chat-right-heart-fill.svg | 3 - .../bootstrap-icons/chat-right-heart.svg | 4 - .../bootstrap-icons/chat-right-quote-fill.svg | 3 - .../bootstrap-icons/chat-right-quote.svg | 4 - .../bootstrap-icons/chat-right-text-fill.svg | 3 - .../bootstrap-icons/chat-right-text.svg | 4 - .../assets/bootstrap-icons/chat-right.svg | 3 - .../bootstrap-icons/chat-square-dots-fill.svg | 3 - .../bootstrap-icons/chat-square-dots.svg | 4 - .../bootstrap-icons/chat-square-fill.svg | 3 - .../chat-square-heart-fill.svg | 3 - .../bootstrap-icons/chat-square-heart.svg | 4 - .../chat-square-quote-fill.svg | 3 - .../bootstrap-icons/chat-square-quote.svg | 4 - .../bootstrap-icons/chat-square-text-fill.svg | 3 - .../bootstrap-icons/chat-square-text.svg | 4 - .../assets/bootstrap-icons/chat-square.svg | 3 - .../assets/bootstrap-icons/chat-text-fill.svg | 3 - .../assets/bootstrap-icons/chat-text.svg | 4 - .../static/assets/bootstrap-icons/chat.svg | 3 - .../assets/bootstrap-icons/check-all.svg | 3 - .../bootstrap-icons/check-circle-fill.svg | 3 - .../assets/bootstrap-icons/check-circle.svg | 4 - .../assets/bootstrap-icons/check-lg.svg | 3 - .../bootstrap-icons/check-square-fill.svg | 3 - .../assets/bootstrap-icons/check-square.svg | 4 - .../static/assets/bootstrap-icons/check.svg | 3 - .../assets/bootstrap-icons/check2-all.svg | 4 - .../assets/bootstrap-icons/check2-circle.svg | 4 - .../assets/bootstrap-icons/check2-square.svg | 4 - .../static/assets/bootstrap-icons/check2.svg | 3 - .../bootstrap-icons/chevron-bar-contract.svg | 3 - .../bootstrap-icons/chevron-bar-down.svg | 3 - .../bootstrap-icons/chevron-bar-expand.svg | 3 - .../bootstrap-icons/chevron-bar-left.svg | 3 - .../bootstrap-icons/chevron-bar-right.svg | 3 - .../assets/bootstrap-icons/chevron-bar-up.svg | 3 - .../bootstrap-icons/chevron-compact-down.svg | 3 - .../bootstrap-icons/chevron-compact-left.svg | 3 - .../bootstrap-icons/chevron-compact-right.svg | 3 - .../bootstrap-icons/chevron-compact-up.svg | 3 - .../bootstrap-icons/chevron-contract.svg | 3 - .../bootstrap-icons/chevron-double-down.svg | 4 - .../bootstrap-icons/chevron-double-left.svg | 4 - .../bootstrap-icons/chevron-double-right.svg | 4 - .../bootstrap-icons/chevron-double-up.svg | 4 - .../assets/bootstrap-icons/chevron-down.svg | 3 - .../assets/bootstrap-icons/chevron-expand.svg | 3 - .../assets/bootstrap-icons/chevron-left.svg | 3 - .../assets/bootstrap-icons/chevron-right.svg | 3 - .../assets/bootstrap-icons/chevron-up.svg | 3 - .../assets/bootstrap-icons/circle-fill.svg | 3 - .../assets/bootstrap-icons/circle-half.svg | 3 - .../assets/bootstrap-icons/circle-square.svg | 4 - .../static/assets/bootstrap-icons/circle.svg | 3 - .../bootstrap-icons/clipboard-check-fill.svg | 4 - .../bootstrap-icons/clipboard-check.svg | 5 - .../bootstrap-icons/clipboard-data-fill.svg | 4 - .../assets/bootstrap-icons/clipboard-data.svg | 5 - .../assets/bootstrap-icons/clipboard-fill.svg | 3 - .../bootstrap-icons/clipboard-heart-fill.svg | 4 - .../bootstrap-icons/clipboard-heart.svg | 5 - .../bootstrap-icons/clipboard-minus-fill.svg | 4 - .../bootstrap-icons/clipboard-minus.svg | 5 - .../bootstrap-icons/clipboard-plus-fill.svg | 4 - .../assets/bootstrap-icons/clipboard-plus.svg | 5 - .../bootstrap-icons/clipboard-pulse.svg | 3 - .../bootstrap-icons/clipboard-x-fill.svg | 4 - .../assets/bootstrap-icons/clipboard-x.svg | 5 - .../assets/bootstrap-icons/clipboard.svg | 4 - .../bootstrap-icons/clipboard2-check-fill.svg | 4 - .../bootstrap-icons/clipboard2-check.svg | 5 - .../bootstrap-icons/clipboard2-data-fill.svg | 4 - .../bootstrap-icons/clipboard2-data.svg | 5 - .../bootstrap-icons/clipboard2-fill.svg | 4 - .../bootstrap-icons/clipboard2-heart-fill.svg | 4 - .../bootstrap-icons/clipboard2-heart.svg | 5 - .../bootstrap-icons/clipboard2-minus-fill.svg | 4 - .../bootstrap-icons/clipboard2-minus.svg | 5 - .../bootstrap-icons/clipboard2-plus-fill.svg | 4 - .../bootstrap-icons/clipboard2-plus.svg | 5 - .../bootstrap-icons/clipboard2-pulse-fill.svg | 4 - .../bootstrap-icons/clipboard2-pulse.svg | 5 - .../bootstrap-icons/clipboard2-x-fill.svg | 4 - .../assets/bootstrap-icons/clipboard2-x.svg | 5 - .../assets/bootstrap-icons/clipboard2.svg | 4 - .../assets/bootstrap-icons/clock-fill.svg | 3 - .../assets/bootstrap-icons/clock-history.svg | 5 - .../static/assets/bootstrap-icons/clock.svg | 4 - .../bootstrap-icons/cloud-arrow-down-fill.svg | 3 - .../bootstrap-icons/cloud-arrow-down.svg | 4 - .../bootstrap-icons/cloud-arrow-up-fill.svg | 3 - .../assets/bootstrap-icons/cloud-arrow-up.svg | 4 - .../bootstrap-icons/cloud-check-fill.svg | 3 - .../assets/bootstrap-icons/cloud-check.svg | 4 - .../bootstrap-icons/cloud-download-fill.svg | 3 - .../assets/bootstrap-icons/cloud-download.svg | 4 - .../bootstrap-icons/cloud-drizzle-fill.svg | 3 - .../assets/bootstrap-icons/cloud-drizzle.svg | 3 - .../assets/bootstrap-icons/cloud-fill.svg | 3 - .../assets/bootstrap-icons/cloud-fog-fill.svg | 3 - .../assets/bootstrap-icons/cloud-fog.svg | 3 - .../bootstrap-icons/cloud-fog2-fill.svg | 3 - .../assets/bootstrap-icons/cloud-fog2.svg | 3 - .../bootstrap-icons/cloud-hail-fill.svg | 3 - .../assets/bootstrap-icons/cloud-hail.svg | 3 - .../bootstrap-icons/cloud-haze-fill.svg | 3 - .../assets/bootstrap-icons/cloud-haze.svg | 3 - .../bootstrap-icons/cloud-haze2-fill.svg | 3 - .../assets/bootstrap-icons/cloud-haze2.svg | 3 - .../bootstrap-icons/cloud-lightning-fill.svg | 3 - .../cloud-lightning-rain-fill.svg | 3 - .../bootstrap-icons/cloud-lightning-rain.svg | 3 - .../bootstrap-icons/cloud-lightning.svg | 3 - .../bootstrap-icons/cloud-minus-fill.svg | 3 - .../assets/bootstrap-icons/cloud-minus.svg | 4 - .../bootstrap-icons/cloud-moon-fill.svg | 4 - .../assets/bootstrap-icons/cloud-moon.svg | 4 - .../bootstrap-icons/cloud-plus-fill.svg | 3 - .../assets/bootstrap-icons/cloud-plus.svg | 4 - .../bootstrap-icons/cloud-rain-fill.svg | 3 - .../bootstrap-icons/cloud-rain-heavy-fill.svg | 3 - .../bootstrap-icons/cloud-rain-heavy.svg | 3 - .../assets/bootstrap-icons/cloud-rain.svg | 3 - .../bootstrap-icons/cloud-slash-fill.svg | 3 - .../assets/bootstrap-icons/cloud-slash.svg | 4 - .../bootstrap-icons/cloud-sleet-fill.svg | 3 - .../assets/bootstrap-icons/cloud-sleet.svg | 3 - .../bootstrap-icons/cloud-snow-fill.svg | 3 - .../assets/bootstrap-icons/cloud-snow.svg | 3 - .../assets/bootstrap-icons/cloud-sun-fill.svg | 4 - .../assets/bootstrap-icons/cloud-sun.svg | 4 - .../bootstrap-icons/cloud-upload-fill.svg | 3 - .../assets/bootstrap-icons/cloud-upload.svg | 4 - .../static/assets/bootstrap-icons/cloud.svg | 3 - .../assets/bootstrap-icons/clouds-fill.svg | 4 - .../static/assets/bootstrap-icons/clouds.svg | 4 - .../assets/bootstrap-icons/cloudy-fill.svg | 3 - .../static/assets/bootstrap-icons/cloudy.svg | 3 - .../assets/bootstrap-icons/code-slash.svg | 3 - .../assets/bootstrap-icons/code-square.svg | 4 - .../static/assets/bootstrap-icons/code.svg | 3 - .../static/assets/bootstrap-icons/coin.svg | 5 - .../bootstrap-icons/collection-fill.svg | 3 - .../bootstrap-icons/collection-play-fill.svg | 3 - .../bootstrap-icons/collection-play.svg | 4 - .../assets/bootstrap-icons/collection.svg | 3 - .../assets/bootstrap-icons/columns-gap.svg | 3 - .../static/assets/bootstrap-icons/columns.svg | 3 - .../static/assets/bootstrap-icons/command.svg | 3 - .../assets/bootstrap-icons/compass-fill.svg | 3 - .../static/assets/bootstrap-icons/compass.svg | 4 - .../assets/bootstrap-icons/cone-striped.svg | 3 - .../static/assets/bootstrap-icons/cone.svg | 3 - .../assets/bootstrap-icons/controller.svg | 4 - .../static/assets/bootstrap-icons/cookie.svg | 4 - .../static/assets/bootstrap-icons/copy.svg | 3 - .../assets/bootstrap-icons/cpu-fill.svg | 4 - .../static/assets/bootstrap-icons/cpu.svg | 3 - .../credit-card-2-back-fill.svg | 3 - .../bootstrap-icons/credit-card-2-back.svg | 4 - .../credit-card-2-front-fill.svg | 3 - .../bootstrap-icons/credit-card-2-front.svg | 4 - .../bootstrap-icons/credit-card-fill.svg | 3 - .../assets/bootstrap-icons/credit-card.svg | 4 - .../static/assets/bootstrap-icons/crop.svg | 3 - .../assets/bootstrap-icons/crosshair.svg | 3 - .../assets/bootstrap-icons/crosshair2.svg | 3 - .../assets/bootstrap-icons/cup-fill.svg | 3 - .../assets/bootstrap-icons/cup-hot-fill.svg | 4 - .../static/assets/bootstrap-icons/cup-hot.svg | 4 - .../assets/bootstrap-icons/cup-straw.svg | 3 - .../static/assets/bootstrap-icons/cup.svg | 3 - .../bootstrap-icons/currency-bitcoin.svg | 3 - .../bootstrap-icons/currency-dollar.svg | 3 - .../assets/bootstrap-icons/currency-euro.svg | 3 - .../bootstrap-icons/currency-exchange.svg | 3 - .../assets/bootstrap-icons/currency-pound.svg | 3 - .../assets/bootstrap-icons/currency-rupee.svg | 3 - .../assets/bootstrap-icons/currency-yen.svg | 3 - .../assets/bootstrap-icons/cursor-fill.svg | 3 - .../assets/bootstrap-icons/cursor-text.svg | 3 - .../static/assets/bootstrap-icons/cursor.svg | 3 - .../bootstrap-icons/dash-circle-dotted.svg | 3 - .../bootstrap-icons/dash-circle-fill.svg | 3 - .../assets/bootstrap-icons/dash-circle.svg | 4 - .../static/assets/bootstrap-icons/dash-lg.svg | 3 - .../bootstrap-icons/dash-square-dotted.svg | 3 - .../bootstrap-icons/dash-square-fill.svg | 3 - .../assets/bootstrap-icons/dash-square.svg | 4 - .../static/assets/bootstrap-icons/dash.svg | 3 - .../assets/bootstrap-icons/database-add.svg | 4 - .../assets/bootstrap-icons/database-check.svg | 4 - .../assets/bootstrap-icons/database-dash.svg | 4 - .../assets/bootstrap-icons/database-down.svg | 4 - .../bootstrap-icons/database-exclamation.svg | 4 - .../bootstrap-icons/database-fill-add.svg | 4 - .../bootstrap-icons/database-fill-check.svg | 4 - .../bootstrap-icons/database-fill-dash.svg | 4 - .../bootstrap-icons/database-fill-down.svg | 4 - .../database-fill-exclamation.svg | 5 - .../bootstrap-icons/database-fill-gear.svg | 4 - .../bootstrap-icons/database-fill-lock.svg | 5 - .../bootstrap-icons/database-fill-slash.svg | 4 - .../bootstrap-icons/database-fill-up.svg | 4 - .../bootstrap-icons/database-fill-x.svg | 5 - .../assets/bootstrap-icons/database-fill.svg | 6 - .../assets/bootstrap-icons/database-gear.svg | 4 - .../assets/bootstrap-icons/database-lock.svg | 4 - .../assets/bootstrap-icons/database-slash.svg | 4 - .../assets/bootstrap-icons/database-up.svg | 4 - .../assets/bootstrap-icons/database-x.svg | 4 - .../assets/bootstrap-icons/database.svg | 3 - .../bootstrap-icons/device-hdd-fill.svg | 4 - .../assets/bootstrap-icons/device-hdd.svg | 5 - .../bootstrap-icons/device-ssd-fill.svg | 4 - .../assets/bootstrap-icons/device-ssd.svg | 4 - .../assets/bootstrap-icons/diagram-2-fill.svg | 3 - .../assets/bootstrap-icons/diagram-2.svg | 3 - .../assets/bootstrap-icons/diagram-3-fill.svg | 3 - .../assets/bootstrap-icons/diagram-3.svg | 3 - .../assets/bootstrap-icons/diamond-fill.svg | 3 - .../assets/bootstrap-icons/diamond-half.svg | 3 - .../static/assets/bootstrap-icons/diamond.svg | 3 - .../assets/bootstrap-icons/dice-1-fill.svg | 3 - .../static/assets/bootstrap-icons/dice-1.svg | 4 - .../assets/bootstrap-icons/dice-2-fill.svg | 3 - .../static/assets/bootstrap-icons/dice-2.svg | 4 - .../assets/bootstrap-icons/dice-3-fill.svg | 3 - .../static/assets/bootstrap-icons/dice-3.svg | 4 - .../assets/bootstrap-icons/dice-4-fill.svg | 3 - .../static/assets/bootstrap-icons/dice-4.svg | 4 - .../assets/bootstrap-icons/dice-5-fill.svg | 3 - .../static/assets/bootstrap-icons/dice-5.svg | 4 - .../assets/bootstrap-icons/dice-6-fill.svg | 3 - .../static/assets/bootstrap-icons/dice-6.svg | 4 - .../assets/bootstrap-icons/disc-fill.svg | 3 - .../static/assets/bootstrap-icons/disc.svg | 4 - .../static/assets/bootstrap-icons/discord.svg | 3 - .../assets/bootstrap-icons/display-fill.svg | 3 - .../static/assets/bootstrap-icons/display.svg | 3 - .../bootstrap-icons/displayport-fill.svg | 3 - .../assets/bootstrap-icons/displayport.svg | 4 - .../bootstrap-icons/distribute-horizontal.svg | 4 - .../bootstrap-icons/distribute-vertical.svg | 4 - .../bootstrap-icons/door-closed-fill.svg | 3 - .../assets/bootstrap-icons/door-closed.svg | 4 - .../assets/bootstrap-icons/door-open-fill.svg | 3 - .../assets/bootstrap-icons/door-open.svg | 4 - .../static/assets/bootstrap-icons/dot.svg | 3 - .../assets/bootstrap-icons/download.svg | 4 - .../assets/bootstrap-icons/dpad-fill.svg | 3 - .../static/assets/bootstrap-icons/dpad.svg | 4 - .../assets/bootstrap-icons/dribbble.svg | 3 - .../static/assets/bootstrap-icons/dropbox.svg | 3 - .../assets/bootstrap-icons/droplet-fill.svg | 3 - .../assets/bootstrap-icons/droplet-half.svg | 4 - .../static/assets/bootstrap-icons/droplet.svg | 4 - .../assets/bootstrap-icons/duffle-fill.svg | 3 - .../static/assets/bootstrap-icons/duffle.svg | 4 - .../assets/bootstrap-icons/ear-fill.svg | 3 - .../static/assets/bootstrap-icons/ear.svg | 3 - .../static/assets/bootstrap-icons/earbuds.svg | 3 - .../assets/bootstrap-icons/easel-fill.svg | 3 - .../static/assets/bootstrap-icons/easel.svg | 3 - .../assets/bootstrap-icons/easel2-fill.svg | 4 - .../static/assets/bootstrap-icons/easel2.svg | 3 - .../assets/bootstrap-icons/easel3-fill.svg | 3 - .../static/assets/bootstrap-icons/easel3.svg | 3 - .../assets/bootstrap-icons/egg-fill.svg | 3 - .../assets/bootstrap-icons/egg-fried.svg | 4 - .../static/assets/bootstrap-icons/egg.svg | 3 - .../assets/bootstrap-icons/eject-fill.svg | 3 - .../static/assets/bootstrap-icons/eject.svg | 3 - .../bootstrap-icons/emoji-angry-fill.svg | 3 - .../assets/bootstrap-icons/emoji-angry.svg | 4 - .../bootstrap-icons/emoji-astonished-fill.svg | 3 - .../bootstrap-icons/emoji-astonished.svg | 4 - .../bootstrap-icons/emoji-dizzy-fill.svg | 3 - .../assets/bootstrap-icons/emoji-dizzy.svg | 4 - .../emoji-expressionless-fill.svg | 3 - .../bootstrap-icons/emoji-expressionless.svg | 4 - .../bootstrap-icons/emoji-frown-fill.svg | 3 - .../assets/bootstrap-icons/emoji-frown.svg | 4 - .../bootstrap-icons/emoji-grimace-fill.svg | 3 - .../assets/bootstrap-icons/emoji-grimace.svg | 4 - .../bootstrap-icons/emoji-grin-fill.svg | 3 - .../assets/bootstrap-icons/emoji-grin.svg | 4 - .../bootstrap-icons/emoji-heart-eyes-fill.svg | 3 - .../bootstrap-icons/emoji-heart-eyes.svg | 4 - .../bootstrap-icons/emoji-kiss-fill.svg | 3 - .../assets/bootstrap-icons/emoji-kiss.svg | 3 - .../bootstrap-icons/emoji-laughing-fill.svg | 3 - .../assets/bootstrap-icons/emoji-laughing.svg | 4 - .../bootstrap-icons/emoji-neutral-fill.svg | 3 - .../assets/bootstrap-icons/emoji-neutral.svg | 4 - .../bootstrap-icons/emoji-smile-fill.svg | 3 - .../emoji-smile-upside-down-fill.svg | 3 - .../emoji-smile-upside-down.svg | 4 - .../assets/bootstrap-icons/emoji-smile.svg | 4 - .../bootstrap-icons/emoji-sunglasses-fill.svg | 3 - .../bootstrap-icons/emoji-sunglasses.svg | 4 - .../bootstrap-icons/emoji-surprise-fill.svg | 3 - .../assets/bootstrap-icons/emoji-surprise.svg | 4 - .../bootstrap-icons/emoji-tear-fill.svg | 3 - .../assets/bootstrap-icons/emoji-tear.svg | 4 - .../bootstrap-icons/emoji-wink-fill.svg | 3 - .../assets/bootstrap-icons/emoji-wink.svg | 4 - .../envelope-arrow-down-fill.svg | 4 - .../bootstrap-icons/envelope-arrow-down.svg | 4 - .../envelope-arrow-up-fill.svg | 4 - .../bootstrap-icons/envelope-arrow-up.svg | 4 - .../bootstrap-icons/envelope-at-fill.svg | 4 - .../assets/bootstrap-icons/envelope-at.svg | 4 - .../bootstrap-icons/envelope-check-fill.svg | 4 - .../assets/bootstrap-icons/envelope-check.svg | 4 - .../bootstrap-icons/envelope-dash-fill.svg | 4 - .../assets/bootstrap-icons/envelope-dash.svg | 4 - .../envelope-exclamation-fill.svg | 4 - .../bootstrap-icons/envelope-exclamation.svg | 4 - .../assets/bootstrap-icons/envelope-fill.svg | 3 - .../bootstrap-icons/envelope-heart-fill.svg | 4 - .../assets/bootstrap-icons/envelope-heart.svg | 3 - .../bootstrap-icons/envelope-open-fill.svg | 3 - .../envelope-open-heart-fill.svg | 4 - .../bootstrap-icons/envelope-open-heart.svg | 3 - .../assets/bootstrap-icons/envelope-open.svg | 3 - .../bootstrap-icons/envelope-paper-fill.svg | 3 - .../envelope-paper-heart-fill.svg | 3 - .../bootstrap-icons/envelope-paper-heart.svg | 3 - .../assets/bootstrap-icons/envelope-paper.svg | 3 - .../bootstrap-icons/envelope-plus-fill.svg | 4 - .../assets/bootstrap-icons/envelope-plus.svg | 4 - .../bootstrap-icons/envelope-slash-fill.svg | 4 - .../assets/bootstrap-icons/envelope-slash.svg | 4 - .../bootstrap-icons/envelope-x-fill.svg | 4 - .../assets/bootstrap-icons/envelope-x.svg | 4 - .../assets/bootstrap-icons/envelope.svg | 3 - .../assets/bootstrap-icons/eraser-fill.svg | 3 - .../static/assets/bootstrap-icons/eraser.svg | 3 - .../static/assets/bootstrap-icons/escape.svg | 4 - .../assets/bootstrap-icons/ethernet.svg | 4 - .../assets/bootstrap-icons/ev-front-fill.svg | 3 - .../assets/bootstrap-icons/ev-front.svg | 4 - .../bootstrap-icons/ev-station-fill.svg | 3 - .../assets/bootstrap-icons/ev-station.svg | 4 - .../exclamation-circle-fill.svg | 3 - .../bootstrap-icons/exclamation-circle.svg | 4 - .../exclamation-diamond-fill.svg | 3 - .../bootstrap-icons/exclamation-diamond.svg | 4 - .../assets/bootstrap-icons/exclamation-lg.svg | 3 - .../exclamation-octagon-fill.svg | 3 - .../bootstrap-icons/exclamation-octagon.svg | 4 - .../exclamation-square-fill.svg | 3 - .../bootstrap-icons/exclamation-square.svg | 4 - .../exclamation-triangle-fill.svg | 3 - .../bootstrap-icons/exclamation-triangle.svg | 4 - .../assets/bootstrap-icons/exclamation.svg | 3 - .../static/assets/bootstrap-icons/exclude.svg | 3 - .../assets/bootstrap-icons/explicit-fill.svg | 3 - .../assets/bootstrap-icons/explicit.svg | 4 - .../assets/bootstrap-icons/exposure.svg | 4 - .../assets/bootstrap-icons/eye-fill.svg | 4 - .../assets/bootstrap-icons/eye-slash-fill.svg | 4 - .../assets/bootstrap-icons/eye-slash.svg | 5 - .../static/assets/bootstrap-icons/eye.svg | 4 - .../assets/bootstrap-icons/eyedropper.svg | 3 - .../assets/bootstrap-icons/eyeglasses.svg | 3 - .../assets/bootstrap-icons/facebook.svg | 3 - .../static/assets/bootstrap-icons/fan.svg | 4 - .../bootstrap-icons/fast-forward-btn-fill.svg | 3 - .../bootstrap-icons/fast-forward-btn.svg | 4 - .../fast-forward-circle-fill.svg | 3 - .../bootstrap-icons/fast-forward-circle.svg | 4 - .../bootstrap-icons/fast-forward-fill.svg | 4 - .../assets/bootstrap-icons/fast-forward.svg | 4 - .../static/assets/bootstrap-icons/feather.svg | 3 - .../assets/bootstrap-icons/feather2.svg | 3 - .../bootstrap-icons/file-arrow-down-fill.svg | 3 - .../bootstrap-icons/file-arrow-down.svg | 4 - .../bootstrap-icons/file-arrow-up-fill.svg | 3 - .../assets/bootstrap-icons/file-arrow-up.svg | 4 - .../bootstrap-icons/file-bar-graph-fill.svg | 3 - .../assets/bootstrap-icons/file-bar-graph.svg | 4 - .../bootstrap-icons/file-binary-fill.svg | 4 - .../assets/bootstrap-icons/file-binary.svg | 4 - .../bootstrap-icons/file-break-fill.svg | 3 - .../assets/bootstrap-icons/file-break.svg | 3 - .../bootstrap-icons/file-check-fill.svg | 3 - .../assets/bootstrap-icons/file-check.svg | 4 - .../assets/bootstrap-icons/file-code-fill.svg | 3 - .../assets/bootstrap-icons/file-code.svg | 4 - .../assets/bootstrap-icons/file-diff-fill.svg | 3 - .../assets/bootstrap-icons/file-diff.svg | 4 - .../file-earmark-arrow-down-fill.svg | 3 - .../file-earmark-arrow-down.svg | 4 - .../file-earmark-arrow-up-fill.svg | 3 - .../bootstrap-icons/file-earmark-arrow-up.svg | 4 - .../file-earmark-bar-graph-fill.svg | 3 - .../file-earmark-bar-graph.svg | 4 - .../file-earmark-binary-fill.svg | 4 - .../bootstrap-icons/file-earmark-binary.svg | 4 - .../file-earmark-break-fill.svg | 3 - .../bootstrap-icons/file-earmark-break.svg | 3 - .../file-earmark-check-fill.svg | 3 - .../bootstrap-icons/file-earmark-check.svg | 4 - .../file-earmark-code-fill.svg | 3 - .../bootstrap-icons/file-earmark-code.svg | 4 - .../file-earmark-diff-fill.svg | 3 - .../bootstrap-icons/file-earmark-diff.svg | 4 - .../file-earmark-easel-fill.svg | 4 - .../bootstrap-icons/file-earmark-easel.svg | 4 - .../file-earmark-excel-fill.svg | 3 - .../bootstrap-icons/file-earmark-excel.svg | 4 - .../bootstrap-icons/file-earmark-fill.svg | 3 - .../file-earmark-font-fill.svg | 3 - .../bootstrap-icons/file-earmark-font.svg | 4 - .../file-earmark-image-fill.svg | 4 - .../bootstrap-icons/file-earmark-image.svg | 4 - .../file-earmark-lock-fill.svg | 4 - .../bootstrap-icons/file-earmark-lock.svg | 4 - .../file-earmark-lock2-fill.svg | 4 - .../bootstrap-icons/file-earmark-lock2.svg | 4 - .../file-earmark-medical-fill.svg | 3 - .../bootstrap-icons/file-earmark-medical.svg | 4 - .../file-earmark-minus-fill.svg | 3 - .../bootstrap-icons/file-earmark-minus.svg | 4 - .../file-earmark-music-fill.svg | 3 - .../bootstrap-icons/file-earmark-music.svg | 4 - .../bootstrap-icons/file-earmark-pdf-fill.svg | 4 - .../bootstrap-icons/file-earmark-pdf.svg | 4 - .../file-earmark-person-fill.svg | 3 - .../bootstrap-icons/file-earmark-person.svg | 4 - .../file-earmark-play-fill.svg | 3 - .../bootstrap-icons/file-earmark-play.svg | 4 - .../file-earmark-plus-fill.svg | 3 - .../bootstrap-icons/file-earmark-plus.svg | 4 - .../file-earmark-post-fill.svg | 3 - .../bootstrap-icons/file-earmark-post.svg | 4 - .../bootstrap-icons/file-earmark-ppt-fill.svg | 4 - .../bootstrap-icons/file-earmark-ppt.svg | 4 - .../file-earmark-richtext-fill.svg | 3 - .../bootstrap-icons/file-earmark-richtext.svg | 4 - .../file-earmark-ruled-fill.svg | 3 - .../bootstrap-icons/file-earmark-ruled.svg | 3 - .../file-earmark-slides-fill.svg | 4 - .../bootstrap-icons/file-earmark-slides.svg | 4 - .../file-earmark-spreadsheet-fill.svg | 4 - .../file-earmark-spreadsheet.svg | 3 - .../file-earmark-text-fill.svg | 3 - .../bootstrap-icons/file-earmark-text.svg | 4 - .../file-earmark-word-fill.svg | 3 - .../bootstrap-icons/file-earmark-word.svg | 4 - .../bootstrap-icons/file-earmark-x-fill.svg | 3 - .../assets/bootstrap-icons/file-earmark-x.svg | 4 - .../bootstrap-icons/file-earmark-zip-fill.svg | 4 - .../bootstrap-icons/file-earmark-zip.svg | 4 - .../assets/bootstrap-icons/file-earmark.svg | 3 - .../bootstrap-icons/file-easel-fill.svg | 4 - .../assets/bootstrap-icons/file-easel.svg | 4 - .../bootstrap-icons/file-excel-fill.svg | 3 - .../assets/bootstrap-icons/file-excel.svg | 4 - .../assets/bootstrap-icons/file-fill.svg | 3 - .../assets/bootstrap-icons/file-font-fill.svg | 3 - .../assets/bootstrap-icons/file-font.svg | 4 - .../bootstrap-icons/file-image-fill.svg | 4 - .../assets/bootstrap-icons/file-image.svg | 4 - .../assets/bootstrap-icons/file-lock-fill.svg | 4 - .../assets/bootstrap-icons/file-lock.svg | 4 - .../bootstrap-icons/file-lock2-fill.svg | 4 - .../assets/bootstrap-icons/file-lock2.svg | 4 - .../bootstrap-icons/file-medical-fill.svg | 3 - .../assets/bootstrap-icons/file-medical.svg | 4 - .../bootstrap-icons/file-minus-fill.svg | 3 - .../assets/bootstrap-icons/file-minus.svg | 4 - .../bootstrap-icons/file-music-fill.svg | 3 - .../assets/bootstrap-icons/file-music.svg | 4 - .../assets/bootstrap-icons/file-pdf-fill.svg | 4 - .../assets/bootstrap-icons/file-pdf.svg | 4 - .../bootstrap-icons/file-person-fill.svg | 3 - .../assets/bootstrap-icons/file-person.svg | 4 - .../assets/bootstrap-icons/file-play-fill.svg | 3 - .../assets/bootstrap-icons/file-play.svg | 4 - .../assets/bootstrap-icons/file-plus-fill.svg | 3 - .../assets/bootstrap-icons/file-plus.svg | 4 - .../assets/bootstrap-icons/file-post-fill.svg | 3 - .../assets/bootstrap-icons/file-post.svg | 4 - .../assets/bootstrap-icons/file-ppt-fill.svg | 4 - .../assets/bootstrap-icons/file-ppt.svg | 4 - .../bootstrap-icons/file-richtext-fill.svg | 3 - .../assets/bootstrap-icons/file-richtext.svg | 4 - .../bootstrap-icons/file-ruled-fill.svg | 3 - .../assets/bootstrap-icons/file-ruled.svg | 3 - .../bootstrap-icons/file-slides-fill.svg | 4 - .../assets/bootstrap-icons/file-slides.svg | 4 - .../bootstrap-icons/file-spreadsheet-fill.svg | 3 - .../bootstrap-icons/file-spreadsheet.svg | 3 - .../assets/bootstrap-icons/file-text-fill.svg | 3 - .../assets/bootstrap-icons/file-text.svg | 4 - .../assets/bootstrap-icons/file-word-fill.svg | 3 - .../assets/bootstrap-icons/file-word.svg | 4 - .../assets/bootstrap-icons/file-x-fill.svg | 3 - .../static/assets/bootstrap-icons/file-x.svg | 4 - .../assets/bootstrap-icons/file-zip-fill.svg | 4 - .../assets/bootstrap-icons/file-zip.svg | 4 - .../static/assets/bootstrap-icons/file.svg | 3 - .../assets/bootstrap-icons/files-alt.svg | 3 - .../static/assets/bootstrap-icons/files.svg | 3 - .../assets/bootstrap-icons/filetype-aac.svg | 3 - .../assets/bootstrap-icons/filetype-ai.svg | 3 - .../assets/bootstrap-icons/filetype-bmp.svg | 3 - .../assets/bootstrap-icons/filetype-cs.svg | 3 - .../assets/bootstrap-icons/filetype-css.svg | 3 - .../assets/bootstrap-icons/filetype-csv.svg | 3 - .../assets/bootstrap-icons/filetype-doc.svg | 3 - .../assets/bootstrap-icons/filetype-docx.svg | 3 - .../assets/bootstrap-icons/filetype-exe.svg | 3 - .../assets/bootstrap-icons/filetype-gif.svg | 3 - .../assets/bootstrap-icons/filetype-heic.svg | 3 - .../assets/bootstrap-icons/filetype-html.svg | 3 - .../assets/bootstrap-icons/filetype-java.svg | 3 - .../assets/bootstrap-icons/filetype-jpg.svg | 3 - .../assets/bootstrap-icons/filetype-js.svg | 3 - .../assets/bootstrap-icons/filetype-json.svg | 3 - .../assets/bootstrap-icons/filetype-jsx.svg | 3 - .../assets/bootstrap-icons/filetype-key.svg | 3 - .../assets/bootstrap-icons/filetype-m4p.svg | 3 - .../assets/bootstrap-icons/filetype-md.svg | 3 - .../assets/bootstrap-icons/filetype-mdx.svg | 3 - .../assets/bootstrap-icons/filetype-mov.svg | 3 - .../assets/bootstrap-icons/filetype-mp3.svg | 3 - .../assets/bootstrap-icons/filetype-mp4.svg | 3 - .../assets/bootstrap-icons/filetype-otf.svg | 3 - .../assets/bootstrap-icons/filetype-pdf.svg | 3 - .../assets/bootstrap-icons/filetype-php.svg | 3 - .../assets/bootstrap-icons/filetype-png.svg | 3 - .../assets/bootstrap-icons/filetype-ppt.svg | 3 - .../assets/bootstrap-icons/filetype-pptx.svg | 3 - .../assets/bootstrap-icons/filetype-psd.svg | 3 - .../assets/bootstrap-icons/filetype-py.svg | 3 - .../assets/bootstrap-icons/filetype-raw.svg | 3 - .../assets/bootstrap-icons/filetype-rb.svg | 3 - .../assets/bootstrap-icons/filetype-sass.svg | 3 - .../assets/bootstrap-icons/filetype-scss.svg | 3 - .../assets/bootstrap-icons/filetype-sh.svg | 3 - .../assets/bootstrap-icons/filetype-sql.svg | 3 - .../assets/bootstrap-icons/filetype-svg.svg | 3 - .../assets/bootstrap-icons/filetype-tiff.svg | 3 - .../assets/bootstrap-icons/filetype-tsx.svg | 3 - .../assets/bootstrap-icons/filetype-ttf.svg | 3 - .../assets/bootstrap-icons/filetype-txt.svg | 3 - .../assets/bootstrap-icons/filetype-wav.svg | 3 - .../assets/bootstrap-icons/filetype-woff.svg | 3 - .../assets/bootstrap-icons/filetype-xls.svg | 3 - .../assets/bootstrap-icons/filetype-xlsx.svg | 3 - .../assets/bootstrap-icons/filetype-xml.svg | 3 - .../assets/bootstrap-icons/filetype-yml.svg | 3 - .../static/assets/bootstrap-icons/film.svg | 3 - .../bootstrap-icons/filter-circle-fill.svg | 3 - .../assets/bootstrap-icons/filter-circle.svg | 4 - .../assets/bootstrap-icons/filter-left.svg | 3 - .../assets/bootstrap-icons/filter-right.svg | 3 - .../bootstrap-icons/filter-square-fill.svg | 3 - .../assets/bootstrap-icons/filter-square.svg | 4 - .../static/assets/bootstrap-icons/filter.svg | 3 - .../assets/bootstrap-icons/fingerprint.svg | 7 - .../static/assets/bootstrap-icons/fire.svg | 3 - .../assets/bootstrap-icons/flag-fill.svg | 3 - .../static/assets/bootstrap-icons/flag.svg | 3 - .../assets/bootstrap-icons/floppy-fill.svg | 4 - .../static/assets/bootstrap-icons/floppy.svg | 4 - .../assets/bootstrap-icons/floppy2-fill.svg | 4 - .../static/assets/bootstrap-icons/floppy2.svg | 3 - .../static/assets/bootstrap-icons/flower1.svg | 3 - .../static/assets/bootstrap-icons/flower2.svg | 3 - .../static/assets/bootstrap-icons/flower3.svg | 3 - .../assets/bootstrap-icons/folder-check.svg | 4 - .../assets/bootstrap-icons/folder-fill.svg | 3 - .../assets/bootstrap-icons/folder-minus.svg | 4 - .../assets/bootstrap-icons/folder-plus.svg | 4 - .../bootstrap-icons/folder-symlink-fill.svg | 3 - .../assets/bootstrap-icons/folder-symlink.svg | 4 - .../assets/bootstrap-icons/folder-x.svg | 4 - .../static/assets/bootstrap-icons/folder.svg | 3 - .../assets/bootstrap-icons/folder2-open.svg | 3 - .../static/assets/bootstrap-icons/folder2.svg | 3 - .../static/assets/bootstrap-icons/fonts.svg | 3 - .../fonts/bootstrap-icons.woff | Bin 176196 -> 0 bytes .../fonts/bootstrap-icons.woff2 | Bin 130764 -> 0 bytes .../assets/bootstrap-icons/forward-fill.svg | 3 - .../static/assets/bootstrap-icons/forward.svg | 3 - .../static/assets/bootstrap-icons/front.svg | 3 - .../bootstrap-icons/fuel-pump-diesel-fill.svg | 4 - .../bootstrap-icons/fuel-pump-diesel.svg | 4 - .../assets/bootstrap-icons/fuel-pump-fill.svg | 3 - .../assets/bootstrap-icons/fuel-pump.svg | 4 - .../bootstrap-icons/fullscreen-exit.svg | 3 - .../assets/bootstrap-icons/fullscreen.svg | 3 - .../assets/bootstrap-icons/funnel-fill.svg | 3 - .../static/assets/bootstrap-icons/funnel.svg | 3 - .../assets/bootstrap-icons/gear-fill.svg | 3 - .../bootstrap-icons/gear-wide-connected.svg | 3 - .../assets/bootstrap-icons/gear-wide.svg | 3 - .../static/assets/bootstrap-icons/gear.svg | 4 - .../static/assets/bootstrap-icons/gem.svg | 3 - .../bootstrap-icons/gender-ambiguous.svg | 3 - .../assets/bootstrap-icons/gender-female.svg | 3 - .../assets/bootstrap-icons/gender-male.svg | 3 - .../assets/bootstrap-icons/gender-neuter.svg | 3 - .../assets/bootstrap-icons/gender-trans.svg | 3 - .../assets/bootstrap-icons/geo-alt-fill.svg | 3 - .../static/assets/bootstrap-icons/geo-alt.svg | 4 - .../assets/bootstrap-icons/geo-fill.svg | 3 - .../static/assets/bootstrap-icons/geo.svg | 3 - .../assets/bootstrap-icons/gift-fill.svg | 3 - .../static/assets/bootstrap-icons/gift.svg | 3 - .../static/assets/bootstrap-icons/git.svg | 3 - .../static/assets/bootstrap-icons/github.svg | 3 - .../static/assets/bootstrap-icons/gitlab.svg | 3 - .../assets/bootstrap-icons/globe-americas.svg | 3 - .../bootstrap-icons/globe-asia-australia.svg | 4 - .../globe-central-south-asia.svg | 3 - .../bootstrap-icons/globe-europe-africa.svg | 3 - .../static/assets/bootstrap-icons/globe.svg | 3 - .../static/assets/bootstrap-icons/globe2.svg | 3 - .../assets/bootstrap-icons/google-play.svg | 3 - .../static/assets/bootstrap-icons/google.svg | 3 - .../assets/bootstrap-icons/gpu-card.svg | 5 - .../bootstrap-icons/graph-down-arrow.svg | 3 - .../assets/bootstrap-icons/graph-down.svg | 3 - .../assets/bootstrap-icons/graph-up-arrow.svg | 3 - .../assets/bootstrap-icons/graph-up.svg | 3 - .../assets/bootstrap-icons/grid-1x2-fill.svg | 3 - .../assets/bootstrap-icons/grid-1x2.svg | 3 - .../bootstrap-icons/grid-3x2-gap-fill.svg | 3 - .../assets/bootstrap-icons/grid-3x2-gap.svg | 3 - .../assets/bootstrap-icons/grid-3x2.svg | 3 - .../bootstrap-icons/grid-3x3-gap-fill.svg | 3 - .../assets/bootstrap-icons/grid-3x3-gap.svg | 3 - .../assets/bootstrap-icons/grid-3x3.svg | 3 - .../assets/bootstrap-icons/grid-fill.svg | 3 - .../static/assets/bootstrap-icons/grid.svg | 3 - .../bootstrap-icons/grip-horizontal.svg | 3 - .../assets/bootstrap-icons/grip-vertical.svg | 3 - .../assets/bootstrap-icons/h-circle-fill.svg | 3 - .../assets/bootstrap-icons/h-circle.svg | 3 - .../assets/bootstrap-icons/h-square-fill.svg | 3 - .../assets/bootstrap-icons/h-square.svg | 4 - .../static/assets/bootstrap-icons/hammer.svg | 3 - .../bootstrap-icons/hand-index-fill.svg | 3 - .../bootstrap-icons/hand-index-thumb-fill.svg | 3 - .../bootstrap-icons/hand-index-thumb.svg | 3 - .../assets/bootstrap-icons/hand-index.svg | 3 - .../bootstrap-icons/hand-thumbs-down-fill.svg | 3 - .../bootstrap-icons/hand-thumbs-down.svg | 3 - .../bootstrap-icons/hand-thumbs-up-fill.svg | 3 - .../assets/bootstrap-icons/hand-thumbs-up.svg | 3 - .../assets/bootstrap-icons/handbag-fill.svg | 3 - .../static/assets/bootstrap-icons/handbag.svg | 3 - .../static/assets/bootstrap-icons/hash.svg | 3 - .../assets/bootstrap-icons/hdd-fill.svg | 3 - .../bootstrap-icons/hdd-network-fill.svg | 3 - .../assets/bootstrap-icons/hdd-network.svg | 4 - .../assets/bootstrap-icons/hdd-rack-fill.svg | 3 - .../assets/bootstrap-icons/hdd-rack.svg | 4 - .../assets/bootstrap-icons/hdd-stack-fill.svg | 3 - .../assets/bootstrap-icons/hdd-stack.svg | 5 - .../static/assets/bootstrap-icons/hdd.svg | 4 - .../assets/bootstrap-icons/hdmi-fill.svg | 3 - .../static/assets/bootstrap-icons/hdmi.svg | 4 - .../assets/bootstrap-icons/headphones.svg | 3 - .../assets/bootstrap-icons/headset-vr.svg | 4 - .../static/assets/bootstrap-icons/headset.svg | 3 - .../assets/bootstrap-icons/heart-arrow.svg | 3 - .../assets/bootstrap-icons/heart-fill.svg | 3 - .../assets/bootstrap-icons/heart-half.svg | 3 - .../bootstrap-icons/heart-pulse-fill.svg | 4 - .../assets/bootstrap-icons/heart-pulse.svg | 4 - .../static/assets/bootstrap-icons/heart.svg | 3 - .../bootstrap-icons/heartbreak-fill.svg | 3 - .../assets/bootstrap-icons/heartbreak.svg | 3 - .../static/assets/bootstrap-icons/hearts.svg | 3 - .../assets/bootstrap-icons/heptagon-fill.svg | 3 - .../assets/bootstrap-icons/heptagon-half.svg | 3 - .../assets/bootstrap-icons/heptagon.svg | 3 - .../assets/bootstrap-icons/hexagon-fill.svg | 3 - .../assets/bootstrap-icons/hexagon-half.svg | 3 - .../static/assets/bootstrap-icons/hexagon.svg | 3 - .../assets/bootstrap-icons/highlighter.svg | 3 - .../assets/bootstrap-icons/highlights.svg | 3 - .../assets/bootstrap-icons/hospital-fill.svg | 3 - .../assets/bootstrap-icons/hospital.svg | 4 - .../bootstrap-icons/hourglass-bottom.svg | 3 - .../bootstrap-icons/hourglass-split.svg | 3 - .../assets/bootstrap-icons/hourglass-top.svg | 3 - .../assets/bootstrap-icons/hourglass.svg | 3 - .../assets/bootstrap-icons/house-add-fill.svg | 5 - .../assets/bootstrap-icons/house-add.svg | 4 - .../bootstrap-icons/house-check-fill.svg | 5 - .../assets/bootstrap-icons/house-check.svg | 4 - .../bootstrap-icons/house-dash-fill.svg | 5 - .../assets/bootstrap-icons/house-dash.svg | 4 - .../bootstrap-icons/house-door-fill.svg | 3 - .../assets/bootstrap-icons/house-door.svg | 3 - .../bootstrap-icons/house-down-fill.svg | 5 - .../assets/bootstrap-icons/house-down.svg | 4 - .../house-exclamation-fill.svg | 5 - .../bootstrap-icons/house-exclamation.svg | 4 - .../assets/bootstrap-icons/house-fill.svg | 4 - .../bootstrap-icons/house-gear-fill.svg | 5 - .../assets/bootstrap-icons/house-gear.svg | 4 - .../bootstrap-icons/house-heart-fill.svg | 4 - .../assets/bootstrap-icons/house-heart.svg | 4 - .../bootstrap-icons/house-lock-fill.svg | 5 - .../assets/bootstrap-icons/house-lock.svg | 4 - .../bootstrap-icons/house-slash-fill.svg | 5 - .../assets/bootstrap-icons/house-slash.svg | 4 - .../assets/bootstrap-icons/house-up-fill.svg | 5 - .../assets/bootstrap-icons/house-up.svg | 4 - .../assets/bootstrap-icons/house-x-fill.svg | 5 - .../static/assets/bootstrap-icons/house-x.svg | 4 - .../static/assets/bootstrap-icons/house.svg | 3 - .../assets/bootstrap-icons/houses-fill.svg | 4 - .../static/assets/bootstrap-icons/houses.svg | 3 - .../static/assets/bootstrap-icons/hr.svg | 3 - .../assets/bootstrap-icons/hurricane.svg | 3 - .../assets/bootstrap-icons/hypnotize.svg | 4 - .../assets/bootstrap-icons/image-alt.svg | 3 - .../assets/bootstrap-icons/image-fill.svg | 3 - .../static/assets/bootstrap-icons/image.svg | 4 - .../static/assets/bootstrap-icons/images.svg | 4 - .../assets/bootstrap-icons/inbox-fill.svg | 3 - .../static/assets/bootstrap-icons/inbox.svg | 3 - .../assets/bootstrap-icons/inboxes-fill.svg | 3 - .../static/assets/bootstrap-icons/inboxes.svg | 3 - .../assets/bootstrap-icons/incognito.svg | 3 - .../static/assets/bootstrap-icons/indent.svg | 4 - .../assets/bootstrap-icons/infinity.svg | 3 - .../bootstrap-icons/info-circle-fill.svg | 3 - .../assets/bootstrap-icons/info-circle.svg | 4 - .../static/assets/bootstrap-icons/info-lg.svg | 3 - .../bootstrap-icons/info-square-fill.svg | 3 - .../assets/bootstrap-icons/info-square.svg | 4 - .../static/assets/bootstrap-icons/info.svg | 3 - .../bootstrap-icons/input-cursor-text.svg | 4 - .../assets/bootstrap-icons/input-cursor.svg | 4 - .../assets/bootstrap-icons/instagram.svg | 3 - .../assets/bootstrap-icons/intersect.svg | 3 - .../assets/bootstrap-icons/journal-album.svg | 5 - .../bootstrap-icons/journal-arrow-down.svg | 5 - .../bootstrap-icons/journal-arrow-up.svg | 5 - .../bootstrap-icons/journal-bookmark-fill.svg | 5 - .../bootstrap-icons/journal-bookmark.svg | 5 - .../assets/bootstrap-icons/journal-check.svg | 5 - .../assets/bootstrap-icons/journal-code.svg | 5 - .../bootstrap-icons/journal-medical.svg | 5 - .../assets/bootstrap-icons/journal-minus.svg | 5 - .../assets/bootstrap-icons/journal-plus.svg | 5 - .../bootstrap-icons/journal-richtext.svg | 5 - .../assets/bootstrap-icons/journal-text.svg | 5 - .../assets/bootstrap-icons/journal-x.svg | 5 - .../static/assets/bootstrap-icons/journal.svg | 4 - .../assets/bootstrap-icons/journals.svg | 4 - .../assets/bootstrap-icons/joystick.svg | 4 - .../assets/bootstrap-icons/justify-left.svg | 3 - .../assets/bootstrap-icons/justify-right.svg | 3 - .../static/assets/bootstrap-icons/justify.svg | 3 - .../assets/bootstrap-icons/kanban-fill.svg | 3 - .../static/assets/bootstrap-icons/kanban.svg | 4 - .../assets/bootstrap-icons/key-fill.svg | 3 - .../static/assets/bootstrap-icons/key.svg | 4 - .../assets/bootstrap-icons/keyboard-fill.svg | 3 - .../assets/bootstrap-icons/keyboard.svg | 4 - .../static/assets/bootstrap-icons/ladder.svg | 3 - .../assets/bootstrap-icons/lamp-fill.svg | 4 - .../static/assets/bootstrap-icons/lamp.svg | 4 - .../assets/bootstrap-icons/laptop-fill.svg | 3 - .../static/assets/bootstrap-icons/laptop.svg | 3 - .../assets/bootstrap-icons/layer-backward.svg | 4 - .../assets/bootstrap-icons/layer-forward.svg | 4 - .../assets/bootstrap-icons/layers-fill.svg | 4 - .../assets/bootstrap-icons/layers-half.svg | 3 - .../static/assets/bootstrap-icons/layers.svg | 3 - .../layout-sidebar-inset-reverse.svg | 4 - .../bootstrap-icons/layout-sidebar-inset.svg | 4 - .../layout-sidebar-reverse.svg | 3 - .../assets/bootstrap-icons/layout-sidebar.svg | 3 - .../assets/bootstrap-icons/layout-split.svg | 3 - .../layout-text-sidebar-reverse.svg | 4 - .../bootstrap-icons/layout-text-sidebar.svg | 4 - .../layout-text-window-reverse.svg | 4 - .../bootstrap-icons/layout-text-window.svg | 4 - .../bootstrap-icons/layout-three-columns.svg | 3 - .../assets/bootstrap-icons/layout-wtf.svg | 3 - .../assets/bootstrap-icons/life-preserver.svg | 3 - .../assets/bootstrap-icons/lightbulb-fill.svg | 3 - .../bootstrap-icons/lightbulb-off-fill.svg | 3 - .../assets/bootstrap-icons/lightbulb-off.svg | 3 - .../assets/bootstrap-icons/lightbulb.svg | 3 - .../bootstrap-icons/lightning-charge-fill.svg | 3 - .../bootstrap-icons/lightning-charge.svg | 3 - .../assets/bootstrap-icons/lightning-fill.svg | 3 - .../assets/bootstrap-icons/lightning.svg | 3 - .../static/assets/bootstrap-icons/line.svg | 3 - .../assets/bootstrap-icons/link-45deg.svg | 4 - .../static/assets/bootstrap-icons/link.svg | 4 - .../assets/bootstrap-icons/linkedin.svg | 3 - .../assets/bootstrap-icons/list-check.svg | 3 - .../bootstrap-icons/list-columns-reverse.svg | 3 - .../assets/bootstrap-icons/list-columns.svg | 3 - .../assets/bootstrap-icons/list-nested.svg | 3 - .../static/assets/bootstrap-icons/list-ol.svg | 4 - .../assets/bootstrap-icons/list-stars.svg | 4 - .../assets/bootstrap-icons/list-task.svg | 5 - .../static/assets/bootstrap-icons/list-ul.svg | 3 - .../static/assets/bootstrap-icons/list.svg | 3 - .../assets/bootstrap-icons/lock-fill.svg | 3 - .../static/assets/bootstrap-icons/lock.svg | 3 - .../assets/bootstrap-icons/luggage-fill.svg | 4 - .../static/assets/bootstrap-icons/luggage.svg | 4 - .../assets/bootstrap-icons/lungs-fill.svg | 3 - .../static/assets/bootstrap-icons/lungs.svg | 3 - .../static/assets/bootstrap-icons/magic.svg | 3 - .../assets/bootstrap-icons/magnet-fill.svg | 3 - .../static/assets/bootstrap-icons/magnet.svg | 3 - .../assets/bootstrap-icons/mailbox-flag.svg | 4 - .../static/assets/bootstrap-icons/mailbox.svg | 4 - .../assets/bootstrap-icons/mailbox2-flag.svg | 4 - .../assets/bootstrap-icons/mailbox2.svg | 4 - .../assets/bootstrap-icons/map-fill.svg | 3 - .../static/assets/bootstrap-icons/map.svg | 3 - .../assets/bootstrap-icons/markdown-fill.svg | 3 - .../assets/bootstrap-icons/markdown.svg | 6 - .../assets/bootstrap-icons/marker-tip.svg | 3 - .../static/assets/bootstrap-icons/mask.svg | 3 - .../assets/bootstrap-icons/mastodon.svg | 3 - .../static/assets/bootstrap-icons/medium.svg | 3 - .../assets/bootstrap-icons/megaphone-fill.svg | 3 - .../assets/bootstrap-icons/megaphone.svg | 3 - .../static/assets/bootstrap-icons/memory.svg | 3 - .../assets/bootstrap-icons/menu-app-fill.svg | 3 - .../assets/bootstrap-icons/menu-app.svg | 3 - .../bootstrap-icons/menu-button-fill.svg | 3 - .../bootstrap-icons/menu-button-wide-fill.svg | 3 - .../bootstrap-icons/menu-button-wide.svg | 4 - .../assets/bootstrap-icons/menu-button.svg | 4 - .../assets/bootstrap-icons/menu-down.svg | 3 - .../static/assets/bootstrap-icons/menu-up.svg | 3 - .../assets/bootstrap-icons/messenger.svg | 3 - .../static/assets/bootstrap-icons/meta.svg | 3 - .../assets/bootstrap-icons/mic-fill.svg | 4 - .../assets/bootstrap-icons/mic-mute-fill.svg | 4 - .../assets/bootstrap-icons/mic-mute.svg | 4 - .../static/assets/bootstrap-icons/mic.svg | 4 - .../bootstrap-icons/microsoft-teams.svg | 4 - .../assets/bootstrap-icons/microsoft.svg | 3 - .../bootstrap-icons/minecart-loaded.svg | 4 - .../assets/bootstrap-icons/minecart.svg | 3 - .../assets/bootstrap-icons/modem-fill.svg | 3 - .../static/assets/bootstrap-icons/modem.svg | 4 - .../assets/bootstrap-icons/moisture.svg | 3 - .../assets/bootstrap-icons/moon-fill.svg | 3 - .../bootstrap-icons/moon-stars-fill.svg | 4 - .../assets/bootstrap-icons/moon-stars.svg | 4 - .../static/assets/bootstrap-icons/moon.svg | 3 - .../bootstrap-icons/mortarboard-fill.svg | 4 - .../assets/bootstrap-icons/mortarboard.svg | 4 - .../bootstrap-icons/motherboard-fill.svg | 4 - .../assets/bootstrap-icons/motherboard.svg | 4 - .../assets/bootstrap-icons/mouse-fill.svg | 3 - .../static/assets/bootstrap-icons/mouse.svg | 3 - .../assets/bootstrap-icons/mouse2-fill.svg | 3 - .../static/assets/bootstrap-icons/mouse2.svg | 3 - .../assets/bootstrap-icons/mouse3-fill.svg | 3 - .../static/assets/bootstrap-icons/mouse3.svg | 3 - .../bootstrap-icons/music-note-beamed.svg | 5 - .../bootstrap-icons/music-note-list.svg | 6 - .../assets/bootstrap-icons/music-note.svg | 5 - .../bootstrap-icons/music-player-fill.svg | 4 - .../assets/bootstrap-icons/music-player.svg | 5 - .../assets/bootstrap-icons/newspaper.svg | 4 - .../bootstrap-icons/nintendo-switch.svg | 4 - .../bootstrap-icons/node-minus-fill.svg | 3 - .../assets/bootstrap-icons/node-minus.svg | 3 - .../assets/bootstrap-icons/node-plus-fill.svg | 3 - .../assets/bootstrap-icons/node-plus.svg | 3 - .../bootstrap-icons/noise-reduction.svg | 4 - .../assets/bootstrap-icons/nut-fill.svg | 3 - .../static/assets/bootstrap-icons/nut.svg | 4 - .../static/assets/bootstrap-icons/nvidia.svg | 3 - .../assets/bootstrap-icons/nvme-fill.svg | 4 - .../static/assets/bootstrap-icons/nvme.svg | 4 - .../assets/bootstrap-icons/octagon-fill.svg | 3 - .../assets/bootstrap-icons/octagon-half.svg | 3 - .../static/assets/bootstrap-icons/octagon.svg | 3 - .../assets/bootstrap-icons/opencollective.svg | 4 - .../bootstrap-icons/optical-audio-fill.svg | 4 - .../assets/bootstrap-icons/optical-audio.svg | 5 - .../static/assets/bootstrap-icons/option.svg | 3 - .../static/assets/bootstrap-icons/outlet.svg | 4 - .../assets/bootstrap-icons/p-circle-fill.svg | 3 - .../assets/bootstrap-icons/p-circle.svg | 3 - .../assets/bootstrap-icons/p-square-fill.svg | 4 - .../assets/bootstrap-icons/p-square.svg | 4 - .../assets/bootstrap-icons/paint-bucket.svg | 3 - .../assets/bootstrap-icons/palette-fill.svg | 3 - .../static/assets/bootstrap-icons/palette.svg | 4 - .../assets/bootstrap-icons/palette2.svg | 4 - .../assets/bootstrap-icons/paperclip.svg | 3 - .../assets/bootstrap-icons/paragraph.svg | 3 - .../assets/bootstrap-icons/pass-fill.svg | 3 - .../static/assets/bootstrap-icons/pass.svg | 4 - .../assets/bootstrap-icons/passport-fill.svg | 4 - .../assets/bootstrap-icons/passport.svg | 4 - .../bootstrap-icons/patch-check-fill.svg | 3 - .../assets/bootstrap-icons/patch-check.svg | 4 - .../patch-exclamation-fill.svg | 3 - .../bootstrap-icons/patch-exclamation.svg | 4 - .../bootstrap-icons/patch-minus-fill.svg | 3 - .../assets/bootstrap-icons/patch-minus.svg | 4 - .../bootstrap-icons/patch-plus-fill.svg | 3 - .../assets/bootstrap-icons/patch-plus.svg | 4 - .../bootstrap-icons/patch-question-fill.svg | 3 - .../assets/bootstrap-icons/patch-question.svg | 5 - .../assets/bootstrap-icons/pause-btn-fill.svg | 3 - .../assets/bootstrap-icons/pause-btn.svg | 4 - .../bootstrap-icons/pause-circle-fill.svg | 3 - .../assets/bootstrap-icons/pause-circle.svg | 4 - .../assets/bootstrap-icons/pause-fill.svg | 3 - .../static/assets/bootstrap-icons/pause.svg | 3 - .../static/assets/bootstrap-icons/paypal.svg | 3 - .../bootstrap-icons/pc-display-horizontal.svg | 3 - .../assets/bootstrap-icons/pc-display.svg | 3 - .../assets/bootstrap-icons/pc-horizontal.svg | 3 - .../static/assets/bootstrap-icons/pc.svg | 3 - .../bootstrap-icons/pci-card-network.svg | 5 - .../assets/bootstrap-icons/pci-card-sound.svg | 5 - .../assets/bootstrap-icons/pci-card.svg | 4 - .../assets/bootstrap-icons/peace-fill.svg | 3 - .../static/assets/bootstrap-icons/peace.svg | 3 - .../assets/bootstrap-icons/pen-fill.svg | 3 - .../static/assets/bootstrap-icons/pen.svg | 3 - .../assets/bootstrap-icons/pencil-fill.svg | 3 - .../assets/bootstrap-icons/pencil-square.svg | 4 - .../static/assets/bootstrap-icons/pencil.svg | 3 - .../assets/bootstrap-icons/pentagon-fill.svg | 3 - .../assets/bootstrap-icons/pentagon-half.svg | 3 - .../assets/bootstrap-icons/pentagon.svg | 3 - .../assets/bootstrap-icons/people-fill.svg | 3 - .../static/assets/bootstrap-icons/people.svg | 3 - .../static/assets/bootstrap-icons/percent.svg | 3 - .../assets/bootstrap-icons/person-add.svg | 4 - .../assets/bootstrap-icons/person-arms-up.svg | 4 - .../bootstrap-icons/person-badge-fill.svg | 3 - .../assets/bootstrap-icons/person-badge.svg | 4 - .../bootstrap-icons/person-bounding-box.svg | 4 - .../bootstrap-icons/person-check-fill.svg | 4 - .../assets/bootstrap-icons/person-check.svg | 4 - .../assets/bootstrap-icons/person-circle.svg | 4 - .../bootstrap-icons/person-dash-fill.svg | 4 - .../assets/bootstrap-icons/person-dash.svg | 4 - .../assets/bootstrap-icons/person-down.svg | 4 - .../bootstrap-icons/person-exclamation.svg | 4 - .../bootstrap-icons/person-fill-add.svg | 4 - .../bootstrap-icons/person-fill-check.svg | 4 - .../bootstrap-icons/person-fill-dash.svg | 4 - .../bootstrap-icons/person-fill-down.svg | 4 - .../person-fill-exclamation.svg | 4 - .../bootstrap-icons/person-fill-gear.svg | 3 - .../bootstrap-icons/person-fill-lock.svg | 3 - .../bootstrap-icons/person-fill-slash.svg | 3 - .../assets/bootstrap-icons/person-fill-up.svg | 4 - .../assets/bootstrap-icons/person-fill-x.svg | 4 - .../assets/bootstrap-icons/person-fill.svg | 3 - .../assets/bootstrap-icons/person-gear.svg | 3 - .../assets/bootstrap-icons/person-heart.svg | 3 - .../assets/bootstrap-icons/person-hearts.svg | 3 - .../bootstrap-icons/person-lines-fill.svg | 3 - .../assets/bootstrap-icons/person-lock.svg | 3 - .../bootstrap-icons/person-plus-fill.svg | 4 - .../assets/bootstrap-icons/person-plus.svg | 4 - .../bootstrap-icons/person-raised-hand.svg | 4 - .../assets/bootstrap-icons/person-rolodex.svg | 4 - .../assets/bootstrap-icons/person-slash.svg | 3 - .../assets/bootstrap-icons/person-square.svg | 4 - .../bootstrap-icons/person-standing-dress.svg | 3 - .../bootstrap-icons/person-standing.svg | 3 - .../assets/bootstrap-icons/person-up.svg | 4 - .../bootstrap-icons/person-vcard-fill.svg | 3 - .../assets/bootstrap-icons/person-vcard.svg | 4 - .../assets/bootstrap-icons/person-video.svg | 4 - .../assets/bootstrap-icons/person-video2.svg | 4 - .../assets/bootstrap-icons/person-video3.svg | 4 - .../assets/bootstrap-icons/person-walking.svg | 4 - .../bootstrap-icons/person-wheelchair.svg | 3 - .../bootstrap-icons/person-workspace.svg | 4 - .../assets/bootstrap-icons/person-x-fill.svg | 3 - .../assets/bootstrap-icons/person-x.svg | 4 - .../static/assets/bootstrap-icons/person.svg | 3 - .../assets/bootstrap-icons/phone-fill.svg | 3 - .../assets/bootstrap-icons/phone-flip.svg | 3 - .../bootstrap-icons/phone-landscape-fill.svg | 3 - .../bootstrap-icons/phone-landscape.svg | 4 - .../bootstrap-icons/phone-vibrate-fill.svg | 3 - .../assets/bootstrap-icons/phone-vibrate.svg | 4 - .../static/assets/bootstrap-icons/phone.svg | 4 - .../assets/bootstrap-icons/pie-chart-fill.svg | 3 - .../assets/bootstrap-icons/pie-chart.svg | 3 - .../bootstrap-icons/piggy-bank-fill.svg | 3 - .../assets/bootstrap-icons/piggy-bank.svg | 4 - .../assets/bootstrap-icons/pin-angle-fill.svg | 3 - .../assets/bootstrap-icons/pin-angle.svg | 3 - .../assets/bootstrap-icons/pin-fill.svg | 3 - .../assets/bootstrap-icons/pin-map-fill.svg | 4 - .../static/assets/bootstrap-icons/pin-map.svg | 4 - .../static/assets/bootstrap-icons/pin.svg | 3 - .../assets/bootstrap-icons/pinterest.svg | 3 - .../assets/bootstrap-icons/pip-fill.svg | 3 - .../static/assets/bootstrap-icons/pip.svg | 4 - .../assets/bootstrap-icons/play-btn-fill.svg | 3 - .../assets/bootstrap-icons/play-btn.svg | 4 - .../bootstrap-icons/play-circle-fill.svg | 3 - .../assets/bootstrap-icons/play-circle.svg | 4 - .../assets/bootstrap-icons/play-fill.svg | 3 - .../static/assets/bootstrap-icons/play.svg | 3 - .../assets/bootstrap-icons/playstation.svg | 3 - .../assets/bootstrap-icons/plug-fill.svg | 3 - .../static/assets/bootstrap-icons/plug.svg | 3 - .../static/assets/bootstrap-icons/plugin.svg | 3 - .../bootstrap-icons/plus-circle-dotted.svg | 3 - .../bootstrap-icons/plus-circle-fill.svg | 3 - .../assets/bootstrap-icons/plus-circle.svg | 4 - .../static/assets/bootstrap-icons/plus-lg.svg | 3 - .../bootstrap-icons/plus-slash-minus.svg | 3 - .../bootstrap-icons/plus-square-dotted.svg | 3 - .../bootstrap-icons/plus-square-fill.svg | 3 - .../assets/bootstrap-icons/plus-square.svg | 4 - .../static/assets/bootstrap-icons/plus.svg | 3 - .../assets/bootstrap-icons/postage-fill.svg | 4 - .../bootstrap-icons/postage-heart-fill.svg | 4 - .../assets/bootstrap-icons/postage-heart.svg | 4 - .../static/assets/bootstrap-icons/postage.svg | 4 - .../assets/bootstrap-icons/postcard-fill.svg | 4 - .../bootstrap-icons/postcard-heart-fill.svg | 3 - .../assets/bootstrap-icons/postcard-heart.svg | 4 - .../assets/bootstrap-icons/postcard.svg | 3 - .../static/assets/bootstrap-icons/power.svg | 4 - .../assets/bootstrap-icons/prescription.svg | 4 - .../assets/bootstrap-icons/prescription2.svg | 4 - .../assets/bootstrap-icons/printer-fill.svg | 4 - .../static/assets/bootstrap-icons/printer.svg | 4 - .../assets/bootstrap-icons/projector-fill.svg | 3 - .../assets/bootstrap-icons/projector.svg | 4 - .../assets/bootstrap-icons/puzzle-fill.svg | 3 - .../static/assets/bootstrap-icons/puzzle.svg | 3 - .../assets/bootstrap-icons/qr-code-scan.svg | 7 - .../static/assets/bootstrap-icons/qr-code.svg | 7 - .../bootstrap-icons/question-circle-fill.svg | 3 - .../bootstrap-icons/question-circle.svg | 4 - .../bootstrap-icons/question-diamond-fill.svg | 3 - .../bootstrap-icons/question-diamond.svg | 4 - .../assets/bootstrap-icons/question-lg.svg | 3 - .../bootstrap-icons/question-octagon-fill.svg | 3 - .../bootstrap-icons/question-octagon.svg | 4 - .../bootstrap-icons/question-square-fill.svg | 3 - .../bootstrap-icons/question-square.svg | 4 - .../assets/bootstrap-icons/question.svg | 3 - .../static/assets/bootstrap-icons/quora.svg | 3 - .../static/assets/bootstrap-icons/quote.svg | 3 - .../assets/bootstrap-icons/r-circle-fill.svg | 3 - .../assets/bootstrap-icons/r-circle.svg | 3 - .../assets/bootstrap-icons/r-square-fill.svg | 4 - .../assets/bootstrap-icons/r-square.svg | 4 - .../static/assets/bootstrap-icons/radar.svg | 3 - .../assets/bootstrap-icons/radioactive.svg | 4 - .../static/assets/bootstrap-icons/rainbow.svg | 3 - .../assets/bootstrap-icons/receipt-cutoff.svg | 4 - .../static/assets/bootstrap-icons/receipt.svg | 4 - .../assets/bootstrap-icons/reception-0.svg | 3 - .../assets/bootstrap-icons/reception-1.svg | 3 - .../assets/bootstrap-icons/reception-2.svg | 3 - .../assets/bootstrap-icons/reception-3.svg | 3 - .../assets/bootstrap-icons/reception-4.svg | 3 - .../bootstrap-icons/record-btn-fill.svg | 3 - .../assets/bootstrap-icons/record-btn.svg | 4 - .../bootstrap-icons/record-circle-fill.svg | 3 - .../assets/bootstrap-icons/record-circle.svg | 4 - .../assets/bootstrap-icons/record-fill.svg | 3 - .../static/assets/bootstrap-icons/record.svg | 3 - .../assets/bootstrap-icons/record2-fill.svg | 4 - .../static/assets/bootstrap-icons/record2.svg | 4 - .../static/assets/bootstrap-icons/recycle.svg | 3 - .../static/assets/bootstrap-icons/reddit.svg | 4 - .../static/assets/bootstrap-icons/regex.svg | 3 - .../assets/bootstrap-icons/repeat-1.svg | 4 - .../static/assets/bootstrap-icons/repeat.svg | 3 - .../assets/bootstrap-icons/reply-all-fill.svg | 4 - .../assets/bootstrap-icons/reply-all.svg | 4 - .../assets/bootstrap-icons/reply-fill.svg | 3 - .../static/assets/bootstrap-icons/reply.svg | 3 - .../bootstrap-icons/rewind-btn-fill.svg | 3 - .../assets/bootstrap-icons/rewind-btn.svg | 4 - .../bootstrap-icons/rewind-circle-fill.svg | 3 - .../assets/bootstrap-icons/rewind-circle.svg | 4 - .../assets/bootstrap-icons/rewind-fill.svg | 4 - .../static/assets/bootstrap-icons/rewind.svg | 4 - .../static/assets/bootstrap-icons/robot.svg | 4 - .../assets/bootstrap-icons/rocket-fill.svg | 4 - .../bootstrap-icons/rocket-takeoff-fill.svg | 4 - .../assets/bootstrap-icons/rocket-takeoff.svg | 5 - .../static/assets/bootstrap-icons/rocket.svg | 5 - .../assets/bootstrap-icons/router-fill.svg | 6 - .../static/assets/bootstrap-icons/router.svg | 6 - .../assets/bootstrap-icons/rss-fill.svg | 3 - .../static/assets/bootstrap-icons/rss.svg | 4 - .../static/assets/bootstrap-icons/rulers.svg | 3 - .../assets/bootstrap-icons/safe-fill.svg | 4 - .../static/assets/bootstrap-icons/safe.svg | 4 - .../assets/bootstrap-icons/safe2-fill.svg | 4 - .../static/assets/bootstrap-icons/safe2.svg | 4 - .../assets/bootstrap-icons/save-fill.svg | 3 - .../static/assets/bootstrap-icons/save.svg | 3 - .../assets/bootstrap-icons/save2-fill.svg | 3 - .../static/assets/bootstrap-icons/save2.svg | 3 - .../assets/bootstrap-icons/scissors.svg | 3 - .../static/assets/bootstrap-icons/scooter.svg | 3 - .../assets/bootstrap-icons/screwdriver.svg | 3 - .../assets/bootstrap-icons/sd-card-fill.svg | 3 - .../static/assets/bootstrap-icons/sd-card.svg | 4 - .../bootstrap-icons/search-heart-fill.svg | 3 - .../assets/bootstrap-icons/search-heart.svg | 4 - .../static/assets/bootstrap-icons/search.svg | 3 - .../assets/bootstrap-icons/segmented-nav.svg | 3 - .../bootstrap-icons/send-arrow-down-fill.svg | 4 - .../bootstrap-icons/send-arrow-down.svg | 4 - .../bootstrap-icons/send-arrow-up-fill.svg | 4 - .../assets/bootstrap-icons/send-arrow-up.svg | 4 - .../bootstrap-icons/send-check-fill.svg | 4 - .../assets/bootstrap-icons/send-check.svg | 4 - .../assets/bootstrap-icons/send-dash-fill.svg | 4 - .../assets/bootstrap-icons/send-dash.svg | 4 - .../bootstrap-icons/send-exclamation-fill.svg | 4 - .../bootstrap-icons/send-exclamation.svg | 4 - .../assets/bootstrap-icons/send-fill.svg | 3 - .../assets/bootstrap-icons/send-plus-fill.svg | 4 - .../assets/bootstrap-icons/send-plus.svg | 4 - .../bootstrap-icons/send-slash-fill.svg | 4 - .../assets/bootstrap-icons/send-slash.svg | 4 - .../assets/bootstrap-icons/send-x-fill.svg | 4 - .../static/assets/bootstrap-icons/send-x.svg | 4 - .../static/assets/bootstrap-icons/send.svg | 3 - .../static/assets/bootstrap-icons/server.svg | 5 - .../static/assets/bootstrap-icons/shadows.svg | 3 - .../assets/bootstrap-icons/share-fill.svg | 3 - .../static/assets/bootstrap-icons/share.svg | 3 - .../assets/bootstrap-icons/shield-check.svg | 4 - .../bootstrap-icons/shield-exclamation.svg | 4 - .../bootstrap-icons/shield-fill-check.svg | 3 - .../shield-fill-exclamation.svg | 3 - .../bootstrap-icons/shield-fill-minus.svg | 3 - .../bootstrap-icons/shield-fill-plus.svg | 3 - .../assets/bootstrap-icons/shield-fill-x.svg | 3 - .../assets/bootstrap-icons/shield-fill.svg | 3 - .../bootstrap-icons/shield-lock-fill.svg | 3 - .../assets/bootstrap-icons/shield-lock.svg | 4 - .../assets/bootstrap-icons/shield-minus.svg | 4 - .../assets/bootstrap-icons/shield-plus.svg | 4 - .../assets/bootstrap-icons/shield-shaded.svg | 3 - .../bootstrap-icons/shield-slash-fill.svg | 3 - .../assets/bootstrap-icons/shield-slash.svg | 3 - .../assets/bootstrap-icons/shield-x.svg | 4 - .../static/assets/bootstrap-icons/shield.svg | 3 - .../assets/bootstrap-icons/shift-fill.svg | 3 - .../static/assets/bootstrap-icons/shift.svg | 3 - .../assets/bootstrap-icons/shop-window.svg | 3 - .../static/assets/bootstrap-icons/shop.svg | 3 - .../static/assets/bootstrap-icons/shuffle.svg | 4 - .../bootstrap-icons/sign-dead-end-fill.svg | 4 - .../assets/bootstrap-icons/sign-dead-end.svg | 4 - .../sign-do-not-enter-fill.svg | 4 - .../bootstrap-icons/sign-do-not-enter.svg | 4 - .../sign-intersection-fill.svg | 3 - .../sign-intersection-side-fill.svg | 3 - .../sign-intersection-side.svg | 4 - .../sign-intersection-t-fill.svg | 3 - .../bootstrap-icons/sign-intersection-t.svg | 4 - .../sign-intersection-y-fill.svg | 3 - .../bootstrap-icons/sign-intersection-y.svg | 4 - .../bootstrap-icons/sign-intersection.svg | 4 - .../bootstrap-icons/sign-merge-left-fill.svg | 3 - .../bootstrap-icons/sign-merge-left.svg | 4 - .../bootstrap-icons/sign-merge-right-fill.svg | 3 - .../bootstrap-icons/sign-merge-right.svg | 4 - .../sign-no-left-turn-fill.svg | 4 - .../bootstrap-icons/sign-no-left-turn.svg | 3 - .../bootstrap-icons/sign-no-parking-fill.svg | 4 - .../bootstrap-icons/sign-no-parking.svg | 3 - .../sign-no-right-turn-fill.svg | 4 - .../bootstrap-icons/sign-no-right-turn.svg | 3 - .../bootstrap-icons/sign-railroad-fill.svg | 5 - .../assets/bootstrap-icons/sign-railroad.svg | 4 - .../assets/bootstrap-icons/sign-stop-fill.svg | 4 - .../bootstrap-icons/sign-stop-lights-fill.svg | 4 - .../bootstrap-icons/sign-stop-lights.svg | 4 - .../assets/bootstrap-icons/sign-stop.svg | 5 - .../bootstrap-icons/sign-turn-left-fill.svg | 3 - .../assets/bootstrap-icons/sign-turn-left.svg | 4 - .../bootstrap-icons/sign-turn-right-fill.svg | 3 - .../bootstrap-icons/sign-turn-right.svg | 4 - .../sign-turn-slight-left-fill.svg | 3 - .../bootstrap-icons/sign-turn-slight-left.svg | 4 - .../sign-turn-slight-right-fill.svg | 3 - .../sign-turn-slight-right.svg | 4 - .../bootstrap-icons/sign-yield-fill.svg | 4 - .../assets/bootstrap-icons/sign-yield.svg | 5 - .../static/assets/bootstrap-icons/signal.svg | 3 - .../bootstrap-icons/signpost-2-fill.svg | 3 - .../assets/bootstrap-icons/signpost-2.svg | 3 - .../assets/bootstrap-icons/signpost-fill.svg | 3 - .../bootstrap-icons/signpost-split-fill.svg | 3 - .../assets/bootstrap-icons/signpost-split.svg | 3 - .../assets/bootstrap-icons/signpost.svg | 3 - .../assets/bootstrap-icons/sim-fill.svg | 4 - .../assets/bootstrap-icons/sim-slash-fill.svg | 3 - .../assets/bootstrap-icons/sim-slash.svg | 3 - .../static/assets/bootstrap-icons/sim.svg | 4 - .../assets/bootstrap-icons/sina-weibo.svg | 4 - .../skip-backward-btn-fill.svg | 3 - .../bootstrap-icons/skip-backward-btn.svg | 4 - .../skip-backward-circle-fill.svg | 3 - .../bootstrap-icons/skip-backward-circle.svg | 4 - .../bootstrap-icons/skip-backward-fill.svg | 3 - .../assets/bootstrap-icons/skip-backward.svg | 3 - .../bootstrap-icons/skip-end-btn-fill.svg | 3 - .../assets/bootstrap-icons/skip-end-btn.svg | 4 - .../bootstrap-icons/skip-end-circle-fill.svg | 3 - .../bootstrap-icons/skip-end-circle.svg | 4 - .../assets/bootstrap-icons/skip-end-fill.svg | 3 - .../assets/bootstrap-icons/skip-end.svg | 3 - .../bootstrap-icons/skip-forward-btn-fill.svg | 3 - .../bootstrap-icons/skip-forward-btn.svg | 4 - .../skip-forward-circle-fill.svg | 3 - .../bootstrap-icons/skip-forward-circle.svg | 4 - .../bootstrap-icons/skip-forward-fill.svg | 3 - .../assets/bootstrap-icons/skip-forward.svg | 3 - .../bootstrap-icons/skip-start-btn-fill.svg | 3 - .../assets/bootstrap-icons/skip-start-btn.svg | 4 - .../skip-start-circle-fill.svg | 3 - .../bootstrap-icons/skip-start-circle.svg | 4 - .../bootstrap-icons/skip-start-fill.svg | 3 - .../assets/bootstrap-icons/skip-start.svg | 3 - .../static/assets/bootstrap-icons/skype.svg | 3 - .../static/assets/bootstrap-icons/slack.svg | 3 - .../bootstrap-icons/slash-circle-fill.svg | 3 - .../assets/bootstrap-icons/slash-circle.svg | 4 - .../assets/bootstrap-icons/slash-lg.svg | 3 - .../bootstrap-icons/slash-square-fill.svg | 3 - .../assets/bootstrap-icons/slash-square.svg | 4 - .../static/assets/bootstrap-icons/slash.svg | 3 - .../static/assets/bootstrap-icons/sliders.svg | 3 - .../bootstrap-icons/sliders2-vertical.svg | 3 - .../assets/bootstrap-icons/sliders2.svg | 3 - .../assets/bootstrap-icons/smartwatch.svg | 4 - .../assets/bootstrap-icons/snapchat.svg | 3 - .../static/assets/bootstrap-icons/snow.svg | 3 - .../static/assets/bootstrap-icons/snow2.svg | 3 - .../static/assets/bootstrap-icons/snow3.svg | 4 - .../bootstrap-icons/sort-alpha-down-alt.svg | 5 - .../bootstrap-icons/sort-alpha-down.svg | 4 - .../bootstrap-icons/sort-alpha-up-alt.svg | 5 - .../assets/bootstrap-icons/sort-alpha-up.svg | 4 - .../assets/bootstrap-icons/sort-down-alt.svg | 3 - .../assets/bootstrap-icons/sort-down.svg | 3 - .../bootstrap-icons/sort-numeric-down-alt.svg | 4 - .../bootstrap-icons/sort-numeric-down.svg | 5 - .../bootstrap-icons/sort-numeric-up-alt.svg | 4 - .../bootstrap-icons/sort-numeric-up.svg | 5 - .../assets/bootstrap-icons/sort-up-alt.svg | 3 - .../static/assets/bootstrap-icons/sort-up.svg | 3 - .../assets/bootstrap-icons/soundwave.svg | 3 - .../assets/bootstrap-icons/sourceforge.svg | 4 - .../assets/bootstrap-icons/speaker-fill.svg | 4 - .../static/assets/bootstrap-icons/speaker.svg | 4 - .../assets/bootstrap-icons/speedometer.svg | 4 - .../assets/bootstrap-icons/speedometer2.svg | 4 - .../assets/bootstrap-icons/spellcheck.svg | 4 - .../static/assets/bootstrap-icons/spotify.svg | 3 - .../assets/bootstrap-icons/square-fill.svg | 3 - .../assets/bootstrap-icons/square-half.svg | 3 - .../static/assets/bootstrap-icons/square.svg | 3 - .../assets/bootstrap-icons/stack-overflow.svg | 4 - .../static/assets/bootstrap-icons/stack.svg | 4 - .../assets/bootstrap-icons/star-fill.svg | 3 - .../assets/bootstrap-icons/star-half.svg | 3 - .../static/assets/bootstrap-icons/star.svg | 3 - .../static/assets/bootstrap-icons/stars.svg | 3 - .../static/assets/bootstrap-icons/steam.svg | 4 - .../assets/bootstrap-icons/stickies-fill.svg | 4 - .../assets/bootstrap-icons/stickies.svg | 4 - .../assets/bootstrap-icons/sticky-fill.svg | 3 - .../static/assets/bootstrap-icons/sticky.svg | 3 - .../assets/bootstrap-icons/stop-btn-fill.svg | 3 - .../assets/bootstrap-icons/stop-btn.svg | 4 - .../bootstrap-icons/stop-circle-fill.svg | 3 - .../assets/bootstrap-icons/stop-circle.svg | 4 - .../assets/bootstrap-icons/stop-fill.svg | 3 - .../static/assets/bootstrap-icons/stop.svg | 3 - .../bootstrap-icons/stoplights-fill.svg | 3 - .../assets/bootstrap-icons/stoplights.svg | 4 - .../assets/bootstrap-icons/stopwatch-fill.svg | 3 - .../assets/bootstrap-icons/stopwatch.svg | 4 - .../static/assets/bootstrap-icons/strava.svg | 3 - .../static/assets/bootstrap-icons/stripe.svg | 3 - .../assets/bootstrap-icons/subscript.svg | 3 - .../assets/bootstrap-icons/substack.svg | 3 - .../assets/bootstrap-icons/subtract.svg | 3 - .../assets/bootstrap-icons/suit-club-fill.svg | 3 - .../assets/bootstrap-icons/suit-club.svg | 3 - .../bootstrap-icons/suit-diamond-fill.svg | 3 - .../assets/bootstrap-icons/suit-diamond.svg | 3 - .../bootstrap-icons/suit-heart-fill.svg | 3 - .../assets/bootstrap-icons/suit-heart.svg | 3 - .../bootstrap-icons/suit-spade-fill.svg | 3 - .../assets/bootstrap-icons/suit-spade.svg | 3 - .../assets/bootstrap-icons/suitcase-fill.svg | 3 - .../bootstrap-icons/suitcase-lg-fill.svg | 3 - .../assets/bootstrap-icons/suitcase-lg.svg | 3 - .../assets/bootstrap-icons/suitcase.svg | 4 - .../assets/bootstrap-icons/suitcase2-fill.svg | 3 - .../assets/bootstrap-icons/suitcase2.svg | 3 - .../assets/bootstrap-icons/sun-fill.svg | 3 - .../static/assets/bootstrap-icons/sun.svg | 3 - .../assets/bootstrap-icons/sunglasses.svg | 3 - .../assets/bootstrap-icons/sunrise-fill.svg | 3 - .../static/assets/bootstrap-icons/sunrise.svg | 3 - .../assets/bootstrap-icons/sunset-fill.svg | 3 - .../static/assets/bootstrap-icons/sunset.svg | 3 - .../assets/bootstrap-icons/superscript.svg | 3 - .../bootstrap-icons/symmetry-horizontal.svg | 3 - .../bootstrap-icons/symmetry-vertical.svg | 3 - .../static/assets/bootstrap-icons/table.svg | 3 - .../assets/bootstrap-icons/tablet-fill.svg | 3 - .../bootstrap-icons/tablet-landscape-fill.svg | 3 - .../bootstrap-icons/tablet-landscape.svg | 4 - .../static/assets/bootstrap-icons/tablet.svg | 4 - .../assets/bootstrap-icons/tag-fill.svg | 3 - .../static/assets/bootstrap-icons/tag.svg | 4 - .../assets/bootstrap-icons/tags-fill.svg | 4 - .../static/assets/bootstrap-icons/tags.svg | 4 - .../bootstrap-icons/taxi-front-fill.svg | 3 - .../assets/bootstrap-icons/taxi-front.svg | 4 - .../assets/bootstrap-icons/telegram.svg | 3 - .../assets/bootstrap-icons/telephone-fill.svg | 3 - .../telephone-forward-fill.svg | 3 - .../bootstrap-icons/telephone-forward.svg | 3 - .../telephone-inbound-fill.svg | 3 - .../bootstrap-icons/telephone-inbound.svg | 3 - .../bootstrap-icons/telephone-minus-fill.svg | 3 - .../bootstrap-icons/telephone-minus.svg | 4 - .../telephone-outbound-fill.svg | 3 - .../bootstrap-icons/telephone-outbound.svg | 3 - .../bootstrap-icons/telephone-plus-fill.svg | 3 - .../assets/bootstrap-icons/telephone-plus.svg | 4 - .../bootstrap-icons/telephone-x-fill.svg | 3 - .../assets/bootstrap-icons/telephone-x.svg | 4 - .../assets/bootstrap-icons/telephone.svg | 3 - .../assets/bootstrap-icons/tencent-qq.svg | 4 - .../assets/bootstrap-icons/terminal-dash.svg | 4 - .../assets/bootstrap-icons/terminal-fill.svg | 3 - .../assets/bootstrap-icons/terminal-plus.svg | 4 - .../assets/bootstrap-icons/terminal-split.svg | 4 - .../assets/bootstrap-icons/terminal-x.svg | 4 - .../assets/bootstrap-icons/terminal.svg | 4 - .../assets/bootstrap-icons/text-center.svg | 3 - .../bootstrap-icons/text-indent-left.svg | 3 - .../bootstrap-icons/text-indent-right.svg | 3 - .../assets/bootstrap-icons/text-left.svg | 3 - .../assets/bootstrap-icons/text-paragraph.svg | 3 - .../assets/bootstrap-icons/text-right.svg | 3 - .../assets/bootstrap-icons/text-wrap.svg | 3 - .../bootstrap-icons/textarea-resize.svg | 3 - .../assets/bootstrap-icons/textarea-t.svg | 4 - .../assets/bootstrap-icons/textarea.svg | 3 - .../bootstrap-icons/thermometer-half.svg | 4 - .../bootstrap-icons/thermometer-high.svg | 4 - .../bootstrap-icons/thermometer-low.svg | 4 - .../bootstrap-icons/thermometer-snow.svg | 4 - .../bootstrap-icons/thermometer-sun.svg | 4 - .../assets/bootstrap-icons/thermometer.svg | 4 - .../assets/bootstrap-icons/threads-fill.svg | 4 - .../static/assets/bootstrap-icons/threads.svg | 3 - .../bootstrap-icons/three-dots-vertical.svg | 3 - .../assets/bootstrap-icons/three-dots.svg | 3 - .../bootstrap-icons/thunderbolt-fill.svg | 3 - .../assets/bootstrap-icons/thunderbolt.svg | 4 - .../bootstrap-icons/ticket-detailed-fill.svg | 3 - .../bootstrap-icons/ticket-detailed.svg | 4 - .../assets/bootstrap-icons/ticket-fill.svg | 3 - .../ticket-perforated-fill.svg | 3 - .../bootstrap-icons/ticket-perforated.svg | 4 - .../static/assets/bootstrap-icons/ticket.svg | 3 - .../static/assets/bootstrap-icons/tiktok.svg | 3 - .../assets/bootstrap-icons/toggle-off.svg | 3 - .../assets/bootstrap-icons/toggle-on.svg | 3 - .../assets/bootstrap-icons/toggle2-off.svg | 4 - .../assets/bootstrap-icons/toggle2-on.svg | 4 - .../static/assets/bootstrap-icons/toggles.svg | 3 - .../assets/bootstrap-icons/toggles2.svg | 5 - .../static/assets/bootstrap-icons/tools.svg | 3 - .../static/assets/bootstrap-icons/tornado.svg | 3 - .../train-freight-front-fill.svg | 3 - .../bootstrap-icons/train-freight-front.svg | 3 - .../bootstrap-icons/train-front-fill.svg | 3 - .../assets/bootstrap-icons/train-front.svg | 3 - .../train-lightrail-front-fill.svg | 3 - .../bootstrap-icons/train-lightrail-front.svg | 3 - .../assets/bootstrap-icons/translate.svg | 4 - .../assets/bootstrap-icons/transparency.svg | 3 - .../assets/bootstrap-icons/trash-fill.svg | 3 - .../static/assets/bootstrap-icons/trash.svg | 4 - .../assets/bootstrap-icons/trash2-fill.svg | 3 - .../static/assets/bootstrap-icons/trash2.svg | 3 - .../assets/bootstrap-icons/trash3-fill.svg | 3 - .../static/assets/bootstrap-icons/trash3.svg | 3 - .../assets/bootstrap-icons/tree-fill.svg | 3 - .../static/assets/bootstrap-icons/tree.svg | 3 - .../static/assets/bootstrap-icons/trello.svg | 3 - .../assets/bootstrap-icons/triangle-fill.svg | 3 - .../assets/bootstrap-icons/triangle-half.svg | 3 - .../assets/bootstrap-icons/triangle.svg | 3 - .../assets/bootstrap-icons/trophy-fill.svg | 3 - .../static/assets/bootstrap-icons/trophy.svg | 3 - .../assets/bootstrap-icons/tropical-storm.svg | 4 - .../assets/bootstrap-icons/truck-flatbed.svg | 3 - .../bootstrap-icons/truck-front-fill.svg | 3 - .../assets/bootstrap-icons/truck-front.svg | 4 - .../static/assets/bootstrap-icons/truck.svg | 3 - .../static/assets/bootstrap-icons/tsunami.svg | 3 - .../static/assets/bootstrap-icons/tv-fill.svg | 3 - .../static/assets/bootstrap-icons/tv.svg | 3 - .../static/assets/bootstrap-icons/twitch.svg | 4 - .../assets/bootstrap-icons/twitter-x.svg | 3 - .../static/assets/bootstrap-icons/twitter.svg | 3 - .../assets/bootstrap-icons/type-bold.svg | 3 - .../static/assets/bootstrap-icons/type-h1.svg | 3 - .../static/assets/bootstrap-icons/type-h2.svg | 3 - .../static/assets/bootstrap-icons/type-h3.svg | 3 - .../static/assets/bootstrap-icons/type-h4.svg | 3 - .../static/assets/bootstrap-icons/type-h5.svg | 3 - .../static/assets/bootstrap-icons/type-h6.svg | 3 - .../assets/bootstrap-icons/type-italic.svg | 3 - .../bootstrap-icons/type-strikethrough.svg | 3 - .../assets/bootstrap-icons/type-underline.svg | 3 - .../static/assets/bootstrap-icons/type.svg | 3 - .../static/assets/bootstrap-icons/ubuntu.svg | 3 - .../assets/bootstrap-icons/ui-checks-grid.svg | 3 - .../assets/bootstrap-icons/ui-checks.svg | 3 - .../assets/bootstrap-icons/ui-radios-grid.svg | 3 - .../assets/bootstrap-icons/ui-radios.svg | 3 - .../assets/bootstrap-icons/umbrella-fill.svg | 3 - .../assets/bootstrap-icons/umbrella.svg | 3 - .../assets/bootstrap-icons/unindent.svg | 4 - .../static/assets/bootstrap-icons/union.svg | 3 - .../static/assets/bootstrap-icons/unity.svg | 3 - .../universal-access-circle.svg | 4 - .../bootstrap-icons/universal-access.svg | 3 - .../assets/bootstrap-icons/unlock-fill.svg | 3 - .../static/assets/bootstrap-icons/unlock.svg | 3 - .../assets/bootstrap-icons/upc-scan.svg | 3 - .../static/assets/bootstrap-icons/upc.svg | 3 - .../static/assets/bootstrap-icons/upload.svg | 4 - .../assets/bootstrap-icons/usb-c-fill.svg | 3 - .../static/assets/bootstrap-icons/usb-c.svg | 4 - .../assets/bootstrap-icons/usb-drive-fill.svg | 3 - .../assets/bootstrap-icons/usb-drive.svg | 3 - .../assets/bootstrap-icons/usb-fill.svg | 3 - .../assets/bootstrap-icons/usb-micro-fill.svg | 3 - .../assets/bootstrap-icons/usb-micro.svg | 4 - .../assets/bootstrap-icons/usb-mini-fill.svg | 3 - .../assets/bootstrap-icons/usb-mini.svg | 4 - .../assets/bootstrap-icons/usb-plug-fill.svg | 3 - .../assets/bootstrap-icons/usb-plug.svg | 3 - .../assets/bootstrap-icons/usb-symbol.svg | 3 - .../static/assets/bootstrap-icons/usb.svg | 4 - .../assets/bootstrap-icons/valentine.svg | 4 - .../assets/bootstrap-icons/valentine2.svg | 4 - .../assets/bootstrap-icons/vector-pen.svg | 4 - .../assets/bootstrap-icons/view-list.svg | 3 - .../assets/bootstrap-icons/view-stacked.svg | 3 - .../assets/bootstrap-icons/vignette.svg | 4 - .../static/assets/bootstrap-icons/vimeo.svg | 3 - .../assets/bootstrap-icons/vinyl-fill.svg | 4 - .../static/assets/bootstrap-icons/vinyl.svg | 5 - .../static/assets/bootstrap-icons/virus.svg | 3 - .../static/assets/bootstrap-icons/virus2.svg | 3 - .../assets/bootstrap-icons/voicemail.svg | 3 - .../bootstrap-icons/volume-down-fill.svg | 3 - .../assets/bootstrap-icons/volume-down.svg | 3 - .../bootstrap-icons/volume-mute-fill.svg | 3 - .../assets/bootstrap-icons/volume-mute.svg | 3 - .../bootstrap-icons/volume-off-fill.svg | 3 - .../assets/bootstrap-icons/volume-off.svg | 3 - .../assets/bootstrap-icons/volume-up-fill.svg | 5 - .../assets/bootstrap-icons/volume-up.svg | 5 - .../static/assets/bootstrap-icons/vr.svg | 3 - .../assets/bootstrap-icons/wallet-fill.svg | 4 - .../static/assets/bootstrap-icons/wallet.svg | 3 - .../static/assets/bootstrap-icons/wallet2.svg | 3 - .../static/assets/bootstrap-icons/watch.svg | 4 - .../static/assets/bootstrap-icons/water.svg | 3 - .../assets/bootstrap-icons/webcam-fill.svg | 4 - .../static/assets/bootstrap-icons/webcam.svg | 4 - .../static/assets/bootstrap-icons/wechat.svg | 4 - .../assets/bootstrap-icons/whatsapp.svg | 3 - .../static/assets/bootstrap-icons/wifi-1.svg | 3 - .../static/assets/bootstrap-icons/wifi-2.svg | 3 - .../assets/bootstrap-icons/wifi-off.svg | 3 - .../static/assets/bootstrap-icons/wifi.svg | 4 - .../assets/bootstrap-icons/wikipedia.svg | 3 - .../static/assets/bootstrap-icons/wind.svg | 3 - .../assets/bootstrap-icons/window-dash.svg | 5 - .../assets/bootstrap-icons/window-desktop.svg | 4 - .../assets/bootstrap-icons/window-dock.svg | 4 - .../bootstrap-icons/window-fullscreen.svg | 4 - .../assets/bootstrap-icons/window-plus.svg | 5 - .../assets/bootstrap-icons/window-sidebar.svg | 4 - .../assets/bootstrap-icons/window-split.svg | 4 - .../assets/bootstrap-icons/window-stack.svg | 4 - .../assets/bootstrap-icons/window-x.svg | 5 - .../static/assets/bootstrap-icons/window.svg | 4 - .../static/assets/bootstrap-icons/windows.svg | 3 - .../assets/bootstrap-icons/wordpress.svg | 5 - .../wrench-adjustable-circle-fill.svg | 4 - .../wrench-adjustable-circle.svg | 4 - .../bootstrap-icons/wrench-adjustable.svg | 4 - .../static/assets/bootstrap-icons/wrench.svg | 3 - .../assets/bootstrap-icons/x-circle-fill.svg | 3 - .../assets/bootstrap-icons/x-circle.svg | 4 - .../assets/bootstrap-icons/x-diamond-fill.svg | 3 - .../assets/bootstrap-icons/x-diamond.svg | 3 - .../static/assets/bootstrap-icons/x-lg.svg | 3 - .../assets/bootstrap-icons/x-octagon-fill.svg | 3 - .../assets/bootstrap-icons/x-octagon.svg | 4 - .../assets/bootstrap-icons/x-square-fill.svg | 3 - .../assets/bootstrap-icons/x-square.svg | 4 - .../static/assets/bootstrap-icons/x.svg | 3 - .../static/assets/bootstrap-icons/xbox.svg | 3 - .../static/assets/bootstrap-icons/yelp.svg | 3 - .../assets/bootstrap-icons/yin-yang.svg | 4 - .../static/assets/bootstrap-icons/youtube.svg | 3 - .../static/assets/bootstrap-icons/zoom-in.svg | 5 - .../assets/bootstrap-icons/zoom-out.svg | 5 - .../resources/static/img/flags/france.png | Bin 0 -> 9361 bytes src/main/resources/static/img/flags/uk.png | Bin 0 -> 20739 bytes src/main/resources/templates/accueil.html | 2 +- src/main/resources/templates/modele-page.html | 11 +- 2066 files changed, 23 insertions(+), 13360 deletions(-) rename src/main/resources/{static/messages => i18n}/messages_en.properties (100%) rename src/main/resources/{static/messages => i18n}/messages_fr.properties (100%) delete mode 100644 src/main/resources/static/assets/bootstrap-icons/0-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/0-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/0-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/0-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/1-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/1-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/1-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/1-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/123.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/2-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/2-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/2-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/2-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/3-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/3-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/3-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/3-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/4-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/4-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/4-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/4-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/5-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/5-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/5-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/5-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/6-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/6-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/6-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/6-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/7-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/7-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/7-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/7-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/8-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/8-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/8-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/8-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/9-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/9-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/9-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/9-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/activity.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/airplane-engines-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/airplane-engines.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/airplane-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/airplane.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/alarm-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/alarm.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/alexa.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/align-bottom.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/align-center.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/align-end.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/align-middle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/align-start.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/align-top.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/alipay.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/alphabet-uppercase.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/alphabet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/amazon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/amd.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/android.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/android2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/app-indicator.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/app.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/apple.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/archive-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/archive.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-90deg-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-90deg-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-90deg-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-90deg-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-bar-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-bar-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-bar-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-bar-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-clockwise.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-counterclockwise.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-short.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-left-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-left-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-left-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-left-short.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-left-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-left-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-repeat.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-return-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-return-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-right-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-right-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-right-short.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-right-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-right-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-through-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-through-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-short.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-angle-contract.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-angle-expand.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-collapse-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-collapse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-expand-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-expand.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-fullscreen.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-move.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/arrows.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/aspect-ratio-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/aspect-ratio.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/asterisk.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/at.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/award-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/award.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/back.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack4-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backpack4.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backspace-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backspace-reverse-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backspace-reverse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/backspace.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-3d-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-3d.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-4k-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-4k.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-8k-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-8k.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-ad-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-ad.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-ar-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-ar.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-cc-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-cc.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-hd-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-hd.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-sd-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-sd.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-tm-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-tm.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-vo-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-vo.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-vr-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-vr.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-wc-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/badge-wc.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-dash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bag.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/balloon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/balloon-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/balloon-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/balloon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ban-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ban.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bandaid-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bandaid.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bank.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bank2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bar-chart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bar-chart-line-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bar-chart-line.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bar-chart-steps.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bar-chart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/basket-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/basket.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/basket2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/basket2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/basket3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/basket3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/battery-charging.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/battery-full.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/battery-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/battery.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/behance.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bell-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bell-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bell-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bell.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bezier.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bezier2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bicycle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bing.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/binoculars-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/binoculars.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/blockquote-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/blockquote-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bluetooth.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/body-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/book-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/book-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/book.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-dash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-star-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-star.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmark.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmarks-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookmarks.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bookshelf.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/boombox-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/boombox.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.css delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.json delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.min.css delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.scss delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap-reboot.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bootstrap.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-all.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-bottom.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-center.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-inner.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-middle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-outer.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-style.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-top.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border-width.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/border.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bounding-box-circles.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bounding-box.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-down-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-down-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-up-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-up-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-seam-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box-seam.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box2-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box2-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/box2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/boxes.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/braces-asterisk.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/braces.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bricks.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/briefcase-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/briefcase.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-alt-high-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-alt-high.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-alt-low-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-alt-low.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-high-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-high.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-low-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brightness-low.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brilliance.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/broadcast-pin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/broadcast.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/browser-chrome.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/browser-edge.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/browser-firefox.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/browser-safari.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brush-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/brush.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bucket-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bucket.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bug-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bug.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-add.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-add.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/building.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/buildings-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/buildings.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bullseye.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bus-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/bus-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/c-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/c-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/c-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/c-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cake-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cake.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cake2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cake2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calculator-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calculator.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-date-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-date.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-day-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-day.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-event-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-event.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-month-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-month.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-range-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-range.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-week-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-week.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-date-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-date.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-day-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-day.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-event-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-event.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-month-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-month.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-range-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-range.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-week-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-week.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3-event-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3-event.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3-range-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3-range.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3-week-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3-week.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar4-event.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar4-range.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar4-week.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/calendar4.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera-reels-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera-reels.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera-video-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera-video-off-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera-video-off.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera-video.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/camera2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/capslock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/capslock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/capsule-pill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/capsule.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/car-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/car-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/card-checklist.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/card-heading.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/card-image.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/card-list.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/card-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-down-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-down-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-left-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-left-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-left-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-right-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-right-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-right-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-up-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-up-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/caret-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-dash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cart4.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cash-coin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cash-stack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cassette-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cassette.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cast.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cc-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cc-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cc-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cc-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-dots-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-dots.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-dots-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-dots.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-quote-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-quote.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-text-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-quote-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-quote.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-dots-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-dots.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-quote-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-quote.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-text-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-dots-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-dots.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-quote-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-quote.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-text-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-text-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chat.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check-all.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check2-all.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check2-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check2-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/check2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-bar-contract.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-bar-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-bar-expand.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-bar-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-bar-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-bar-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-compact-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-compact-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-compact-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-compact-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-contract.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-double-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-double-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-double-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-double-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-expand.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/chevron-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/circle-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/circle-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-data-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-data.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-pulse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-data-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-data.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clipboard2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clock-history.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-download-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-download.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-drizzle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-drizzle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-fog-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-fog.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-fog2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-fog2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-hail-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-hail.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-haze-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-haze.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-haze2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-haze2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-lightning-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-lightning.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-moon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-moon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-rain-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-rain.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-sleet-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-sleet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-snow-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-snow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-sun-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-sun.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-upload-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud-upload.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloud.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clouds-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/clouds.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloudy-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cloudy.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/code-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/code-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/code.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/coin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/collection-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/collection-play-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/collection-play.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/collection.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/columns-gap.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/columns.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/command.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/compass-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/compass.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cone-striped.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cone.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/controller.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cookie.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/copy.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cpu-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cpu.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/credit-card-2-back-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/credit-card-2-back.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/credit-card-2-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/credit-card-2-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/credit-card-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/credit-card.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/crop.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/crosshair.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/crosshair2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cup-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cup-hot-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cup-hot.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cup-straw.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cup.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/currency-bitcoin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/currency-dollar.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/currency-euro.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/currency-exchange.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/currency-pound.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/currency-rupee.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/currency-yen.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cursor-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cursor-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/cursor.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash-circle-dotted.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash-square-dotted.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-add.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-add.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/database.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/device-hdd-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/device-hdd.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/device-ssd-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/device-ssd.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/diagram-2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/diagram-2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/diagram-3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/diagram-3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/diamond-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/diamond-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/diamond.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-1-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-1.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-4-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-4.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-5-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-5.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-6-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dice-6.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/disc-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/disc.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/discord.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/display-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/display.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/displayport-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/displayport.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/distribute-horizontal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/distribute-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/door-closed-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/door-closed.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/door-open-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/door-open.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dot.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/download.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dpad-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dpad.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dribbble.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/dropbox.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/droplet-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/droplet-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/droplet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/duffle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/duffle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ear-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/earbuds.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/easel-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/easel.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/easel2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/easel2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/easel3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/easel3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/egg-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/egg-fried.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/egg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eject-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eject.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-angry-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-angry.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-astonished-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-astonished.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-dizzy-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-dizzy.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-expressionless-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-expressionless.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-frown-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-frown.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-grimace-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-grimace.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-grin-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-grin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-kiss-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-kiss.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-laughing-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-laughing.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-neutral-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-neutral.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-smile-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-smile.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-surprise-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-surprise.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-tear-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-tear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-wink-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/emoji-wink.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-at-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-at.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-dash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-exclamation-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-open-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-open-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-open-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-open.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-paper-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-paper.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/envelope.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eraser-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eraser.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/escape.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ethernet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ev-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ev-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ev-station-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ev-station.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-diamond-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-diamond.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-octagon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-octagon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-triangle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation-triangle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exclude.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/explicit-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/explicit.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/exposure.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eye-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eye-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eye-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eye.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eyedropper.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/eyeglasses.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/facebook.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fan.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fast-forward-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fast-forward-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fast-forward-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fast-forward-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fast-forward-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fast-forward.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/feather.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/feather2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-arrow-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-arrow-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-bar-graph-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-bar-graph.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-binary-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-binary.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-break-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-break.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-code-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-code.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-diff-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-diff.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-binary-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-binary.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-break-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-break.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-code-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-code.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-diff-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-diff.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-easel-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-easel.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-excel-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-excel.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-font-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-font.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-image-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-image.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-lock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-medical-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-medical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-music-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-music.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-person-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-person.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-play-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-play.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-post-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-post.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-slides-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-slides.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-text-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-word-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-word.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-zip-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark-zip.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-earmark.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-easel-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-easel.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-excel-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-excel.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-font-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-font.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-image-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-image.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-lock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-lock2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-lock2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-medical-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-medical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-music-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-music.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-pdf-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-pdf.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-person-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-person.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-play-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-play.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-post-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-post.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-ppt-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-ppt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-richtext-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-richtext.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-ruled-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-ruled.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-slides-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-slides.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-spreadsheet-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-spreadsheet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-text-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-word-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-word.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-zip-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file-zip.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/file.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/files-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/files.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-aac.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-ai.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-bmp.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-cs.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-css.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-csv.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-doc.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-docx.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-exe.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-gif.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-heic.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-html.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-java.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-jpg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-js.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-json.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-jsx.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-key.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-m4p.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-md.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-mdx.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-mov.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-mp3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-mp4.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-otf.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-pdf.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-php.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-png.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-ppt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-pptx.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-psd.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-py.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-raw.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-rb.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-sass.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-scss.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-sh.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-sql.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-svg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-tiff.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-tsx.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-ttf.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-txt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-wav.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-woff.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-xls.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-xlsx.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-xml.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filetype-yml.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/film.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filter-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filter-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filter-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filter-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filter-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filter-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/filter.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fingerprint.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fire.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/flag-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/flag.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/floppy-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/floppy.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/floppy2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/floppy2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/flower1.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/flower2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/flower3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder-symlink-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder-symlink.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder2-open.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/folder2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fonts.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fonts/bootstrap-icons.woff delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fonts/bootstrap-icons.woff2 delete mode 100644 src/main/resources/static/assets/bootstrap-icons/forward-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/forward.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fuel-pump-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fuel-pump.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fullscreen-exit.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/fullscreen.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/funnel-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/funnel.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gear-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gear-wide-connected.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gear-wide.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gem.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gender-ambiguous.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gender-female.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gender-male.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gender-neuter.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gender-trans.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/geo-alt-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/geo-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/geo-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/geo.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gift-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gift.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/git.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/github.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gitlab.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/globe-americas.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/globe-asia-australia.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/globe-central-south-asia.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/globe-europe-africa.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/globe.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/globe2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/google-play.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/google.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/gpu-card.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/graph-down-arrow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/graph-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/graph-up-arrow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/graph-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-1x2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-1x2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-3x2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-3x3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grid.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grip-horizontal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/grip-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/h-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/h-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/h-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/h-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hammer.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-index-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-index-thumb-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-index-thumb.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-index.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/handbag-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/handbag.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd-network-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd-network.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd-rack-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd-rack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd-stack-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd-stack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdd.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdmi-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hdmi.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/headphones.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/headset-vr.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/headset.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heart-arrow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heart-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heart-pulse-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heart-pulse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heartbreak-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heartbreak.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hearts.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heptagon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heptagon-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/heptagon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hexagon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hexagon-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hexagon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/highlighter.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/highlights.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hospital-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hospital.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hourglass-bottom.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hourglass-split.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hourglass-top.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hourglass.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-add-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-add.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-dash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-door-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-door.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-exclamation-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-gear-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-lock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/house.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/houses-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/houses.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hr.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hurricane.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/hypnotize.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/image-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/image-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/image.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/images.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/inbox-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/inbox.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/inboxes-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/inboxes.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/incognito.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/indent.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/infinity.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/info-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/info-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/info-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/info-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/info-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/info.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/input-cursor-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/input-cursor.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/instagram.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/intersect.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-album.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-bookmark-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-bookmark.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-code.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-medical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-richtext.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-text.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/journals.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/joystick.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/justify-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/justify-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/justify.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/kanban-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/kanban.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/key-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/key.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/keyboard-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/keyboard.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ladder.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lamp-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lamp.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/laptop-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/laptop.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layer-backward.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layer-forward.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layers-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layers-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layers.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset-reverse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-sidebar-reverse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-sidebar.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-split.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar-reverse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-text-window-reverse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-text-window.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-three-columns.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/layout-wtf.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/life-preserver.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightbulb-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightbulb-off-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightbulb-off.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightbulb.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightning-charge-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightning-charge.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightning-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lightning.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/line.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/link-45deg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/link.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/linkedin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-columns-reverse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-columns.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-nested.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-ol.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-stars.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-task.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list-ul.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/list.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/luggage-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/luggage.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lungs-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/lungs.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/magic.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/magnet-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/magnet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mailbox-flag.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mailbox.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mailbox2-flag.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mailbox2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/map-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/map.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/markdown-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/markdown.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/marker-tip.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mask.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mastodon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/medium.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/megaphone-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/megaphone.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/memory.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-app-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-app.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-button-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-button-wide-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-button-wide.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-button.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/menu-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/messenger.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/meta.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mic-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mic-mute-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mic-mute.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mic.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/microsoft-teams.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/microsoft.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/minecart-loaded.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/minecart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/modem-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/modem.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/moisture.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/moon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/moon-stars-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/moon-stars.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/moon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mortarboard-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mortarboard.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/motherboard-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/motherboard.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mouse-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mouse.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mouse2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mouse2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mouse3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/mouse3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/music-note-beamed.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/music-note-list.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/music-note.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/music-player-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/music-player.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/newspaper.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/nintendo-switch.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/node-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/node-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/node-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/node-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/noise-reduction.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/nut-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/nut.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/nvidia.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/nvme-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/nvme.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/octagon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/octagon-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/octagon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/opencollective.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/optical-audio-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/optical-audio.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/option.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/outlet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/p-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/p-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/p-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/p-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/paint-bucket.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/palette-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/palette.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/palette2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/paperclip.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/paragraph.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pass-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pass.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/passport-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/passport.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-exclamation-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-question-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/patch-question.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pause-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pause-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pause-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pause-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pause-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pause.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/paypal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pc-display-horizontal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pc-display.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pc-horizontal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pc.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pci-card-network.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pci-card-sound.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pci-card.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/peace-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/peace.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pen-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pen.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pencil-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pencil-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pencil.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pentagon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pentagon-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pentagon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/people-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/people.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/percent.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-add.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-arms-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-badge-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-badge.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-bounding-box.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-dash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-add.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-gear.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-hearts.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-lines-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-raised-hand.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-rolodex.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-standing-dress.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-standing.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-vcard-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-vcard.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-video.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-video2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-video3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-walking.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-wheelchair.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-workspace.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/person.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/phone-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/phone-flip.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/phone-landscape-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/phone-landscape.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/phone-vibrate-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/phone-vibrate.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/phone.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pie-chart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pie-chart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/piggy-bank-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/piggy-bank.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pin-angle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pin-angle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pin-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pin-map-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pin-map.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pinterest.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pip-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/pip.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/play-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/play-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/play-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/play-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/play-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/play.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/playstation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plug-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plug.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plugin.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-circle-dotted.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-slash-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-square-dotted.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postage-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postage-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postage-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postage.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postcard-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postcard-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postcard-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/postcard.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/power.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/prescription.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/prescription2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/printer-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/printer.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/projector-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/projector.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/puzzle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/puzzle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/qr-code-scan.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/qr-code.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-diamond-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-diamond.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-octagon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-octagon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/question.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/quora.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/quote.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/r-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/r-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/r-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/r-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/radar.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/radioactive.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rainbow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/receipt-cutoff.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/receipt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reception-0.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reception-1.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reception-2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reception-3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reception-4.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/record2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/recycle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reddit.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/regex.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/repeat-1.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/repeat.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reply-all-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reply-all.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reply-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/reply.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rewind-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rewind-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rewind-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rewind-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rewind-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rewind.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/robot.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rocket-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rocket-takeoff-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rocket-takeoff.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rocket.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/router-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/router.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rss-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rss.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/rulers.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/safe-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/safe.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/safe2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/safe2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/save-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/save.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/save2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/save2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/scissors.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/scooter.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/screwdriver.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sd-card-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sd-card.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/search-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/search-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/search.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/segmented-nav.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-arrow-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-arrow-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-arrow-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-arrow-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-check-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-dash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-exclamation-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/send.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/server.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shadows.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/share-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/share.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-fill-check.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-fill-exclamation.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-fill-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-fill-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-fill-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-lock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-lock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-shaded.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shield.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shift-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shift.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shop-window.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shop.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/shuffle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-dead-end-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-dead-end.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection-side-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection-side.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection-t-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection-t.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection-y-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection-y.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-intersection.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-merge-left-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-merge-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-merge-right-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-merge-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-no-parking-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-no-parking.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-railroad-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-railroad.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-stop-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-stop-lights-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-stop-lights.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-stop.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-left-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-right-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-yield-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sign-yield.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/signal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/signpost-2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/signpost-2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/signpost-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/signpost-split-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/signpost-split.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/signpost.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sim-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sim-slash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sim-slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sim.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sina-weibo.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-backward-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-backward-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-backward-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-backward-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-backward-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-backward.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-end-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-end-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-end-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-end-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-end-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-end.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-forward-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-forward-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-forward-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-forward-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-forward-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-forward.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-start-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-start-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-start-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-start-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-start-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skip-start.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/skype.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/slack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/slash-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/slash-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/slash-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/slash-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/slash-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/slash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sliders.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sliders2-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sliders2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/smartwatch.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/snapchat.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/snow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/snow2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/snow3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-alpha-down-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-alpha-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-alpha-up-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-alpha-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-down-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-numeric-down-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-numeric-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-numeric-up-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-numeric-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-up-alt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sort-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/soundwave.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sourceforge.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/speaker-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/speaker.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/speedometer.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/speedometer2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/spellcheck.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/spotify.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/square-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stack-overflow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/star-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/star-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/star.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stars.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/steam.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stickies-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stickies.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sticky-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sticky.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stop-btn-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stop-btn.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stop-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stop-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stop-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stop.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stoplights-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stoplights.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stopwatch-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stopwatch.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/strava.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/stripe.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/subscript.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/substack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/subtract.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-club-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-club.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-diamond-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-diamond.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-heart-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-heart.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-spade-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suit-spade.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suitcase-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suitcase-lg-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suitcase-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suitcase.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suitcase2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/suitcase2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sun-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sun.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sunglasses.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sunrise-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sunrise.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sunset-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/sunset.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/superscript.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/symmetry-horizontal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/symmetry-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/table.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tablet-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tablet-landscape-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tablet-landscape.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tablet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tag-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tag.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tags-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tags.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/taxi-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/taxi-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telegram.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-forward-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-forward.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-inbound-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-inbound.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-minus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-minus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-outbound-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-outbound.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-plus-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-x-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/telephone.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tencent-qq.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/terminal-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/terminal-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/terminal-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/terminal-split.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/terminal-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/terminal.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/text-center.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/text-indent-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/text-indent-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/text-left.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/text-paragraph.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/text-right.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/text-wrap.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/textarea-resize.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/textarea-t.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/textarea.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thermometer-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thermometer-high.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thermometer-low.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thermometer-snow.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thermometer-sun.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thermometer.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/threads-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/threads.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/three-dots-vertical.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/three-dots.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thunderbolt-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/thunderbolt.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ticket-detailed-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ticket-detailed.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ticket-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ticket-perforated-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ticket-perforated.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ticket.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tiktok.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/toggle-off.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/toggle-on.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/toggle2-off.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/toggle2-on.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/toggles.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/toggles2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tools.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tornado.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/train-freight-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/train-freight-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/train-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/train-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/train-lightrail-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/train-lightrail-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/translate.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/transparency.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trash-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trash2-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trash2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trash3-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trash3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tree-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tree.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trello.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/triangle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/triangle-half.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/triangle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trophy-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/trophy.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tropical-storm.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/truck-flatbed.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/truck-front-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/truck-front.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/truck.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tsunami.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tv-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/tv.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/twitch.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/twitter-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/twitter.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-bold.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-h1.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-h2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-h3.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-h4.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-h5.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-h6.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-italic.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-strikethrough.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type-underline.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/type.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ubuntu.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ui-checks-grid.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ui-checks.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ui-radios-grid.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/ui-radios.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/umbrella-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/umbrella.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/unindent.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/union.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/unity.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/universal-access-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/universal-access.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/unlock-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/unlock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/upc-scan.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/upc.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/upload.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-c-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-c.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-drive-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-drive.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-micro-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-micro.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-mini-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-mini.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-plug-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-plug.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb-symbol.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/usb.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/valentine.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/valentine2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/vector-pen.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/view-list.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/view-stacked.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/vignette.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/vimeo.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/vinyl-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/vinyl.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/virus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/virus2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/voicemail.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-down-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-down.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-mute-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-mute.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-off-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-off.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-up-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/volume-up.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/vr.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wallet-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wallet.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wallet2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/watch.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/water.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/webcam-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/webcam.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wechat.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/whatsapp.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wifi-1.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wifi-2.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wifi-off.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wifi.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wikipedia.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wind.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-dash.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-desktop.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-dock.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-fullscreen.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-plus.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-sidebar.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-split.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-stack.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window-x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/window.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/windows.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wordpress.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wrench-adjustable.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/wrench.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-circle-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-circle.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-diamond-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-diamond.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-lg.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-octagon-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-octagon.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-square-fill.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x-square.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/x.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/xbox.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/yelp.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/yin-yang.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/youtube.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/zoom-in.svg delete mode 100644 src/main/resources/static/assets/bootstrap-icons/zoom-out.svg create mode 100644 src/main/resources/static/img/flags/france.png create mode 100644 src/main/resources/static/img/flags/uk.png diff --git a/src/main/java/fr/eni/enchere/config/WebConfig.java b/src/main/java/fr/eni/enchere/config/WebConfig.java index bc40fea..ce572cd 100644 --- a/src/main/java/fr/eni/enchere/config/WebConfig.java +++ b/src/main/java/fr/eni/enchere/config/WebConfig.java @@ -6,6 +6,7 @@ import org.springframework.web.servlet.LocaleResolver; import org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver; import org.springframework.context.annotation.Bean; import org.springframework.context.support.ResourceBundleMessageSource; +import org.springframework.web.servlet.i18n.SessionLocaleResolver; import java.util.Locale; @@ -14,15 +15,15 @@ public class WebConfig { @Bean public LocaleResolver localeResolver() { - AcceptHeaderLocaleResolver localeResolver = new AcceptHeaderLocaleResolver(); - localeResolver.setDefaultLocale(Locale.FRENCH); - return localeResolver; + SessionLocaleResolver resolver = new SessionLocaleResolver(); + resolver.setDefaultLocale(Locale.FRENCH); // Définit la locale par défaut + return resolver; } @Bean public ResourceBundleMessageSource messageSource() { ResourceBundleMessageSource source = new ResourceBundleMessageSource(); - source.setBasenames("messages"); + source.setBasenames("i18n/messages"); source.setDefaultEncoding("UTF-8"); source.setUseCodeAsDefaultMessage(true); return source; diff --git a/src/main/java/fr/eni/enchere/controllers/AccueilController.java b/src/main/java/fr/eni/enchere/controllers/AccueilController.java index 0470afa..d070112 100644 --- a/src/main/java/fr/eni/enchere/controllers/AccueilController.java +++ b/src/main/java/fr/eni/enchere/controllers/AccueilController.java @@ -4,6 +4,8 @@ import fr.eni.enchere.bll.ArticleService; import fr.eni.enchere.bll.CategorieService; import fr.eni.enchere.bo.Article; import fr.eni.enchere.bo.SearchArticleCritere; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; @@ -12,9 +14,11 @@ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.servlet.i18n.SessionLocaleResolver; import org.springframework.web.servlet.mvc.support.RedirectAttributes; import java.util.List; +import java.util.Locale; @Controller @@ -24,6 +28,7 @@ public class AccueilController { private ArticleService articleService; private CategorieService categorieService; + public AccueilController(ArticleService articleService, CategorieService categorieService) { super(); this.categorieService = categorieService; @@ -48,4 +53,5 @@ public class AccueilController { return viewAccueil(searchTitle, searchCategory, model); } + } diff --git a/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java b/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java index b6fd6cb..3584d9f 100644 --- a/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java +++ b/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java @@ -17,7 +17,7 @@ public class WebSecurityConfig{ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests((requests) -> requests .requestMatchers("/", "/accueil").permitAll() - .requestMatchers("/accueil", "/login", "/inscription/**", "/searchArticle", "/profile/**").permitAll() + .requestMatchers("/accueil", "/login", "/inscription/**", "/searchArticle", "/profile/**", "/change-language").permitAll() .requestMatchers("/css/**", "/images/**", "/assets/**", "/img/**", "/js/**").permitAll() .requestMatchers("/article/**").authenticated() .requestMatchers("/admin").hasRole("ADMIN") diff --git a/src/main/resources/static/messages/messages_en.properties b/src/main/resources/i18n/messages_en.properties similarity index 100% rename from src/main/resources/static/messages/messages_en.properties rename to src/main/resources/i18n/messages_en.properties diff --git a/src/main/resources/static/messages/messages_fr.properties b/src/main/resources/i18n/messages_fr.properties similarity index 100% rename from src/main/resources/static/messages/messages_fr.properties rename to src/main/resources/i18n/messages_fr.properties diff --git a/src/main/resources/static/assets/bootstrap-icons/0-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/0-circle-fill.svg deleted file mode 100644 index 08afbb1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/0-circle-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/0-circle.svg b/src/main/resources/static/assets/bootstrap-icons/0-circle.svg deleted file mode 100644 index 8c518f7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/0-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/0-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/0-square-fill.svg deleted file mode 100644 index d5375d4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/0-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/0-square.svg b/src/main/resources/static/assets/bootstrap-icons/0-square.svg deleted file mode 100644 index aa66709..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/0-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/1-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/1-circle-fill.svg deleted file mode 100644 index 9b257b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/1-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/1-circle.svg b/src/main/resources/static/assets/bootstrap-icons/1-circle.svg deleted file mode 100644 index 785af34..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/1-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/1-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/1-square-fill.svg deleted file mode 100644 index de579e6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/1-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/1-square.svg b/src/main/resources/static/assets/bootstrap-icons/1-square.svg deleted file mode 100644 index 4f57d79..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/1-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/123.svg b/src/main/resources/static/assets/bootstrap-icons/123.svg deleted file mode 100644 index 3ee3396..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/123.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/2-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/2-circle-fill.svg deleted file mode 100644 index 03a9251..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/2-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/2-circle.svg b/src/main/resources/static/assets/bootstrap-icons/2-circle.svg deleted file mode 100644 index fea4a56..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/2-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/2-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/2-square-fill.svg deleted file mode 100644 index a89e1f7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/2-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/2-square.svg b/src/main/resources/static/assets/bootstrap-icons/2-square.svg deleted file mode 100644 index 558c78b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/2-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/3-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/3-circle-fill.svg deleted file mode 100644 index 06d2ea5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/3-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/3-circle.svg b/src/main/resources/static/assets/bootstrap-icons/3-circle.svg deleted file mode 100644 index 23c3479..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/3-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/3-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/3-square-fill.svg deleted file mode 100644 index c6890a3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/3-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/3-square.svg b/src/main/resources/static/assets/bootstrap-icons/3-square.svg deleted file mode 100644 index b56b684..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/3-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/4-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/4-circle-fill.svg deleted file mode 100644 index 199a5e2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/4-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/4-circle.svg b/src/main/resources/static/assets/bootstrap-icons/4-circle.svg deleted file mode 100644 index 3af547d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/4-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/4-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/4-square-fill.svg deleted file mode 100644 index 03b0f94..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/4-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/4-square.svg b/src/main/resources/static/assets/bootstrap-icons/4-square.svg deleted file mode 100644 index dd85455..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/4-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/5-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/5-circle-fill.svg deleted file mode 100644 index e940e98..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/5-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/5-circle.svg b/src/main/resources/static/assets/bootstrap-icons/5-circle.svg deleted file mode 100644 index 47eefd0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/5-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/5-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/5-square-fill.svg deleted file mode 100644 index 1a87860..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/5-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/5-square.svg b/src/main/resources/static/assets/bootstrap-icons/5-square.svg deleted file mode 100644 index 9c54c77..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/5-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/6-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/6-circle-fill.svg deleted file mode 100644 index 18f66ef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/6-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/6-circle.svg b/src/main/resources/static/assets/bootstrap-icons/6-circle.svg deleted file mode 100644 index ab5f748..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/6-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/6-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/6-square-fill.svg deleted file mode 100644 index d67fa52..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/6-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/6-square.svg b/src/main/resources/static/assets/bootstrap-icons/6-square.svg deleted file mode 100644 index 79762c8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/6-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/7-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/7-circle-fill.svg deleted file mode 100644 index bb4522b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/7-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/7-circle.svg b/src/main/resources/static/assets/bootstrap-icons/7-circle.svg deleted file mode 100644 index 0dc4685..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/7-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/7-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/7-square-fill.svg deleted file mode 100644 index 8a4789c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/7-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/7-square.svg b/src/main/resources/static/assets/bootstrap-icons/7-square.svg deleted file mode 100644 index a314c4a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/7-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/8-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/8-circle-fill.svg deleted file mode 100644 index 15cd6b4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/8-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/8-circle.svg b/src/main/resources/static/assets/bootstrap-icons/8-circle.svg deleted file mode 100644 index fb14542..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/8-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/8-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/8-square-fill.svg deleted file mode 100644 index 766d42a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/8-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/8-square.svg b/src/main/resources/static/assets/bootstrap-icons/8-square.svg deleted file mode 100644 index f450b17..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/8-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/9-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/9-circle-fill.svg deleted file mode 100644 index 6ebd865..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/9-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/9-circle.svg b/src/main/resources/static/assets/bootstrap-icons/9-circle.svg deleted file mode 100644 index 7c97f29..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/9-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/9-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/9-square-fill.svg deleted file mode 100644 index daee3e8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/9-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/9-square.svg b/src/main/resources/static/assets/bootstrap-icons/9-square.svg deleted file mode 100644 index ade9233..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/9-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/activity.svg b/src/main/resources/static/assets/bootstrap-icons/activity.svg deleted file mode 100644 index 1c45d1b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/activity.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/airplane-engines-fill.svg b/src/main/resources/static/assets/bootstrap-icons/airplane-engines-fill.svg deleted file mode 100644 index b58d49f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/airplane-engines-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/airplane-engines.svg b/src/main/resources/static/assets/bootstrap-icons/airplane-engines.svg deleted file mode 100644 index 78b7934..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/airplane-engines.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/airplane-fill.svg b/src/main/resources/static/assets/bootstrap-icons/airplane-fill.svg deleted file mode 100644 index c8f2fce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/airplane-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/airplane.svg b/src/main/resources/static/assets/bootstrap-icons/airplane.svg deleted file mode 100644 index 2e04c92..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/airplane.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/alarm-fill.svg b/src/main/resources/static/assets/bootstrap-icons/alarm-fill.svg deleted file mode 100644 index bec569f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/alarm-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/alarm.svg b/src/main/resources/static/assets/bootstrap-icons/alarm.svg deleted file mode 100644 index 53f7cbe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/alarm.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/alexa.svg b/src/main/resources/static/assets/bootstrap-icons/alexa.svg deleted file mode 100644 index a68f1d9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/alexa.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/align-bottom.svg b/src/main/resources/static/assets/bootstrap-icons/align-bottom.svg deleted file mode 100644 index d9484c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/align-bottom.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/align-center.svg b/src/main/resources/static/assets/bootstrap-icons/align-center.svg deleted file mode 100644 index af0d75b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/align-center.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/align-end.svg b/src/main/resources/static/assets/bootstrap-icons/align-end.svg deleted file mode 100644 index 28f861d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/align-end.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/align-middle.svg b/src/main/resources/static/assets/bootstrap-icons/align-middle.svg deleted file mode 100644 index 95c6598..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/align-middle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/align-start.svg b/src/main/resources/static/assets/bootstrap-icons/align-start.svg deleted file mode 100644 index a72ba98..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/align-start.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/align-top.svg b/src/main/resources/static/assets/bootstrap-icons/align-top.svg deleted file mode 100644 index d2934f5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/align-top.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/alipay.svg b/src/main/resources/static/assets/bootstrap-icons/alipay.svg deleted file mode 100644 index df7def9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/alipay.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/alphabet-uppercase.svg b/src/main/resources/static/assets/bootstrap-icons/alphabet-uppercase.svg deleted file mode 100644 index 1d19206..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/alphabet-uppercase.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/alphabet.svg b/src/main/resources/static/assets/bootstrap-icons/alphabet.svg deleted file mode 100644 index 03ef6dd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/alphabet.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/alt.svg b/src/main/resources/static/assets/bootstrap-icons/alt.svg deleted file mode 100644 index 22b7886..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/amazon.svg b/src/main/resources/static/assets/bootstrap-icons/amazon.svg deleted file mode 100644 index bf26ba6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/amazon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/amd.svg b/src/main/resources/static/assets/bootstrap-icons/amd.svg deleted file mode 100644 index 15dab80..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/amd.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/android.svg b/src/main/resources/static/assets/bootstrap-icons/android.svg deleted file mode 100644 index d890952..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/android.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/android2.svg b/src/main/resources/static/assets/bootstrap-icons/android2.svg deleted file mode 100644 index 37613cc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/android2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/app-indicator.svg b/src/main/resources/static/assets/bootstrap-icons/app-indicator.svg deleted file mode 100644 index 450a011..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/app-indicator.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/app.svg b/src/main/resources/static/assets/bootstrap-icons/app.svg deleted file mode 100644 index 819df1b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/app.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/apple.svg b/src/main/resources/static/assets/bootstrap-icons/apple.svg deleted file mode 100644 index b8bc2a0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/apple.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/archive-fill.svg b/src/main/resources/static/assets/bootstrap-icons/archive-fill.svg deleted file mode 100644 index 077aa29..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/archive-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/archive.svg b/src/main/resources/static/assets/bootstrap-icons/archive.svg deleted file mode 100644 index b41be30..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/archive.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-down.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-down.svg deleted file mode 100644 index 1193b5d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-left.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-left.svg deleted file mode 100644 index 1656b22..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-right.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-right.svg deleted file mode 100644 index a7d32ce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-up.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-up.svg deleted file mode 100644 index 6c95e3d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-90deg-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-down.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-bar-down.svg deleted file mode 100644 index fe18e39..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-left.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-bar-left.svg deleted file mode 100644 index 8f9252e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-right.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-bar-right.svg deleted file mode 100644 index 9b64347..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-up.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-bar-up.svg deleted file mode 100644 index 090b6bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-bar-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-clockwise.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-clockwise.svg deleted file mode 100644 index b072eb0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-clockwise.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-counterclockwise.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-counterclockwise.svg deleted file mode 100644 index b0b23b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-counterclockwise.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-circle-fill.svg deleted file mode 100644 index 8e837c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-circle.svg deleted file mode 100644 index fe215b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle-fill.svg deleted file mode 100644 index bcebc12..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle.svg deleted file mode 100644 index 8b52276..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square-fill.svg deleted file mode 100644 index 57c099f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square.svg deleted file mode 100644 index 08e0028..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-left.svg deleted file mode 100644 index 96a6b08..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle-fill.svg deleted file mode 100644 index 35ab8c2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle.svg deleted file mode 100644 index 1cd51bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square-fill.svg deleted file mode 100644 index 3ccff9b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square.svg deleted file mode 100644 index 5019b26..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-right.svg deleted file mode 100644 index 80487bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-short.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-short.svg deleted file mode 100644 index 2fda340..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-square-fill.svg deleted file mode 100644 index ea8f14b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-square.svg deleted file mode 100644 index 633671f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down-up.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down-up.svg deleted file mode 100644 index a128d9b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-down.svg deleted file mode 100644 index 1344ca9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-left-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-left-circle-fill.svg deleted file mode 100644 index 2eebe62..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-left-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-left-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-left-circle.svg deleted file mode 100644 index 39f86b8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-left-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-left-right.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-left-right.svg deleted file mode 100644 index 8aabd7b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-left-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-left-short.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-left-short.svg deleted file mode 100644 index 13005fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-left-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-left-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-left-square-fill.svg deleted file mode 100644 index 76dbe9e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-left-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-left-square.svg deleted file mode 100644 index 4db19b3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-left-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-left.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-left.svg deleted file mode 100644 index 9d88501..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-repeat.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-repeat.svg deleted file mode 100644 index d0d7154..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-repeat.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-return-left.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-return-left.svg deleted file mode 100644 index f6b125e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-return-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-return-right.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-return-right.svg deleted file mode 100644 index 228e24b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-return-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-right-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-right-circle-fill.svg deleted file mode 100644 index 336a34e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-right-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-right-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-right-circle.svg deleted file mode 100644 index 1339b52..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-right-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-right-short.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-right-short.svg deleted file mode 100644 index 4626398..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-right-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-right-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-right-square-fill.svg deleted file mode 100644 index 55285eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-right-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-right-square.svg deleted file mode 100644 index 7209ead..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-right-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-right.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-right.svg deleted file mode 100644 index d4b878b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-through-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-through-heart-fill.svg deleted file mode 100644 index 1b3c30f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-through-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-through-heart.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-through-heart.svg deleted file mode 100644 index f352870..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-through-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-circle-fill.svg deleted file mode 100644 index ab0a54c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-circle.svg deleted file mode 100644 index 9923ae3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle-fill.svg deleted file mode 100644 index df6e194..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle.svg deleted file mode 100644 index dfdaf71..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square-fill.svg deleted file mode 100644 index 220169d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square.svg deleted file mode 100644 index 9d3767f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-left.svg deleted file mode 100644 index da5bb6c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle-fill.svg deleted file mode 100644 index ba547c8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle.svg deleted file mode 100644 index f2fcabc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square-fill.svg deleted file mode 100644 index 7454537..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square.svg deleted file mode 100644 index 9754423..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-right.svg deleted file mode 100644 index 6924a38..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-short.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-short.svg deleted file mode 100644 index 3863f15..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-square-fill.svg deleted file mode 100644 index bb51b25..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up-square.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up-square.svg deleted file mode 100644 index d21f03e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/arrow-up.svg deleted file mode 100644 index c46d49e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrow-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-angle-contract.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-angle-contract.svg deleted file mode 100644 index d140e19..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-angle-contract.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-angle-expand.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-angle-expand.svg deleted file mode 100644 index 3697f60..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-angle-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-collapse-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-collapse-vertical.svg deleted file mode 100644 index 7d11bf9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-collapse-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-collapse.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-collapse.svg deleted file mode 100644 index d60fbee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-collapse.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-expand-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-expand-vertical.svg deleted file mode 100644 index 7bf1388..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-expand-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-expand.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-expand.svg deleted file mode 100644 index d5d00f4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-fullscreen.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-fullscreen.svg deleted file mode 100644 index dc0acc3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-fullscreen.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-move.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-move.svg deleted file mode 100644 index eef62ef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-move.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/arrows-vertical.svg deleted file mode 100644 index 8dd6371..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/arrows.svg b/src/main/resources/static/assets/bootstrap-icons/arrows.svg deleted file mode 100644 index 003f2d6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/arrows.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/aspect-ratio-fill.svg b/src/main/resources/static/assets/bootstrap-icons/aspect-ratio-fill.svg deleted file mode 100644 index 81dcfcb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/aspect-ratio-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/aspect-ratio.svg b/src/main/resources/static/assets/bootstrap-icons/aspect-ratio.svg deleted file mode 100644 index 66719a7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/aspect-ratio.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/asterisk.svg b/src/main/resources/static/assets/bootstrap-icons/asterisk.svg deleted file mode 100644 index 8b0a9da..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/asterisk.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/at.svg b/src/main/resources/static/assets/bootstrap-icons/at.svg deleted file mode 100644 index 4a85e14..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/at.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/award-fill.svg b/src/main/resources/static/assets/bootstrap-icons/award-fill.svg deleted file mode 100644 index 6b58996..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/award-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/award.svg b/src/main/resources/static/assets/bootstrap-icons/award.svg deleted file mode 100644 index 8f572ff..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/award.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/back.svg b/src/main/resources/static/assets/bootstrap-icons/back.svg deleted file mode 100644 index 4c6cbcb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/back.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack-fill.svg b/src/main/resources/static/assets/bootstrap-icons/backpack-fill.svg deleted file mode 100644 index 807f13f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack.svg b/src/main/resources/static/assets/bootstrap-icons/backpack.svg deleted file mode 100644 index 7716377..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/backpack2-fill.svg deleted file mode 100644 index 440326c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack2.svg b/src/main/resources/static/assets/bootstrap-icons/backpack2.svg deleted file mode 100644 index 605b47a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack2.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/backpack3-fill.svg deleted file mode 100644 index 4ba9618..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack3-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack3.svg b/src/main/resources/static/assets/bootstrap-icons/backpack3.svg deleted file mode 100644 index c06372d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack3.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack4-fill.svg b/src/main/resources/static/assets/bootstrap-icons/backpack4-fill.svg deleted file mode 100644 index b34434c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack4-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backpack4.svg b/src/main/resources/static/assets/bootstrap-icons/backpack4.svg deleted file mode 100644 index e4bf93f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backpack4.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backspace-fill.svg b/src/main/resources/static/assets/bootstrap-icons/backspace-fill.svg deleted file mode 100644 index ab63109..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backspace-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backspace-reverse-fill.svg b/src/main/resources/static/assets/bootstrap-icons/backspace-reverse-fill.svg deleted file mode 100644 index ed509ec..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backspace-reverse-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backspace-reverse.svg b/src/main/resources/static/assets/bootstrap-icons/backspace-reverse.svg deleted file mode 100644 index 446e019..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backspace-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/backspace.svg b/src/main/resources/static/assets/bootstrap-icons/backspace.svg deleted file mode 100644 index 55c802c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/backspace.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-3d-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-3d-fill.svg deleted file mode 100644 index ac61cb5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-3d-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-3d.svg b/src/main/resources/static/assets/bootstrap-icons/badge-3d.svg deleted file mode 100644 index 3485837..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-3d.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-4k-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-4k-fill.svg deleted file mode 100644 index f353033..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-4k-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-4k.svg b/src/main/resources/static/assets/bootstrap-icons/badge-4k.svg deleted file mode 100644 index 24ddcb1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-4k.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-8k-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-8k-fill.svg deleted file mode 100644 index 1e1d4c1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-8k-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-8k.svg b/src/main/resources/static/assets/bootstrap-icons/badge-8k.svg deleted file mode 100644 index 7df4c75..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-8k.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-ad-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-ad-fill.svg deleted file mode 100644 index b383de6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-ad-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-ad.svg b/src/main/resources/static/assets/bootstrap-icons/badge-ad.svg deleted file mode 100644 index 942b018..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-ad.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-ar-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-ar-fill.svg deleted file mode 100644 index f98caac..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-ar-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-ar.svg b/src/main/resources/static/assets/bootstrap-icons/badge-ar.svg deleted file mode 100644 index 2210506..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-ar.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-cc-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-cc-fill.svg deleted file mode 100644 index d9783fe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-cc-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-cc.svg b/src/main/resources/static/assets/bootstrap-icons/badge-cc.svg deleted file mode 100644 index 7868cb4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-cc.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-hd-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-hd-fill.svg deleted file mode 100644 index 9f0a498..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-hd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-hd.svg b/src/main/resources/static/assets/bootstrap-icons/badge-hd.svg deleted file mode 100644 index e3f4ae7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-hd.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-sd-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-sd-fill.svg deleted file mode 100644 index 538b642..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-sd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-sd.svg b/src/main/resources/static/assets/bootstrap-icons/badge-sd.svg deleted file mode 100644 index 68667dd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-sd.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-tm-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-tm-fill.svg deleted file mode 100644 index 7d334ce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-tm-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-tm.svg b/src/main/resources/static/assets/bootstrap-icons/badge-tm.svg deleted file mode 100644 index 452dd3b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-tm.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-vo-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-vo-fill.svg deleted file mode 100644 index 1f74e75..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-vo-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-vo.svg b/src/main/resources/static/assets/bootstrap-icons/badge-vo.svg deleted file mode 100644 index 500d98f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-vo.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-vr-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-vr-fill.svg deleted file mode 100644 index 6cde11f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-vr-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-vr.svg b/src/main/resources/static/assets/bootstrap-icons/badge-vr.svg deleted file mode 100644 index 5c06852..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-vr.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-wc-fill.svg b/src/main/resources/static/assets/bootstrap-icons/badge-wc-fill.svg deleted file mode 100644 index 47db37b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-wc-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/badge-wc.svg b/src/main/resources/static/assets/bootstrap-icons/badge-wc.svg deleted file mode 100644 index 3f0cc5b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/badge-wc.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bag-check-fill.svg deleted file mode 100644 index a1ba2d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-check.svg b/src/main/resources/static/assets/bootstrap-icons/bag-check.svg deleted file mode 100644 index c6ad9ac..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-dash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bag-dash-fill.svg deleted file mode 100644 index a739242..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-dash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-dash.svg b/src/main/resources/static/assets/bootstrap-icons/bag-dash.svg deleted file mode 100644 index 9bcb202..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bag-fill.svg deleted file mode 100644 index 1a1e2e2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bag-heart-fill.svg deleted file mode 100644 index a859e05..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-heart.svg b/src/main/resources/static/assets/bootstrap-icons/bag-heart.svg deleted file mode 100644 index 2a6bd30..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bag-plus-fill.svg deleted file mode 100644 index a110b32..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-plus.svg b/src/main/resources/static/assets/bootstrap-icons/bag-plus.svg deleted file mode 100644 index b99a1a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bag-x-fill.svg deleted file mode 100644 index 879bffe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag-x.svg b/src/main/resources/static/assets/bootstrap-icons/bag-x.svg deleted file mode 100644 index 616532c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bag.svg b/src/main/resources/static/assets/bootstrap-icons/bag.svg deleted file mode 100644 index 603de5f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bag.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/balloon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/balloon-fill.svg deleted file mode 100644 index b663894..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/balloon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/balloon-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/balloon-heart-fill.svg deleted file mode 100644 index cebfb93..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/balloon-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/balloon-heart.svg b/src/main/resources/static/assets/bootstrap-icons/balloon-heart.svg deleted file mode 100644 index dadf467..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/balloon-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/balloon.svg b/src/main/resources/static/assets/bootstrap-icons/balloon.svg deleted file mode 100644 index 6ca06c3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/balloon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ban-fill.svg b/src/main/resources/static/assets/bootstrap-icons/ban-fill.svg deleted file mode 100644 index 7e4ccbf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ban-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ban.svg b/src/main/resources/static/assets/bootstrap-icons/ban.svg deleted file mode 100644 index 9788534..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ban.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bandaid-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bandaid-fill.svg deleted file mode 100644 index 41d350a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bandaid-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bandaid.svg b/src/main/resources/static/assets/bootstrap-icons/bandaid.svg deleted file mode 100644 index de16de9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bandaid.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bank.svg b/src/main/resources/static/assets/bootstrap-icons/bank.svg deleted file mode 100644 index 264eaaa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bank.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bank2.svg b/src/main/resources/static/assets/bootstrap-icons/bank2.svg deleted file mode 100644 index b03840c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bank2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bar-chart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bar-chart-fill.svg deleted file mode 100644 index 23ba4f6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bar-chart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bar-chart-line-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bar-chart-line-fill.svg deleted file mode 100644 index a5059c4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bar-chart-line-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bar-chart-line.svg b/src/main/resources/static/assets/bootstrap-icons/bar-chart-line.svg deleted file mode 100644 index e3f0cf2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bar-chart-line.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bar-chart-steps.svg b/src/main/resources/static/assets/bootstrap-icons/bar-chart-steps.svg deleted file mode 100644 index 933fba8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bar-chart-steps.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bar-chart.svg b/src/main/resources/static/assets/bootstrap-icons/bar-chart.svg deleted file mode 100644 index c34c0d4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bar-chart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/basket-fill.svg b/src/main/resources/static/assets/bootstrap-icons/basket-fill.svg deleted file mode 100644 index ebf223c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/basket-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/basket.svg b/src/main/resources/static/assets/bootstrap-icons/basket.svg deleted file mode 100644 index 4bc584b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/basket.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/basket2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/basket2-fill.svg deleted file mode 100644 index 9ebf8db..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/basket2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/basket2.svg b/src/main/resources/static/assets/bootstrap-icons/basket2.svg deleted file mode 100644 index 94f0bcb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/basket2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/basket3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/basket3-fill.svg deleted file mode 100644 index e26f0ee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/basket3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/basket3.svg b/src/main/resources/static/assets/bootstrap-icons/basket3.svg deleted file mode 100644 index ac46c01..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/basket3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/battery-charging.svg b/src/main/resources/static/assets/bootstrap-icons/battery-charging.svg deleted file mode 100644 index cbd9107..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/battery-charging.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/battery-full.svg b/src/main/resources/static/assets/bootstrap-icons/battery-full.svg deleted file mode 100644 index 48cf92e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/battery-full.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/battery-half.svg b/src/main/resources/static/assets/bootstrap-icons/battery-half.svg deleted file mode 100644 index 8c3afca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/battery-half.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/battery.svg b/src/main/resources/static/assets/bootstrap-icons/battery.svg deleted file mode 100644 index 1260360..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/battery.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/behance.svg b/src/main/resources/static/assets/bootstrap-icons/behance.svg deleted file mode 100644 index a6a2c42..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/behance.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bell-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bell-fill.svg deleted file mode 100644 index 76d9b60..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bell-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bell-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bell-slash-fill.svg deleted file mode 100644 index 2e6f8cf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bell-slash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bell-slash.svg b/src/main/resources/static/assets/bootstrap-icons/bell-slash.svg deleted file mode 100644 index eddbb8a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bell-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bell.svg b/src/main/resources/static/assets/bootstrap-icons/bell.svg deleted file mode 100644 index 585d417..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bell.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bezier.svg b/src/main/resources/static/assets/bootstrap-icons/bezier.svg deleted file mode 100644 index 21ec7b3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bezier.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bezier2.svg b/src/main/resources/static/assets/bootstrap-icons/bezier2.svg deleted file mode 100644 index 48722d0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bezier2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bicycle.svg b/src/main/resources/static/assets/bootstrap-icons/bicycle.svg deleted file mode 100644 index 17a2105..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bicycle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bing.svg b/src/main/resources/static/assets/bootstrap-icons/bing.svg deleted file mode 100644 index 973c36b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bing.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/binoculars-fill.svg b/src/main/resources/static/assets/bootstrap-icons/binoculars-fill.svg deleted file mode 100644 index de09c73..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/binoculars-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/binoculars.svg b/src/main/resources/static/assets/bootstrap-icons/binoculars.svg deleted file mode 100644 index 47bca44..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/binoculars.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/blockquote-left.svg b/src/main/resources/static/assets/bootstrap-icons/blockquote-left.svg deleted file mode 100644 index f2e0fa2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/blockquote-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/blockquote-right.svg b/src/main/resources/static/assets/bootstrap-icons/blockquote-right.svg deleted file mode 100644 index 253518d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/blockquote-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bluetooth.svg b/src/main/resources/static/assets/bootstrap-icons/bluetooth.svg deleted file mode 100644 index 5021e77..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bluetooth.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/body-text.svg b/src/main/resources/static/assets/bootstrap-icons/body-text.svg deleted file mode 100644 index 81ede13..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/body-text.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/book-fill.svg b/src/main/resources/static/assets/bootstrap-icons/book-fill.svg deleted file mode 100644 index 276a281..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/book-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/book-half.svg b/src/main/resources/static/assets/bootstrap-icons/book-half.svg deleted file mode 100644 index 76589a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/book-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/book.svg b/src/main/resources/static/assets/bootstrap-icons/book.svg deleted file mode 100644 index f0e5e49..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/book.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-check-fill.svg deleted file mode 100644 index 039e455..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-check.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-check.svg deleted file mode 100644 index b1f572f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-dash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-dash-fill.svg deleted file mode 100644 index e171192..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-dash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-dash.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-dash.svg deleted file mode 100644 index 1138dbb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-fill.svg deleted file mode 100644 index 9466102..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-heart-fill.svg deleted file mode 100644 index 83db817..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-heart.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-heart.svg deleted file mode 100644 index be0adb1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-plus-fill.svg deleted file mode 100644 index bb4502a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-plus.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-plus.svg deleted file mode 100644 index 986a222..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-star-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-star-fill.svg deleted file mode 100644 index 220f16f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-star-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-star.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-star.svg deleted file mode 100644 index 0d2f262..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-star.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-x-fill.svg deleted file mode 100644 index 69fd982..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark-x.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark-x.svg deleted file mode 100644 index 6ac9e80..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmark.svg b/src/main/resources/static/assets/bootstrap-icons/bookmark.svg deleted file mode 100644 index 93e1d99..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmark.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmarks-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bookmarks-fill.svg deleted file mode 100644 index eb5a2db..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmarks-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookmarks.svg b/src/main/resources/static/assets/bootstrap-icons/bookmarks.svg deleted file mode 100644 index 6efa0bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookmarks.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bookshelf.svg b/src/main/resources/static/assets/bootstrap-icons/bookshelf.svg deleted file mode 100644 index 6549ea1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bookshelf.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/boombox-fill.svg b/src/main/resources/static/assets/bootstrap-icons/boombox-fill.svg deleted file mode 100644 index 6103ae2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/boombox-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/boombox.svg b/src/main/resources/static/assets/bootstrap-icons/boombox.svg deleted file mode 100644 index 520f23e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/boombox.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bootstrap-fill.svg deleted file mode 100644 index 9d16320..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.css b/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.css deleted file mode 100644 index efd644a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.css +++ /dev/null @@ -1,2078 +0,0 @@ -/*! - * Bootstrap Icons v1.10.5 (https://icons.getbootstrap.com/) - * Copyright 2019-2023 The Bootstrap Authors - * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) - */ - -@font-face { - font-display: block; - font-family: "bootstrap-icons"; - src: url("./fonts/bootstrap-icons.woff2?1bb88866b4085542c8ed5fb61b9393dd") format("woff2"), -url("./fonts/bootstrap-icons.woff?1bb88866b4085542c8ed5fb61b9393dd") format("woff"); -} - -.bi::before, -[class^="bi-"]::before, -[class*=" bi-"]::before { - display: inline-block; - font-family: bootstrap-icons !important; - font-style: normal; - font-weight: normal !important; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: -.125em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.bi-123::before { content: "\f67f"; } -.bi-alarm-fill::before { content: "\f101"; } -.bi-alarm::before { content: "\f102"; } -.bi-align-bottom::before { content: "\f103"; } -.bi-align-center::before { content: "\f104"; } -.bi-align-end::before { content: "\f105"; } -.bi-align-middle::before { content: "\f106"; } -.bi-align-start::before { content: "\f107"; } -.bi-align-top::before { content: "\f108"; } -.bi-alt::before { content: "\f109"; } -.bi-app-indicator::before { content: "\f10a"; } -.bi-app::before { content: "\f10b"; } -.bi-archive-fill::before { content: "\f10c"; } -.bi-archive::before { content: "\f10d"; } -.bi-arrow-90deg-down::before { content: "\f10e"; } -.bi-arrow-90deg-left::before { content: "\f10f"; } -.bi-arrow-90deg-right::before { content: "\f110"; } -.bi-arrow-90deg-up::before { content: "\f111"; } -.bi-arrow-bar-down::before { content: "\f112"; } -.bi-arrow-bar-left::before { content: "\f113"; } -.bi-arrow-bar-right::before { content: "\f114"; } -.bi-arrow-bar-up::before { content: "\f115"; } -.bi-arrow-clockwise::before { content: "\f116"; } -.bi-arrow-counterclockwise::before { content: "\f117"; } -.bi-arrow-down-circle-fill::before { content: "\f118"; } -.bi-arrow-down-circle::before { content: "\f119"; } -.bi-arrow-down-left-circle-fill::before { content: "\f11a"; } -.bi-arrow-down-left-circle::before { content: "\f11b"; } -.bi-arrow-down-left-square-fill::before { content: "\f11c"; } -.bi-arrow-down-left-square::before { content: "\f11d"; } -.bi-arrow-down-left::before { content: "\f11e"; } -.bi-arrow-down-right-circle-fill::before { content: "\f11f"; } -.bi-arrow-down-right-circle::before { content: "\f120"; } -.bi-arrow-down-right-square-fill::before { content: "\f121"; } -.bi-arrow-down-right-square::before { content: "\f122"; } -.bi-arrow-down-right::before { content: "\f123"; } -.bi-arrow-down-short::before { content: "\f124"; } -.bi-arrow-down-square-fill::before { content: "\f125"; } -.bi-arrow-down-square::before { content: "\f126"; } -.bi-arrow-down-up::before { content: "\f127"; } -.bi-arrow-down::before { content: "\f128"; } -.bi-arrow-left-circle-fill::before { content: "\f129"; } -.bi-arrow-left-circle::before { content: "\f12a"; } -.bi-arrow-left-right::before { content: "\f12b"; } -.bi-arrow-left-short::before { content: "\f12c"; } -.bi-arrow-left-square-fill::before { content: "\f12d"; } -.bi-arrow-left-square::before { content: "\f12e"; } -.bi-arrow-left::before { content: "\f12f"; } -.bi-arrow-repeat::before { content: "\f130"; } -.bi-arrow-return-left::before { content: "\f131"; } -.bi-arrow-return-right::before { content: "\f132"; } -.bi-arrow-right-circle-fill::before { content: "\f133"; } -.bi-arrow-right-circle::before { content: "\f134"; } -.bi-arrow-right-short::before { content: "\f135"; } -.bi-arrow-right-square-fill::before { content: "\f136"; } -.bi-arrow-right-square::before { content: "\f137"; } -.bi-arrow-right::before { content: "\f138"; } -.bi-arrow-up-circle-fill::before { content: "\f139"; } -.bi-arrow-up-circle::before { content: "\f13a"; } -.bi-arrow-up-left-circle-fill::before { content: "\f13b"; } -.bi-arrow-up-left-circle::before { content: "\f13c"; } -.bi-arrow-up-left-square-fill::before { content: "\f13d"; } -.bi-arrow-up-left-square::before { content: "\f13e"; } -.bi-arrow-up-left::before { content: "\f13f"; } -.bi-arrow-up-right-circle-fill::before { content: "\f140"; } -.bi-arrow-up-right-circle::before { content: "\f141"; } -.bi-arrow-up-right-square-fill::before { content: "\f142"; } -.bi-arrow-up-right-square::before { content: "\f143"; } -.bi-arrow-up-right::before { content: "\f144"; } -.bi-arrow-up-short::before { content: "\f145"; } -.bi-arrow-up-square-fill::before { content: "\f146"; } -.bi-arrow-up-square::before { content: "\f147"; } -.bi-arrow-up::before { content: "\f148"; } -.bi-arrows-angle-contract::before { content: "\f149"; } -.bi-arrows-angle-expand::before { content: "\f14a"; } -.bi-arrows-collapse::before { content: "\f14b"; } -.bi-arrows-expand::before { content: "\f14c"; } -.bi-arrows-fullscreen::before { content: "\f14d"; } -.bi-arrows-move::before { content: "\f14e"; } -.bi-aspect-ratio-fill::before { content: "\f14f"; } -.bi-aspect-ratio::before { content: "\f150"; } -.bi-asterisk::before { content: "\f151"; } -.bi-at::before { content: "\f152"; } -.bi-award-fill::before { content: "\f153"; } -.bi-award::before { content: "\f154"; } -.bi-back::before { content: "\f155"; } -.bi-backspace-fill::before { content: "\f156"; } -.bi-backspace-reverse-fill::before { content: "\f157"; } -.bi-backspace-reverse::before { content: "\f158"; } -.bi-backspace::before { content: "\f159"; } -.bi-badge-3d-fill::before { content: "\f15a"; } -.bi-badge-3d::before { content: "\f15b"; } -.bi-badge-4k-fill::before { content: "\f15c"; } -.bi-badge-4k::before { content: "\f15d"; } -.bi-badge-8k-fill::before { content: "\f15e"; } -.bi-badge-8k::before { content: "\f15f"; } -.bi-badge-ad-fill::before { content: "\f160"; } -.bi-badge-ad::before { content: "\f161"; } -.bi-badge-ar-fill::before { content: "\f162"; } -.bi-badge-ar::before { content: "\f163"; } -.bi-badge-cc-fill::before { content: "\f164"; } -.bi-badge-cc::before { content: "\f165"; } -.bi-badge-hd-fill::before { content: "\f166"; } -.bi-badge-hd::before { content: "\f167"; } -.bi-badge-tm-fill::before { content: "\f168"; } -.bi-badge-tm::before { content: "\f169"; } -.bi-badge-vo-fill::before { content: "\f16a"; } -.bi-badge-vo::before { content: "\f16b"; } -.bi-badge-vr-fill::before { content: "\f16c"; } -.bi-badge-vr::before { content: "\f16d"; } -.bi-badge-wc-fill::before { content: "\f16e"; } -.bi-badge-wc::before { content: "\f16f"; } -.bi-bag-check-fill::before { content: "\f170"; } -.bi-bag-check::before { content: "\f171"; } -.bi-bag-dash-fill::before { content: "\f172"; } -.bi-bag-dash::before { content: "\f173"; } -.bi-bag-fill::before { content: "\f174"; } -.bi-bag-plus-fill::before { content: "\f175"; } -.bi-bag-plus::before { content: "\f176"; } -.bi-bag-x-fill::before { content: "\f177"; } -.bi-bag-x::before { content: "\f178"; } -.bi-bag::before { content: "\f179"; } -.bi-bar-chart-fill::before { content: "\f17a"; } -.bi-bar-chart-line-fill::before { content: "\f17b"; } -.bi-bar-chart-line::before { content: "\f17c"; } -.bi-bar-chart-steps::before { content: "\f17d"; } -.bi-bar-chart::before { content: "\f17e"; } -.bi-basket-fill::before { content: "\f17f"; } -.bi-basket::before { content: "\f180"; } -.bi-basket2-fill::before { content: "\f181"; } -.bi-basket2::before { content: "\f182"; } -.bi-basket3-fill::before { content: "\f183"; } -.bi-basket3::before { content: "\f184"; } -.bi-battery-charging::before { content: "\f185"; } -.bi-battery-full::before { content: "\f186"; } -.bi-battery-half::before { content: "\f187"; } -.bi-battery::before { content: "\f188"; } -.bi-bell-fill::before { content: "\f189"; } -.bi-bell::before { content: "\f18a"; } -.bi-bezier::before { content: "\f18b"; } -.bi-bezier2::before { content: "\f18c"; } -.bi-bicycle::before { content: "\f18d"; } -.bi-binoculars-fill::before { content: "\f18e"; } -.bi-binoculars::before { content: "\f18f"; } -.bi-blockquote-left::before { content: "\f190"; } -.bi-blockquote-right::before { content: "\f191"; } -.bi-book-fill::before { content: "\f192"; } -.bi-book-half::before { content: "\f193"; } -.bi-book::before { content: "\f194"; } -.bi-bookmark-check-fill::before { content: "\f195"; } -.bi-bookmark-check::before { content: "\f196"; } -.bi-bookmark-dash-fill::before { content: "\f197"; } -.bi-bookmark-dash::before { content: "\f198"; } -.bi-bookmark-fill::before { content: "\f199"; } -.bi-bookmark-heart-fill::before { content: "\f19a"; } -.bi-bookmark-heart::before { content: "\f19b"; } -.bi-bookmark-plus-fill::before { content: "\f19c"; } -.bi-bookmark-plus::before { content: "\f19d"; } -.bi-bookmark-star-fill::before { content: "\f19e"; } -.bi-bookmark-star::before { content: "\f19f"; } -.bi-bookmark-x-fill::before { content: "\f1a0"; } -.bi-bookmark-x::before { content: "\f1a1"; } -.bi-bookmark::before { content: "\f1a2"; } -.bi-bookmarks-fill::before { content: "\f1a3"; } -.bi-bookmarks::before { content: "\f1a4"; } -.bi-bookshelf::before { content: "\f1a5"; } -.bi-bootstrap-fill::before { content: "\f1a6"; } -.bi-bootstrap-reboot::before { content: "\f1a7"; } -.bi-bootstrap::before { content: "\f1a8"; } -.bi-border-all::before { content: "\f1a9"; } -.bi-border-bottom::before { content: "\f1aa"; } -.bi-border-center::before { content: "\f1ab"; } -.bi-border-inner::before { content: "\f1ac"; } -.bi-border-left::before { content: "\f1ad"; } -.bi-border-middle::before { content: "\f1ae"; } -.bi-border-outer::before { content: "\f1af"; } -.bi-border-right::before { content: "\f1b0"; } -.bi-border-style::before { content: "\f1b1"; } -.bi-border-top::before { content: "\f1b2"; } -.bi-border-width::before { content: "\f1b3"; } -.bi-border::before { content: "\f1b4"; } -.bi-bounding-box-circles::before { content: "\f1b5"; } -.bi-bounding-box::before { content: "\f1b6"; } -.bi-box-arrow-down-left::before { content: "\f1b7"; } -.bi-box-arrow-down-right::before { content: "\f1b8"; } -.bi-box-arrow-down::before { content: "\f1b9"; } -.bi-box-arrow-in-down-left::before { content: "\f1ba"; } -.bi-box-arrow-in-down-right::before { content: "\f1bb"; } -.bi-box-arrow-in-down::before { content: "\f1bc"; } -.bi-box-arrow-in-left::before { content: "\f1bd"; } -.bi-box-arrow-in-right::before { content: "\f1be"; } -.bi-box-arrow-in-up-left::before { content: "\f1bf"; } -.bi-box-arrow-in-up-right::before { content: "\f1c0"; } -.bi-box-arrow-in-up::before { content: "\f1c1"; } -.bi-box-arrow-left::before { content: "\f1c2"; } -.bi-box-arrow-right::before { content: "\f1c3"; } -.bi-box-arrow-up-left::before { content: "\f1c4"; } -.bi-box-arrow-up-right::before { content: "\f1c5"; } -.bi-box-arrow-up::before { content: "\f1c6"; } -.bi-box-seam::before { content: "\f1c7"; } -.bi-box::before { content: "\f1c8"; } -.bi-braces::before { content: "\f1c9"; } -.bi-bricks::before { content: "\f1ca"; } -.bi-briefcase-fill::before { content: "\f1cb"; } -.bi-briefcase::before { content: "\f1cc"; } -.bi-brightness-alt-high-fill::before { content: "\f1cd"; } -.bi-brightness-alt-high::before { content: "\f1ce"; } -.bi-brightness-alt-low-fill::before { content: "\f1cf"; } -.bi-brightness-alt-low::before { content: "\f1d0"; } -.bi-brightness-high-fill::before { content: "\f1d1"; } -.bi-brightness-high::before { content: "\f1d2"; } -.bi-brightness-low-fill::before { content: "\f1d3"; } -.bi-brightness-low::before { content: "\f1d4"; } -.bi-broadcast-pin::before { content: "\f1d5"; } -.bi-broadcast::before { content: "\f1d6"; } -.bi-brush-fill::before { content: "\f1d7"; } -.bi-brush::before { content: "\f1d8"; } -.bi-bucket-fill::before { content: "\f1d9"; } -.bi-bucket::before { content: "\f1da"; } -.bi-bug-fill::before { content: "\f1db"; } -.bi-bug::before { content: "\f1dc"; } -.bi-building::before { content: "\f1dd"; } -.bi-bullseye::before { content: "\f1de"; } -.bi-calculator-fill::before { content: "\f1df"; } -.bi-calculator::before { content: "\f1e0"; } -.bi-calendar-check-fill::before { content: "\f1e1"; } -.bi-calendar-check::before { content: "\f1e2"; } -.bi-calendar-date-fill::before { content: "\f1e3"; } -.bi-calendar-date::before { content: "\f1e4"; } -.bi-calendar-day-fill::before { content: "\f1e5"; } -.bi-calendar-day::before { content: "\f1e6"; } -.bi-calendar-event-fill::before { content: "\f1e7"; } -.bi-calendar-event::before { content: "\f1e8"; } -.bi-calendar-fill::before { content: "\f1e9"; } -.bi-calendar-minus-fill::before { content: "\f1ea"; } -.bi-calendar-minus::before { content: "\f1eb"; } -.bi-calendar-month-fill::before { content: "\f1ec"; } -.bi-calendar-month::before { content: "\f1ed"; } -.bi-calendar-plus-fill::before { content: "\f1ee"; } -.bi-calendar-plus::before { content: "\f1ef"; } -.bi-calendar-range-fill::before { content: "\f1f0"; } -.bi-calendar-range::before { content: "\f1f1"; } -.bi-calendar-week-fill::before { content: "\f1f2"; } -.bi-calendar-week::before { content: "\f1f3"; } -.bi-calendar-x-fill::before { content: "\f1f4"; } -.bi-calendar-x::before { content: "\f1f5"; } -.bi-calendar::before { content: "\f1f6"; } -.bi-calendar2-check-fill::before { content: "\f1f7"; } -.bi-calendar2-check::before { content: "\f1f8"; } -.bi-calendar2-date-fill::before { content: "\f1f9"; } -.bi-calendar2-date::before { content: "\f1fa"; } -.bi-calendar2-day-fill::before { content: "\f1fb"; } -.bi-calendar2-day::before { content: "\f1fc"; } -.bi-calendar2-event-fill::before { content: "\f1fd"; } -.bi-calendar2-event::before { content: "\f1fe"; } -.bi-calendar2-fill::before { content: "\f1ff"; } -.bi-calendar2-minus-fill::before { content: "\f200"; } -.bi-calendar2-minus::before { content: "\f201"; } -.bi-calendar2-month-fill::before { content: "\f202"; } -.bi-calendar2-month::before { content: "\f203"; } -.bi-calendar2-plus-fill::before { content: "\f204"; } -.bi-calendar2-plus::before { content: "\f205"; } -.bi-calendar2-range-fill::before { content: "\f206"; } -.bi-calendar2-range::before { content: "\f207"; } -.bi-calendar2-week-fill::before { content: "\f208"; } -.bi-calendar2-week::before { content: "\f209"; } -.bi-calendar2-x-fill::before { content: "\f20a"; } -.bi-calendar2-x::before { content: "\f20b"; } -.bi-calendar2::before { content: "\f20c"; } -.bi-calendar3-event-fill::before { content: "\f20d"; } -.bi-calendar3-event::before { content: "\f20e"; } -.bi-calendar3-fill::before { content: "\f20f"; } -.bi-calendar3-range-fill::before { content: "\f210"; } -.bi-calendar3-range::before { content: "\f211"; } -.bi-calendar3-week-fill::before { content: "\f212"; } -.bi-calendar3-week::before { content: "\f213"; } -.bi-calendar3::before { content: "\f214"; } -.bi-calendar4-event::before { content: "\f215"; } -.bi-calendar4-range::before { content: "\f216"; } -.bi-calendar4-week::before { content: "\f217"; } -.bi-calendar4::before { content: "\f218"; } -.bi-camera-fill::before { content: "\f219"; } -.bi-camera-reels-fill::before { content: "\f21a"; } -.bi-camera-reels::before { content: "\f21b"; } -.bi-camera-video-fill::before { content: "\f21c"; } -.bi-camera-video-off-fill::before { content: "\f21d"; } -.bi-camera-video-off::before { content: "\f21e"; } -.bi-camera-video::before { content: "\f21f"; } -.bi-camera::before { content: "\f220"; } -.bi-camera2::before { content: "\f221"; } -.bi-capslock-fill::before { content: "\f222"; } -.bi-capslock::before { content: "\f223"; } -.bi-card-checklist::before { content: "\f224"; } -.bi-card-heading::before { content: "\f225"; } -.bi-card-image::before { content: "\f226"; } -.bi-card-list::before { content: "\f227"; } -.bi-card-text::before { content: "\f228"; } -.bi-caret-down-fill::before { content: "\f229"; } -.bi-caret-down-square-fill::before { content: "\f22a"; } -.bi-caret-down-square::before { content: "\f22b"; } -.bi-caret-down::before { content: "\f22c"; } -.bi-caret-left-fill::before { content: "\f22d"; } -.bi-caret-left-square-fill::before { content: "\f22e"; } -.bi-caret-left-square::before { content: "\f22f"; } -.bi-caret-left::before { content: "\f230"; } -.bi-caret-right-fill::before { content: "\f231"; } -.bi-caret-right-square-fill::before { content: "\f232"; } -.bi-caret-right-square::before { content: "\f233"; } -.bi-caret-right::before { content: "\f234"; } -.bi-caret-up-fill::before { content: "\f235"; } -.bi-caret-up-square-fill::before { content: "\f236"; } -.bi-caret-up-square::before { content: "\f237"; } -.bi-caret-up::before { content: "\f238"; } -.bi-cart-check-fill::before { content: "\f239"; } -.bi-cart-check::before { content: "\f23a"; } -.bi-cart-dash-fill::before { content: "\f23b"; } -.bi-cart-dash::before { content: "\f23c"; } -.bi-cart-fill::before { content: "\f23d"; } -.bi-cart-plus-fill::before { content: "\f23e"; } -.bi-cart-plus::before { content: "\f23f"; } -.bi-cart-x-fill::before { content: "\f240"; } -.bi-cart-x::before { content: "\f241"; } -.bi-cart::before { content: "\f242"; } -.bi-cart2::before { content: "\f243"; } -.bi-cart3::before { content: "\f244"; } -.bi-cart4::before { content: "\f245"; } -.bi-cash-stack::before { content: "\f246"; } -.bi-cash::before { content: "\f247"; } -.bi-cast::before { content: "\f248"; } -.bi-chat-dots-fill::before { content: "\f249"; } -.bi-chat-dots::before { content: "\f24a"; } -.bi-chat-fill::before { content: "\f24b"; } -.bi-chat-left-dots-fill::before { content: "\f24c"; } -.bi-chat-left-dots::before { content: "\f24d"; } -.bi-chat-left-fill::before { content: "\f24e"; } -.bi-chat-left-quote-fill::before { content: "\f24f"; } -.bi-chat-left-quote::before { content: "\f250"; } -.bi-chat-left-text-fill::before { content: "\f251"; } -.bi-chat-left-text::before { content: "\f252"; } -.bi-chat-left::before { content: "\f253"; } -.bi-chat-quote-fill::before { content: "\f254"; } -.bi-chat-quote::before { content: "\f255"; } -.bi-chat-right-dots-fill::before { content: "\f256"; } -.bi-chat-right-dots::before { content: "\f257"; } -.bi-chat-right-fill::before { content: "\f258"; } -.bi-chat-right-quote-fill::before { content: "\f259"; } -.bi-chat-right-quote::before { content: "\f25a"; } -.bi-chat-right-text-fill::before { content: "\f25b"; } -.bi-chat-right-text::before { content: "\f25c"; } -.bi-chat-right::before { content: "\f25d"; } -.bi-chat-square-dots-fill::before { content: "\f25e"; } -.bi-chat-square-dots::before { content: "\f25f"; } -.bi-chat-square-fill::before { content: "\f260"; } -.bi-chat-square-quote-fill::before { content: "\f261"; } -.bi-chat-square-quote::before { content: "\f262"; } -.bi-chat-square-text-fill::before { content: "\f263"; } -.bi-chat-square-text::before { content: "\f264"; } -.bi-chat-square::before { content: "\f265"; } -.bi-chat-text-fill::before { content: "\f266"; } -.bi-chat-text::before { content: "\f267"; } -.bi-chat::before { content: "\f268"; } -.bi-check-all::before { content: "\f269"; } -.bi-check-circle-fill::before { content: "\f26a"; } -.bi-check-circle::before { content: "\f26b"; } -.bi-check-square-fill::before { content: "\f26c"; } -.bi-check-square::before { content: "\f26d"; } -.bi-check::before { content: "\f26e"; } -.bi-check2-all::before { content: "\f26f"; } -.bi-check2-circle::before { content: "\f270"; } -.bi-check2-square::before { content: "\f271"; } -.bi-check2::before { content: "\f272"; } -.bi-chevron-bar-contract::before { content: "\f273"; } -.bi-chevron-bar-down::before { content: "\f274"; } -.bi-chevron-bar-expand::before { content: "\f275"; } -.bi-chevron-bar-left::before { content: "\f276"; } -.bi-chevron-bar-right::before { content: "\f277"; } -.bi-chevron-bar-up::before { content: "\f278"; } -.bi-chevron-compact-down::before { content: "\f279"; } -.bi-chevron-compact-left::before { content: "\f27a"; } -.bi-chevron-compact-right::before { content: "\f27b"; } -.bi-chevron-compact-up::before { content: "\f27c"; } -.bi-chevron-contract::before { content: "\f27d"; } -.bi-chevron-double-down::before { content: "\f27e"; } -.bi-chevron-double-left::before { content: "\f27f"; } -.bi-chevron-double-right::before { content: "\f280"; } -.bi-chevron-double-up::before { content: "\f281"; } -.bi-chevron-down::before { content: "\f282"; } -.bi-chevron-expand::before { content: "\f283"; } -.bi-chevron-left::before { content: "\f284"; } -.bi-chevron-right::before { content: "\f285"; } -.bi-chevron-up::before { content: "\f286"; } -.bi-circle-fill::before { content: "\f287"; } -.bi-circle-half::before { content: "\f288"; } -.bi-circle-square::before { content: "\f289"; } -.bi-circle::before { content: "\f28a"; } -.bi-clipboard-check::before { content: "\f28b"; } -.bi-clipboard-data::before { content: "\f28c"; } -.bi-clipboard-minus::before { content: "\f28d"; } -.bi-clipboard-plus::before { content: "\f28e"; } -.bi-clipboard-x::before { content: "\f28f"; } -.bi-clipboard::before { content: "\f290"; } -.bi-clock-fill::before { content: "\f291"; } -.bi-clock-history::before { content: "\f292"; } -.bi-clock::before { content: "\f293"; } -.bi-cloud-arrow-down-fill::before { content: "\f294"; } -.bi-cloud-arrow-down::before { content: "\f295"; } -.bi-cloud-arrow-up-fill::before { content: "\f296"; } -.bi-cloud-arrow-up::before { content: "\f297"; } -.bi-cloud-check-fill::before { content: "\f298"; } -.bi-cloud-check::before { content: "\f299"; } -.bi-cloud-download-fill::before { content: "\f29a"; } -.bi-cloud-download::before { content: "\f29b"; } -.bi-cloud-drizzle-fill::before { content: "\f29c"; } -.bi-cloud-drizzle::before { content: "\f29d"; } -.bi-cloud-fill::before { content: "\f29e"; } -.bi-cloud-fog-fill::before { content: "\f29f"; } -.bi-cloud-fog::before { content: "\f2a0"; } -.bi-cloud-fog2-fill::before { content: "\f2a1"; } -.bi-cloud-fog2::before { content: "\f2a2"; } -.bi-cloud-hail-fill::before { content: "\f2a3"; } -.bi-cloud-hail::before { content: "\f2a4"; } -.bi-cloud-haze-fill::before { content: "\f2a6"; } -.bi-cloud-haze::before { content: "\f2a7"; } -.bi-cloud-haze2-fill::before { content: "\f2a8"; } -.bi-cloud-lightning-fill::before { content: "\f2a9"; } -.bi-cloud-lightning-rain-fill::before { content: "\f2aa"; } -.bi-cloud-lightning-rain::before { content: "\f2ab"; } -.bi-cloud-lightning::before { content: "\f2ac"; } -.bi-cloud-minus-fill::before { content: "\f2ad"; } -.bi-cloud-minus::before { content: "\f2ae"; } -.bi-cloud-moon-fill::before { content: "\f2af"; } -.bi-cloud-moon::before { content: "\f2b0"; } -.bi-cloud-plus-fill::before { content: "\f2b1"; } -.bi-cloud-plus::before { content: "\f2b2"; } -.bi-cloud-rain-fill::before { content: "\f2b3"; } -.bi-cloud-rain-heavy-fill::before { content: "\f2b4"; } -.bi-cloud-rain-heavy::before { content: "\f2b5"; } -.bi-cloud-rain::before { content: "\f2b6"; } -.bi-cloud-slash-fill::before { content: "\f2b7"; } -.bi-cloud-slash::before { content: "\f2b8"; } -.bi-cloud-sleet-fill::before { content: "\f2b9"; } -.bi-cloud-sleet::before { content: "\f2ba"; } -.bi-cloud-snow-fill::before { content: "\f2bb"; } -.bi-cloud-snow::before { content: "\f2bc"; } -.bi-cloud-sun-fill::before { content: "\f2bd"; } -.bi-cloud-sun::before { content: "\f2be"; } -.bi-cloud-upload-fill::before { content: "\f2bf"; } -.bi-cloud-upload::before { content: "\f2c0"; } -.bi-cloud::before { content: "\f2c1"; } -.bi-clouds-fill::before { content: "\f2c2"; } -.bi-clouds::before { content: "\f2c3"; } -.bi-cloudy-fill::before { content: "\f2c4"; } -.bi-cloudy::before { content: "\f2c5"; } -.bi-code-slash::before { content: "\f2c6"; } -.bi-code-square::before { content: "\f2c7"; } -.bi-code::before { content: "\f2c8"; } -.bi-collection-fill::before { content: "\f2c9"; } -.bi-collection-play-fill::before { content: "\f2ca"; } -.bi-collection-play::before { content: "\f2cb"; } -.bi-collection::before { content: "\f2cc"; } -.bi-columns-gap::before { content: "\f2cd"; } -.bi-columns::before { content: "\f2ce"; } -.bi-command::before { content: "\f2cf"; } -.bi-compass-fill::before { content: "\f2d0"; } -.bi-compass::before { content: "\f2d1"; } -.bi-cone-striped::before { content: "\f2d2"; } -.bi-cone::before { content: "\f2d3"; } -.bi-controller::before { content: "\f2d4"; } -.bi-cpu-fill::before { content: "\f2d5"; } -.bi-cpu::before { content: "\f2d6"; } -.bi-credit-card-2-back-fill::before { content: "\f2d7"; } -.bi-credit-card-2-back::before { content: "\f2d8"; } -.bi-credit-card-2-front-fill::before { content: "\f2d9"; } -.bi-credit-card-2-front::before { content: "\f2da"; } -.bi-credit-card-fill::before { content: "\f2db"; } -.bi-credit-card::before { content: "\f2dc"; } -.bi-crop::before { content: "\f2dd"; } -.bi-cup-fill::before { content: "\f2de"; } -.bi-cup-straw::before { content: "\f2df"; } -.bi-cup::before { content: "\f2e0"; } -.bi-cursor-fill::before { content: "\f2e1"; } -.bi-cursor-text::before { content: "\f2e2"; } -.bi-cursor::before { content: "\f2e3"; } -.bi-dash-circle-dotted::before { content: "\f2e4"; } -.bi-dash-circle-fill::before { content: "\f2e5"; } -.bi-dash-circle::before { content: "\f2e6"; } -.bi-dash-square-dotted::before { content: "\f2e7"; } -.bi-dash-square-fill::before { content: "\f2e8"; } -.bi-dash-square::before { content: "\f2e9"; } -.bi-dash::before { content: "\f2ea"; } -.bi-diagram-2-fill::before { content: "\f2eb"; } -.bi-diagram-2::before { content: "\f2ec"; } -.bi-diagram-3-fill::before { content: "\f2ed"; } -.bi-diagram-3::before { content: "\f2ee"; } -.bi-diamond-fill::before { content: "\f2ef"; } -.bi-diamond-half::before { content: "\f2f0"; } -.bi-diamond::before { content: "\f2f1"; } -.bi-dice-1-fill::before { content: "\f2f2"; } -.bi-dice-1::before { content: "\f2f3"; } -.bi-dice-2-fill::before { content: "\f2f4"; } -.bi-dice-2::before { content: "\f2f5"; } -.bi-dice-3-fill::before { content: "\f2f6"; } -.bi-dice-3::before { content: "\f2f7"; } -.bi-dice-4-fill::before { content: "\f2f8"; } -.bi-dice-4::before { content: "\f2f9"; } -.bi-dice-5-fill::before { content: "\f2fa"; } -.bi-dice-5::before { content: "\f2fb"; } -.bi-dice-6-fill::before { content: "\f2fc"; } -.bi-dice-6::before { content: "\f2fd"; } -.bi-disc-fill::before { content: "\f2fe"; } -.bi-disc::before { content: "\f2ff"; } -.bi-discord::before { content: "\f300"; } -.bi-display-fill::before { content: "\f301"; } -.bi-display::before { content: "\f302"; } -.bi-distribute-horizontal::before { content: "\f303"; } -.bi-distribute-vertical::before { content: "\f304"; } -.bi-door-closed-fill::before { content: "\f305"; } -.bi-door-closed::before { content: "\f306"; } -.bi-door-open-fill::before { content: "\f307"; } -.bi-door-open::before { content: "\f308"; } -.bi-dot::before { content: "\f309"; } -.bi-download::before { content: "\f30a"; } -.bi-droplet-fill::before { content: "\f30b"; } -.bi-droplet-half::before { content: "\f30c"; } -.bi-droplet::before { content: "\f30d"; } -.bi-earbuds::before { content: "\f30e"; } -.bi-easel-fill::before { content: "\f30f"; } -.bi-easel::before { content: "\f310"; } -.bi-egg-fill::before { content: "\f311"; } -.bi-egg-fried::before { content: "\f312"; } -.bi-egg::before { content: "\f313"; } -.bi-eject-fill::before { content: "\f314"; } -.bi-eject::before { content: "\f315"; } -.bi-emoji-angry-fill::before { content: "\f316"; } -.bi-emoji-angry::before { content: "\f317"; } -.bi-emoji-dizzy-fill::before { content: "\f318"; } -.bi-emoji-dizzy::before { content: "\f319"; } -.bi-emoji-expressionless-fill::before { content: "\f31a"; } -.bi-emoji-expressionless::before { content: "\f31b"; } -.bi-emoji-frown-fill::before { content: "\f31c"; } -.bi-emoji-frown::before { content: "\f31d"; } -.bi-emoji-heart-eyes-fill::before { content: "\f31e"; } -.bi-emoji-heart-eyes::before { content: "\f31f"; } -.bi-emoji-laughing-fill::before { content: "\f320"; } -.bi-emoji-laughing::before { content: "\f321"; } -.bi-emoji-neutral-fill::before { content: "\f322"; } -.bi-emoji-neutral::before { content: "\f323"; } -.bi-emoji-smile-fill::before { content: "\f324"; } -.bi-emoji-smile-upside-down-fill::before { content: "\f325"; } -.bi-emoji-smile-upside-down::before { content: "\f326"; } -.bi-emoji-smile::before { content: "\f327"; } -.bi-emoji-sunglasses-fill::before { content: "\f328"; } -.bi-emoji-sunglasses::before { content: "\f329"; } -.bi-emoji-wink-fill::before { content: "\f32a"; } -.bi-emoji-wink::before { content: "\f32b"; } -.bi-envelope-fill::before { content: "\f32c"; } -.bi-envelope-open-fill::before { content: "\f32d"; } -.bi-envelope-open::before { content: "\f32e"; } -.bi-envelope::before { content: "\f32f"; } -.bi-eraser-fill::before { content: "\f330"; } -.bi-eraser::before { content: "\f331"; } -.bi-exclamation-circle-fill::before { content: "\f332"; } -.bi-exclamation-circle::before { content: "\f333"; } -.bi-exclamation-diamond-fill::before { content: "\f334"; } -.bi-exclamation-diamond::before { content: "\f335"; } -.bi-exclamation-octagon-fill::before { content: "\f336"; } -.bi-exclamation-octagon::before { content: "\f337"; } -.bi-exclamation-square-fill::before { content: "\f338"; } -.bi-exclamation-square::before { content: "\f339"; } -.bi-exclamation-triangle-fill::before { content: "\f33a"; } -.bi-exclamation-triangle::before { content: "\f33b"; } -.bi-exclamation::before { content: "\f33c"; } -.bi-exclude::before { content: "\f33d"; } -.bi-eye-fill::before { content: "\f33e"; } -.bi-eye-slash-fill::before { content: "\f33f"; } -.bi-eye-slash::before { content: "\f340"; } -.bi-eye::before { content: "\f341"; } -.bi-eyedropper::before { content: "\f342"; } -.bi-eyeglasses::before { content: "\f343"; } -.bi-facebook::before { content: "\f344"; } -.bi-file-arrow-down-fill::before { content: "\f345"; } -.bi-file-arrow-down::before { content: "\f346"; } -.bi-file-arrow-up-fill::before { content: "\f347"; } -.bi-file-arrow-up::before { content: "\f348"; } -.bi-file-bar-graph-fill::before { content: "\f349"; } -.bi-file-bar-graph::before { content: "\f34a"; } -.bi-file-binary-fill::before { content: "\f34b"; } -.bi-file-binary::before { content: "\f34c"; } -.bi-file-break-fill::before { content: "\f34d"; } -.bi-file-break::before { content: "\f34e"; } -.bi-file-check-fill::before { content: "\f34f"; } -.bi-file-check::before { content: "\f350"; } -.bi-file-code-fill::before { content: "\f351"; } -.bi-file-code::before { content: "\f352"; } -.bi-file-diff-fill::before { content: "\f353"; } -.bi-file-diff::before { content: "\f354"; } -.bi-file-earmark-arrow-down-fill::before { content: "\f355"; } -.bi-file-earmark-arrow-down::before { content: "\f356"; } -.bi-file-earmark-arrow-up-fill::before { content: "\f357"; } -.bi-file-earmark-arrow-up::before { content: "\f358"; } -.bi-file-earmark-bar-graph-fill::before { content: "\f359"; } -.bi-file-earmark-bar-graph::before { content: "\f35a"; } -.bi-file-earmark-binary-fill::before { content: "\f35b"; } -.bi-file-earmark-binary::before { content: "\f35c"; } -.bi-file-earmark-break-fill::before { content: "\f35d"; } -.bi-file-earmark-break::before { content: "\f35e"; } -.bi-file-earmark-check-fill::before { content: "\f35f"; } -.bi-file-earmark-check::before { content: "\f360"; } -.bi-file-earmark-code-fill::before { content: "\f361"; } -.bi-file-earmark-code::before { content: "\f362"; } -.bi-file-earmark-diff-fill::before { content: "\f363"; } -.bi-file-earmark-diff::before { content: "\f364"; } -.bi-file-earmark-easel-fill::before { content: "\f365"; } -.bi-file-earmark-easel::before { content: "\f366"; } -.bi-file-earmark-excel-fill::before { content: "\f367"; } -.bi-file-earmark-excel::before { content: "\f368"; } -.bi-file-earmark-fill::before { content: "\f369"; } -.bi-file-earmark-font-fill::before { content: "\f36a"; } -.bi-file-earmark-font::before { content: "\f36b"; } -.bi-file-earmark-image-fill::before { content: "\f36c"; } -.bi-file-earmark-image::before { content: "\f36d"; } -.bi-file-earmark-lock-fill::before { content: "\f36e"; } -.bi-file-earmark-lock::before { content: "\f36f"; } -.bi-file-earmark-lock2-fill::before { content: "\f370"; } -.bi-file-earmark-lock2::before { content: "\f371"; } -.bi-file-earmark-medical-fill::before { content: "\f372"; } -.bi-file-earmark-medical::before { content: "\f373"; } -.bi-file-earmark-minus-fill::before { content: "\f374"; } -.bi-file-earmark-minus::before { content: "\f375"; } -.bi-file-earmark-music-fill::before { content: "\f376"; } -.bi-file-earmark-music::before { content: "\f377"; } -.bi-file-earmark-person-fill::before { content: "\f378"; } -.bi-file-earmark-person::before { content: "\f379"; } -.bi-file-earmark-play-fill::before { content: "\f37a"; } -.bi-file-earmark-play::before { content: "\f37b"; } -.bi-file-earmark-plus-fill::before { content: "\f37c"; } -.bi-file-earmark-plus::before { content: "\f37d"; } -.bi-file-earmark-post-fill::before { content: "\f37e"; } -.bi-file-earmark-post::before { content: "\f37f"; } -.bi-file-earmark-ppt-fill::before { content: "\f380"; } -.bi-file-earmark-ppt::before { content: "\f381"; } -.bi-file-earmark-richtext-fill::before { content: "\f382"; } -.bi-file-earmark-richtext::before { content: "\f383"; } -.bi-file-earmark-ruled-fill::before { content: "\f384"; } -.bi-file-earmark-ruled::before { content: "\f385"; } -.bi-file-earmark-slides-fill::before { content: "\f386"; } -.bi-file-earmark-slides::before { content: "\f387"; } -.bi-file-earmark-spreadsheet-fill::before { content: "\f388"; } -.bi-file-earmark-spreadsheet::before { content: "\f389"; } -.bi-file-earmark-text-fill::before { content: "\f38a"; } -.bi-file-earmark-text::before { content: "\f38b"; } -.bi-file-earmark-word-fill::before { content: "\f38c"; } -.bi-file-earmark-word::before { content: "\f38d"; } -.bi-file-earmark-x-fill::before { content: "\f38e"; } -.bi-file-earmark-x::before { content: "\f38f"; } -.bi-file-earmark-zip-fill::before { content: "\f390"; } -.bi-file-earmark-zip::before { content: "\f391"; } -.bi-file-earmark::before { content: "\f392"; } -.bi-file-easel-fill::before { content: "\f393"; } -.bi-file-easel::before { content: "\f394"; } -.bi-file-excel-fill::before { content: "\f395"; } -.bi-file-excel::before { content: "\f396"; } -.bi-file-fill::before { content: "\f397"; } -.bi-file-font-fill::before { content: "\f398"; } -.bi-file-font::before { content: "\f399"; } -.bi-file-image-fill::before { content: "\f39a"; } -.bi-file-image::before { content: "\f39b"; } -.bi-file-lock-fill::before { content: "\f39c"; } -.bi-file-lock::before { content: "\f39d"; } -.bi-file-lock2-fill::before { content: "\f39e"; } -.bi-file-lock2::before { content: "\f39f"; } -.bi-file-medical-fill::before { content: "\f3a0"; } -.bi-file-medical::before { content: "\f3a1"; } -.bi-file-minus-fill::before { content: "\f3a2"; } -.bi-file-minus::before { content: "\f3a3"; } -.bi-file-music-fill::before { content: "\f3a4"; } -.bi-file-music::before { content: "\f3a5"; } -.bi-file-person-fill::before { content: "\f3a6"; } -.bi-file-person::before { content: "\f3a7"; } -.bi-file-play-fill::before { content: "\f3a8"; } -.bi-file-play::before { content: "\f3a9"; } -.bi-file-plus-fill::before { content: "\f3aa"; } -.bi-file-plus::before { content: "\f3ab"; } -.bi-file-post-fill::before { content: "\f3ac"; } -.bi-file-post::before { content: "\f3ad"; } -.bi-file-ppt-fill::before { content: "\f3ae"; } -.bi-file-ppt::before { content: "\f3af"; } -.bi-file-richtext-fill::before { content: "\f3b0"; } -.bi-file-richtext::before { content: "\f3b1"; } -.bi-file-ruled-fill::before { content: "\f3b2"; } -.bi-file-ruled::before { content: "\f3b3"; } -.bi-file-slides-fill::before { content: "\f3b4"; } -.bi-file-slides::before { content: "\f3b5"; } -.bi-file-spreadsheet-fill::before { content: "\f3b6"; } -.bi-file-spreadsheet::before { content: "\f3b7"; } -.bi-file-text-fill::before { content: "\f3b8"; } -.bi-file-text::before { content: "\f3b9"; } -.bi-file-word-fill::before { content: "\f3ba"; } -.bi-file-word::before { content: "\f3bb"; } -.bi-file-x-fill::before { content: "\f3bc"; } -.bi-file-x::before { content: "\f3bd"; } -.bi-file-zip-fill::before { content: "\f3be"; } -.bi-file-zip::before { content: "\f3bf"; } -.bi-file::before { content: "\f3c0"; } -.bi-files-alt::before { content: "\f3c1"; } -.bi-files::before { content: "\f3c2"; } -.bi-film::before { content: "\f3c3"; } -.bi-filter-circle-fill::before { content: "\f3c4"; } -.bi-filter-circle::before { content: "\f3c5"; } -.bi-filter-left::before { content: "\f3c6"; } -.bi-filter-right::before { content: "\f3c7"; } -.bi-filter-square-fill::before { content: "\f3c8"; } -.bi-filter-square::before { content: "\f3c9"; } -.bi-filter::before { content: "\f3ca"; } -.bi-flag-fill::before { content: "\f3cb"; } -.bi-flag::before { content: "\f3cc"; } -.bi-flower1::before { content: "\f3cd"; } -.bi-flower2::before { content: "\f3ce"; } -.bi-flower3::before { content: "\f3cf"; } -.bi-folder-check::before { content: "\f3d0"; } -.bi-folder-fill::before { content: "\f3d1"; } -.bi-folder-minus::before { content: "\f3d2"; } -.bi-folder-plus::before { content: "\f3d3"; } -.bi-folder-symlink-fill::before { content: "\f3d4"; } -.bi-folder-symlink::before { content: "\f3d5"; } -.bi-folder-x::before { content: "\f3d6"; } -.bi-folder::before { content: "\f3d7"; } -.bi-folder2-open::before { content: "\f3d8"; } -.bi-folder2::before { content: "\f3d9"; } -.bi-fonts::before { content: "\f3da"; } -.bi-forward-fill::before { content: "\f3db"; } -.bi-forward::before { content: "\f3dc"; } -.bi-front::before { content: "\f3dd"; } -.bi-fullscreen-exit::before { content: "\f3de"; } -.bi-fullscreen::before { content: "\f3df"; } -.bi-funnel-fill::before { content: "\f3e0"; } -.bi-funnel::before { content: "\f3e1"; } -.bi-gear-fill::before { content: "\f3e2"; } -.bi-gear-wide-connected::before { content: "\f3e3"; } -.bi-gear-wide::before { content: "\f3e4"; } -.bi-gear::before { content: "\f3e5"; } -.bi-gem::before { content: "\f3e6"; } -.bi-geo-alt-fill::before { content: "\f3e7"; } -.bi-geo-alt::before { content: "\f3e8"; } -.bi-geo-fill::before { content: "\f3e9"; } -.bi-geo::before { content: "\f3ea"; } -.bi-gift-fill::before { content: "\f3eb"; } -.bi-gift::before { content: "\f3ec"; } -.bi-github::before { content: "\f3ed"; } -.bi-globe::before { content: "\f3ee"; } -.bi-globe2::before { content: "\f3ef"; } -.bi-google::before { content: "\f3f0"; } -.bi-graph-down::before { content: "\f3f1"; } -.bi-graph-up::before { content: "\f3f2"; } -.bi-grid-1x2-fill::before { content: "\f3f3"; } -.bi-grid-1x2::before { content: "\f3f4"; } -.bi-grid-3x2-gap-fill::before { content: "\f3f5"; } -.bi-grid-3x2-gap::before { content: "\f3f6"; } -.bi-grid-3x2::before { content: "\f3f7"; } -.bi-grid-3x3-gap-fill::before { content: "\f3f8"; } -.bi-grid-3x3-gap::before { content: "\f3f9"; } -.bi-grid-3x3::before { content: "\f3fa"; } -.bi-grid-fill::before { content: "\f3fb"; } -.bi-grid::before { content: "\f3fc"; } -.bi-grip-horizontal::before { content: "\f3fd"; } -.bi-grip-vertical::before { content: "\f3fe"; } -.bi-hammer::before { content: "\f3ff"; } -.bi-hand-index-fill::before { content: "\f400"; } -.bi-hand-index-thumb-fill::before { content: "\f401"; } -.bi-hand-index-thumb::before { content: "\f402"; } -.bi-hand-index::before { content: "\f403"; } -.bi-hand-thumbs-down-fill::before { content: "\f404"; } -.bi-hand-thumbs-down::before { content: "\f405"; } -.bi-hand-thumbs-up-fill::before { content: "\f406"; } -.bi-hand-thumbs-up::before { content: "\f407"; } -.bi-handbag-fill::before { content: "\f408"; } -.bi-handbag::before { content: "\f409"; } -.bi-hash::before { content: "\f40a"; } -.bi-hdd-fill::before { content: "\f40b"; } -.bi-hdd-network-fill::before { content: "\f40c"; } -.bi-hdd-network::before { content: "\f40d"; } -.bi-hdd-rack-fill::before { content: "\f40e"; } -.bi-hdd-rack::before { content: "\f40f"; } -.bi-hdd-stack-fill::before { content: "\f410"; } -.bi-hdd-stack::before { content: "\f411"; } -.bi-hdd::before { content: "\f412"; } -.bi-headphones::before { content: "\f413"; } -.bi-headset::before { content: "\f414"; } -.bi-heart-fill::before { content: "\f415"; } -.bi-heart-half::before { content: "\f416"; } -.bi-heart::before { content: "\f417"; } -.bi-heptagon-fill::before { content: "\f418"; } -.bi-heptagon-half::before { content: "\f419"; } -.bi-heptagon::before { content: "\f41a"; } -.bi-hexagon-fill::before { content: "\f41b"; } -.bi-hexagon-half::before { content: "\f41c"; } -.bi-hexagon::before { content: "\f41d"; } -.bi-hourglass-bottom::before { content: "\f41e"; } -.bi-hourglass-split::before { content: "\f41f"; } -.bi-hourglass-top::before { content: "\f420"; } -.bi-hourglass::before { content: "\f421"; } -.bi-house-door-fill::before { content: "\f422"; } -.bi-house-door::before { content: "\f423"; } -.bi-house-fill::before { content: "\f424"; } -.bi-house::before { content: "\f425"; } -.bi-hr::before { content: "\f426"; } -.bi-hurricane::before { content: "\f427"; } -.bi-image-alt::before { content: "\f428"; } -.bi-image-fill::before { content: "\f429"; } -.bi-image::before { content: "\f42a"; } -.bi-images::before { content: "\f42b"; } -.bi-inbox-fill::before { content: "\f42c"; } -.bi-inbox::before { content: "\f42d"; } -.bi-inboxes-fill::before { content: "\f42e"; } -.bi-inboxes::before { content: "\f42f"; } -.bi-info-circle-fill::before { content: "\f430"; } -.bi-info-circle::before { content: "\f431"; } -.bi-info-square-fill::before { content: "\f432"; } -.bi-info-square::before { content: "\f433"; } -.bi-info::before { content: "\f434"; } -.bi-input-cursor-text::before { content: "\f435"; } -.bi-input-cursor::before { content: "\f436"; } -.bi-instagram::before { content: "\f437"; } -.bi-intersect::before { content: "\f438"; } -.bi-journal-album::before { content: "\f439"; } -.bi-journal-arrow-down::before { content: "\f43a"; } -.bi-journal-arrow-up::before { content: "\f43b"; } -.bi-journal-bookmark-fill::before { content: "\f43c"; } -.bi-journal-bookmark::before { content: "\f43d"; } -.bi-journal-check::before { content: "\f43e"; } -.bi-journal-code::before { content: "\f43f"; } -.bi-journal-medical::before { content: "\f440"; } -.bi-journal-minus::before { content: "\f441"; } -.bi-journal-plus::before { content: "\f442"; } -.bi-journal-richtext::before { content: "\f443"; } -.bi-journal-text::before { content: "\f444"; } -.bi-journal-x::before { content: "\f445"; } -.bi-journal::before { content: "\f446"; } -.bi-journals::before { content: "\f447"; } -.bi-joystick::before { content: "\f448"; } -.bi-justify-left::before { content: "\f449"; } -.bi-justify-right::before { content: "\f44a"; } -.bi-justify::before { content: "\f44b"; } -.bi-kanban-fill::before { content: "\f44c"; } -.bi-kanban::before { content: "\f44d"; } -.bi-key-fill::before { content: "\f44e"; } -.bi-key::before { content: "\f44f"; } -.bi-keyboard-fill::before { content: "\f450"; } -.bi-keyboard::before { content: "\f451"; } -.bi-ladder::before { content: "\f452"; } -.bi-lamp-fill::before { content: "\f453"; } -.bi-lamp::before { content: "\f454"; } -.bi-laptop-fill::before { content: "\f455"; } -.bi-laptop::before { content: "\f456"; } -.bi-layer-backward::before { content: "\f457"; } -.bi-layer-forward::before { content: "\f458"; } -.bi-layers-fill::before { content: "\f459"; } -.bi-layers-half::before { content: "\f45a"; } -.bi-layers::before { content: "\f45b"; } -.bi-layout-sidebar-inset-reverse::before { content: "\f45c"; } -.bi-layout-sidebar-inset::before { content: "\f45d"; } -.bi-layout-sidebar-reverse::before { content: "\f45e"; } -.bi-layout-sidebar::before { content: "\f45f"; } -.bi-layout-split::before { content: "\f460"; } -.bi-layout-text-sidebar-reverse::before { content: "\f461"; } -.bi-layout-text-sidebar::before { content: "\f462"; } -.bi-layout-text-window-reverse::before { content: "\f463"; } -.bi-layout-text-window::before { content: "\f464"; } -.bi-layout-three-columns::before { content: "\f465"; } -.bi-layout-wtf::before { content: "\f466"; } -.bi-life-preserver::before { content: "\f467"; } -.bi-lightbulb-fill::before { content: "\f468"; } -.bi-lightbulb-off-fill::before { content: "\f469"; } -.bi-lightbulb-off::before { content: "\f46a"; } -.bi-lightbulb::before { content: "\f46b"; } -.bi-lightning-charge-fill::before { content: "\f46c"; } -.bi-lightning-charge::before { content: "\f46d"; } -.bi-lightning-fill::before { content: "\f46e"; } -.bi-lightning::before { content: "\f46f"; } -.bi-link-45deg::before { content: "\f470"; } -.bi-link::before { content: "\f471"; } -.bi-linkedin::before { content: "\f472"; } -.bi-list-check::before { content: "\f473"; } -.bi-list-nested::before { content: "\f474"; } -.bi-list-ol::before { content: "\f475"; } -.bi-list-stars::before { content: "\f476"; } -.bi-list-task::before { content: "\f477"; } -.bi-list-ul::before { content: "\f478"; } -.bi-list::before { content: "\f479"; } -.bi-lock-fill::before { content: "\f47a"; } -.bi-lock::before { content: "\f47b"; } -.bi-mailbox::before { content: "\f47c"; } -.bi-mailbox2::before { content: "\f47d"; } -.bi-map-fill::before { content: "\f47e"; } -.bi-map::before { content: "\f47f"; } -.bi-markdown-fill::before { content: "\f480"; } -.bi-markdown::before { content: "\f481"; } -.bi-mask::before { content: "\f482"; } -.bi-megaphone-fill::before { content: "\f483"; } -.bi-megaphone::before { content: "\f484"; } -.bi-menu-app-fill::before { content: "\f485"; } -.bi-menu-app::before { content: "\f486"; } -.bi-menu-button-fill::before { content: "\f487"; } -.bi-menu-button-wide-fill::before { content: "\f488"; } -.bi-menu-button-wide::before { content: "\f489"; } -.bi-menu-button::before { content: "\f48a"; } -.bi-menu-down::before { content: "\f48b"; } -.bi-menu-up::before { content: "\f48c"; } -.bi-mic-fill::before { content: "\f48d"; } -.bi-mic-mute-fill::before { content: "\f48e"; } -.bi-mic-mute::before { content: "\f48f"; } -.bi-mic::before { content: "\f490"; } -.bi-minecart-loaded::before { content: "\f491"; } -.bi-minecart::before { content: "\f492"; } -.bi-moisture::before { content: "\f493"; } -.bi-moon-fill::before { content: "\f494"; } -.bi-moon-stars-fill::before { content: "\f495"; } -.bi-moon-stars::before { content: "\f496"; } -.bi-moon::before { content: "\f497"; } -.bi-mouse-fill::before { content: "\f498"; } -.bi-mouse::before { content: "\f499"; } -.bi-mouse2-fill::before { content: "\f49a"; } -.bi-mouse2::before { content: "\f49b"; } -.bi-mouse3-fill::before { content: "\f49c"; } -.bi-mouse3::before { content: "\f49d"; } -.bi-music-note-beamed::before { content: "\f49e"; } -.bi-music-note-list::before { content: "\f49f"; } -.bi-music-note::before { content: "\f4a0"; } -.bi-music-player-fill::before { content: "\f4a1"; } -.bi-music-player::before { content: "\f4a2"; } -.bi-newspaper::before { content: "\f4a3"; } -.bi-node-minus-fill::before { content: "\f4a4"; } -.bi-node-minus::before { content: "\f4a5"; } -.bi-node-plus-fill::before { content: "\f4a6"; } -.bi-node-plus::before { content: "\f4a7"; } -.bi-nut-fill::before { content: "\f4a8"; } -.bi-nut::before { content: "\f4a9"; } -.bi-octagon-fill::before { content: "\f4aa"; } -.bi-octagon-half::before { content: "\f4ab"; } -.bi-octagon::before { content: "\f4ac"; } -.bi-option::before { content: "\f4ad"; } -.bi-outlet::before { content: "\f4ae"; } -.bi-paint-bucket::before { content: "\f4af"; } -.bi-palette-fill::before { content: "\f4b0"; } -.bi-palette::before { content: "\f4b1"; } -.bi-palette2::before { content: "\f4b2"; } -.bi-paperclip::before { content: "\f4b3"; } -.bi-paragraph::before { content: "\f4b4"; } -.bi-patch-check-fill::before { content: "\f4b5"; } -.bi-patch-check::before { content: "\f4b6"; } -.bi-patch-exclamation-fill::before { content: "\f4b7"; } -.bi-patch-exclamation::before { content: "\f4b8"; } -.bi-patch-minus-fill::before { content: "\f4b9"; } -.bi-patch-minus::before { content: "\f4ba"; } -.bi-patch-plus-fill::before { content: "\f4bb"; } -.bi-patch-plus::before { content: "\f4bc"; } -.bi-patch-question-fill::before { content: "\f4bd"; } -.bi-patch-question::before { content: "\f4be"; } -.bi-pause-btn-fill::before { content: "\f4bf"; } -.bi-pause-btn::before { content: "\f4c0"; } -.bi-pause-circle-fill::before { content: "\f4c1"; } -.bi-pause-circle::before { content: "\f4c2"; } -.bi-pause-fill::before { content: "\f4c3"; } -.bi-pause::before { content: "\f4c4"; } -.bi-peace-fill::before { content: "\f4c5"; } -.bi-peace::before { content: "\f4c6"; } -.bi-pen-fill::before { content: "\f4c7"; } -.bi-pen::before { content: "\f4c8"; } -.bi-pencil-fill::before { content: "\f4c9"; } -.bi-pencil-square::before { content: "\f4ca"; } -.bi-pencil::before { content: "\f4cb"; } -.bi-pentagon-fill::before { content: "\f4cc"; } -.bi-pentagon-half::before { content: "\f4cd"; } -.bi-pentagon::before { content: "\f4ce"; } -.bi-people-fill::before { content: "\f4cf"; } -.bi-people::before { content: "\f4d0"; } -.bi-percent::before { content: "\f4d1"; } -.bi-person-badge-fill::before { content: "\f4d2"; } -.bi-person-badge::before { content: "\f4d3"; } -.bi-person-bounding-box::before { content: "\f4d4"; } -.bi-person-check-fill::before { content: "\f4d5"; } -.bi-person-check::before { content: "\f4d6"; } -.bi-person-circle::before { content: "\f4d7"; } -.bi-person-dash-fill::before { content: "\f4d8"; } -.bi-person-dash::before { content: "\f4d9"; } -.bi-person-fill::before { content: "\f4da"; } -.bi-person-lines-fill::before { content: "\f4db"; } -.bi-person-plus-fill::before { content: "\f4dc"; } -.bi-person-plus::before { content: "\f4dd"; } -.bi-person-square::before { content: "\f4de"; } -.bi-person-x-fill::before { content: "\f4df"; } -.bi-person-x::before { content: "\f4e0"; } -.bi-person::before { content: "\f4e1"; } -.bi-phone-fill::before { content: "\f4e2"; } -.bi-phone-landscape-fill::before { content: "\f4e3"; } -.bi-phone-landscape::before { content: "\f4e4"; } -.bi-phone-vibrate-fill::before { content: "\f4e5"; } -.bi-phone-vibrate::before { content: "\f4e6"; } -.bi-phone::before { content: "\f4e7"; } -.bi-pie-chart-fill::before { content: "\f4e8"; } -.bi-pie-chart::before { content: "\f4e9"; } -.bi-pin-angle-fill::before { content: "\f4ea"; } -.bi-pin-angle::before { content: "\f4eb"; } -.bi-pin-fill::before { content: "\f4ec"; } -.bi-pin::before { content: "\f4ed"; } -.bi-pip-fill::before { content: "\f4ee"; } -.bi-pip::before { content: "\f4ef"; } -.bi-play-btn-fill::before { content: "\f4f0"; } -.bi-play-btn::before { content: "\f4f1"; } -.bi-play-circle-fill::before { content: "\f4f2"; } -.bi-play-circle::before { content: "\f4f3"; } -.bi-play-fill::before { content: "\f4f4"; } -.bi-play::before { content: "\f4f5"; } -.bi-plug-fill::before { content: "\f4f6"; } -.bi-plug::before { content: "\f4f7"; } -.bi-plus-circle-dotted::before { content: "\f4f8"; } -.bi-plus-circle-fill::before { content: "\f4f9"; } -.bi-plus-circle::before { content: "\f4fa"; } -.bi-plus-square-dotted::before { content: "\f4fb"; } -.bi-plus-square-fill::before { content: "\f4fc"; } -.bi-plus-square::before { content: "\f4fd"; } -.bi-plus::before { content: "\f4fe"; } -.bi-power::before { content: "\f4ff"; } -.bi-printer-fill::before { content: "\f500"; } -.bi-printer::before { content: "\f501"; } -.bi-puzzle-fill::before { content: "\f502"; } -.bi-puzzle::before { content: "\f503"; } -.bi-question-circle-fill::before { content: "\f504"; } -.bi-question-circle::before { content: "\f505"; } -.bi-question-diamond-fill::before { content: "\f506"; } -.bi-question-diamond::before { content: "\f507"; } -.bi-question-octagon-fill::before { content: "\f508"; } -.bi-question-octagon::before { content: "\f509"; } -.bi-question-square-fill::before { content: "\f50a"; } -.bi-question-square::before { content: "\f50b"; } -.bi-question::before { content: "\f50c"; } -.bi-rainbow::before { content: "\f50d"; } -.bi-receipt-cutoff::before { content: "\f50e"; } -.bi-receipt::before { content: "\f50f"; } -.bi-reception-0::before { content: "\f510"; } -.bi-reception-1::before { content: "\f511"; } -.bi-reception-2::before { content: "\f512"; } -.bi-reception-3::before { content: "\f513"; } -.bi-reception-4::before { content: "\f514"; } -.bi-record-btn-fill::before { content: "\f515"; } -.bi-record-btn::before { content: "\f516"; } -.bi-record-circle-fill::before { content: "\f517"; } -.bi-record-circle::before { content: "\f518"; } -.bi-record-fill::before { content: "\f519"; } -.bi-record::before { content: "\f51a"; } -.bi-record2-fill::before { content: "\f51b"; } -.bi-record2::before { content: "\f51c"; } -.bi-reply-all-fill::before { content: "\f51d"; } -.bi-reply-all::before { content: "\f51e"; } -.bi-reply-fill::before { content: "\f51f"; } -.bi-reply::before { content: "\f520"; } -.bi-rss-fill::before { content: "\f521"; } -.bi-rss::before { content: "\f522"; } -.bi-rulers::before { content: "\f523"; } -.bi-save-fill::before { content: "\f524"; } -.bi-save::before { content: "\f525"; } -.bi-save2-fill::before { content: "\f526"; } -.bi-save2::before { content: "\f527"; } -.bi-scissors::before { content: "\f528"; } -.bi-screwdriver::before { content: "\f529"; } -.bi-search::before { content: "\f52a"; } -.bi-segmented-nav::before { content: "\f52b"; } -.bi-server::before { content: "\f52c"; } -.bi-share-fill::before { content: "\f52d"; } -.bi-share::before { content: "\f52e"; } -.bi-shield-check::before { content: "\f52f"; } -.bi-shield-exclamation::before { content: "\f530"; } -.bi-shield-fill-check::before { content: "\f531"; } -.bi-shield-fill-exclamation::before { content: "\f532"; } -.bi-shield-fill-minus::before { content: "\f533"; } -.bi-shield-fill-plus::before { content: "\f534"; } -.bi-shield-fill-x::before { content: "\f535"; } -.bi-shield-fill::before { content: "\f536"; } -.bi-shield-lock-fill::before { content: "\f537"; } -.bi-shield-lock::before { content: "\f538"; } -.bi-shield-minus::before { content: "\f539"; } -.bi-shield-plus::before { content: "\f53a"; } -.bi-shield-shaded::before { content: "\f53b"; } -.bi-shield-slash-fill::before { content: "\f53c"; } -.bi-shield-slash::before { content: "\f53d"; } -.bi-shield-x::before { content: "\f53e"; } -.bi-shield::before { content: "\f53f"; } -.bi-shift-fill::before { content: "\f540"; } -.bi-shift::before { content: "\f541"; } -.bi-shop-window::before { content: "\f542"; } -.bi-shop::before { content: "\f543"; } -.bi-shuffle::before { content: "\f544"; } -.bi-signpost-2-fill::before { content: "\f545"; } -.bi-signpost-2::before { content: "\f546"; } -.bi-signpost-fill::before { content: "\f547"; } -.bi-signpost-split-fill::before { content: "\f548"; } -.bi-signpost-split::before { content: "\f549"; } -.bi-signpost::before { content: "\f54a"; } -.bi-sim-fill::before { content: "\f54b"; } -.bi-sim::before { content: "\f54c"; } -.bi-skip-backward-btn-fill::before { content: "\f54d"; } -.bi-skip-backward-btn::before { content: "\f54e"; } -.bi-skip-backward-circle-fill::before { content: "\f54f"; } -.bi-skip-backward-circle::before { content: "\f550"; } -.bi-skip-backward-fill::before { content: "\f551"; } -.bi-skip-backward::before { content: "\f552"; } -.bi-skip-end-btn-fill::before { content: "\f553"; } -.bi-skip-end-btn::before { content: "\f554"; } -.bi-skip-end-circle-fill::before { content: "\f555"; } -.bi-skip-end-circle::before { content: "\f556"; } -.bi-skip-end-fill::before { content: "\f557"; } -.bi-skip-end::before { content: "\f558"; } -.bi-skip-forward-btn-fill::before { content: "\f559"; } -.bi-skip-forward-btn::before { content: "\f55a"; } -.bi-skip-forward-circle-fill::before { content: "\f55b"; } -.bi-skip-forward-circle::before { content: "\f55c"; } -.bi-skip-forward-fill::before { content: "\f55d"; } -.bi-skip-forward::before { content: "\f55e"; } -.bi-skip-start-btn-fill::before { content: "\f55f"; } -.bi-skip-start-btn::before { content: "\f560"; } -.bi-skip-start-circle-fill::before { content: "\f561"; } -.bi-skip-start-circle::before { content: "\f562"; } -.bi-skip-start-fill::before { content: "\f563"; } -.bi-skip-start::before { content: "\f564"; } -.bi-slack::before { content: "\f565"; } -.bi-slash-circle-fill::before { content: "\f566"; } -.bi-slash-circle::before { content: "\f567"; } -.bi-slash-square-fill::before { content: "\f568"; } -.bi-slash-square::before { content: "\f569"; } -.bi-slash::before { content: "\f56a"; } -.bi-sliders::before { content: "\f56b"; } -.bi-smartwatch::before { content: "\f56c"; } -.bi-snow::before { content: "\f56d"; } -.bi-snow2::before { content: "\f56e"; } -.bi-snow3::before { content: "\f56f"; } -.bi-sort-alpha-down-alt::before { content: "\f570"; } -.bi-sort-alpha-down::before { content: "\f571"; } -.bi-sort-alpha-up-alt::before { content: "\f572"; } -.bi-sort-alpha-up::before { content: "\f573"; } -.bi-sort-down-alt::before { content: "\f574"; } -.bi-sort-down::before { content: "\f575"; } -.bi-sort-numeric-down-alt::before { content: "\f576"; } -.bi-sort-numeric-down::before { content: "\f577"; } -.bi-sort-numeric-up-alt::before { content: "\f578"; } -.bi-sort-numeric-up::before { content: "\f579"; } -.bi-sort-up-alt::before { content: "\f57a"; } -.bi-sort-up::before { content: "\f57b"; } -.bi-soundwave::before { content: "\f57c"; } -.bi-speaker-fill::before { content: "\f57d"; } -.bi-speaker::before { content: "\f57e"; } -.bi-speedometer::before { content: "\f57f"; } -.bi-speedometer2::before { content: "\f580"; } -.bi-spellcheck::before { content: "\f581"; } -.bi-square-fill::before { content: "\f582"; } -.bi-square-half::before { content: "\f583"; } -.bi-square::before { content: "\f584"; } -.bi-stack::before { content: "\f585"; } -.bi-star-fill::before { content: "\f586"; } -.bi-star-half::before { content: "\f587"; } -.bi-star::before { content: "\f588"; } -.bi-stars::before { content: "\f589"; } -.bi-stickies-fill::before { content: "\f58a"; } -.bi-stickies::before { content: "\f58b"; } -.bi-sticky-fill::before { content: "\f58c"; } -.bi-sticky::before { content: "\f58d"; } -.bi-stop-btn-fill::before { content: "\f58e"; } -.bi-stop-btn::before { content: "\f58f"; } -.bi-stop-circle-fill::before { content: "\f590"; } -.bi-stop-circle::before { content: "\f591"; } -.bi-stop-fill::before { content: "\f592"; } -.bi-stop::before { content: "\f593"; } -.bi-stoplights-fill::before { content: "\f594"; } -.bi-stoplights::before { content: "\f595"; } -.bi-stopwatch-fill::before { content: "\f596"; } -.bi-stopwatch::before { content: "\f597"; } -.bi-subtract::before { content: "\f598"; } -.bi-suit-club-fill::before { content: "\f599"; } -.bi-suit-club::before { content: "\f59a"; } -.bi-suit-diamond-fill::before { content: "\f59b"; } -.bi-suit-diamond::before { content: "\f59c"; } -.bi-suit-heart-fill::before { content: "\f59d"; } -.bi-suit-heart::before { content: "\f59e"; } -.bi-suit-spade-fill::before { content: "\f59f"; } -.bi-suit-spade::before { content: "\f5a0"; } -.bi-sun-fill::before { content: "\f5a1"; } -.bi-sun::before { content: "\f5a2"; } -.bi-sunglasses::before { content: "\f5a3"; } -.bi-sunrise-fill::before { content: "\f5a4"; } -.bi-sunrise::before { content: "\f5a5"; } -.bi-sunset-fill::before { content: "\f5a6"; } -.bi-sunset::before { content: "\f5a7"; } -.bi-symmetry-horizontal::before { content: "\f5a8"; } -.bi-symmetry-vertical::before { content: "\f5a9"; } -.bi-table::before { content: "\f5aa"; } -.bi-tablet-fill::before { content: "\f5ab"; } -.bi-tablet-landscape-fill::before { content: "\f5ac"; } -.bi-tablet-landscape::before { content: "\f5ad"; } -.bi-tablet::before { content: "\f5ae"; } -.bi-tag-fill::before { content: "\f5af"; } -.bi-tag::before { content: "\f5b0"; } -.bi-tags-fill::before { content: "\f5b1"; } -.bi-tags::before { content: "\f5b2"; } -.bi-telegram::before { content: "\f5b3"; } -.bi-telephone-fill::before { content: "\f5b4"; } -.bi-telephone-forward-fill::before { content: "\f5b5"; } -.bi-telephone-forward::before { content: "\f5b6"; } -.bi-telephone-inbound-fill::before { content: "\f5b7"; } -.bi-telephone-inbound::before { content: "\f5b8"; } -.bi-telephone-minus-fill::before { content: "\f5b9"; } -.bi-telephone-minus::before { content: "\f5ba"; } -.bi-telephone-outbound-fill::before { content: "\f5bb"; } -.bi-telephone-outbound::before { content: "\f5bc"; } -.bi-telephone-plus-fill::before { content: "\f5bd"; } -.bi-telephone-plus::before { content: "\f5be"; } -.bi-telephone-x-fill::before { content: "\f5bf"; } -.bi-telephone-x::before { content: "\f5c0"; } -.bi-telephone::before { content: "\f5c1"; } -.bi-terminal-fill::before { content: "\f5c2"; } -.bi-terminal::before { content: "\f5c3"; } -.bi-text-center::before { content: "\f5c4"; } -.bi-text-indent-left::before { content: "\f5c5"; } -.bi-text-indent-right::before { content: "\f5c6"; } -.bi-text-left::before { content: "\f5c7"; } -.bi-text-paragraph::before { content: "\f5c8"; } -.bi-text-right::before { content: "\f5c9"; } -.bi-textarea-resize::before { content: "\f5ca"; } -.bi-textarea-t::before { content: "\f5cb"; } -.bi-textarea::before { content: "\f5cc"; } -.bi-thermometer-half::before { content: "\f5cd"; } -.bi-thermometer-high::before { content: "\f5ce"; } -.bi-thermometer-low::before { content: "\f5cf"; } -.bi-thermometer-snow::before { content: "\f5d0"; } -.bi-thermometer-sun::before { content: "\f5d1"; } -.bi-thermometer::before { content: "\f5d2"; } -.bi-three-dots-vertical::before { content: "\f5d3"; } -.bi-three-dots::before { content: "\f5d4"; } -.bi-toggle-off::before { content: "\f5d5"; } -.bi-toggle-on::before { content: "\f5d6"; } -.bi-toggle2-off::before { content: "\f5d7"; } -.bi-toggle2-on::before { content: "\f5d8"; } -.bi-toggles::before { content: "\f5d9"; } -.bi-toggles2::before { content: "\f5da"; } -.bi-tools::before { content: "\f5db"; } -.bi-tornado::before { content: "\f5dc"; } -.bi-trash-fill::before { content: "\f5dd"; } -.bi-trash::before { content: "\f5de"; } -.bi-trash2-fill::before { content: "\f5df"; } -.bi-trash2::before { content: "\f5e0"; } -.bi-tree-fill::before { content: "\f5e1"; } -.bi-tree::before { content: "\f5e2"; } -.bi-triangle-fill::before { content: "\f5e3"; } -.bi-triangle-half::before { content: "\f5e4"; } -.bi-triangle::before { content: "\f5e5"; } -.bi-trophy-fill::before { content: "\f5e6"; } -.bi-trophy::before { content: "\f5e7"; } -.bi-tropical-storm::before { content: "\f5e8"; } -.bi-truck-flatbed::before { content: "\f5e9"; } -.bi-truck::before { content: "\f5ea"; } -.bi-tsunami::before { content: "\f5eb"; } -.bi-tv-fill::before { content: "\f5ec"; } -.bi-tv::before { content: "\f5ed"; } -.bi-twitch::before { content: "\f5ee"; } -.bi-twitter::before { content: "\f5ef"; } -.bi-type-bold::before { content: "\f5f0"; } -.bi-type-h1::before { content: "\f5f1"; } -.bi-type-h2::before { content: "\f5f2"; } -.bi-type-h3::before { content: "\f5f3"; } -.bi-type-italic::before { content: "\f5f4"; } -.bi-type-strikethrough::before { content: "\f5f5"; } -.bi-type-underline::before { content: "\f5f6"; } -.bi-type::before { content: "\f5f7"; } -.bi-ui-checks-grid::before { content: "\f5f8"; } -.bi-ui-checks::before { content: "\f5f9"; } -.bi-ui-radios-grid::before { content: "\f5fa"; } -.bi-ui-radios::before { content: "\f5fb"; } -.bi-umbrella-fill::before { content: "\f5fc"; } -.bi-umbrella::before { content: "\f5fd"; } -.bi-union::before { content: "\f5fe"; } -.bi-unlock-fill::before { content: "\f5ff"; } -.bi-unlock::before { content: "\f600"; } -.bi-upc-scan::before { content: "\f601"; } -.bi-upc::before { content: "\f602"; } -.bi-upload::before { content: "\f603"; } -.bi-vector-pen::before { content: "\f604"; } -.bi-view-list::before { content: "\f605"; } -.bi-view-stacked::before { content: "\f606"; } -.bi-vinyl-fill::before { content: "\f607"; } -.bi-vinyl::before { content: "\f608"; } -.bi-voicemail::before { content: "\f609"; } -.bi-volume-down-fill::before { content: "\f60a"; } -.bi-volume-down::before { content: "\f60b"; } -.bi-volume-mute-fill::before { content: "\f60c"; } -.bi-volume-mute::before { content: "\f60d"; } -.bi-volume-off-fill::before { content: "\f60e"; } -.bi-volume-off::before { content: "\f60f"; } -.bi-volume-up-fill::before { content: "\f610"; } -.bi-volume-up::before { content: "\f611"; } -.bi-vr::before { content: "\f612"; } -.bi-wallet-fill::before { content: "\f613"; } -.bi-wallet::before { content: "\f614"; } -.bi-wallet2::before { content: "\f615"; } -.bi-watch::before { content: "\f616"; } -.bi-water::before { content: "\f617"; } -.bi-whatsapp::before { content: "\f618"; } -.bi-wifi-1::before { content: "\f619"; } -.bi-wifi-2::before { content: "\f61a"; } -.bi-wifi-off::before { content: "\f61b"; } -.bi-wifi::before { content: "\f61c"; } -.bi-wind::before { content: "\f61d"; } -.bi-window-dock::before { content: "\f61e"; } -.bi-window-sidebar::before { content: "\f61f"; } -.bi-window::before { content: "\f620"; } -.bi-wrench::before { content: "\f621"; } -.bi-x-circle-fill::before { content: "\f622"; } -.bi-x-circle::before { content: "\f623"; } -.bi-x-diamond-fill::before { content: "\f624"; } -.bi-x-diamond::before { content: "\f625"; } -.bi-x-octagon-fill::before { content: "\f626"; } -.bi-x-octagon::before { content: "\f627"; } -.bi-x-square-fill::before { content: "\f628"; } -.bi-x-square::before { content: "\f629"; } -.bi-x::before { content: "\f62a"; } -.bi-youtube::before { content: "\f62b"; } -.bi-zoom-in::before { content: "\f62c"; } -.bi-zoom-out::before { content: "\f62d"; } -.bi-bank::before { content: "\f62e"; } -.bi-bank2::before { content: "\f62f"; } -.bi-bell-slash-fill::before { content: "\f630"; } -.bi-bell-slash::before { content: "\f631"; } -.bi-cash-coin::before { content: "\f632"; } -.bi-check-lg::before { content: "\f633"; } -.bi-coin::before { content: "\f634"; } -.bi-currency-bitcoin::before { content: "\f635"; } -.bi-currency-dollar::before { content: "\f636"; } -.bi-currency-euro::before { content: "\f637"; } -.bi-currency-exchange::before { content: "\f638"; } -.bi-currency-pound::before { content: "\f639"; } -.bi-currency-yen::before { content: "\f63a"; } -.bi-dash-lg::before { content: "\f63b"; } -.bi-exclamation-lg::before { content: "\f63c"; } -.bi-file-earmark-pdf-fill::before { content: "\f63d"; } -.bi-file-earmark-pdf::before { content: "\f63e"; } -.bi-file-pdf-fill::before { content: "\f63f"; } -.bi-file-pdf::before { content: "\f640"; } -.bi-gender-ambiguous::before { content: "\f641"; } -.bi-gender-female::before { content: "\f642"; } -.bi-gender-male::before { content: "\f643"; } -.bi-gender-trans::before { content: "\f644"; } -.bi-headset-vr::before { content: "\f645"; } -.bi-info-lg::before { content: "\f646"; } -.bi-mastodon::before { content: "\f647"; } -.bi-messenger::before { content: "\f648"; } -.bi-piggy-bank-fill::before { content: "\f649"; } -.bi-piggy-bank::before { content: "\f64a"; } -.bi-pin-map-fill::before { content: "\f64b"; } -.bi-pin-map::before { content: "\f64c"; } -.bi-plus-lg::before { content: "\f64d"; } -.bi-question-lg::before { content: "\f64e"; } -.bi-recycle::before { content: "\f64f"; } -.bi-reddit::before { content: "\f650"; } -.bi-safe-fill::before { content: "\f651"; } -.bi-safe2-fill::before { content: "\f652"; } -.bi-safe2::before { content: "\f653"; } -.bi-sd-card-fill::before { content: "\f654"; } -.bi-sd-card::before { content: "\f655"; } -.bi-skype::before { content: "\f656"; } -.bi-slash-lg::before { content: "\f657"; } -.bi-translate::before { content: "\f658"; } -.bi-x-lg::before { content: "\f659"; } -.bi-safe::before { content: "\f65a"; } -.bi-apple::before { content: "\f65b"; } -.bi-microsoft::before { content: "\f65d"; } -.bi-windows::before { content: "\f65e"; } -.bi-behance::before { content: "\f65c"; } -.bi-dribbble::before { content: "\f65f"; } -.bi-line::before { content: "\f660"; } -.bi-medium::before { content: "\f661"; } -.bi-paypal::before { content: "\f662"; } -.bi-pinterest::before { content: "\f663"; } -.bi-signal::before { content: "\f664"; } -.bi-snapchat::before { content: "\f665"; } -.bi-spotify::before { content: "\f666"; } -.bi-stack-overflow::before { content: "\f667"; } -.bi-strava::before { content: "\f668"; } -.bi-wordpress::before { content: "\f669"; } -.bi-vimeo::before { content: "\f66a"; } -.bi-activity::before { content: "\f66b"; } -.bi-easel2-fill::before { content: "\f66c"; } -.bi-easel2::before { content: "\f66d"; } -.bi-easel3-fill::before { content: "\f66e"; } -.bi-easel3::before { content: "\f66f"; } -.bi-fan::before { content: "\f670"; } -.bi-fingerprint::before { content: "\f671"; } -.bi-graph-down-arrow::before { content: "\f672"; } -.bi-graph-up-arrow::before { content: "\f673"; } -.bi-hypnotize::before { content: "\f674"; } -.bi-magic::before { content: "\f675"; } -.bi-person-rolodex::before { content: "\f676"; } -.bi-person-video::before { content: "\f677"; } -.bi-person-video2::before { content: "\f678"; } -.bi-person-video3::before { content: "\f679"; } -.bi-person-workspace::before { content: "\f67a"; } -.bi-radioactive::before { content: "\f67b"; } -.bi-webcam-fill::before { content: "\f67c"; } -.bi-webcam::before { content: "\f67d"; } -.bi-yin-yang::before { content: "\f67e"; } -.bi-bandaid-fill::before { content: "\f680"; } -.bi-bandaid::before { content: "\f681"; } -.bi-bluetooth::before { content: "\f682"; } -.bi-body-text::before { content: "\f683"; } -.bi-boombox::before { content: "\f684"; } -.bi-boxes::before { content: "\f685"; } -.bi-dpad-fill::before { content: "\f686"; } -.bi-dpad::before { content: "\f687"; } -.bi-ear-fill::before { content: "\f688"; } -.bi-ear::before { content: "\f689"; } -.bi-envelope-check-fill::before { content: "\f68b"; } -.bi-envelope-check::before { content: "\f68c"; } -.bi-envelope-dash-fill::before { content: "\f68e"; } -.bi-envelope-dash::before { content: "\f68f"; } -.bi-envelope-exclamation-fill::before { content: "\f691"; } -.bi-envelope-exclamation::before { content: "\f692"; } -.bi-envelope-plus-fill::before { content: "\f693"; } -.bi-envelope-plus::before { content: "\f694"; } -.bi-envelope-slash-fill::before { content: "\f696"; } -.bi-envelope-slash::before { content: "\f697"; } -.bi-envelope-x-fill::before { content: "\f699"; } -.bi-envelope-x::before { content: "\f69a"; } -.bi-explicit-fill::before { content: "\f69b"; } -.bi-explicit::before { content: "\f69c"; } -.bi-git::before { content: "\f69d"; } -.bi-infinity::before { content: "\f69e"; } -.bi-list-columns-reverse::before { content: "\f69f"; } -.bi-list-columns::before { content: "\f6a0"; } -.bi-meta::before { content: "\f6a1"; } -.bi-nintendo-switch::before { content: "\f6a4"; } -.bi-pc-display-horizontal::before { content: "\f6a5"; } -.bi-pc-display::before { content: "\f6a6"; } -.bi-pc-horizontal::before { content: "\f6a7"; } -.bi-pc::before { content: "\f6a8"; } -.bi-playstation::before { content: "\f6a9"; } -.bi-plus-slash-minus::before { content: "\f6aa"; } -.bi-projector-fill::before { content: "\f6ab"; } -.bi-projector::before { content: "\f6ac"; } -.bi-qr-code-scan::before { content: "\f6ad"; } -.bi-qr-code::before { content: "\f6ae"; } -.bi-quora::before { content: "\f6af"; } -.bi-quote::before { content: "\f6b0"; } -.bi-robot::before { content: "\f6b1"; } -.bi-send-check-fill::before { content: "\f6b2"; } -.bi-send-check::before { content: "\f6b3"; } -.bi-send-dash-fill::before { content: "\f6b4"; } -.bi-send-dash::before { content: "\f6b5"; } -.bi-send-exclamation-fill::before { content: "\f6b7"; } -.bi-send-exclamation::before { content: "\f6b8"; } -.bi-send-fill::before { content: "\f6b9"; } -.bi-send-plus-fill::before { content: "\f6ba"; } -.bi-send-plus::before { content: "\f6bb"; } -.bi-send-slash-fill::before { content: "\f6bc"; } -.bi-send-slash::before { content: "\f6bd"; } -.bi-send-x-fill::before { content: "\f6be"; } -.bi-send-x::before { content: "\f6bf"; } -.bi-send::before { content: "\f6c0"; } -.bi-steam::before { content: "\f6c1"; } -.bi-terminal-dash::before { content: "\f6c3"; } -.bi-terminal-plus::before { content: "\f6c4"; } -.bi-terminal-split::before { content: "\f6c5"; } -.bi-ticket-detailed-fill::before { content: "\f6c6"; } -.bi-ticket-detailed::before { content: "\f6c7"; } -.bi-ticket-fill::before { content: "\f6c8"; } -.bi-ticket-perforated-fill::before { content: "\f6c9"; } -.bi-ticket-perforated::before { content: "\f6ca"; } -.bi-ticket::before { content: "\f6cb"; } -.bi-tiktok::before { content: "\f6cc"; } -.bi-window-dash::before { content: "\f6cd"; } -.bi-window-desktop::before { content: "\f6ce"; } -.bi-window-fullscreen::before { content: "\f6cf"; } -.bi-window-plus::before { content: "\f6d0"; } -.bi-window-split::before { content: "\f6d1"; } -.bi-window-stack::before { content: "\f6d2"; } -.bi-window-x::before { content: "\f6d3"; } -.bi-xbox::before { content: "\f6d4"; } -.bi-ethernet::before { content: "\f6d5"; } -.bi-hdmi-fill::before { content: "\f6d6"; } -.bi-hdmi::before { content: "\f6d7"; } -.bi-usb-c-fill::before { content: "\f6d8"; } -.bi-usb-c::before { content: "\f6d9"; } -.bi-usb-fill::before { content: "\f6da"; } -.bi-usb-plug-fill::before { content: "\f6db"; } -.bi-usb-plug::before { content: "\f6dc"; } -.bi-usb-symbol::before { content: "\f6dd"; } -.bi-usb::before { content: "\f6de"; } -.bi-boombox-fill::before { content: "\f6df"; } -.bi-displayport::before { content: "\f6e1"; } -.bi-gpu-card::before { content: "\f6e2"; } -.bi-memory::before { content: "\f6e3"; } -.bi-modem-fill::before { content: "\f6e4"; } -.bi-modem::before { content: "\f6e5"; } -.bi-motherboard-fill::before { content: "\f6e6"; } -.bi-motherboard::before { content: "\f6e7"; } -.bi-optical-audio-fill::before { content: "\f6e8"; } -.bi-optical-audio::before { content: "\f6e9"; } -.bi-pci-card::before { content: "\f6ea"; } -.bi-router-fill::before { content: "\f6eb"; } -.bi-router::before { content: "\f6ec"; } -.bi-thunderbolt-fill::before { content: "\f6ef"; } -.bi-thunderbolt::before { content: "\f6f0"; } -.bi-usb-drive-fill::before { content: "\f6f1"; } -.bi-usb-drive::before { content: "\f6f2"; } -.bi-usb-micro-fill::before { content: "\f6f3"; } -.bi-usb-micro::before { content: "\f6f4"; } -.bi-usb-mini-fill::before { content: "\f6f5"; } -.bi-usb-mini::before { content: "\f6f6"; } -.bi-cloud-haze2::before { content: "\f6f7"; } -.bi-device-hdd-fill::before { content: "\f6f8"; } -.bi-device-hdd::before { content: "\f6f9"; } -.bi-device-ssd-fill::before { content: "\f6fa"; } -.bi-device-ssd::before { content: "\f6fb"; } -.bi-displayport-fill::before { content: "\f6fc"; } -.bi-mortarboard-fill::before { content: "\f6fd"; } -.bi-mortarboard::before { content: "\f6fe"; } -.bi-terminal-x::before { content: "\f6ff"; } -.bi-arrow-through-heart-fill::before { content: "\f700"; } -.bi-arrow-through-heart::before { content: "\f701"; } -.bi-badge-sd-fill::before { content: "\f702"; } -.bi-badge-sd::before { content: "\f703"; } -.bi-bag-heart-fill::before { content: "\f704"; } -.bi-bag-heart::before { content: "\f705"; } -.bi-balloon-fill::before { content: "\f706"; } -.bi-balloon-heart-fill::before { content: "\f707"; } -.bi-balloon-heart::before { content: "\f708"; } -.bi-balloon::before { content: "\f709"; } -.bi-box2-fill::before { content: "\f70a"; } -.bi-box2-heart-fill::before { content: "\f70b"; } -.bi-box2-heart::before { content: "\f70c"; } -.bi-box2::before { content: "\f70d"; } -.bi-braces-asterisk::before { content: "\f70e"; } -.bi-calendar-heart-fill::before { content: "\f70f"; } -.bi-calendar-heart::before { content: "\f710"; } -.bi-calendar2-heart-fill::before { content: "\f711"; } -.bi-calendar2-heart::before { content: "\f712"; } -.bi-chat-heart-fill::before { content: "\f713"; } -.bi-chat-heart::before { content: "\f714"; } -.bi-chat-left-heart-fill::before { content: "\f715"; } -.bi-chat-left-heart::before { content: "\f716"; } -.bi-chat-right-heart-fill::before { content: "\f717"; } -.bi-chat-right-heart::before { content: "\f718"; } -.bi-chat-square-heart-fill::before { content: "\f719"; } -.bi-chat-square-heart::before { content: "\f71a"; } -.bi-clipboard-check-fill::before { content: "\f71b"; } -.bi-clipboard-data-fill::before { content: "\f71c"; } -.bi-clipboard-fill::before { content: "\f71d"; } -.bi-clipboard-heart-fill::before { content: "\f71e"; } -.bi-clipboard-heart::before { content: "\f71f"; } -.bi-clipboard-minus-fill::before { content: "\f720"; } -.bi-clipboard-plus-fill::before { content: "\f721"; } -.bi-clipboard-pulse::before { content: "\f722"; } -.bi-clipboard-x-fill::before { content: "\f723"; } -.bi-clipboard2-check-fill::before { content: "\f724"; } -.bi-clipboard2-check::before { content: "\f725"; } -.bi-clipboard2-data-fill::before { content: "\f726"; } -.bi-clipboard2-data::before { content: "\f727"; } -.bi-clipboard2-fill::before { content: "\f728"; } -.bi-clipboard2-heart-fill::before { content: "\f729"; } -.bi-clipboard2-heart::before { content: "\f72a"; } -.bi-clipboard2-minus-fill::before { content: "\f72b"; } -.bi-clipboard2-minus::before { content: "\f72c"; } -.bi-clipboard2-plus-fill::before { content: "\f72d"; } -.bi-clipboard2-plus::before { content: "\f72e"; } -.bi-clipboard2-pulse-fill::before { content: "\f72f"; } -.bi-clipboard2-pulse::before { content: "\f730"; } -.bi-clipboard2-x-fill::before { content: "\f731"; } -.bi-clipboard2-x::before { content: "\f732"; } -.bi-clipboard2::before { content: "\f733"; } -.bi-emoji-kiss-fill::before { content: "\f734"; } -.bi-emoji-kiss::before { content: "\f735"; } -.bi-envelope-heart-fill::before { content: "\f736"; } -.bi-envelope-heart::before { content: "\f737"; } -.bi-envelope-open-heart-fill::before { content: "\f738"; } -.bi-envelope-open-heart::before { content: "\f739"; } -.bi-envelope-paper-fill::before { content: "\f73a"; } -.bi-envelope-paper-heart-fill::before { content: "\f73b"; } -.bi-envelope-paper-heart::before { content: "\f73c"; } -.bi-envelope-paper::before { content: "\f73d"; } -.bi-filetype-aac::before { content: "\f73e"; } -.bi-filetype-ai::before { content: "\f73f"; } -.bi-filetype-bmp::before { content: "\f740"; } -.bi-filetype-cs::before { content: "\f741"; } -.bi-filetype-css::before { content: "\f742"; } -.bi-filetype-csv::before { content: "\f743"; } -.bi-filetype-doc::before { content: "\f744"; } -.bi-filetype-docx::before { content: "\f745"; } -.bi-filetype-exe::before { content: "\f746"; } -.bi-filetype-gif::before { content: "\f747"; } -.bi-filetype-heic::before { content: "\f748"; } -.bi-filetype-html::before { content: "\f749"; } -.bi-filetype-java::before { content: "\f74a"; } -.bi-filetype-jpg::before { content: "\f74b"; } -.bi-filetype-js::before { content: "\f74c"; } -.bi-filetype-jsx::before { content: "\f74d"; } -.bi-filetype-key::before { content: "\f74e"; } -.bi-filetype-m4p::before { content: "\f74f"; } -.bi-filetype-md::before { content: "\f750"; } -.bi-filetype-mdx::before { content: "\f751"; } -.bi-filetype-mov::before { content: "\f752"; } -.bi-filetype-mp3::before { content: "\f753"; } -.bi-filetype-mp4::before { content: "\f754"; } -.bi-filetype-otf::before { content: "\f755"; } -.bi-filetype-pdf::before { content: "\f756"; } -.bi-filetype-php::before { content: "\f757"; } -.bi-filetype-png::before { content: "\f758"; } -.bi-filetype-ppt::before { content: "\f75a"; } -.bi-filetype-psd::before { content: "\f75b"; } -.bi-filetype-py::before { content: "\f75c"; } -.bi-filetype-raw::before { content: "\f75d"; } -.bi-filetype-rb::before { content: "\f75e"; } -.bi-filetype-sass::before { content: "\f75f"; } -.bi-filetype-scss::before { content: "\f760"; } -.bi-filetype-sh::before { content: "\f761"; } -.bi-filetype-svg::before { content: "\f762"; } -.bi-filetype-tiff::before { content: "\f763"; } -.bi-filetype-tsx::before { content: "\f764"; } -.bi-filetype-ttf::before { content: "\f765"; } -.bi-filetype-txt::before { content: "\f766"; } -.bi-filetype-wav::before { content: "\f767"; } -.bi-filetype-woff::before { content: "\f768"; } -.bi-filetype-xls::before { content: "\f76a"; } -.bi-filetype-xml::before { content: "\f76b"; } -.bi-filetype-yml::before { content: "\f76c"; } -.bi-heart-arrow::before { content: "\f76d"; } -.bi-heart-pulse-fill::before { content: "\f76e"; } -.bi-heart-pulse::before { content: "\f76f"; } -.bi-heartbreak-fill::before { content: "\f770"; } -.bi-heartbreak::before { content: "\f771"; } -.bi-hearts::before { content: "\f772"; } -.bi-hospital-fill::before { content: "\f773"; } -.bi-hospital::before { content: "\f774"; } -.bi-house-heart-fill::before { content: "\f775"; } -.bi-house-heart::before { content: "\f776"; } -.bi-incognito::before { content: "\f777"; } -.bi-magnet-fill::before { content: "\f778"; } -.bi-magnet::before { content: "\f779"; } -.bi-person-heart::before { content: "\f77a"; } -.bi-person-hearts::before { content: "\f77b"; } -.bi-phone-flip::before { content: "\f77c"; } -.bi-plugin::before { content: "\f77d"; } -.bi-postage-fill::before { content: "\f77e"; } -.bi-postage-heart-fill::before { content: "\f77f"; } -.bi-postage-heart::before { content: "\f780"; } -.bi-postage::before { content: "\f781"; } -.bi-postcard-fill::before { content: "\f782"; } -.bi-postcard-heart-fill::before { content: "\f783"; } -.bi-postcard-heart::before { content: "\f784"; } -.bi-postcard::before { content: "\f785"; } -.bi-search-heart-fill::before { content: "\f786"; } -.bi-search-heart::before { content: "\f787"; } -.bi-sliders2-vertical::before { content: "\f788"; } -.bi-sliders2::before { content: "\f789"; } -.bi-trash3-fill::before { content: "\f78a"; } -.bi-trash3::before { content: "\f78b"; } -.bi-valentine::before { content: "\f78c"; } -.bi-valentine2::before { content: "\f78d"; } -.bi-wrench-adjustable-circle-fill::before { content: "\f78e"; } -.bi-wrench-adjustable-circle::before { content: "\f78f"; } -.bi-wrench-adjustable::before { content: "\f790"; } -.bi-filetype-json::before { content: "\f791"; } -.bi-filetype-pptx::before { content: "\f792"; } -.bi-filetype-xlsx::before { content: "\f793"; } -.bi-1-circle-fill::before { content: "\f796"; } -.bi-1-circle::before { content: "\f797"; } -.bi-1-square-fill::before { content: "\f798"; } -.bi-1-square::before { content: "\f799"; } -.bi-2-circle-fill::before { content: "\f79c"; } -.bi-2-circle::before { content: "\f79d"; } -.bi-2-square-fill::before { content: "\f79e"; } -.bi-2-square::before { content: "\f79f"; } -.bi-3-circle-fill::before { content: "\f7a2"; } -.bi-3-circle::before { content: "\f7a3"; } -.bi-3-square-fill::before { content: "\f7a4"; } -.bi-3-square::before { content: "\f7a5"; } -.bi-4-circle-fill::before { content: "\f7a8"; } -.bi-4-circle::before { content: "\f7a9"; } -.bi-4-square-fill::before { content: "\f7aa"; } -.bi-4-square::before { content: "\f7ab"; } -.bi-5-circle-fill::before { content: "\f7ae"; } -.bi-5-circle::before { content: "\f7af"; } -.bi-5-square-fill::before { content: "\f7b0"; } -.bi-5-square::before { content: "\f7b1"; } -.bi-6-circle-fill::before { content: "\f7b4"; } -.bi-6-circle::before { content: "\f7b5"; } -.bi-6-square-fill::before { content: "\f7b6"; } -.bi-6-square::before { content: "\f7b7"; } -.bi-7-circle-fill::before { content: "\f7ba"; } -.bi-7-circle::before { content: "\f7bb"; } -.bi-7-square-fill::before { content: "\f7bc"; } -.bi-7-square::before { content: "\f7bd"; } -.bi-8-circle-fill::before { content: "\f7c0"; } -.bi-8-circle::before { content: "\f7c1"; } -.bi-8-square-fill::before { content: "\f7c2"; } -.bi-8-square::before { content: "\f7c3"; } -.bi-9-circle-fill::before { content: "\f7c6"; } -.bi-9-circle::before { content: "\f7c7"; } -.bi-9-square-fill::before { content: "\f7c8"; } -.bi-9-square::before { content: "\f7c9"; } -.bi-airplane-engines-fill::before { content: "\f7ca"; } -.bi-airplane-engines::before { content: "\f7cb"; } -.bi-airplane-fill::before { content: "\f7cc"; } -.bi-airplane::before { content: "\f7cd"; } -.bi-alexa::before { content: "\f7ce"; } -.bi-alipay::before { content: "\f7cf"; } -.bi-android::before { content: "\f7d0"; } -.bi-android2::before { content: "\f7d1"; } -.bi-box-fill::before { content: "\f7d2"; } -.bi-box-seam-fill::before { content: "\f7d3"; } -.bi-browser-chrome::before { content: "\f7d4"; } -.bi-browser-edge::before { content: "\f7d5"; } -.bi-browser-firefox::before { content: "\f7d6"; } -.bi-browser-safari::before { content: "\f7d7"; } -.bi-c-circle-fill::before { content: "\f7da"; } -.bi-c-circle::before { content: "\f7db"; } -.bi-c-square-fill::before { content: "\f7dc"; } -.bi-c-square::before { content: "\f7dd"; } -.bi-capsule-pill::before { content: "\f7de"; } -.bi-capsule::before { content: "\f7df"; } -.bi-car-front-fill::before { content: "\f7e0"; } -.bi-car-front::before { content: "\f7e1"; } -.bi-cassette-fill::before { content: "\f7e2"; } -.bi-cassette::before { content: "\f7e3"; } -.bi-cc-circle-fill::before { content: "\f7e6"; } -.bi-cc-circle::before { content: "\f7e7"; } -.bi-cc-square-fill::before { content: "\f7e8"; } -.bi-cc-square::before { content: "\f7e9"; } -.bi-cup-hot-fill::before { content: "\f7ea"; } -.bi-cup-hot::before { content: "\f7eb"; } -.bi-currency-rupee::before { content: "\f7ec"; } -.bi-dropbox::before { content: "\f7ed"; } -.bi-escape::before { content: "\f7ee"; } -.bi-fast-forward-btn-fill::before { content: "\f7ef"; } -.bi-fast-forward-btn::before { content: "\f7f0"; } -.bi-fast-forward-circle-fill::before { content: "\f7f1"; } -.bi-fast-forward-circle::before { content: "\f7f2"; } -.bi-fast-forward-fill::before { content: "\f7f3"; } -.bi-fast-forward::before { content: "\f7f4"; } -.bi-filetype-sql::before { content: "\f7f5"; } -.bi-fire::before { content: "\f7f6"; } -.bi-google-play::before { content: "\f7f7"; } -.bi-h-circle-fill::before { content: "\f7fa"; } -.bi-h-circle::before { content: "\f7fb"; } -.bi-h-square-fill::before { content: "\f7fc"; } -.bi-h-square::before { content: "\f7fd"; } -.bi-indent::before { content: "\f7fe"; } -.bi-lungs-fill::before { content: "\f7ff"; } -.bi-lungs::before { content: "\f800"; } -.bi-microsoft-teams::before { content: "\f801"; } -.bi-p-circle-fill::before { content: "\f804"; } -.bi-p-circle::before { content: "\f805"; } -.bi-p-square-fill::before { content: "\f806"; } -.bi-p-square::before { content: "\f807"; } -.bi-pass-fill::before { content: "\f808"; } -.bi-pass::before { content: "\f809"; } -.bi-prescription::before { content: "\f80a"; } -.bi-prescription2::before { content: "\f80b"; } -.bi-r-circle-fill::before { content: "\f80e"; } -.bi-r-circle::before { content: "\f80f"; } -.bi-r-square-fill::before { content: "\f810"; } -.bi-r-square::before { content: "\f811"; } -.bi-repeat-1::before { content: "\f812"; } -.bi-repeat::before { content: "\f813"; } -.bi-rewind-btn-fill::before { content: "\f814"; } -.bi-rewind-btn::before { content: "\f815"; } -.bi-rewind-circle-fill::before { content: "\f816"; } -.bi-rewind-circle::before { content: "\f817"; } -.bi-rewind-fill::before { content: "\f818"; } -.bi-rewind::before { content: "\f819"; } -.bi-train-freight-front-fill::before { content: "\f81a"; } -.bi-train-freight-front::before { content: "\f81b"; } -.bi-train-front-fill::before { content: "\f81c"; } -.bi-train-front::before { content: "\f81d"; } -.bi-train-lightrail-front-fill::before { content: "\f81e"; } -.bi-train-lightrail-front::before { content: "\f81f"; } -.bi-truck-front-fill::before { content: "\f820"; } -.bi-truck-front::before { content: "\f821"; } -.bi-ubuntu::before { content: "\f822"; } -.bi-unindent::before { content: "\f823"; } -.bi-unity::before { content: "\f824"; } -.bi-universal-access-circle::before { content: "\f825"; } -.bi-universal-access::before { content: "\f826"; } -.bi-virus::before { content: "\f827"; } -.bi-virus2::before { content: "\f828"; } -.bi-wechat::before { content: "\f829"; } -.bi-yelp::before { content: "\f82a"; } -.bi-sign-stop-fill::before { content: "\f82b"; } -.bi-sign-stop-lights-fill::before { content: "\f82c"; } -.bi-sign-stop-lights::before { content: "\f82d"; } -.bi-sign-stop::before { content: "\f82e"; } -.bi-sign-turn-left-fill::before { content: "\f82f"; } -.bi-sign-turn-left::before { content: "\f830"; } -.bi-sign-turn-right-fill::before { content: "\f831"; } -.bi-sign-turn-right::before { content: "\f832"; } -.bi-sign-turn-slight-left-fill::before { content: "\f833"; } -.bi-sign-turn-slight-left::before { content: "\f834"; } -.bi-sign-turn-slight-right-fill::before { content: "\f835"; } -.bi-sign-turn-slight-right::before { content: "\f836"; } -.bi-sign-yield-fill::before { content: "\f837"; } -.bi-sign-yield::before { content: "\f838"; } -.bi-ev-station-fill::before { content: "\f839"; } -.bi-ev-station::before { content: "\f83a"; } -.bi-fuel-pump-diesel-fill::before { content: "\f83b"; } -.bi-fuel-pump-diesel::before { content: "\f83c"; } -.bi-fuel-pump-fill::before { content: "\f83d"; } -.bi-fuel-pump::before { content: "\f83e"; } -.bi-0-circle-fill::before { content: "\f83f"; } -.bi-0-circle::before { content: "\f840"; } -.bi-0-square-fill::before { content: "\f841"; } -.bi-0-square::before { content: "\f842"; } -.bi-rocket-fill::before { content: "\f843"; } -.bi-rocket-takeoff-fill::before { content: "\f844"; } -.bi-rocket-takeoff::before { content: "\f845"; } -.bi-rocket::before { content: "\f846"; } -.bi-stripe::before { content: "\f847"; } -.bi-subscript::before { content: "\f848"; } -.bi-superscript::before { content: "\f849"; } -.bi-trello::before { content: "\f84a"; } -.bi-envelope-at-fill::before { content: "\f84b"; } -.bi-envelope-at::before { content: "\f84c"; } -.bi-regex::before { content: "\f84d"; } -.bi-text-wrap::before { content: "\f84e"; } -.bi-sign-dead-end-fill::before { content: "\f84f"; } -.bi-sign-dead-end::before { content: "\f850"; } -.bi-sign-do-not-enter-fill::before { content: "\f851"; } -.bi-sign-do-not-enter::before { content: "\f852"; } -.bi-sign-intersection-fill::before { content: "\f853"; } -.bi-sign-intersection-side-fill::before { content: "\f854"; } -.bi-sign-intersection-side::before { content: "\f855"; } -.bi-sign-intersection-t-fill::before { content: "\f856"; } -.bi-sign-intersection-t::before { content: "\f857"; } -.bi-sign-intersection-y-fill::before { content: "\f858"; } -.bi-sign-intersection-y::before { content: "\f859"; } -.bi-sign-intersection::before { content: "\f85a"; } -.bi-sign-merge-left-fill::before { content: "\f85b"; } -.bi-sign-merge-left::before { content: "\f85c"; } -.bi-sign-merge-right-fill::before { content: "\f85d"; } -.bi-sign-merge-right::before { content: "\f85e"; } -.bi-sign-no-left-turn-fill::before { content: "\f85f"; } -.bi-sign-no-left-turn::before { content: "\f860"; } -.bi-sign-no-parking-fill::before { content: "\f861"; } -.bi-sign-no-parking::before { content: "\f862"; } -.bi-sign-no-right-turn-fill::before { content: "\f863"; } -.bi-sign-no-right-turn::before { content: "\f864"; } -.bi-sign-railroad-fill::before { content: "\f865"; } -.bi-sign-railroad::before { content: "\f866"; } -.bi-building-add::before { content: "\f867"; } -.bi-building-check::before { content: "\f868"; } -.bi-building-dash::before { content: "\f869"; } -.bi-building-down::before { content: "\f86a"; } -.bi-building-exclamation::before { content: "\f86b"; } -.bi-building-fill-add::before { content: "\f86c"; } -.bi-building-fill-check::before { content: "\f86d"; } -.bi-building-fill-dash::before { content: "\f86e"; } -.bi-building-fill-down::before { content: "\f86f"; } -.bi-building-fill-exclamation::before { content: "\f870"; } -.bi-building-fill-gear::before { content: "\f871"; } -.bi-building-fill-lock::before { content: "\f872"; } -.bi-building-fill-slash::before { content: "\f873"; } -.bi-building-fill-up::before { content: "\f874"; } -.bi-building-fill-x::before { content: "\f875"; } -.bi-building-fill::before { content: "\f876"; } -.bi-building-gear::before { content: "\f877"; } -.bi-building-lock::before { content: "\f878"; } -.bi-building-slash::before { content: "\f879"; } -.bi-building-up::before { content: "\f87a"; } -.bi-building-x::before { content: "\f87b"; } -.bi-buildings-fill::before { content: "\f87c"; } -.bi-buildings::before { content: "\f87d"; } -.bi-bus-front-fill::before { content: "\f87e"; } -.bi-bus-front::before { content: "\f87f"; } -.bi-ev-front-fill::before { content: "\f880"; } -.bi-ev-front::before { content: "\f881"; } -.bi-globe-americas::before { content: "\f882"; } -.bi-globe-asia-australia::before { content: "\f883"; } -.bi-globe-central-south-asia::before { content: "\f884"; } -.bi-globe-europe-africa::before { content: "\f885"; } -.bi-house-add-fill::before { content: "\f886"; } -.bi-house-add::before { content: "\f887"; } -.bi-house-check-fill::before { content: "\f888"; } -.bi-house-check::before { content: "\f889"; } -.bi-house-dash-fill::before { content: "\f88a"; } -.bi-house-dash::before { content: "\f88b"; } -.bi-house-down-fill::before { content: "\f88c"; } -.bi-house-down::before { content: "\f88d"; } -.bi-house-exclamation-fill::before { content: "\f88e"; } -.bi-house-exclamation::before { content: "\f88f"; } -.bi-house-gear-fill::before { content: "\f890"; } -.bi-house-gear::before { content: "\f891"; } -.bi-house-lock-fill::before { content: "\f892"; } -.bi-house-lock::before { content: "\f893"; } -.bi-house-slash-fill::before { content: "\f894"; } -.bi-house-slash::before { content: "\f895"; } -.bi-house-up-fill::before { content: "\f896"; } -.bi-house-up::before { content: "\f897"; } -.bi-house-x-fill::before { content: "\f898"; } -.bi-house-x::before { content: "\f899"; } -.bi-person-add::before { content: "\f89a"; } -.bi-person-down::before { content: "\f89b"; } -.bi-person-exclamation::before { content: "\f89c"; } -.bi-person-fill-add::before { content: "\f89d"; } -.bi-person-fill-check::before { content: "\f89e"; } -.bi-person-fill-dash::before { content: "\f89f"; } -.bi-person-fill-down::before { content: "\f8a0"; } -.bi-person-fill-exclamation::before { content: "\f8a1"; } -.bi-person-fill-gear::before { content: "\f8a2"; } -.bi-person-fill-lock::before { content: "\f8a3"; } -.bi-person-fill-slash::before { content: "\f8a4"; } -.bi-person-fill-up::before { content: "\f8a5"; } -.bi-person-fill-x::before { content: "\f8a6"; } -.bi-person-gear::before { content: "\f8a7"; } -.bi-person-lock::before { content: "\f8a8"; } -.bi-person-slash::before { content: "\f8a9"; } -.bi-person-up::before { content: "\f8aa"; } -.bi-scooter::before { content: "\f8ab"; } -.bi-taxi-front-fill::before { content: "\f8ac"; } -.bi-taxi-front::before { content: "\f8ad"; } -.bi-amd::before { content: "\f8ae"; } -.bi-database-add::before { content: "\f8af"; } -.bi-database-check::before { content: "\f8b0"; } -.bi-database-dash::before { content: "\f8b1"; } -.bi-database-down::before { content: "\f8b2"; } -.bi-database-exclamation::before { content: "\f8b3"; } -.bi-database-fill-add::before { content: "\f8b4"; } -.bi-database-fill-check::before { content: "\f8b5"; } -.bi-database-fill-dash::before { content: "\f8b6"; } -.bi-database-fill-down::before { content: "\f8b7"; } -.bi-database-fill-exclamation::before { content: "\f8b8"; } -.bi-database-fill-gear::before { content: "\f8b9"; } -.bi-database-fill-lock::before { content: "\f8ba"; } -.bi-database-fill-slash::before { content: "\f8bb"; } -.bi-database-fill-up::before { content: "\f8bc"; } -.bi-database-fill-x::before { content: "\f8bd"; } -.bi-database-fill::before { content: "\f8be"; } -.bi-database-gear::before { content: "\f8bf"; } -.bi-database-lock::before { content: "\f8c0"; } -.bi-database-slash::before { content: "\f8c1"; } -.bi-database-up::before { content: "\f8c2"; } -.bi-database-x::before { content: "\f8c3"; } -.bi-database::before { content: "\f8c4"; } -.bi-houses-fill::before { content: "\f8c5"; } -.bi-houses::before { content: "\f8c6"; } -.bi-nvidia::before { content: "\f8c7"; } -.bi-person-vcard-fill::before { content: "\f8c8"; } -.bi-person-vcard::before { content: "\f8c9"; } -.bi-sina-weibo::before { content: "\f8ca"; } -.bi-tencent-qq::before { content: "\f8cb"; } -.bi-wikipedia::before { content: "\f8cc"; } -.bi-alphabet-uppercase::before { content: "\f2a5"; } -.bi-alphabet::before { content: "\f68a"; } -.bi-amazon::before { content: "\f68d"; } -.bi-arrows-collapse-vertical::before { content: "\f690"; } -.bi-arrows-expand-vertical::before { content: "\f695"; } -.bi-arrows-vertical::before { content: "\f698"; } -.bi-arrows::before { content: "\f6a2"; } -.bi-ban-fill::before { content: "\f6a3"; } -.bi-ban::before { content: "\f6b6"; } -.bi-bing::before { content: "\f6c2"; } -.bi-cake::before { content: "\f6e0"; } -.bi-cake2::before { content: "\f6ed"; } -.bi-cookie::before { content: "\f6ee"; } -.bi-copy::before { content: "\f759"; } -.bi-crosshair::before { content: "\f769"; } -.bi-crosshair2::before { content: "\f794"; } -.bi-emoji-astonished-fill::before { content: "\f795"; } -.bi-emoji-astonished::before { content: "\f79a"; } -.bi-emoji-grimace-fill::before { content: "\f79b"; } -.bi-emoji-grimace::before { content: "\f7a0"; } -.bi-emoji-grin-fill::before { content: "\f7a1"; } -.bi-emoji-grin::before { content: "\f7a6"; } -.bi-emoji-surprise-fill::before { content: "\f7a7"; } -.bi-emoji-surprise::before { content: "\f7ac"; } -.bi-emoji-tear-fill::before { content: "\f7ad"; } -.bi-emoji-tear::before { content: "\f7b2"; } -.bi-envelope-arrow-down-fill::before { content: "\f7b3"; } -.bi-envelope-arrow-down::before { content: "\f7b8"; } -.bi-envelope-arrow-up-fill::before { content: "\f7b9"; } -.bi-envelope-arrow-up::before { content: "\f7be"; } -.bi-feather::before { content: "\f7bf"; } -.bi-feather2::before { content: "\f7c4"; } -.bi-floppy-fill::before { content: "\f7c5"; } -.bi-floppy::before { content: "\f7d8"; } -.bi-floppy2-fill::before { content: "\f7d9"; } -.bi-floppy2::before { content: "\f7e4"; } -.bi-gitlab::before { content: "\f7e5"; } -.bi-highlighter::before { content: "\f7f8"; } -.bi-marker-tip::before { content: "\f802"; } -.bi-nvme-fill::before { content: "\f803"; } -.bi-nvme::before { content: "\f80c"; } -.bi-opencollective::before { content: "\f80d"; } -.bi-pci-card-network::before { content: "\f8cd"; } -.bi-pci-card-sound::before { content: "\f8ce"; } -.bi-radar::before { content: "\f8cf"; } -.bi-send-arrow-down-fill::before { content: "\f8d0"; } -.bi-send-arrow-down::before { content: "\f8d1"; } -.bi-send-arrow-up-fill::before { content: "\f8d2"; } -.bi-send-arrow-up::before { content: "\f8d3"; } -.bi-sim-slash-fill::before { content: "\f8d4"; } -.bi-sim-slash::before { content: "\f8d5"; } -.bi-sourceforge::before { content: "\f8d6"; } -.bi-substack::before { content: "\f8d7"; } -.bi-threads-fill::before { content: "\f8d8"; } -.bi-threads::before { content: "\f8d9"; } -.bi-transparency::before { content: "\f8da"; } -.bi-twitter-x::before { content: "\f8db"; } -.bi-type-h4::before { content: "\f8dc"; } -.bi-type-h5::before { content: "\f8dd"; } -.bi-type-h6::before { content: "\f8de"; } -.bi-backpack-fill::before { content: "\f8df"; } -.bi-backpack::before { content: "\f8e0"; } -.bi-backpack2-fill::before { content: "\f8e1"; } -.bi-backpack2::before { content: "\f8e2"; } -.bi-backpack3-fill::before { content: "\f8e3"; } -.bi-backpack3::before { content: "\f8e4"; } -.bi-backpack4-fill::before { content: "\f8e5"; } -.bi-backpack4::before { content: "\f8e6"; } -.bi-brilliance::before { content: "\f8e7"; } -.bi-cake-fill::before { content: "\f8e8"; } -.bi-cake2-fill::before { content: "\f8e9"; } -.bi-duffle-fill::before { content: "\f8ea"; } -.bi-duffle::before { content: "\f8eb"; } -.bi-exposure::before { content: "\f8ec"; } -.bi-gender-neuter::before { content: "\f8ed"; } -.bi-highlights::before { content: "\f8ee"; } -.bi-luggage-fill::before { content: "\f8ef"; } -.bi-luggage::before { content: "\f8f0"; } -.bi-mailbox-flag::before { content: "\f8f1"; } -.bi-mailbox2-flag::before { content: "\f8f2"; } -.bi-noise-reduction::before { content: "\f8f3"; } -.bi-passport-fill::before { content: "\f8f4"; } -.bi-passport::before { content: "\f8f5"; } -.bi-person-arms-up::before { content: "\f8f6"; } -.bi-person-raised-hand::before { content: "\f8f7"; } -.bi-person-standing-dress::before { content: "\f8f8"; } -.bi-person-standing::before { content: "\f8f9"; } -.bi-person-walking::before { content: "\f8fa"; } -.bi-person-wheelchair::before { content: "\f8fb"; } -.bi-shadows::before { content: "\f8fc"; } -.bi-suitcase-fill::before { content: "\f8fd"; } -.bi-suitcase-lg-fill::before { content: "\f8fe"; } -.bi-suitcase-lg::before { content: "\f8ff"; } -.bi-suitcase::before { content: "\f900"; } -.bi-suitcase2-fill::before { content: "\f901"; } -.bi-suitcase2::before { content: "\f902"; } -.bi-vignette::before { content: "\f903"; } diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.json b/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.json deleted file mode 100644 index 56247e5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.json +++ /dev/null @@ -1,2052 +0,0 @@ -{ - "123": 63103, - "alarm-fill": 61697, - "alarm": 61698, - "align-bottom": 61699, - "align-center": 61700, - "align-end": 61701, - "align-middle": 61702, - "align-start": 61703, - "align-top": 61704, - "alt": 61705, - "app-indicator": 61706, - "app": 61707, - "archive-fill": 61708, - "archive": 61709, - "arrow-90deg-down": 61710, - "arrow-90deg-left": 61711, - "arrow-90deg-right": 61712, - "arrow-90deg-up": 61713, - "arrow-bar-down": 61714, - "arrow-bar-left": 61715, - "arrow-bar-right": 61716, - "arrow-bar-up": 61717, - "arrow-clockwise": 61718, - "arrow-counterclockwise": 61719, - "arrow-down-circle-fill": 61720, - "arrow-down-circle": 61721, - "arrow-down-left-circle-fill": 61722, - "arrow-down-left-circle": 61723, - "arrow-down-left-square-fill": 61724, - "arrow-down-left-square": 61725, - "arrow-down-left": 61726, - "arrow-down-right-circle-fill": 61727, - "arrow-down-right-circle": 61728, - "arrow-down-right-square-fill": 61729, - "arrow-down-right-square": 61730, - "arrow-down-right": 61731, - "arrow-down-short": 61732, - "arrow-down-square-fill": 61733, - "arrow-down-square": 61734, - "arrow-down-up": 61735, - "arrow-down": 61736, - "arrow-left-circle-fill": 61737, - "arrow-left-circle": 61738, - "arrow-left-right": 61739, - "arrow-left-short": 61740, - "arrow-left-square-fill": 61741, - "arrow-left-square": 61742, - "arrow-left": 61743, - "arrow-repeat": 61744, - "arrow-return-left": 61745, - "arrow-return-right": 61746, - "arrow-right-circle-fill": 61747, - "arrow-right-circle": 61748, - "arrow-right-short": 61749, - "arrow-right-square-fill": 61750, - "arrow-right-square": 61751, - "arrow-right": 61752, - "arrow-up-circle-fill": 61753, - "arrow-up-circle": 61754, - "arrow-up-left-circle-fill": 61755, - "arrow-up-left-circle": 61756, - "arrow-up-left-square-fill": 61757, - "arrow-up-left-square": 61758, - "arrow-up-left": 61759, - "arrow-up-right-circle-fill": 61760, - "arrow-up-right-circle": 61761, - "arrow-up-right-square-fill": 61762, - "arrow-up-right-square": 61763, - "arrow-up-right": 61764, - "arrow-up-short": 61765, - "arrow-up-square-fill": 61766, - "arrow-up-square": 61767, - "arrow-up": 61768, - "arrows-angle-contract": 61769, - "arrows-angle-expand": 61770, - "arrows-collapse": 61771, - "arrows-expand": 61772, - "arrows-fullscreen": 61773, - "arrows-move": 61774, - "aspect-ratio-fill": 61775, - "aspect-ratio": 61776, - "asterisk": 61777, - "at": 61778, - "award-fill": 61779, - "award": 61780, - "back": 61781, - "backspace-fill": 61782, - "backspace-reverse-fill": 61783, - "backspace-reverse": 61784, - "backspace": 61785, - "badge-3d-fill": 61786, - "badge-3d": 61787, - "badge-4k-fill": 61788, - "badge-4k": 61789, - "badge-8k-fill": 61790, - "badge-8k": 61791, - "badge-ad-fill": 61792, - "badge-ad": 61793, - "badge-ar-fill": 61794, - "badge-ar": 61795, - "badge-cc-fill": 61796, - "badge-cc": 61797, - "badge-hd-fill": 61798, - "badge-hd": 61799, - "badge-tm-fill": 61800, - "badge-tm": 61801, - "badge-vo-fill": 61802, - "badge-vo": 61803, - "badge-vr-fill": 61804, - "badge-vr": 61805, - "badge-wc-fill": 61806, - "badge-wc": 61807, - "bag-check-fill": 61808, - "bag-check": 61809, - "bag-dash-fill": 61810, - "bag-dash": 61811, - "bag-fill": 61812, - "bag-plus-fill": 61813, - "bag-plus": 61814, - "bag-x-fill": 61815, - "bag-x": 61816, - "bag": 61817, - "bar-chart-fill": 61818, - "bar-chart-line-fill": 61819, - "bar-chart-line": 61820, - "bar-chart-steps": 61821, - "bar-chart": 61822, - "basket-fill": 61823, - "basket": 61824, - "basket2-fill": 61825, - "basket2": 61826, - "basket3-fill": 61827, - "basket3": 61828, - "battery-charging": 61829, - "battery-full": 61830, - "battery-half": 61831, - "battery": 61832, - "bell-fill": 61833, - "bell": 61834, - "bezier": 61835, - "bezier2": 61836, - "bicycle": 61837, - "binoculars-fill": 61838, - "binoculars": 61839, - "blockquote-left": 61840, - "blockquote-right": 61841, - "book-fill": 61842, - "book-half": 61843, - "book": 61844, - "bookmark-check-fill": 61845, - "bookmark-check": 61846, - "bookmark-dash-fill": 61847, - "bookmark-dash": 61848, - "bookmark-fill": 61849, - "bookmark-heart-fill": 61850, - "bookmark-heart": 61851, - "bookmark-plus-fill": 61852, - "bookmark-plus": 61853, - "bookmark-star-fill": 61854, - "bookmark-star": 61855, - "bookmark-x-fill": 61856, - "bookmark-x": 61857, - "bookmark": 61858, - "bookmarks-fill": 61859, - "bookmarks": 61860, - "bookshelf": 61861, - "bootstrap-fill": 61862, - "bootstrap-reboot": 61863, - "bootstrap": 61864, - "border-all": 61865, - "border-bottom": 61866, - "border-center": 61867, - "border-inner": 61868, - "border-left": 61869, - "border-middle": 61870, - "border-outer": 61871, - "border-right": 61872, - "border-style": 61873, - "border-top": 61874, - "border-width": 61875, - "border": 61876, - "bounding-box-circles": 61877, - "bounding-box": 61878, - "box-arrow-down-left": 61879, - "box-arrow-down-right": 61880, - "box-arrow-down": 61881, - "box-arrow-in-down-left": 61882, - "box-arrow-in-down-right": 61883, - "box-arrow-in-down": 61884, - "box-arrow-in-left": 61885, - "box-arrow-in-right": 61886, - "box-arrow-in-up-left": 61887, - "box-arrow-in-up-right": 61888, - "box-arrow-in-up": 61889, - "box-arrow-left": 61890, - "box-arrow-right": 61891, - "box-arrow-up-left": 61892, - "box-arrow-up-right": 61893, - "box-arrow-up": 61894, - "box-seam": 61895, - "box": 61896, - "braces": 61897, - "bricks": 61898, - "briefcase-fill": 61899, - "briefcase": 61900, - "brightness-alt-high-fill": 61901, - "brightness-alt-high": 61902, - "brightness-alt-low-fill": 61903, - "brightness-alt-low": 61904, - "brightness-high-fill": 61905, - "brightness-high": 61906, - "brightness-low-fill": 61907, - "brightness-low": 61908, - "broadcast-pin": 61909, - "broadcast": 61910, - "brush-fill": 61911, - "brush": 61912, - "bucket-fill": 61913, - "bucket": 61914, - "bug-fill": 61915, - "bug": 61916, - "building": 61917, - "bullseye": 61918, - "calculator-fill": 61919, - "calculator": 61920, - "calendar-check-fill": 61921, - "calendar-check": 61922, - "calendar-date-fill": 61923, - "calendar-date": 61924, - "calendar-day-fill": 61925, - "calendar-day": 61926, - "calendar-event-fill": 61927, - "calendar-event": 61928, - "calendar-fill": 61929, - "calendar-minus-fill": 61930, - "calendar-minus": 61931, - "calendar-month-fill": 61932, - "calendar-month": 61933, - "calendar-plus-fill": 61934, - "calendar-plus": 61935, - "calendar-range-fill": 61936, - "calendar-range": 61937, - "calendar-week-fill": 61938, - "calendar-week": 61939, - "calendar-x-fill": 61940, - "calendar-x": 61941, - "calendar": 61942, - "calendar2-check-fill": 61943, - "calendar2-check": 61944, - "calendar2-date-fill": 61945, - "calendar2-date": 61946, - "calendar2-day-fill": 61947, - "calendar2-day": 61948, - "calendar2-event-fill": 61949, - "calendar2-event": 61950, - "calendar2-fill": 61951, - "calendar2-minus-fill": 61952, - "calendar2-minus": 61953, - "calendar2-month-fill": 61954, - "calendar2-month": 61955, - "calendar2-plus-fill": 61956, - "calendar2-plus": 61957, - "calendar2-range-fill": 61958, - "calendar2-range": 61959, - "calendar2-week-fill": 61960, - "calendar2-week": 61961, - "calendar2-x-fill": 61962, - "calendar2-x": 61963, - "calendar2": 61964, - "calendar3-event-fill": 61965, - "calendar3-event": 61966, - "calendar3-fill": 61967, - "calendar3-range-fill": 61968, - "calendar3-range": 61969, - "calendar3-week-fill": 61970, - "calendar3-week": 61971, - "calendar3": 61972, - "calendar4-event": 61973, - "calendar4-range": 61974, - "calendar4-week": 61975, - "calendar4": 61976, - "camera-fill": 61977, - "camera-reels-fill": 61978, - "camera-reels": 61979, - "camera-video-fill": 61980, - "camera-video-off-fill": 61981, - "camera-video-off": 61982, - "camera-video": 61983, - "camera": 61984, - "camera2": 61985, - "capslock-fill": 61986, - "capslock": 61987, - "card-checklist": 61988, - "card-heading": 61989, - "card-image": 61990, - "card-list": 61991, - "card-text": 61992, - "caret-down-fill": 61993, - "caret-down-square-fill": 61994, - "caret-down-square": 61995, - "caret-down": 61996, - "caret-left-fill": 61997, - "caret-left-square-fill": 61998, - "caret-left-square": 61999, - "caret-left": 62000, - "caret-right-fill": 62001, - "caret-right-square-fill": 62002, - "caret-right-square": 62003, - "caret-right": 62004, - "caret-up-fill": 62005, - "caret-up-square-fill": 62006, - "caret-up-square": 62007, - "caret-up": 62008, - "cart-check-fill": 62009, - "cart-check": 62010, - "cart-dash-fill": 62011, - "cart-dash": 62012, - "cart-fill": 62013, - "cart-plus-fill": 62014, - "cart-plus": 62015, - "cart-x-fill": 62016, - "cart-x": 62017, - "cart": 62018, - "cart2": 62019, - "cart3": 62020, - "cart4": 62021, - "cash-stack": 62022, - "cash": 62023, - "cast": 62024, - "chat-dots-fill": 62025, - "chat-dots": 62026, - "chat-fill": 62027, - "chat-left-dots-fill": 62028, - "chat-left-dots": 62029, - "chat-left-fill": 62030, - "chat-left-quote-fill": 62031, - "chat-left-quote": 62032, - "chat-left-text-fill": 62033, - "chat-left-text": 62034, - "chat-left": 62035, - "chat-quote-fill": 62036, - "chat-quote": 62037, - "chat-right-dots-fill": 62038, - "chat-right-dots": 62039, - "chat-right-fill": 62040, - "chat-right-quote-fill": 62041, - "chat-right-quote": 62042, - "chat-right-text-fill": 62043, - "chat-right-text": 62044, - "chat-right": 62045, - "chat-square-dots-fill": 62046, - "chat-square-dots": 62047, - "chat-square-fill": 62048, - "chat-square-quote-fill": 62049, - "chat-square-quote": 62050, - "chat-square-text-fill": 62051, - "chat-square-text": 62052, - "chat-square": 62053, - "chat-text-fill": 62054, - "chat-text": 62055, - "chat": 62056, - "check-all": 62057, - "check-circle-fill": 62058, - "check-circle": 62059, - "check-square-fill": 62060, - "check-square": 62061, - "check": 62062, - "check2-all": 62063, - "check2-circle": 62064, - "check2-square": 62065, - "check2": 62066, - "chevron-bar-contract": 62067, - "chevron-bar-down": 62068, - "chevron-bar-expand": 62069, - "chevron-bar-left": 62070, - "chevron-bar-right": 62071, - "chevron-bar-up": 62072, - "chevron-compact-down": 62073, - "chevron-compact-left": 62074, - "chevron-compact-right": 62075, - "chevron-compact-up": 62076, - "chevron-contract": 62077, - "chevron-double-down": 62078, - "chevron-double-left": 62079, - "chevron-double-right": 62080, - "chevron-double-up": 62081, - "chevron-down": 62082, - "chevron-expand": 62083, - "chevron-left": 62084, - "chevron-right": 62085, - "chevron-up": 62086, - "circle-fill": 62087, - "circle-half": 62088, - "circle-square": 62089, - "circle": 62090, - "clipboard-check": 62091, - "clipboard-data": 62092, - "clipboard-minus": 62093, - "clipboard-plus": 62094, - "clipboard-x": 62095, - "clipboard": 62096, - "clock-fill": 62097, - "clock-history": 62098, - "clock": 62099, - "cloud-arrow-down-fill": 62100, - "cloud-arrow-down": 62101, - "cloud-arrow-up-fill": 62102, - "cloud-arrow-up": 62103, - "cloud-check-fill": 62104, - "cloud-check": 62105, - "cloud-download-fill": 62106, - "cloud-download": 62107, - "cloud-drizzle-fill": 62108, - "cloud-drizzle": 62109, - "cloud-fill": 62110, - "cloud-fog-fill": 62111, - "cloud-fog": 62112, - "cloud-fog2-fill": 62113, - "cloud-fog2": 62114, - "cloud-hail-fill": 62115, - "cloud-hail": 62116, - "cloud-haze-fill": 62118, - "cloud-haze": 62119, - "cloud-haze2-fill": 62120, - "cloud-lightning-fill": 62121, - "cloud-lightning-rain-fill": 62122, - "cloud-lightning-rain": 62123, - "cloud-lightning": 62124, - "cloud-minus-fill": 62125, - "cloud-minus": 62126, - "cloud-moon-fill": 62127, - "cloud-moon": 62128, - "cloud-plus-fill": 62129, - "cloud-plus": 62130, - "cloud-rain-fill": 62131, - "cloud-rain-heavy-fill": 62132, - "cloud-rain-heavy": 62133, - "cloud-rain": 62134, - "cloud-slash-fill": 62135, - "cloud-slash": 62136, - "cloud-sleet-fill": 62137, - "cloud-sleet": 62138, - "cloud-snow-fill": 62139, - "cloud-snow": 62140, - "cloud-sun-fill": 62141, - "cloud-sun": 62142, - "cloud-upload-fill": 62143, - "cloud-upload": 62144, - "cloud": 62145, - "clouds-fill": 62146, - "clouds": 62147, - "cloudy-fill": 62148, - "cloudy": 62149, - "code-slash": 62150, - "code-square": 62151, - "code": 62152, - "collection-fill": 62153, - "collection-play-fill": 62154, - "collection-play": 62155, - "collection": 62156, - "columns-gap": 62157, - "columns": 62158, - "command": 62159, - "compass-fill": 62160, - "compass": 62161, - "cone-striped": 62162, - "cone": 62163, - "controller": 62164, - "cpu-fill": 62165, - "cpu": 62166, - "credit-card-2-back-fill": 62167, - "credit-card-2-back": 62168, - "credit-card-2-front-fill": 62169, - "credit-card-2-front": 62170, - "credit-card-fill": 62171, - "credit-card": 62172, - "crop": 62173, - "cup-fill": 62174, - "cup-straw": 62175, - "cup": 62176, - "cursor-fill": 62177, - "cursor-text": 62178, - "cursor": 62179, - "dash-circle-dotted": 62180, - "dash-circle-fill": 62181, - "dash-circle": 62182, - "dash-square-dotted": 62183, - "dash-square-fill": 62184, - "dash-square": 62185, - "dash": 62186, - "diagram-2-fill": 62187, - "diagram-2": 62188, - "diagram-3-fill": 62189, - "diagram-3": 62190, - "diamond-fill": 62191, - "diamond-half": 62192, - "diamond": 62193, - "dice-1-fill": 62194, - "dice-1": 62195, - "dice-2-fill": 62196, - "dice-2": 62197, - "dice-3-fill": 62198, - "dice-3": 62199, - "dice-4-fill": 62200, - "dice-4": 62201, - "dice-5-fill": 62202, - "dice-5": 62203, - "dice-6-fill": 62204, - "dice-6": 62205, - "disc-fill": 62206, - "disc": 62207, - "discord": 62208, - "display-fill": 62209, - "display": 62210, - "distribute-horizontal": 62211, - "distribute-vertical": 62212, - "door-closed-fill": 62213, - "door-closed": 62214, - "door-open-fill": 62215, - "door-open": 62216, - "dot": 62217, - "download": 62218, - "droplet-fill": 62219, - "droplet-half": 62220, - "droplet": 62221, - "earbuds": 62222, - "easel-fill": 62223, - "easel": 62224, - "egg-fill": 62225, - "egg-fried": 62226, - "egg": 62227, - "eject-fill": 62228, - "eject": 62229, - "emoji-angry-fill": 62230, - "emoji-angry": 62231, - "emoji-dizzy-fill": 62232, - "emoji-dizzy": 62233, - "emoji-expressionless-fill": 62234, - "emoji-expressionless": 62235, - "emoji-frown-fill": 62236, - "emoji-frown": 62237, - "emoji-heart-eyes-fill": 62238, - "emoji-heart-eyes": 62239, - "emoji-laughing-fill": 62240, - "emoji-laughing": 62241, - "emoji-neutral-fill": 62242, - "emoji-neutral": 62243, - "emoji-smile-fill": 62244, - "emoji-smile-upside-down-fill": 62245, - "emoji-smile-upside-down": 62246, - "emoji-smile": 62247, - "emoji-sunglasses-fill": 62248, - "emoji-sunglasses": 62249, - "emoji-wink-fill": 62250, - "emoji-wink": 62251, - "envelope-fill": 62252, - "envelope-open-fill": 62253, - "envelope-open": 62254, - "envelope": 62255, - "eraser-fill": 62256, - "eraser": 62257, - "exclamation-circle-fill": 62258, - "exclamation-circle": 62259, - "exclamation-diamond-fill": 62260, - "exclamation-diamond": 62261, - "exclamation-octagon-fill": 62262, - "exclamation-octagon": 62263, - "exclamation-square-fill": 62264, - "exclamation-square": 62265, - "exclamation-triangle-fill": 62266, - "exclamation-triangle": 62267, - "exclamation": 62268, - "exclude": 62269, - "eye-fill": 62270, - "eye-slash-fill": 62271, - "eye-slash": 62272, - "eye": 62273, - "eyedropper": 62274, - "eyeglasses": 62275, - "facebook": 62276, - "file-arrow-down-fill": 62277, - "file-arrow-down": 62278, - "file-arrow-up-fill": 62279, - "file-arrow-up": 62280, - "file-bar-graph-fill": 62281, - "file-bar-graph": 62282, - "file-binary-fill": 62283, - "file-binary": 62284, - "file-break-fill": 62285, - "file-break": 62286, - "file-check-fill": 62287, - "file-check": 62288, - "file-code-fill": 62289, - "file-code": 62290, - "file-diff-fill": 62291, - "file-diff": 62292, - "file-earmark-arrow-down-fill": 62293, - "file-earmark-arrow-down": 62294, - "file-earmark-arrow-up-fill": 62295, - "file-earmark-arrow-up": 62296, - "file-earmark-bar-graph-fill": 62297, - "file-earmark-bar-graph": 62298, - "file-earmark-binary-fill": 62299, - "file-earmark-binary": 62300, - "file-earmark-break-fill": 62301, - "file-earmark-break": 62302, - "file-earmark-check-fill": 62303, - "file-earmark-check": 62304, - "file-earmark-code-fill": 62305, - "file-earmark-code": 62306, - "file-earmark-diff-fill": 62307, - "file-earmark-diff": 62308, - "file-earmark-easel-fill": 62309, - "file-earmark-easel": 62310, - "file-earmark-excel-fill": 62311, - "file-earmark-excel": 62312, - "file-earmark-fill": 62313, - "file-earmark-font-fill": 62314, - "file-earmark-font": 62315, - "file-earmark-image-fill": 62316, - "file-earmark-image": 62317, - "file-earmark-lock-fill": 62318, - "file-earmark-lock": 62319, - "file-earmark-lock2-fill": 62320, - "file-earmark-lock2": 62321, - "file-earmark-medical-fill": 62322, - "file-earmark-medical": 62323, - "file-earmark-minus-fill": 62324, - "file-earmark-minus": 62325, - "file-earmark-music-fill": 62326, - "file-earmark-music": 62327, - "file-earmark-person-fill": 62328, - "file-earmark-person": 62329, - "file-earmark-play-fill": 62330, - "file-earmark-play": 62331, - "file-earmark-plus-fill": 62332, - "file-earmark-plus": 62333, - "file-earmark-post-fill": 62334, - "file-earmark-post": 62335, - "file-earmark-ppt-fill": 62336, - "file-earmark-ppt": 62337, - "file-earmark-richtext-fill": 62338, - "file-earmark-richtext": 62339, - "file-earmark-ruled-fill": 62340, - "file-earmark-ruled": 62341, - "file-earmark-slides-fill": 62342, - "file-earmark-slides": 62343, - "file-earmark-spreadsheet-fill": 62344, - "file-earmark-spreadsheet": 62345, - "file-earmark-text-fill": 62346, - "file-earmark-text": 62347, - "file-earmark-word-fill": 62348, - "file-earmark-word": 62349, - "file-earmark-x-fill": 62350, - "file-earmark-x": 62351, - "file-earmark-zip-fill": 62352, - "file-earmark-zip": 62353, - "file-earmark": 62354, - "file-easel-fill": 62355, - "file-easel": 62356, - "file-excel-fill": 62357, - "file-excel": 62358, - "file-fill": 62359, - "file-font-fill": 62360, - "file-font": 62361, - "file-image-fill": 62362, - "file-image": 62363, - "file-lock-fill": 62364, - "file-lock": 62365, - "file-lock2-fill": 62366, - "file-lock2": 62367, - "file-medical-fill": 62368, - "file-medical": 62369, - "file-minus-fill": 62370, - "file-minus": 62371, - "file-music-fill": 62372, - "file-music": 62373, - "file-person-fill": 62374, - "file-person": 62375, - "file-play-fill": 62376, - "file-play": 62377, - "file-plus-fill": 62378, - "file-plus": 62379, - "file-post-fill": 62380, - "file-post": 62381, - "file-ppt-fill": 62382, - "file-ppt": 62383, - "file-richtext-fill": 62384, - "file-richtext": 62385, - "file-ruled-fill": 62386, - "file-ruled": 62387, - "file-slides-fill": 62388, - "file-slides": 62389, - "file-spreadsheet-fill": 62390, - "file-spreadsheet": 62391, - "file-text-fill": 62392, - "file-text": 62393, - "file-word-fill": 62394, - "file-word": 62395, - "file-x-fill": 62396, - "file-x": 62397, - "file-zip-fill": 62398, - "file-zip": 62399, - "file": 62400, - "files-alt": 62401, - "files": 62402, - "film": 62403, - "filter-circle-fill": 62404, - "filter-circle": 62405, - "filter-left": 62406, - "filter-right": 62407, - "filter-square-fill": 62408, - "filter-square": 62409, - "filter": 62410, - "flag-fill": 62411, - "flag": 62412, - "flower1": 62413, - "flower2": 62414, - "flower3": 62415, - "folder-check": 62416, - "folder-fill": 62417, - "folder-minus": 62418, - "folder-plus": 62419, - "folder-symlink-fill": 62420, - "folder-symlink": 62421, - "folder-x": 62422, - "folder": 62423, - "folder2-open": 62424, - "folder2": 62425, - "fonts": 62426, - "forward-fill": 62427, - "forward": 62428, - "front": 62429, - "fullscreen-exit": 62430, - "fullscreen": 62431, - "funnel-fill": 62432, - "funnel": 62433, - "gear-fill": 62434, - "gear-wide-connected": 62435, - "gear-wide": 62436, - "gear": 62437, - "gem": 62438, - "geo-alt-fill": 62439, - "geo-alt": 62440, - "geo-fill": 62441, - "geo": 62442, - "gift-fill": 62443, - "gift": 62444, - "github": 62445, - "globe": 62446, - "globe2": 62447, - "google": 62448, - "graph-down": 62449, - "graph-up": 62450, - "grid-1x2-fill": 62451, - "grid-1x2": 62452, - "grid-3x2-gap-fill": 62453, - "grid-3x2-gap": 62454, - "grid-3x2": 62455, - "grid-3x3-gap-fill": 62456, - "grid-3x3-gap": 62457, - "grid-3x3": 62458, - "grid-fill": 62459, - "grid": 62460, - "grip-horizontal": 62461, - "grip-vertical": 62462, - "hammer": 62463, - "hand-index-fill": 62464, - "hand-index-thumb-fill": 62465, - "hand-index-thumb": 62466, - "hand-index": 62467, - "hand-thumbs-down-fill": 62468, - "hand-thumbs-down": 62469, - "hand-thumbs-up-fill": 62470, - "hand-thumbs-up": 62471, - "handbag-fill": 62472, - "handbag": 62473, - "hash": 62474, - "hdd-fill": 62475, - "hdd-network-fill": 62476, - "hdd-network": 62477, - "hdd-rack-fill": 62478, - "hdd-rack": 62479, - "hdd-stack-fill": 62480, - "hdd-stack": 62481, - "hdd": 62482, - "headphones": 62483, - "headset": 62484, - "heart-fill": 62485, - "heart-half": 62486, - "heart": 62487, - "heptagon-fill": 62488, - "heptagon-half": 62489, - "heptagon": 62490, - "hexagon-fill": 62491, - "hexagon-half": 62492, - "hexagon": 62493, - "hourglass-bottom": 62494, - "hourglass-split": 62495, - "hourglass-top": 62496, - "hourglass": 62497, - "house-door-fill": 62498, - "house-door": 62499, - "house-fill": 62500, - "house": 62501, - "hr": 62502, - "hurricane": 62503, - "image-alt": 62504, - "image-fill": 62505, - "image": 62506, - "images": 62507, - "inbox-fill": 62508, - "inbox": 62509, - "inboxes-fill": 62510, - "inboxes": 62511, - "info-circle-fill": 62512, - "info-circle": 62513, - "info-square-fill": 62514, - "info-square": 62515, - "info": 62516, - "input-cursor-text": 62517, - "input-cursor": 62518, - "instagram": 62519, - "intersect": 62520, - "journal-album": 62521, - "journal-arrow-down": 62522, - "journal-arrow-up": 62523, - "journal-bookmark-fill": 62524, - "journal-bookmark": 62525, - "journal-check": 62526, - "journal-code": 62527, - "journal-medical": 62528, - "journal-minus": 62529, - "journal-plus": 62530, - "journal-richtext": 62531, - "journal-text": 62532, - "journal-x": 62533, - "journal": 62534, - "journals": 62535, - "joystick": 62536, - "justify-left": 62537, - "justify-right": 62538, - "justify": 62539, - "kanban-fill": 62540, - "kanban": 62541, - "key-fill": 62542, - "key": 62543, - "keyboard-fill": 62544, - "keyboard": 62545, - "ladder": 62546, - "lamp-fill": 62547, - "lamp": 62548, - "laptop-fill": 62549, - "laptop": 62550, - "layer-backward": 62551, - "layer-forward": 62552, - "layers-fill": 62553, - "layers-half": 62554, - "layers": 62555, - "layout-sidebar-inset-reverse": 62556, - "layout-sidebar-inset": 62557, - "layout-sidebar-reverse": 62558, - "layout-sidebar": 62559, - "layout-split": 62560, - "layout-text-sidebar-reverse": 62561, - "layout-text-sidebar": 62562, - "layout-text-window-reverse": 62563, - "layout-text-window": 62564, - "layout-three-columns": 62565, - "layout-wtf": 62566, - "life-preserver": 62567, - "lightbulb-fill": 62568, - "lightbulb-off-fill": 62569, - "lightbulb-off": 62570, - "lightbulb": 62571, - "lightning-charge-fill": 62572, - "lightning-charge": 62573, - "lightning-fill": 62574, - "lightning": 62575, - "link-45deg": 62576, - "link": 62577, - "linkedin": 62578, - "list-check": 62579, - "list-nested": 62580, - "list-ol": 62581, - "list-stars": 62582, - "list-task": 62583, - "list-ul": 62584, - "list": 62585, - "lock-fill": 62586, - "lock": 62587, - "mailbox": 62588, - "mailbox2": 62589, - "map-fill": 62590, - "map": 62591, - "markdown-fill": 62592, - "markdown": 62593, - "mask": 62594, - "megaphone-fill": 62595, - "megaphone": 62596, - "menu-app-fill": 62597, - "menu-app": 62598, - "menu-button-fill": 62599, - "menu-button-wide-fill": 62600, - "menu-button-wide": 62601, - "menu-button": 62602, - "menu-down": 62603, - "menu-up": 62604, - "mic-fill": 62605, - "mic-mute-fill": 62606, - "mic-mute": 62607, - "mic": 62608, - "minecart-loaded": 62609, - "minecart": 62610, - "moisture": 62611, - "moon-fill": 62612, - "moon-stars-fill": 62613, - "moon-stars": 62614, - "moon": 62615, - "mouse-fill": 62616, - "mouse": 62617, - "mouse2-fill": 62618, - "mouse2": 62619, - "mouse3-fill": 62620, - "mouse3": 62621, - "music-note-beamed": 62622, - "music-note-list": 62623, - "music-note": 62624, - "music-player-fill": 62625, - "music-player": 62626, - "newspaper": 62627, - "node-minus-fill": 62628, - "node-minus": 62629, - "node-plus-fill": 62630, - "node-plus": 62631, - "nut-fill": 62632, - "nut": 62633, - "octagon-fill": 62634, - "octagon-half": 62635, - "octagon": 62636, - "option": 62637, - "outlet": 62638, - "paint-bucket": 62639, - "palette-fill": 62640, - "palette": 62641, - "palette2": 62642, - "paperclip": 62643, - "paragraph": 62644, - "patch-check-fill": 62645, - "patch-check": 62646, - "patch-exclamation-fill": 62647, - "patch-exclamation": 62648, - "patch-minus-fill": 62649, - "patch-minus": 62650, - "patch-plus-fill": 62651, - "patch-plus": 62652, - "patch-question-fill": 62653, - "patch-question": 62654, - "pause-btn-fill": 62655, - "pause-btn": 62656, - "pause-circle-fill": 62657, - "pause-circle": 62658, - "pause-fill": 62659, - "pause": 62660, - "peace-fill": 62661, - "peace": 62662, - "pen-fill": 62663, - "pen": 62664, - "pencil-fill": 62665, - "pencil-square": 62666, - "pencil": 62667, - "pentagon-fill": 62668, - "pentagon-half": 62669, - "pentagon": 62670, - "people-fill": 62671, - "people": 62672, - "percent": 62673, - "person-badge-fill": 62674, - "person-badge": 62675, - "person-bounding-box": 62676, - "person-check-fill": 62677, - "person-check": 62678, - "person-circle": 62679, - "person-dash-fill": 62680, - "person-dash": 62681, - "person-fill": 62682, - "person-lines-fill": 62683, - "person-plus-fill": 62684, - "person-plus": 62685, - "person-square": 62686, - "person-x-fill": 62687, - "person-x": 62688, - "person": 62689, - "phone-fill": 62690, - "phone-landscape-fill": 62691, - "phone-landscape": 62692, - "phone-vibrate-fill": 62693, - "phone-vibrate": 62694, - "phone": 62695, - "pie-chart-fill": 62696, - "pie-chart": 62697, - "pin-angle-fill": 62698, - "pin-angle": 62699, - "pin-fill": 62700, - "pin": 62701, - "pip-fill": 62702, - "pip": 62703, - "play-btn-fill": 62704, - "play-btn": 62705, - "play-circle-fill": 62706, - "play-circle": 62707, - "play-fill": 62708, - "play": 62709, - "plug-fill": 62710, - "plug": 62711, - "plus-circle-dotted": 62712, - "plus-circle-fill": 62713, - "plus-circle": 62714, - "plus-square-dotted": 62715, - "plus-square-fill": 62716, - "plus-square": 62717, - "plus": 62718, - "power": 62719, - "printer-fill": 62720, - "printer": 62721, - "puzzle-fill": 62722, - "puzzle": 62723, - "question-circle-fill": 62724, - "question-circle": 62725, - "question-diamond-fill": 62726, - "question-diamond": 62727, - "question-octagon-fill": 62728, - "question-octagon": 62729, - "question-square-fill": 62730, - "question-square": 62731, - "question": 62732, - "rainbow": 62733, - "receipt-cutoff": 62734, - "receipt": 62735, - "reception-0": 62736, - "reception-1": 62737, - "reception-2": 62738, - "reception-3": 62739, - "reception-4": 62740, - "record-btn-fill": 62741, - "record-btn": 62742, - "record-circle-fill": 62743, - "record-circle": 62744, - "record-fill": 62745, - "record": 62746, - "record2-fill": 62747, - "record2": 62748, - "reply-all-fill": 62749, - "reply-all": 62750, - "reply-fill": 62751, - "reply": 62752, - "rss-fill": 62753, - "rss": 62754, - "rulers": 62755, - "save-fill": 62756, - "save": 62757, - "save2-fill": 62758, - "save2": 62759, - "scissors": 62760, - "screwdriver": 62761, - "search": 62762, - "segmented-nav": 62763, - "server": 62764, - "share-fill": 62765, - "share": 62766, - "shield-check": 62767, - "shield-exclamation": 62768, - "shield-fill-check": 62769, - "shield-fill-exclamation": 62770, - "shield-fill-minus": 62771, - "shield-fill-plus": 62772, - "shield-fill-x": 62773, - "shield-fill": 62774, - "shield-lock-fill": 62775, - "shield-lock": 62776, - "shield-minus": 62777, - "shield-plus": 62778, - "shield-shaded": 62779, - "shield-slash-fill": 62780, - "shield-slash": 62781, - "shield-x": 62782, - "shield": 62783, - "shift-fill": 62784, - "shift": 62785, - "shop-window": 62786, - "shop": 62787, - "shuffle": 62788, - "signpost-2-fill": 62789, - "signpost-2": 62790, - "signpost-fill": 62791, - "signpost-split-fill": 62792, - "signpost-split": 62793, - "signpost": 62794, - "sim-fill": 62795, - "sim": 62796, - "skip-backward-btn-fill": 62797, - "skip-backward-btn": 62798, - "skip-backward-circle-fill": 62799, - "skip-backward-circle": 62800, - "skip-backward-fill": 62801, - "skip-backward": 62802, - "skip-end-btn-fill": 62803, - "skip-end-btn": 62804, - "skip-end-circle-fill": 62805, - "skip-end-circle": 62806, - "skip-end-fill": 62807, - "skip-end": 62808, - "skip-forward-btn-fill": 62809, - "skip-forward-btn": 62810, - "skip-forward-circle-fill": 62811, - "skip-forward-circle": 62812, - "skip-forward-fill": 62813, - "skip-forward": 62814, - "skip-start-btn-fill": 62815, - "skip-start-btn": 62816, - "skip-start-circle-fill": 62817, - "skip-start-circle": 62818, - "skip-start-fill": 62819, - "skip-start": 62820, - "slack": 62821, - "slash-circle-fill": 62822, - "slash-circle": 62823, - "slash-square-fill": 62824, - "slash-square": 62825, - "slash": 62826, - "sliders": 62827, - "smartwatch": 62828, - "snow": 62829, - "snow2": 62830, - "snow3": 62831, - "sort-alpha-down-alt": 62832, - "sort-alpha-down": 62833, - "sort-alpha-up-alt": 62834, - "sort-alpha-up": 62835, - "sort-down-alt": 62836, - "sort-down": 62837, - "sort-numeric-down-alt": 62838, - "sort-numeric-down": 62839, - "sort-numeric-up-alt": 62840, - "sort-numeric-up": 62841, - "sort-up-alt": 62842, - "sort-up": 62843, - "soundwave": 62844, - "speaker-fill": 62845, - "speaker": 62846, - "speedometer": 62847, - "speedometer2": 62848, - "spellcheck": 62849, - "square-fill": 62850, - "square-half": 62851, - "square": 62852, - "stack": 62853, - "star-fill": 62854, - "star-half": 62855, - "star": 62856, - "stars": 62857, - "stickies-fill": 62858, - "stickies": 62859, - "sticky-fill": 62860, - "sticky": 62861, - "stop-btn-fill": 62862, - "stop-btn": 62863, - "stop-circle-fill": 62864, - "stop-circle": 62865, - "stop-fill": 62866, - "stop": 62867, - "stoplights-fill": 62868, - "stoplights": 62869, - "stopwatch-fill": 62870, - "stopwatch": 62871, - "subtract": 62872, - "suit-club-fill": 62873, - "suit-club": 62874, - "suit-diamond-fill": 62875, - "suit-diamond": 62876, - "suit-heart-fill": 62877, - "suit-heart": 62878, - "suit-spade-fill": 62879, - "suit-spade": 62880, - "sun-fill": 62881, - "sun": 62882, - "sunglasses": 62883, - "sunrise-fill": 62884, - "sunrise": 62885, - "sunset-fill": 62886, - "sunset": 62887, - "symmetry-horizontal": 62888, - "symmetry-vertical": 62889, - "table": 62890, - "tablet-fill": 62891, - "tablet-landscape-fill": 62892, - "tablet-landscape": 62893, - "tablet": 62894, - "tag-fill": 62895, - "tag": 62896, - "tags-fill": 62897, - "tags": 62898, - "telegram": 62899, - "telephone-fill": 62900, - "telephone-forward-fill": 62901, - "telephone-forward": 62902, - "telephone-inbound-fill": 62903, - "telephone-inbound": 62904, - "telephone-minus-fill": 62905, - "telephone-minus": 62906, - "telephone-outbound-fill": 62907, - "telephone-outbound": 62908, - "telephone-plus-fill": 62909, - "telephone-plus": 62910, - "telephone-x-fill": 62911, - "telephone-x": 62912, - "telephone": 62913, - "terminal-fill": 62914, - "terminal": 62915, - "text-center": 62916, - "text-indent-left": 62917, - "text-indent-right": 62918, - "text-left": 62919, - "text-paragraph": 62920, - "text-right": 62921, - "textarea-resize": 62922, - "textarea-t": 62923, - "textarea": 62924, - "thermometer-half": 62925, - "thermometer-high": 62926, - "thermometer-low": 62927, - "thermometer-snow": 62928, - "thermometer-sun": 62929, - "thermometer": 62930, - "three-dots-vertical": 62931, - "three-dots": 62932, - "toggle-off": 62933, - "toggle-on": 62934, - "toggle2-off": 62935, - "toggle2-on": 62936, - "toggles": 62937, - "toggles2": 62938, - "tools": 62939, - "tornado": 62940, - "trash-fill": 62941, - "trash": 62942, - "trash2-fill": 62943, - "trash2": 62944, - "tree-fill": 62945, - "tree": 62946, - "triangle-fill": 62947, - "triangle-half": 62948, - "triangle": 62949, - "trophy-fill": 62950, - "trophy": 62951, - "tropical-storm": 62952, - "truck-flatbed": 62953, - "truck": 62954, - "tsunami": 62955, - "tv-fill": 62956, - "tv": 62957, - "twitch": 62958, - "twitter": 62959, - "type-bold": 62960, - "type-h1": 62961, - "type-h2": 62962, - "type-h3": 62963, - "type-italic": 62964, - "type-strikethrough": 62965, - "type-underline": 62966, - "type": 62967, - "ui-checks-grid": 62968, - "ui-checks": 62969, - "ui-radios-grid": 62970, - "ui-radios": 62971, - "umbrella-fill": 62972, - "umbrella": 62973, - "union": 62974, - "unlock-fill": 62975, - "unlock": 62976, - "upc-scan": 62977, - "upc": 62978, - "upload": 62979, - "vector-pen": 62980, - "view-list": 62981, - "view-stacked": 62982, - "vinyl-fill": 62983, - "vinyl": 62984, - "voicemail": 62985, - "volume-down-fill": 62986, - "volume-down": 62987, - "volume-mute-fill": 62988, - "volume-mute": 62989, - "volume-off-fill": 62990, - "volume-off": 62991, - "volume-up-fill": 62992, - "volume-up": 62993, - "vr": 62994, - "wallet-fill": 62995, - "wallet": 62996, - "wallet2": 62997, - "watch": 62998, - "water": 62999, - "whatsapp": 63000, - "wifi-1": 63001, - "wifi-2": 63002, - "wifi-off": 63003, - "wifi": 63004, - "wind": 63005, - "window-dock": 63006, - "window-sidebar": 63007, - "window": 63008, - "wrench": 63009, - "x-circle-fill": 63010, - "x-circle": 63011, - "x-diamond-fill": 63012, - "x-diamond": 63013, - "x-octagon-fill": 63014, - "x-octagon": 63015, - "x-square-fill": 63016, - "x-square": 63017, - "x": 63018, - "youtube": 63019, - "zoom-in": 63020, - "zoom-out": 63021, - "bank": 63022, - "bank2": 63023, - "bell-slash-fill": 63024, - "bell-slash": 63025, - "cash-coin": 63026, - "check-lg": 63027, - "coin": 63028, - "currency-bitcoin": 63029, - "currency-dollar": 63030, - "currency-euro": 63031, - "currency-exchange": 63032, - "currency-pound": 63033, - "currency-yen": 63034, - "dash-lg": 63035, - "exclamation-lg": 63036, - "file-earmark-pdf-fill": 63037, - "file-earmark-pdf": 63038, - "file-pdf-fill": 63039, - "file-pdf": 63040, - "gender-ambiguous": 63041, - "gender-female": 63042, - "gender-male": 63043, - "gender-trans": 63044, - "headset-vr": 63045, - "info-lg": 63046, - "mastodon": 63047, - "messenger": 63048, - "piggy-bank-fill": 63049, - "piggy-bank": 63050, - "pin-map-fill": 63051, - "pin-map": 63052, - "plus-lg": 63053, - "question-lg": 63054, - "recycle": 63055, - "reddit": 63056, - "safe-fill": 63057, - "safe2-fill": 63058, - "safe2": 63059, - "sd-card-fill": 63060, - "sd-card": 63061, - "skype": 63062, - "slash-lg": 63063, - "translate": 63064, - "x-lg": 63065, - "safe": 63066, - "apple": 63067, - "microsoft": 63069, - "windows": 63070, - "behance": 63068, - "dribbble": 63071, - "line": 63072, - "medium": 63073, - "paypal": 63074, - "pinterest": 63075, - "signal": 63076, - "snapchat": 63077, - "spotify": 63078, - "stack-overflow": 63079, - "strava": 63080, - "wordpress": 63081, - "vimeo": 63082, - "activity": 63083, - "easel2-fill": 63084, - "easel2": 63085, - "easel3-fill": 63086, - "easel3": 63087, - "fan": 63088, - "fingerprint": 63089, - "graph-down-arrow": 63090, - "graph-up-arrow": 63091, - "hypnotize": 63092, - "magic": 63093, - "person-rolodex": 63094, - "person-video": 63095, - "person-video2": 63096, - "person-video3": 63097, - "person-workspace": 63098, - "radioactive": 63099, - "webcam-fill": 63100, - "webcam": 63101, - "yin-yang": 63102, - "bandaid-fill": 63104, - "bandaid": 63105, - "bluetooth": 63106, - "body-text": 63107, - "boombox": 63108, - "boxes": 63109, - "dpad-fill": 63110, - "dpad": 63111, - "ear-fill": 63112, - "ear": 63113, - "envelope-check-fill": 63115, - "envelope-check": 63116, - "envelope-dash-fill": 63118, - "envelope-dash": 63119, - "envelope-exclamation-fill": 63121, - "envelope-exclamation": 63122, - "envelope-plus-fill": 63123, - "envelope-plus": 63124, - "envelope-slash-fill": 63126, - "envelope-slash": 63127, - "envelope-x-fill": 63129, - "envelope-x": 63130, - "explicit-fill": 63131, - "explicit": 63132, - "git": 63133, - "infinity": 63134, - "list-columns-reverse": 63135, - "list-columns": 63136, - "meta": 63137, - "nintendo-switch": 63140, - "pc-display-horizontal": 63141, - "pc-display": 63142, - "pc-horizontal": 63143, - "pc": 63144, - "playstation": 63145, - "plus-slash-minus": 63146, - "projector-fill": 63147, - "projector": 63148, - "qr-code-scan": 63149, - "qr-code": 63150, - "quora": 63151, - "quote": 63152, - "robot": 63153, - "send-check-fill": 63154, - "send-check": 63155, - "send-dash-fill": 63156, - "send-dash": 63157, - "send-exclamation-fill": 63159, - "send-exclamation": 63160, - "send-fill": 63161, - "send-plus-fill": 63162, - "send-plus": 63163, - "send-slash-fill": 63164, - "send-slash": 63165, - "send-x-fill": 63166, - "send-x": 63167, - "send": 63168, - "steam": 63169, - "terminal-dash": 63171, - "terminal-plus": 63172, - "terminal-split": 63173, - "ticket-detailed-fill": 63174, - "ticket-detailed": 63175, - "ticket-fill": 63176, - "ticket-perforated-fill": 63177, - "ticket-perforated": 63178, - "ticket": 63179, - "tiktok": 63180, - "window-dash": 63181, - "window-desktop": 63182, - "window-fullscreen": 63183, - "window-plus": 63184, - "window-split": 63185, - "window-stack": 63186, - "window-x": 63187, - "xbox": 63188, - "ethernet": 63189, - "hdmi-fill": 63190, - "hdmi": 63191, - "usb-c-fill": 63192, - "usb-c": 63193, - "usb-fill": 63194, - "usb-plug-fill": 63195, - "usb-plug": 63196, - "usb-symbol": 63197, - "usb": 63198, - "boombox-fill": 63199, - "displayport": 63201, - "gpu-card": 63202, - "memory": 63203, - "modem-fill": 63204, - "modem": 63205, - "motherboard-fill": 63206, - "motherboard": 63207, - "optical-audio-fill": 63208, - "optical-audio": 63209, - "pci-card": 63210, - "router-fill": 63211, - "router": 63212, - "thunderbolt-fill": 63215, - "thunderbolt": 63216, - "usb-drive-fill": 63217, - "usb-drive": 63218, - "usb-micro-fill": 63219, - "usb-micro": 63220, - "usb-mini-fill": 63221, - "usb-mini": 63222, - "cloud-haze2": 63223, - "device-hdd-fill": 63224, - "device-hdd": 63225, - "device-ssd-fill": 63226, - "device-ssd": 63227, - "displayport-fill": 63228, - "mortarboard-fill": 63229, - "mortarboard": 63230, - "terminal-x": 63231, - "arrow-through-heart-fill": 63232, - "arrow-through-heart": 63233, - "badge-sd-fill": 63234, - "badge-sd": 63235, - "bag-heart-fill": 63236, - "bag-heart": 63237, - "balloon-fill": 63238, - "balloon-heart-fill": 63239, - "balloon-heart": 63240, - "balloon": 63241, - "box2-fill": 63242, - "box2-heart-fill": 63243, - "box2-heart": 63244, - "box2": 63245, - "braces-asterisk": 63246, - "calendar-heart-fill": 63247, - "calendar-heart": 63248, - "calendar2-heart-fill": 63249, - "calendar2-heart": 63250, - "chat-heart-fill": 63251, - "chat-heart": 63252, - "chat-left-heart-fill": 63253, - "chat-left-heart": 63254, - "chat-right-heart-fill": 63255, - "chat-right-heart": 63256, - "chat-square-heart-fill": 63257, - "chat-square-heart": 63258, - "clipboard-check-fill": 63259, - "clipboard-data-fill": 63260, - "clipboard-fill": 63261, - "clipboard-heart-fill": 63262, - "clipboard-heart": 63263, - "clipboard-minus-fill": 63264, - "clipboard-plus-fill": 63265, - "clipboard-pulse": 63266, - "clipboard-x-fill": 63267, - "clipboard2-check-fill": 63268, - "clipboard2-check": 63269, - "clipboard2-data-fill": 63270, - "clipboard2-data": 63271, - "clipboard2-fill": 63272, - "clipboard2-heart-fill": 63273, - "clipboard2-heart": 63274, - "clipboard2-minus-fill": 63275, - "clipboard2-minus": 63276, - "clipboard2-plus-fill": 63277, - "clipboard2-plus": 63278, - "clipboard2-pulse-fill": 63279, - "clipboard2-pulse": 63280, - "clipboard2-x-fill": 63281, - "clipboard2-x": 63282, - "clipboard2": 63283, - "emoji-kiss-fill": 63284, - "emoji-kiss": 63285, - "envelope-heart-fill": 63286, - "envelope-heart": 63287, - "envelope-open-heart-fill": 63288, - "envelope-open-heart": 63289, - "envelope-paper-fill": 63290, - "envelope-paper-heart-fill": 63291, - "envelope-paper-heart": 63292, - "envelope-paper": 63293, - "filetype-aac": 63294, - "filetype-ai": 63295, - "filetype-bmp": 63296, - "filetype-cs": 63297, - "filetype-css": 63298, - "filetype-csv": 63299, - "filetype-doc": 63300, - "filetype-docx": 63301, - "filetype-exe": 63302, - "filetype-gif": 63303, - "filetype-heic": 63304, - "filetype-html": 63305, - "filetype-java": 63306, - "filetype-jpg": 63307, - "filetype-js": 63308, - "filetype-jsx": 63309, - "filetype-key": 63310, - "filetype-m4p": 63311, - "filetype-md": 63312, - "filetype-mdx": 63313, - "filetype-mov": 63314, - "filetype-mp3": 63315, - "filetype-mp4": 63316, - "filetype-otf": 63317, - "filetype-pdf": 63318, - "filetype-php": 63319, - "filetype-png": 63320, - "filetype-ppt": 63322, - "filetype-psd": 63323, - "filetype-py": 63324, - "filetype-raw": 63325, - "filetype-rb": 63326, - "filetype-sass": 63327, - "filetype-scss": 63328, - "filetype-sh": 63329, - "filetype-svg": 63330, - "filetype-tiff": 63331, - "filetype-tsx": 63332, - "filetype-ttf": 63333, - "filetype-txt": 63334, - "filetype-wav": 63335, - "filetype-woff": 63336, - "filetype-xls": 63338, - "filetype-xml": 63339, - "filetype-yml": 63340, - "heart-arrow": 63341, - "heart-pulse-fill": 63342, - "heart-pulse": 63343, - "heartbreak-fill": 63344, - "heartbreak": 63345, - "hearts": 63346, - "hospital-fill": 63347, - "hospital": 63348, - "house-heart-fill": 63349, - "house-heart": 63350, - "incognito": 63351, - "magnet-fill": 63352, - "magnet": 63353, - "person-heart": 63354, - "person-hearts": 63355, - "phone-flip": 63356, - "plugin": 63357, - "postage-fill": 63358, - "postage-heart-fill": 63359, - "postage-heart": 63360, - "postage": 63361, - "postcard-fill": 63362, - "postcard-heart-fill": 63363, - "postcard-heart": 63364, - "postcard": 63365, - "search-heart-fill": 63366, - "search-heart": 63367, - "sliders2-vertical": 63368, - "sliders2": 63369, - "trash3-fill": 63370, - "trash3": 63371, - "valentine": 63372, - "valentine2": 63373, - "wrench-adjustable-circle-fill": 63374, - "wrench-adjustable-circle": 63375, - "wrench-adjustable": 63376, - "filetype-json": 63377, - "filetype-pptx": 63378, - "filetype-xlsx": 63379, - "1-circle-fill": 63382, - "1-circle": 63383, - "1-square-fill": 63384, - "1-square": 63385, - "2-circle-fill": 63388, - "2-circle": 63389, - "2-square-fill": 63390, - "2-square": 63391, - "3-circle-fill": 63394, - "3-circle": 63395, - "3-square-fill": 63396, - "3-square": 63397, - "4-circle-fill": 63400, - "4-circle": 63401, - "4-square-fill": 63402, - "4-square": 63403, - "5-circle-fill": 63406, - "5-circle": 63407, - "5-square-fill": 63408, - "5-square": 63409, - "6-circle-fill": 63412, - "6-circle": 63413, - "6-square-fill": 63414, - "6-square": 63415, - "7-circle-fill": 63418, - "7-circle": 63419, - "7-square-fill": 63420, - "7-square": 63421, - "8-circle-fill": 63424, - "8-circle": 63425, - "8-square-fill": 63426, - "8-square": 63427, - "9-circle-fill": 63430, - "9-circle": 63431, - "9-square-fill": 63432, - "9-square": 63433, - "airplane-engines-fill": 63434, - "airplane-engines": 63435, - "airplane-fill": 63436, - "airplane": 63437, - "alexa": 63438, - "alipay": 63439, - "android": 63440, - "android2": 63441, - "box-fill": 63442, - "box-seam-fill": 63443, - "browser-chrome": 63444, - "browser-edge": 63445, - "browser-firefox": 63446, - "browser-safari": 63447, - "c-circle-fill": 63450, - "c-circle": 63451, - "c-square-fill": 63452, - "c-square": 63453, - "capsule-pill": 63454, - "capsule": 63455, - "car-front-fill": 63456, - "car-front": 63457, - "cassette-fill": 63458, - "cassette": 63459, - "cc-circle-fill": 63462, - "cc-circle": 63463, - "cc-square-fill": 63464, - "cc-square": 63465, - "cup-hot-fill": 63466, - "cup-hot": 63467, - "currency-rupee": 63468, - "dropbox": 63469, - "escape": 63470, - "fast-forward-btn-fill": 63471, - "fast-forward-btn": 63472, - "fast-forward-circle-fill": 63473, - "fast-forward-circle": 63474, - "fast-forward-fill": 63475, - "fast-forward": 63476, - "filetype-sql": 63477, - "fire": 63478, - "google-play": 63479, - "h-circle-fill": 63482, - "h-circle": 63483, - "h-square-fill": 63484, - "h-square": 63485, - "indent": 63486, - "lungs-fill": 63487, - "lungs": 63488, - "microsoft-teams": 63489, - "p-circle-fill": 63492, - "p-circle": 63493, - "p-square-fill": 63494, - "p-square": 63495, - "pass-fill": 63496, - "pass": 63497, - "prescription": 63498, - "prescription2": 63499, - "r-circle-fill": 63502, - "r-circle": 63503, - "r-square-fill": 63504, - "r-square": 63505, - "repeat-1": 63506, - "repeat": 63507, - "rewind-btn-fill": 63508, - "rewind-btn": 63509, - "rewind-circle-fill": 63510, - "rewind-circle": 63511, - "rewind-fill": 63512, - "rewind": 63513, - "train-freight-front-fill": 63514, - "train-freight-front": 63515, - "train-front-fill": 63516, - "train-front": 63517, - "train-lightrail-front-fill": 63518, - "train-lightrail-front": 63519, - "truck-front-fill": 63520, - "truck-front": 63521, - "ubuntu": 63522, - "unindent": 63523, - "unity": 63524, - "universal-access-circle": 63525, - "universal-access": 63526, - "virus": 63527, - "virus2": 63528, - "wechat": 63529, - "yelp": 63530, - "sign-stop-fill": 63531, - "sign-stop-lights-fill": 63532, - "sign-stop-lights": 63533, - "sign-stop": 63534, - "sign-turn-left-fill": 63535, - "sign-turn-left": 63536, - "sign-turn-right-fill": 63537, - "sign-turn-right": 63538, - "sign-turn-slight-left-fill": 63539, - "sign-turn-slight-left": 63540, - "sign-turn-slight-right-fill": 63541, - "sign-turn-slight-right": 63542, - "sign-yield-fill": 63543, - "sign-yield": 63544, - "ev-station-fill": 63545, - "ev-station": 63546, - "fuel-pump-diesel-fill": 63547, - "fuel-pump-diesel": 63548, - "fuel-pump-fill": 63549, - "fuel-pump": 63550, - "0-circle-fill": 63551, - "0-circle": 63552, - "0-square-fill": 63553, - "0-square": 63554, - "rocket-fill": 63555, - "rocket-takeoff-fill": 63556, - "rocket-takeoff": 63557, - "rocket": 63558, - "stripe": 63559, - "subscript": 63560, - "superscript": 63561, - "trello": 63562, - "envelope-at-fill": 63563, - "envelope-at": 63564, - "regex": 63565, - "text-wrap": 63566, - "sign-dead-end-fill": 63567, - "sign-dead-end": 63568, - "sign-do-not-enter-fill": 63569, - "sign-do-not-enter": 63570, - "sign-intersection-fill": 63571, - "sign-intersection-side-fill": 63572, - "sign-intersection-side": 63573, - "sign-intersection-t-fill": 63574, - "sign-intersection-t": 63575, - "sign-intersection-y-fill": 63576, - "sign-intersection-y": 63577, - "sign-intersection": 63578, - "sign-merge-left-fill": 63579, - "sign-merge-left": 63580, - "sign-merge-right-fill": 63581, - "sign-merge-right": 63582, - "sign-no-left-turn-fill": 63583, - "sign-no-left-turn": 63584, - "sign-no-parking-fill": 63585, - "sign-no-parking": 63586, - "sign-no-right-turn-fill": 63587, - "sign-no-right-turn": 63588, - "sign-railroad-fill": 63589, - "sign-railroad": 63590, - "building-add": 63591, - "building-check": 63592, - "building-dash": 63593, - "building-down": 63594, - "building-exclamation": 63595, - "building-fill-add": 63596, - "building-fill-check": 63597, - "building-fill-dash": 63598, - "building-fill-down": 63599, - "building-fill-exclamation": 63600, - "building-fill-gear": 63601, - "building-fill-lock": 63602, - "building-fill-slash": 63603, - "building-fill-up": 63604, - "building-fill-x": 63605, - "building-fill": 63606, - "building-gear": 63607, - "building-lock": 63608, - "building-slash": 63609, - "building-up": 63610, - "building-x": 63611, - "buildings-fill": 63612, - "buildings": 63613, - "bus-front-fill": 63614, - "bus-front": 63615, - "ev-front-fill": 63616, - "ev-front": 63617, - "globe-americas": 63618, - "globe-asia-australia": 63619, - "globe-central-south-asia": 63620, - "globe-europe-africa": 63621, - "house-add-fill": 63622, - "house-add": 63623, - "house-check-fill": 63624, - "house-check": 63625, - "house-dash-fill": 63626, - "house-dash": 63627, - "house-down-fill": 63628, - "house-down": 63629, - "house-exclamation-fill": 63630, - "house-exclamation": 63631, - "house-gear-fill": 63632, - "house-gear": 63633, - "house-lock-fill": 63634, - "house-lock": 63635, - "house-slash-fill": 63636, - "house-slash": 63637, - "house-up-fill": 63638, - "house-up": 63639, - "house-x-fill": 63640, - "house-x": 63641, - "person-add": 63642, - "person-down": 63643, - "person-exclamation": 63644, - "person-fill-add": 63645, - "person-fill-check": 63646, - "person-fill-dash": 63647, - "person-fill-down": 63648, - "person-fill-exclamation": 63649, - "person-fill-gear": 63650, - "person-fill-lock": 63651, - "person-fill-slash": 63652, - "person-fill-up": 63653, - "person-fill-x": 63654, - "person-gear": 63655, - "person-lock": 63656, - "person-slash": 63657, - "person-up": 63658, - "scooter": 63659, - "taxi-front-fill": 63660, - "taxi-front": 63661, - "amd": 63662, - "database-add": 63663, - "database-check": 63664, - "database-dash": 63665, - "database-down": 63666, - "database-exclamation": 63667, - "database-fill-add": 63668, - "database-fill-check": 63669, - "database-fill-dash": 63670, - "database-fill-down": 63671, - "database-fill-exclamation": 63672, - "database-fill-gear": 63673, - "database-fill-lock": 63674, - "database-fill-slash": 63675, - "database-fill-up": 63676, - "database-fill-x": 63677, - "database-fill": 63678, - "database-gear": 63679, - "database-lock": 63680, - "database-slash": 63681, - "database-up": 63682, - "database-x": 63683, - "database": 63684, - "houses-fill": 63685, - "houses": 63686, - "nvidia": 63687, - "person-vcard-fill": 63688, - "person-vcard": 63689, - "sina-weibo": 63690, - "tencent-qq": 63691, - "wikipedia": 63692, - "alphabet-uppercase": 62117, - "alphabet": 63114, - "amazon": 63117, - "arrows-collapse-vertical": 63120, - "arrows-expand-vertical": 63125, - "arrows-vertical": 63128, - "arrows": 63138, - "ban-fill": 63139, - "ban": 63158, - "bing": 63170, - "cake": 63200, - "cake2": 63213, - "cookie": 63214, - "copy": 63321, - "crosshair": 63337, - "crosshair2": 63380, - "emoji-astonished-fill": 63381, - "emoji-astonished": 63386, - "emoji-grimace-fill": 63387, - "emoji-grimace": 63392, - "emoji-grin-fill": 63393, - "emoji-grin": 63398, - "emoji-surprise-fill": 63399, - "emoji-surprise": 63404, - "emoji-tear-fill": 63405, - "emoji-tear": 63410, - "envelope-arrow-down-fill": 63411, - "envelope-arrow-down": 63416, - "envelope-arrow-up-fill": 63417, - "envelope-arrow-up": 63422, - "feather": 63423, - "feather2": 63428, - "floppy-fill": 63429, - "floppy": 63448, - "floppy2-fill": 63449, - "floppy2": 63460, - "gitlab": 63461, - "highlighter": 63480, - "marker-tip": 63490, - "nvme-fill": 63491, - "nvme": 63500, - "opencollective": 63501, - "pci-card-network": 63693, - "pci-card-sound": 63694, - "radar": 63695, - "send-arrow-down-fill": 63696, - "send-arrow-down": 63697, - "send-arrow-up-fill": 63698, - "send-arrow-up": 63699, - "sim-slash-fill": 63700, - "sim-slash": 63701, - "sourceforge": 63702, - "substack": 63703, - "threads-fill": 63704, - "threads": 63705, - "transparency": 63706, - "twitter-x": 63707, - "type-h4": 63708, - "type-h5": 63709, - "type-h6": 63710, - "backpack-fill": 63711, - "backpack": 63712, - "backpack2-fill": 63713, - "backpack2": 63714, - "backpack3-fill": 63715, - "backpack3": 63716, - "backpack4-fill": 63717, - "backpack4": 63718, - "brilliance": 63719, - "cake-fill": 63720, - "cake2-fill": 63721, - "duffle-fill": 63722, - "duffle": 63723, - "exposure": 63724, - "gender-neuter": 63725, - "highlights": 63726, - "luggage-fill": 63727, - "luggage": 63728, - "mailbox-flag": 63729, - "mailbox2-flag": 63730, - "noise-reduction": 63731, - "passport-fill": 63732, - "passport": 63733, - "person-arms-up": 63734, - "person-raised-hand": 63735, - "person-standing-dress": 63736, - "person-standing": 63737, - "person-walking": 63738, - "person-wheelchair": 63739, - "shadows": 63740, - "suitcase-fill": 63741, - "suitcase-lg-fill": 63742, - "suitcase-lg": 63743, - "suitcase": 63744, - "suitcase2-fill": 63745, - "suitcase2": 63746, - "vignette": 63747 -} \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.min.css b/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.min.css deleted file mode 100644 index 7028a21..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * Bootstrap Icons v1.10.5 (https://icons.getbootstrap.com/) - * Copyright 2019-2023 The Bootstrap Authors - * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) - */@font-face{font-display:block;font-family:bootstrap-icons;src:url("fonts/bootstrap-icons.woff2?1bb88866b4085542c8ed5fb61b9393dd") format("woff2"),url("fonts/bootstrap-icons.woff?1bb88866b4085542c8ed5fb61b9393dd") format("woff")}.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123::before{content:"\f67f"}.bi-alarm-fill::before{content:"\f101"}.bi-alarm::before{content:"\f102"}.bi-align-bottom::before{content:"\f103"}.bi-align-center::before{content:"\f104"}.bi-align-end::before{content:"\f105"}.bi-align-middle::before{content:"\f106"}.bi-align-start::before{content:"\f107"}.bi-align-top::before{content:"\f108"}.bi-alt::before{content:"\f109"}.bi-app-indicator::before{content:"\f10a"}.bi-app::before{content:"\f10b"}.bi-archive-fill::before{content:"\f10c"}.bi-archive::before{content:"\f10d"}.bi-arrow-90deg-down::before{content:"\f10e"}.bi-arrow-90deg-left::before{content:"\f10f"}.bi-arrow-90deg-right::before{content:"\f110"}.bi-arrow-90deg-up::before{content:"\f111"}.bi-arrow-bar-down::before{content:"\f112"}.bi-arrow-bar-left::before{content:"\f113"}.bi-arrow-bar-right::before{content:"\f114"}.bi-arrow-bar-up::before{content:"\f115"}.bi-arrow-clockwise::before{content:"\f116"}.bi-arrow-counterclockwise::before{content:"\f117"}.bi-arrow-down-circle-fill::before{content:"\f118"}.bi-arrow-down-circle::before{content:"\f119"}.bi-arrow-down-left-circle-fill::before{content:"\f11a"}.bi-arrow-down-left-circle::before{content:"\f11b"}.bi-arrow-down-left-square-fill::before{content:"\f11c"}.bi-arrow-down-left-square::before{content:"\f11d"}.bi-arrow-down-left::before{content:"\f11e"}.bi-arrow-down-right-circle-fill::before{content:"\f11f"}.bi-arrow-down-right-circle::before{content:"\f120"}.bi-arrow-down-right-square-fill::before{content:"\f121"}.bi-arrow-down-right-square::before{content:"\f122"}.bi-arrow-down-right::before{content:"\f123"}.bi-arrow-down-short::before{content:"\f124"}.bi-arrow-down-square-fill::before{content:"\f125"}.bi-arrow-down-square::before{content:"\f126"}.bi-arrow-down-up::before{content:"\f127"}.bi-arrow-down::before{content:"\f128"}.bi-arrow-left-circle-fill::before{content:"\f129"}.bi-arrow-left-circle::before{content:"\f12a"}.bi-arrow-left-right::before{content:"\f12b"}.bi-arrow-left-short::before{content:"\f12c"}.bi-arrow-left-square-fill::before{content:"\f12d"}.bi-arrow-left-square::before{content:"\f12e"}.bi-arrow-left::before{content:"\f12f"}.bi-arrow-repeat::before{content:"\f130"}.bi-arrow-return-left::before{content:"\f131"}.bi-arrow-return-right::before{content:"\f132"}.bi-arrow-right-circle-fill::before{content:"\f133"}.bi-arrow-right-circle::before{content:"\f134"}.bi-arrow-right-short::before{content:"\f135"}.bi-arrow-right-square-fill::before{content:"\f136"}.bi-arrow-right-square::before{content:"\f137"}.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-circle-fill::before{content:"\f139"}.bi-arrow-up-circle::before{content:"\f13a"}.bi-arrow-up-left-circle-fill::before{content:"\f13b"}.bi-arrow-up-left-circle::before{content:"\f13c"}.bi-arrow-up-left-square-fill::before{content:"\f13d"}.bi-arrow-up-left-square::before{content:"\f13e"}.bi-arrow-up-left::before{content:"\f13f"}.bi-arrow-up-right-circle-fill::before{content:"\f140"}.bi-arrow-up-right-circle::before{content:"\f141"}.bi-arrow-up-right-square-fill::before{content:"\f142"}.bi-arrow-up-right-square::before{content:"\f143"}.bi-arrow-up-right::before{content:"\f144"}.bi-arrow-up-short::before{content:"\f145"}.bi-arrow-up-square-fill::before{content:"\f146"}.bi-arrow-up-square::before{content:"\f147"}.bi-arrow-up::before{content:"\f148"}.bi-arrows-angle-contract::before{content:"\f149"}.bi-arrows-angle-expand::before{content:"\f14a"}.bi-arrows-collapse::before{content:"\f14b"}.bi-arrows-expand::before{content:"\f14c"}.bi-arrows-fullscreen::before{content:"\f14d"}.bi-arrows-move::before{content:"\f14e"}.bi-aspect-ratio-fill::before{content:"\f14f"}.bi-aspect-ratio::before{content:"\f150"}.bi-asterisk::before{content:"\f151"}.bi-at::before{content:"\f152"}.bi-award-fill::before{content:"\f153"}.bi-award::before{content:"\f154"}.bi-back::before{content:"\f155"}.bi-backspace-fill::before{content:"\f156"}.bi-backspace-reverse-fill::before{content:"\f157"}.bi-backspace-reverse::before{content:"\f158"}.bi-backspace::before{content:"\f159"}.bi-badge-3d-fill::before{content:"\f15a"}.bi-badge-3d::before{content:"\f15b"}.bi-badge-4k-fill::before{content:"\f15c"}.bi-badge-4k::before{content:"\f15d"}.bi-badge-8k-fill::before{content:"\f15e"}.bi-badge-8k::before{content:"\f15f"}.bi-badge-ad-fill::before{content:"\f160"}.bi-badge-ad::before{content:"\f161"}.bi-badge-ar-fill::before{content:"\f162"}.bi-badge-ar::before{content:"\f163"}.bi-badge-cc-fill::before{content:"\f164"}.bi-badge-cc::before{content:"\f165"}.bi-badge-hd-fill::before{content:"\f166"}.bi-badge-hd::before{content:"\f167"}.bi-badge-tm-fill::before{content:"\f168"}.bi-badge-tm::before{content:"\f169"}.bi-badge-vo-fill::before{content:"\f16a"}.bi-badge-vo::before{content:"\f16b"}.bi-badge-vr-fill::before{content:"\f16c"}.bi-badge-vr::before{content:"\f16d"}.bi-badge-wc-fill::before{content:"\f16e"}.bi-badge-wc::before{content:"\f16f"}.bi-bag-check-fill::before{content:"\f170"}.bi-bag-check::before{content:"\f171"}.bi-bag-dash-fill::before{content:"\f172"}.bi-bag-dash::before{content:"\f173"}.bi-bag-fill::before{content:"\f174"}.bi-bag-plus-fill::before{content:"\f175"}.bi-bag-plus::before{content:"\f176"}.bi-bag-x-fill::before{content:"\f177"}.bi-bag-x::before{content:"\f178"}.bi-bag::before{content:"\f179"}.bi-bar-chart-fill::before{content:"\f17a"}.bi-bar-chart-line-fill::before{content:"\f17b"}.bi-bar-chart-line::before{content:"\f17c"}.bi-bar-chart-steps::before{content:"\f17d"}.bi-bar-chart::before{content:"\f17e"}.bi-basket-fill::before{content:"\f17f"}.bi-basket::before{content:"\f180"}.bi-basket2-fill::before{content:"\f181"}.bi-basket2::before{content:"\f182"}.bi-basket3-fill::before{content:"\f183"}.bi-basket3::before{content:"\f184"}.bi-battery-charging::before{content:"\f185"}.bi-battery-full::before{content:"\f186"}.bi-battery-half::before{content:"\f187"}.bi-battery::before{content:"\f188"}.bi-bell-fill::before{content:"\f189"}.bi-bell::before{content:"\f18a"}.bi-bezier::before{content:"\f18b"}.bi-bezier2::before{content:"\f18c"}.bi-bicycle::before{content:"\f18d"}.bi-binoculars-fill::before{content:"\f18e"}.bi-binoculars::before{content:"\f18f"}.bi-blockquote-left::before{content:"\f190"}.bi-blockquote-right::before{content:"\f191"}.bi-book-fill::before{content:"\f192"}.bi-book-half::before{content:"\f193"}.bi-book::before{content:"\f194"}.bi-bookmark-check-fill::before{content:"\f195"}.bi-bookmark-check::before{content:"\f196"}.bi-bookmark-dash-fill::before{content:"\f197"}.bi-bookmark-dash::before{content:"\f198"}.bi-bookmark-fill::before{content:"\f199"}.bi-bookmark-heart-fill::before{content:"\f19a"}.bi-bookmark-heart::before{content:"\f19b"}.bi-bookmark-plus-fill::before{content:"\f19c"}.bi-bookmark-plus::before{content:"\f19d"}.bi-bookmark-star-fill::before{content:"\f19e"}.bi-bookmark-star::before{content:"\f19f"}.bi-bookmark-x-fill::before{content:"\f1a0"}.bi-bookmark-x::before{content:"\f1a1"}.bi-bookmark::before{content:"\f1a2"}.bi-bookmarks-fill::before{content:"\f1a3"}.bi-bookmarks::before{content:"\f1a4"}.bi-bookshelf::before{content:"\f1a5"}.bi-bootstrap-fill::before{content:"\f1a6"}.bi-bootstrap-reboot::before{content:"\f1a7"}.bi-bootstrap::before{content:"\f1a8"}.bi-border-all::before{content:"\f1a9"}.bi-border-bottom::before{content:"\f1aa"}.bi-border-center::before{content:"\f1ab"}.bi-border-inner::before{content:"\f1ac"}.bi-border-left::before{content:"\f1ad"}.bi-border-middle::before{content:"\f1ae"}.bi-border-outer::before{content:"\f1af"}.bi-border-right::before{content:"\f1b0"}.bi-border-style::before{content:"\f1b1"}.bi-border-top::before{content:"\f1b2"}.bi-border-width::before{content:"\f1b3"}.bi-border::before{content:"\f1b4"}.bi-bounding-box-circles::before{content:"\f1b5"}.bi-bounding-box::before{content:"\f1b6"}.bi-box-arrow-down-left::before{content:"\f1b7"}.bi-box-arrow-down-right::before{content:"\f1b8"}.bi-box-arrow-down::before{content:"\f1b9"}.bi-box-arrow-in-down-left::before{content:"\f1ba"}.bi-box-arrow-in-down-right::before{content:"\f1bb"}.bi-box-arrow-in-down::before{content:"\f1bc"}.bi-box-arrow-in-left::before{content:"\f1bd"}.bi-box-arrow-in-right::before{content:"\f1be"}.bi-box-arrow-in-up-left::before{content:"\f1bf"}.bi-box-arrow-in-up-right::before{content:"\f1c0"}.bi-box-arrow-in-up::before{content:"\f1c1"}.bi-box-arrow-left::before{content:"\f1c2"}.bi-box-arrow-right::before{content:"\f1c3"}.bi-box-arrow-up-left::before{content:"\f1c4"}.bi-box-arrow-up-right::before{content:"\f1c5"}.bi-box-arrow-up::before{content:"\f1c6"}.bi-box-seam::before{content:"\f1c7"}.bi-box::before{content:"\f1c8"}.bi-braces::before{content:"\f1c9"}.bi-bricks::before{content:"\f1ca"}.bi-briefcase-fill::before{content:"\f1cb"}.bi-briefcase::before{content:"\f1cc"}.bi-brightness-alt-high-fill::before{content:"\f1cd"}.bi-brightness-alt-high::before{content:"\f1ce"}.bi-brightness-alt-low-fill::before{content:"\f1cf"}.bi-brightness-alt-low::before{content:"\f1d0"}.bi-brightness-high-fill::before{content:"\f1d1"}.bi-brightness-high::before{content:"\f1d2"}.bi-brightness-low-fill::before{content:"\f1d3"}.bi-brightness-low::before{content:"\f1d4"}.bi-broadcast-pin::before{content:"\f1d5"}.bi-broadcast::before{content:"\f1d6"}.bi-brush-fill::before{content:"\f1d7"}.bi-brush::before{content:"\f1d8"}.bi-bucket-fill::before{content:"\f1d9"}.bi-bucket::before{content:"\f1da"}.bi-bug-fill::before{content:"\f1db"}.bi-bug::before{content:"\f1dc"}.bi-building::before{content:"\f1dd"}.bi-bullseye::before{content:"\f1de"}.bi-calculator-fill::before{content:"\f1df"}.bi-calculator::before{content:"\f1e0"}.bi-calendar-check-fill::before{content:"\f1e1"}.bi-calendar-check::before{content:"\f1e2"}.bi-calendar-date-fill::before{content:"\f1e3"}.bi-calendar-date::before{content:"\f1e4"}.bi-calendar-day-fill::before{content:"\f1e5"}.bi-calendar-day::before{content:"\f1e6"}.bi-calendar-event-fill::before{content:"\f1e7"}.bi-calendar-event::before{content:"\f1e8"}.bi-calendar-fill::before{content:"\f1e9"}.bi-calendar-minus-fill::before{content:"\f1ea"}.bi-calendar-minus::before{content:"\f1eb"}.bi-calendar-month-fill::before{content:"\f1ec"}.bi-calendar-month::before{content:"\f1ed"}.bi-calendar-plus-fill::before{content:"\f1ee"}.bi-calendar-plus::before{content:"\f1ef"}.bi-calendar-range-fill::before{content:"\f1f0"}.bi-calendar-range::before{content:"\f1f1"}.bi-calendar-week-fill::before{content:"\f1f2"}.bi-calendar-week::before{content:"\f1f3"}.bi-calendar-x-fill::before{content:"\f1f4"}.bi-calendar-x::before{content:"\f1f5"}.bi-calendar::before{content:"\f1f6"}.bi-calendar2-check-fill::before{content:"\f1f7"}.bi-calendar2-check::before{content:"\f1f8"}.bi-calendar2-date-fill::before{content:"\f1f9"}.bi-calendar2-date::before{content:"\f1fa"}.bi-calendar2-day-fill::before{content:"\f1fb"}.bi-calendar2-day::before{content:"\f1fc"}.bi-calendar2-event-fill::before{content:"\f1fd"}.bi-calendar2-event::before{content:"\f1fe"}.bi-calendar2-fill::before{content:"\f1ff"}.bi-calendar2-minus-fill::before{content:"\f200"}.bi-calendar2-minus::before{content:"\f201"}.bi-calendar2-month-fill::before{content:"\f202"}.bi-calendar2-month::before{content:"\f203"}.bi-calendar2-plus-fill::before{content:"\f204"}.bi-calendar2-plus::before{content:"\f205"}.bi-calendar2-range-fill::before{content:"\f206"}.bi-calendar2-range::before{content:"\f207"}.bi-calendar2-week-fill::before{content:"\f208"}.bi-calendar2-week::before{content:"\f209"}.bi-calendar2-x-fill::before{content:"\f20a"}.bi-calendar2-x::before{content:"\f20b"}.bi-calendar2::before{content:"\f20c"}.bi-calendar3-event-fill::before{content:"\f20d"}.bi-calendar3-event::before{content:"\f20e"}.bi-calendar3-fill::before{content:"\f20f"}.bi-calendar3-range-fill::before{content:"\f210"}.bi-calendar3-range::before{content:"\f211"}.bi-calendar3-week-fill::before{content:"\f212"}.bi-calendar3-week::before{content:"\f213"}.bi-calendar3::before{content:"\f214"}.bi-calendar4-event::before{content:"\f215"}.bi-calendar4-range::before{content:"\f216"}.bi-calendar4-week::before{content:"\f217"}.bi-calendar4::before{content:"\f218"}.bi-camera-fill::before{content:"\f219"}.bi-camera-reels-fill::before{content:"\f21a"}.bi-camera-reels::before{content:"\f21b"}.bi-camera-video-fill::before{content:"\f21c"}.bi-camera-video-off-fill::before{content:"\f21d"}.bi-camera-video-off::before{content:"\f21e"}.bi-camera-video::before{content:"\f21f"}.bi-camera::before{content:"\f220"}.bi-camera2::before{content:"\f221"}.bi-capslock-fill::before{content:"\f222"}.bi-capslock::before{content:"\f223"}.bi-card-checklist::before{content:"\f224"}.bi-card-heading::before{content:"\f225"}.bi-card-image::before{content:"\f226"}.bi-card-list::before{content:"\f227"}.bi-card-text::before{content:"\f228"}.bi-caret-down-fill::before{content:"\f229"}.bi-caret-down-square-fill::before{content:"\f22a"}.bi-caret-down-square::before{content:"\f22b"}.bi-caret-down::before{content:"\f22c"}.bi-caret-left-fill::before{content:"\f22d"}.bi-caret-left-square-fill::before{content:"\f22e"}.bi-caret-left-square::before{content:"\f22f"}.bi-caret-left::before{content:"\f230"}.bi-caret-right-fill::before{content:"\f231"}.bi-caret-right-square-fill::before{content:"\f232"}.bi-caret-right-square::before{content:"\f233"}.bi-caret-right::before{content:"\f234"}.bi-caret-up-fill::before{content:"\f235"}.bi-caret-up-square-fill::before{content:"\f236"}.bi-caret-up-square::before{content:"\f237"}.bi-caret-up::before{content:"\f238"}.bi-cart-check-fill::before{content:"\f239"}.bi-cart-check::before{content:"\f23a"}.bi-cart-dash-fill::before{content:"\f23b"}.bi-cart-dash::before{content:"\f23c"}.bi-cart-fill::before{content:"\f23d"}.bi-cart-plus-fill::before{content:"\f23e"}.bi-cart-plus::before{content:"\f23f"}.bi-cart-x-fill::before{content:"\f240"}.bi-cart-x::before{content:"\f241"}.bi-cart::before{content:"\f242"}.bi-cart2::before{content:"\f243"}.bi-cart3::before{content:"\f244"}.bi-cart4::before{content:"\f245"}.bi-cash-stack::before{content:"\f246"}.bi-cash::before{content:"\f247"}.bi-cast::before{content:"\f248"}.bi-chat-dots-fill::before{content:"\f249"}.bi-chat-dots::before{content:"\f24a"}.bi-chat-fill::before{content:"\f24b"}.bi-chat-left-dots-fill::before{content:"\f24c"}.bi-chat-left-dots::before{content:"\f24d"}.bi-chat-left-fill::before{content:"\f24e"}.bi-chat-left-quote-fill::before{content:"\f24f"}.bi-chat-left-quote::before{content:"\f250"}.bi-chat-left-text-fill::before{content:"\f251"}.bi-chat-left-text::before{content:"\f252"}.bi-chat-left::before{content:"\f253"}.bi-chat-quote-fill::before{content:"\f254"}.bi-chat-quote::before{content:"\f255"}.bi-chat-right-dots-fill::before{content:"\f256"}.bi-chat-right-dots::before{content:"\f257"}.bi-chat-right-fill::before{content:"\f258"}.bi-chat-right-quote-fill::before{content:"\f259"}.bi-chat-right-quote::before{content:"\f25a"}.bi-chat-right-text-fill::before{content:"\f25b"}.bi-chat-right-text::before{content:"\f25c"}.bi-chat-right::before{content:"\f25d"}.bi-chat-square-dots-fill::before{content:"\f25e"}.bi-chat-square-dots::before{content:"\f25f"}.bi-chat-square-fill::before{content:"\f260"}.bi-chat-square-quote-fill::before{content:"\f261"}.bi-chat-square-quote::before{content:"\f262"}.bi-chat-square-text-fill::before{content:"\f263"}.bi-chat-square-text::before{content:"\f264"}.bi-chat-square::before{content:"\f265"}.bi-chat-text-fill::before{content:"\f266"}.bi-chat-text::before{content:"\f267"}.bi-chat::before{content:"\f268"}.bi-check-all::before{content:"\f269"}.bi-check-circle-fill::before{content:"\f26a"}.bi-check-circle::before{content:"\f26b"}.bi-check-square-fill::before{content:"\f26c"}.bi-check-square::before{content:"\f26d"}.bi-check::before{content:"\f26e"}.bi-check2-all::before{content:"\f26f"}.bi-check2-circle::before{content:"\f270"}.bi-check2-square::before{content:"\f271"}.bi-check2::before{content:"\f272"}.bi-chevron-bar-contract::before{content:"\f273"}.bi-chevron-bar-down::before{content:"\f274"}.bi-chevron-bar-expand::before{content:"\f275"}.bi-chevron-bar-left::before{content:"\f276"}.bi-chevron-bar-right::before{content:"\f277"}.bi-chevron-bar-up::before{content:"\f278"}.bi-chevron-compact-down::before{content:"\f279"}.bi-chevron-compact-left::before{content:"\f27a"}.bi-chevron-compact-right::before{content:"\f27b"}.bi-chevron-compact-up::before{content:"\f27c"}.bi-chevron-contract::before{content:"\f27d"}.bi-chevron-double-down::before{content:"\f27e"}.bi-chevron-double-left::before{content:"\f27f"}.bi-chevron-double-right::before{content:"\f280"}.bi-chevron-double-up::before{content:"\f281"}.bi-chevron-down::before{content:"\f282"}.bi-chevron-expand::before{content:"\f283"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-chevron-up::before{content:"\f286"}.bi-circle-fill::before{content:"\f287"}.bi-circle-half::before{content:"\f288"}.bi-circle-square::before{content:"\f289"}.bi-circle::before{content:"\f28a"}.bi-clipboard-check::before{content:"\f28b"}.bi-clipboard-data::before{content:"\f28c"}.bi-clipboard-minus::before{content:"\f28d"}.bi-clipboard-plus::before{content:"\f28e"}.bi-clipboard-x::before{content:"\f28f"}.bi-clipboard::before{content:"\f290"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-cloud-arrow-down-fill::before{content:"\f294"}.bi-cloud-arrow-down::before{content:"\f295"}.bi-cloud-arrow-up-fill::before{content:"\f296"}.bi-cloud-arrow-up::before{content:"\f297"}.bi-cloud-check-fill::before{content:"\f298"}.bi-cloud-check::before{content:"\f299"}.bi-cloud-download-fill::before{content:"\f29a"}.bi-cloud-download::before{content:"\f29b"}.bi-cloud-drizzle-fill::before{content:"\f29c"}.bi-cloud-drizzle::before{content:"\f29d"}.bi-cloud-fill::before{content:"\f29e"}.bi-cloud-fog-fill::before{content:"\f29f"}.bi-cloud-fog::before{content:"\f2a0"}.bi-cloud-fog2-fill::before{content:"\f2a1"}.bi-cloud-fog2::before{content:"\f2a2"}.bi-cloud-hail-fill::before{content:"\f2a3"}.bi-cloud-hail::before{content:"\f2a4"}.bi-cloud-haze-fill::before{content:"\f2a6"}.bi-cloud-haze::before{content:"\f2a7"}.bi-cloud-haze2-fill::before{content:"\f2a8"}.bi-cloud-lightning-fill::before{content:"\f2a9"}.bi-cloud-lightning-rain-fill::before{content:"\f2aa"}.bi-cloud-lightning-rain::before{content:"\f2ab"}.bi-cloud-lightning::before{content:"\f2ac"}.bi-cloud-minus-fill::before{content:"\f2ad"}.bi-cloud-minus::before{content:"\f2ae"}.bi-cloud-moon-fill::before{content:"\f2af"}.bi-cloud-moon::before{content:"\f2b0"}.bi-cloud-plus-fill::before{content:"\f2b1"}.bi-cloud-plus::before{content:"\f2b2"}.bi-cloud-rain-fill::before{content:"\f2b3"}.bi-cloud-rain-heavy-fill::before{content:"\f2b4"}.bi-cloud-rain-heavy::before{content:"\f2b5"}.bi-cloud-rain::before{content:"\f2b6"}.bi-cloud-slash-fill::before{content:"\f2b7"}.bi-cloud-slash::before{content:"\f2b8"}.bi-cloud-sleet-fill::before{content:"\f2b9"}.bi-cloud-sleet::before{content:"\f2ba"}.bi-cloud-snow-fill::before{content:"\f2bb"}.bi-cloud-snow::before{content:"\f2bc"}.bi-cloud-sun-fill::before{content:"\f2bd"}.bi-cloud-sun::before{content:"\f2be"}.bi-cloud-upload-fill::before{content:"\f2bf"}.bi-cloud-upload::before{content:"\f2c0"}.bi-cloud::before{content:"\f2c1"}.bi-clouds-fill::before{content:"\f2c2"}.bi-clouds::before{content:"\f2c3"}.bi-cloudy-fill::before{content:"\f2c4"}.bi-cloudy::before{content:"\f2c5"}.bi-code-slash::before{content:"\f2c6"}.bi-code-square::before{content:"\f2c7"}.bi-code::before{content:"\f2c8"}.bi-collection-fill::before{content:"\f2c9"}.bi-collection-play-fill::before{content:"\f2ca"}.bi-collection-play::before{content:"\f2cb"}.bi-collection::before{content:"\f2cc"}.bi-columns-gap::before{content:"\f2cd"}.bi-columns::before{content:"\f2ce"}.bi-command::before{content:"\f2cf"}.bi-compass-fill::before{content:"\f2d0"}.bi-compass::before{content:"\f2d1"}.bi-cone-striped::before{content:"\f2d2"}.bi-cone::before{content:"\f2d3"}.bi-controller::before{content:"\f2d4"}.bi-cpu-fill::before{content:"\f2d5"}.bi-cpu::before{content:"\f2d6"}.bi-credit-card-2-back-fill::before{content:"\f2d7"}.bi-credit-card-2-back::before{content:"\f2d8"}.bi-credit-card-2-front-fill::before{content:"\f2d9"}.bi-credit-card-2-front::before{content:"\f2da"}.bi-credit-card-fill::before{content:"\f2db"}.bi-credit-card::before{content:"\f2dc"}.bi-crop::before{content:"\f2dd"}.bi-cup-fill::before{content:"\f2de"}.bi-cup-straw::before{content:"\f2df"}.bi-cup::before{content:"\f2e0"}.bi-cursor-fill::before{content:"\f2e1"}.bi-cursor-text::before{content:"\f2e2"}.bi-cursor::before{content:"\f2e3"}.bi-dash-circle-dotted::before{content:"\f2e4"}.bi-dash-circle-fill::before{content:"\f2e5"}.bi-dash-circle::before{content:"\f2e6"}.bi-dash-square-dotted::before{content:"\f2e7"}.bi-dash-square-fill::before{content:"\f2e8"}.bi-dash-square::before{content:"\f2e9"}.bi-dash::before{content:"\f2ea"}.bi-diagram-2-fill::before{content:"\f2eb"}.bi-diagram-2::before{content:"\f2ec"}.bi-diagram-3-fill::before{content:"\f2ed"}.bi-diagram-3::before{content:"\f2ee"}.bi-diamond-fill::before{content:"\f2ef"}.bi-diamond-half::before{content:"\f2f0"}.bi-diamond::before{content:"\f2f1"}.bi-dice-1-fill::before{content:"\f2f2"}.bi-dice-1::before{content:"\f2f3"}.bi-dice-2-fill::before{content:"\f2f4"}.bi-dice-2::before{content:"\f2f5"}.bi-dice-3-fill::before{content:"\f2f6"}.bi-dice-3::before{content:"\f2f7"}.bi-dice-4-fill::before{content:"\f2f8"}.bi-dice-4::before{content:"\f2f9"}.bi-dice-5-fill::before{content:"\f2fa"}.bi-dice-5::before{content:"\f2fb"}.bi-dice-6-fill::before{content:"\f2fc"}.bi-dice-6::before{content:"\f2fd"}.bi-disc-fill::before{content:"\f2fe"}.bi-disc::before{content:"\f2ff"}.bi-discord::before{content:"\f300"}.bi-display-fill::before{content:"\f301"}.bi-display::before{content:"\f302"}.bi-distribute-horizontal::before{content:"\f303"}.bi-distribute-vertical::before{content:"\f304"}.bi-door-closed-fill::before{content:"\f305"}.bi-door-closed::before{content:"\f306"}.bi-door-open-fill::before{content:"\f307"}.bi-door-open::before{content:"\f308"}.bi-dot::before{content:"\f309"}.bi-download::before{content:"\f30a"}.bi-droplet-fill::before{content:"\f30b"}.bi-droplet-half::before{content:"\f30c"}.bi-droplet::before{content:"\f30d"}.bi-earbuds::before{content:"\f30e"}.bi-easel-fill::before{content:"\f30f"}.bi-easel::before{content:"\f310"}.bi-egg-fill::before{content:"\f311"}.bi-egg-fried::before{content:"\f312"}.bi-egg::before{content:"\f313"}.bi-eject-fill::before{content:"\f314"}.bi-eject::before{content:"\f315"}.bi-emoji-angry-fill::before{content:"\f316"}.bi-emoji-angry::before{content:"\f317"}.bi-emoji-dizzy-fill::before{content:"\f318"}.bi-emoji-dizzy::before{content:"\f319"}.bi-emoji-expressionless-fill::before{content:"\f31a"}.bi-emoji-expressionless::before{content:"\f31b"}.bi-emoji-frown-fill::before{content:"\f31c"}.bi-emoji-frown::before{content:"\f31d"}.bi-emoji-heart-eyes-fill::before{content:"\f31e"}.bi-emoji-heart-eyes::before{content:"\f31f"}.bi-emoji-laughing-fill::before{content:"\f320"}.bi-emoji-laughing::before{content:"\f321"}.bi-emoji-neutral-fill::before{content:"\f322"}.bi-emoji-neutral::before{content:"\f323"}.bi-emoji-smile-fill::before{content:"\f324"}.bi-emoji-smile-upside-down-fill::before{content:"\f325"}.bi-emoji-smile-upside-down::before{content:"\f326"}.bi-emoji-smile::before{content:"\f327"}.bi-emoji-sunglasses-fill::before{content:"\f328"}.bi-emoji-sunglasses::before{content:"\f329"}.bi-emoji-wink-fill::before{content:"\f32a"}.bi-emoji-wink::before{content:"\f32b"}.bi-envelope-fill::before{content:"\f32c"}.bi-envelope-open-fill::before{content:"\f32d"}.bi-envelope-open::before{content:"\f32e"}.bi-envelope::before{content:"\f32f"}.bi-eraser-fill::before{content:"\f330"}.bi-eraser::before{content:"\f331"}.bi-exclamation-circle-fill::before{content:"\f332"}.bi-exclamation-circle::before{content:"\f333"}.bi-exclamation-diamond-fill::before{content:"\f334"}.bi-exclamation-diamond::before{content:"\f335"}.bi-exclamation-octagon-fill::before{content:"\f336"}.bi-exclamation-octagon::before{content:"\f337"}.bi-exclamation-square-fill::before{content:"\f338"}.bi-exclamation-square::before{content:"\f339"}.bi-exclamation-triangle-fill::before{content:"\f33a"}.bi-exclamation-triangle::before{content:"\f33b"}.bi-exclamation::before{content:"\f33c"}.bi-exclude::before{content:"\f33d"}.bi-eye-fill::before{content:"\f33e"}.bi-eye-slash-fill::before{content:"\f33f"}.bi-eye-slash::before{content:"\f340"}.bi-eye::before{content:"\f341"}.bi-eyedropper::before{content:"\f342"}.bi-eyeglasses::before{content:"\f343"}.bi-facebook::before{content:"\f344"}.bi-file-arrow-down-fill::before{content:"\f345"}.bi-file-arrow-down::before{content:"\f346"}.bi-file-arrow-up-fill::before{content:"\f347"}.bi-file-arrow-up::before{content:"\f348"}.bi-file-bar-graph-fill::before{content:"\f349"}.bi-file-bar-graph::before{content:"\f34a"}.bi-file-binary-fill::before{content:"\f34b"}.bi-file-binary::before{content:"\f34c"}.bi-file-break-fill::before{content:"\f34d"}.bi-file-break::before{content:"\f34e"}.bi-file-check-fill::before{content:"\f34f"}.bi-file-check::before{content:"\f350"}.bi-file-code-fill::before{content:"\f351"}.bi-file-code::before{content:"\f352"}.bi-file-diff-fill::before{content:"\f353"}.bi-file-diff::before{content:"\f354"}.bi-file-earmark-arrow-down-fill::before{content:"\f355"}.bi-file-earmark-arrow-down::before{content:"\f356"}.bi-file-earmark-arrow-up-fill::before{content:"\f357"}.bi-file-earmark-arrow-up::before{content:"\f358"}.bi-file-earmark-bar-graph-fill::before{content:"\f359"}.bi-file-earmark-bar-graph::before{content:"\f35a"}.bi-file-earmark-binary-fill::before{content:"\f35b"}.bi-file-earmark-binary::before{content:"\f35c"}.bi-file-earmark-break-fill::before{content:"\f35d"}.bi-file-earmark-break::before{content:"\f35e"}.bi-file-earmark-check-fill::before{content:"\f35f"}.bi-file-earmark-check::before{content:"\f360"}.bi-file-earmark-code-fill::before{content:"\f361"}.bi-file-earmark-code::before{content:"\f362"}.bi-file-earmark-diff-fill::before{content:"\f363"}.bi-file-earmark-diff::before{content:"\f364"}.bi-file-earmark-easel-fill::before{content:"\f365"}.bi-file-earmark-easel::before{content:"\f366"}.bi-file-earmark-excel-fill::before{content:"\f367"}.bi-file-earmark-excel::before{content:"\f368"}.bi-file-earmark-fill::before{content:"\f369"}.bi-file-earmark-font-fill::before{content:"\f36a"}.bi-file-earmark-font::before{content:"\f36b"}.bi-file-earmark-image-fill::before{content:"\f36c"}.bi-file-earmark-image::before{content:"\f36d"}.bi-file-earmark-lock-fill::before{content:"\f36e"}.bi-file-earmark-lock::before{content:"\f36f"}.bi-file-earmark-lock2-fill::before{content:"\f370"}.bi-file-earmark-lock2::before{content:"\f371"}.bi-file-earmark-medical-fill::before{content:"\f372"}.bi-file-earmark-medical::before{content:"\f373"}.bi-file-earmark-minus-fill::before{content:"\f374"}.bi-file-earmark-minus::before{content:"\f375"}.bi-file-earmark-music-fill::before{content:"\f376"}.bi-file-earmark-music::before{content:"\f377"}.bi-file-earmark-person-fill::before{content:"\f378"}.bi-file-earmark-person::before{content:"\f379"}.bi-file-earmark-play-fill::before{content:"\f37a"}.bi-file-earmark-play::before{content:"\f37b"}.bi-file-earmark-plus-fill::before{content:"\f37c"}.bi-file-earmark-plus::before{content:"\f37d"}.bi-file-earmark-post-fill::before{content:"\f37e"}.bi-file-earmark-post::before{content:"\f37f"}.bi-file-earmark-ppt-fill::before{content:"\f380"}.bi-file-earmark-ppt::before{content:"\f381"}.bi-file-earmark-richtext-fill::before{content:"\f382"}.bi-file-earmark-richtext::before{content:"\f383"}.bi-file-earmark-ruled-fill::before{content:"\f384"}.bi-file-earmark-ruled::before{content:"\f385"}.bi-file-earmark-slides-fill::before{content:"\f386"}.bi-file-earmark-slides::before{content:"\f387"}.bi-file-earmark-spreadsheet-fill::before{content:"\f388"}.bi-file-earmark-spreadsheet::before{content:"\f389"}.bi-file-earmark-text-fill::before{content:"\f38a"}.bi-file-earmark-text::before{content:"\f38b"}.bi-file-earmark-word-fill::before{content:"\f38c"}.bi-file-earmark-word::before{content:"\f38d"}.bi-file-earmark-x-fill::before{content:"\f38e"}.bi-file-earmark-x::before{content:"\f38f"}.bi-file-earmark-zip-fill::before{content:"\f390"}.bi-file-earmark-zip::before{content:"\f391"}.bi-file-earmark::before{content:"\f392"}.bi-file-easel-fill::before{content:"\f393"}.bi-file-easel::before{content:"\f394"}.bi-file-excel-fill::before{content:"\f395"}.bi-file-excel::before{content:"\f396"}.bi-file-fill::before{content:"\f397"}.bi-file-font-fill::before{content:"\f398"}.bi-file-font::before{content:"\f399"}.bi-file-image-fill::before{content:"\f39a"}.bi-file-image::before{content:"\f39b"}.bi-file-lock-fill::before{content:"\f39c"}.bi-file-lock::before{content:"\f39d"}.bi-file-lock2-fill::before{content:"\f39e"}.bi-file-lock2::before{content:"\f39f"}.bi-file-medical-fill::before{content:"\f3a0"}.bi-file-medical::before{content:"\f3a1"}.bi-file-minus-fill::before{content:"\f3a2"}.bi-file-minus::before{content:"\f3a3"}.bi-file-music-fill::before{content:"\f3a4"}.bi-file-music::before{content:"\f3a5"}.bi-file-person-fill::before{content:"\f3a6"}.bi-file-person::before{content:"\f3a7"}.bi-file-play-fill::before{content:"\f3a8"}.bi-file-play::before{content:"\f3a9"}.bi-file-plus-fill::before{content:"\f3aa"}.bi-file-plus::before{content:"\f3ab"}.bi-file-post-fill::before{content:"\f3ac"}.bi-file-post::before{content:"\f3ad"}.bi-file-ppt-fill::before{content:"\f3ae"}.bi-file-ppt::before{content:"\f3af"}.bi-file-richtext-fill::before{content:"\f3b0"}.bi-file-richtext::before{content:"\f3b1"}.bi-file-ruled-fill::before{content:"\f3b2"}.bi-file-ruled::before{content:"\f3b3"}.bi-file-slides-fill::before{content:"\f3b4"}.bi-file-slides::before{content:"\f3b5"}.bi-file-spreadsheet-fill::before{content:"\f3b6"}.bi-file-spreadsheet::before{content:"\f3b7"}.bi-file-text-fill::before{content:"\f3b8"}.bi-file-text::before{content:"\f3b9"}.bi-file-word-fill::before{content:"\f3ba"}.bi-file-word::before{content:"\f3bb"}.bi-file-x-fill::before{content:"\f3bc"}.bi-file-x::before{content:"\f3bd"}.bi-file-zip-fill::before{content:"\f3be"}.bi-file-zip::before{content:"\f3bf"}.bi-file::before{content:"\f3c0"}.bi-files-alt::before{content:"\f3c1"}.bi-files::before{content:"\f3c2"}.bi-film::before{content:"\f3c3"}.bi-filter-circle-fill::before{content:"\f3c4"}.bi-filter-circle::before{content:"\f3c5"}.bi-filter-left::before{content:"\f3c6"}.bi-filter-right::before{content:"\f3c7"}.bi-filter-square-fill::before{content:"\f3c8"}.bi-filter-square::before{content:"\f3c9"}.bi-filter::before{content:"\f3ca"}.bi-flag-fill::before{content:"\f3cb"}.bi-flag::before{content:"\f3cc"}.bi-flower1::before{content:"\f3cd"}.bi-flower2::before{content:"\f3ce"}.bi-flower3::before{content:"\f3cf"}.bi-folder-check::before{content:"\f3d0"}.bi-folder-fill::before{content:"\f3d1"}.bi-folder-minus::before{content:"\f3d2"}.bi-folder-plus::before{content:"\f3d3"}.bi-folder-symlink-fill::before{content:"\f3d4"}.bi-folder-symlink::before{content:"\f3d5"}.bi-folder-x::before{content:"\f3d6"}.bi-folder::before{content:"\f3d7"}.bi-folder2-open::before{content:"\f3d8"}.bi-folder2::before{content:"\f3d9"}.bi-fonts::before{content:"\f3da"}.bi-forward-fill::before{content:"\f3db"}.bi-forward::before{content:"\f3dc"}.bi-front::before{content:"\f3dd"}.bi-fullscreen-exit::before{content:"\f3de"}.bi-fullscreen::before{content:"\f3df"}.bi-funnel-fill::before{content:"\f3e0"}.bi-funnel::before{content:"\f3e1"}.bi-gear-fill::before{content:"\f3e2"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-gear-wide::before{content:"\f3e4"}.bi-gear::before{content:"\f3e5"}.bi-gem::before{content:"\f3e6"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-geo-fill::before{content:"\f3e9"}.bi-geo::before{content:"\f3ea"}.bi-gift-fill::before{content:"\f3eb"}.bi-gift::before{content:"\f3ec"}.bi-github::before{content:"\f3ed"}.bi-globe::before{content:"\f3ee"}.bi-globe2::before{content:"\f3ef"}.bi-google::before{content:"\f3f0"}.bi-graph-down::before{content:"\f3f1"}.bi-graph-up::before{content:"\f3f2"}.bi-grid-1x2-fill::before{content:"\f3f3"}.bi-grid-1x2::before{content:"\f3f4"}.bi-grid-3x2-gap-fill::before{content:"\f3f5"}.bi-grid-3x2-gap::before{content:"\f3f6"}.bi-grid-3x2::before{content:"\f3f7"}.bi-grid-3x3-gap-fill::before{content:"\f3f8"}.bi-grid-3x3-gap::before{content:"\f3f9"}.bi-grid-3x3::before{content:"\f3fa"}.bi-grid-fill::before{content:"\f3fb"}.bi-grid::before{content:"\f3fc"}.bi-grip-horizontal::before{content:"\f3fd"}.bi-grip-vertical::before{content:"\f3fe"}.bi-hammer::before{content:"\f3ff"}.bi-hand-index-fill::before{content:"\f400"}.bi-hand-index-thumb-fill::before{content:"\f401"}.bi-hand-index-thumb::before{content:"\f402"}.bi-hand-index::before{content:"\f403"}.bi-hand-thumbs-down-fill::before{content:"\f404"}.bi-hand-thumbs-down::before{content:"\f405"}.bi-hand-thumbs-up-fill::before{content:"\f406"}.bi-hand-thumbs-up::before{content:"\f407"}.bi-handbag-fill::before{content:"\f408"}.bi-handbag::before{content:"\f409"}.bi-hash::before{content:"\f40a"}.bi-hdd-fill::before{content:"\f40b"}.bi-hdd-network-fill::before{content:"\f40c"}.bi-hdd-network::before{content:"\f40d"}.bi-hdd-rack-fill::before{content:"\f40e"}.bi-hdd-rack::before{content:"\f40f"}.bi-hdd-stack-fill::before{content:"\f410"}.bi-hdd-stack::before{content:"\f411"}.bi-hdd::before{content:"\f412"}.bi-headphones::before{content:"\f413"}.bi-headset::before{content:"\f414"}.bi-heart-fill::before{content:"\f415"}.bi-heart-half::before{content:"\f416"}.bi-heart::before{content:"\f417"}.bi-heptagon-fill::before{content:"\f418"}.bi-heptagon-half::before{content:"\f419"}.bi-heptagon::before{content:"\f41a"}.bi-hexagon-fill::before{content:"\f41b"}.bi-hexagon-half::before{content:"\f41c"}.bi-hexagon::before{content:"\f41d"}.bi-hourglass-bottom::before{content:"\f41e"}.bi-hourglass-split::before{content:"\f41f"}.bi-hourglass-top::before{content:"\f420"}.bi-hourglass::before{content:"\f421"}.bi-house-door-fill::before{content:"\f422"}.bi-house-door::before{content:"\f423"}.bi-house-fill::before{content:"\f424"}.bi-house::before{content:"\f425"}.bi-hr::before{content:"\f426"}.bi-hurricane::before{content:"\f427"}.bi-image-alt::before{content:"\f428"}.bi-image-fill::before{content:"\f429"}.bi-image::before{content:"\f42a"}.bi-images::before{content:"\f42b"}.bi-inbox-fill::before{content:"\f42c"}.bi-inbox::before{content:"\f42d"}.bi-inboxes-fill::before{content:"\f42e"}.bi-inboxes::before{content:"\f42f"}.bi-info-circle-fill::before{content:"\f430"}.bi-info-circle::before{content:"\f431"}.bi-info-square-fill::before{content:"\f432"}.bi-info-square::before{content:"\f433"}.bi-info::before{content:"\f434"}.bi-input-cursor-text::before{content:"\f435"}.bi-input-cursor::before{content:"\f436"}.bi-instagram::before{content:"\f437"}.bi-intersect::before{content:"\f438"}.bi-journal-album::before{content:"\f439"}.bi-journal-arrow-down::before{content:"\f43a"}.bi-journal-arrow-up::before{content:"\f43b"}.bi-journal-bookmark-fill::before{content:"\f43c"}.bi-journal-bookmark::before{content:"\f43d"}.bi-journal-check::before{content:"\f43e"}.bi-journal-code::before{content:"\f43f"}.bi-journal-medical::before{content:"\f440"}.bi-journal-minus::before{content:"\f441"}.bi-journal-plus::before{content:"\f442"}.bi-journal-richtext::before{content:"\f443"}.bi-journal-text::before{content:"\f444"}.bi-journal-x::before{content:"\f445"}.bi-journal::before{content:"\f446"}.bi-journals::before{content:"\f447"}.bi-joystick::before{content:"\f448"}.bi-justify-left::before{content:"\f449"}.bi-justify-right::before{content:"\f44a"}.bi-justify::before{content:"\f44b"}.bi-kanban-fill::before{content:"\f44c"}.bi-kanban::before{content:"\f44d"}.bi-key-fill::before{content:"\f44e"}.bi-key::before{content:"\f44f"}.bi-keyboard-fill::before{content:"\f450"}.bi-keyboard::before{content:"\f451"}.bi-ladder::before{content:"\f452"}.bi-lamp-fill::before{content:"\f453"}.bi-lamp::before{content:"\f454"}.bi-laptop-fill::before{content:"\f455"}.bi-laptop::before{content:"\f456"}.bi-layer-backward::before{content:"\f457"}.bi-layer-forward::before{content:"\f458"}.bi-layers-fill::before{content:"\f459"}.bi-layers-half::before{content:"\f45a"}.bi-layers::before{content:"\f45b"}.bi-layout-sidebar-inset-reverse::before{content:"\f45c"}.bi-layout-sidebar-inset::before{content:"\f45d"}.bi-layout-sidebar-reverse::before{content:"\f45e"}.bi-layout-sidebar::before{content:"\f45f"}.bi-layout-split::before{content:"\f460"}.bi-layout-text-sidebar-reverse::before{content:"\f461"}.bi-layout-text-sidebar::before{content:"\f462"}.bi-layout-text-window-reverse::before{content:"\f463"}.bi-layout-text-window::before{content:"\f464"}.bi-layout-three-columns::before{content:"\f465"}.bi-layout-wtf::before{content:"\f466"}.bi-life-preserver::before{content:"\f467"}.bi-lightbulb-fill::before{content:"\f468"}.bi-lightbulb-off-fill::before{content:"\f469"}.bi-lightbulb-off::before{content:"\f46a"}.bi-lightbulb::before{content:"\f46b"}.bi-lightning-charge-fill::before{content:"\f46c"}.bi-lightning-charge::before{content:"\f46d"}.bi-lightning-fill::before{content:"\f46e"}.bi-lightning::before{content:"\f46f"}.bi-link-45deg::before{content:"\f470"}.bi-link::before{content:"\f471"}.bi-linkedin::before{content:"\f472"}.bi-list-check::before{content:"\f473"}.bi-list-nested::before{content:"\f474"}.bi-list-ol::before{content:"\f475"}.bi-list-stars::before{content:"\f476"}.bi-list-task::before{content:"\f477"}.bi-list-ul::before{content:"\f478"}.bi-list::before{content:"\f479"}.bi-lock-fill::before{content:"\f47a"}.bi-lock::before{content:"\f47b"}.bi-mailbox::before{content:"\f47c"}.bi-mailbox2::before{content:"\f47d"}.bi-map-fill::before{content:"\f47e"}.bi-map::before{content:"\f47f"}.bi-markdown-fill::before{content:"\f480"}.bi-markdown::before{content:"\f481"}.bi-mask::before{content:"\f482"}.bi-megaphone-fill::before{content:"\f483"}.bi-megaphone::before{content:"\f484"}.bi-menu-app-fill::before{content:"\f485"}.bi-menu-app::before{content:"\f486"}.bi-menu-button-fill::before{content:"\f487"}.bi-menu-button-wide-fill::before{content:"\f488"}.bi-menu-button-wide::before{content:"\f489"}.bi-menu-button::before{content:"\f48a"}.bi-menu-down::before{content:"\f48b"}.bi-menu-up::before{content:"\f48c"}.bi-mic-fill::before{content:"\f48d"}.bi-mic-mute-fill::before{content:"\f48e"}.bi-mic-mute::before{content:"\f48f"}.bi-mic::before{content:"\f490"}.bi-minecart-loaded::before{content:"\f491"}.bi-minecart::before{content:"\f492"}.bi-moisture::before{content:"\f493"}.bi-moon-fill::before{content:"\f494"}.bi-moon-stars-fill::before{content:"\f495"}.bi-moon-stars::before{content:"\f496"}.bi-moon::before{content:"\f497"}.bi-mouse-fill::before{content:"\f498"}.bi-mouse::before{content:"\f499"}.bi-mouse2-fill::before{content:"\f49a"}.bi-mouse2::before{content:"\f49b"}.bi-mouse3-fill::before{content:"\f49c"}.bi-mouse3::before{content:"\f49d"}.bi-music-note-beamed::before{content:"\f49e"}.bi-music-note-list::before{content:"\f49f"}.bi-music-note::before{content:"\f4a0"}.bi-music-player-fill::before{content:"\f4a1"}.bi-music-player::before{content:"\f4a2"}.bi-newspaper::before{content:"\f4a3"}.bi-node-minus-fill::before{content:"\f4a4"}.bi-node-minus::before{content:"\f4a5"}.bi-node-plus-fill::before{content:"\f4a6"}.bi-node-plus::before{content:"\f4a7"}.bi-nut-fill::before{content:"\f4a8"}.bi-nut::before{content:"\f4a9"}.bi-octagon-fill::before{content:"\f4aa"}.bi-octagon-half::before{content:"\f4ab"}.bi-octagon::before{content:"\f4ac"}.bi-option::before{content:"\f4ad"}.bi-outlet::before{content:"\f4ae"}.bi-paint-bucket::before{content:"\f4af"}.bi-palette-fill::before{content:"\f4b0"}.bi-palette::before{content:"\f4b1"}.bi-palette2::before{content:"\f4b2"}.bi-paperclip::before{content:"\f4b3"}.bi-paragraph::before{content:"\f4b4"}.bi-patch-check-fill::before{content:"\f4b5"}.bi-patch-check::before{content:"\f4b6"}.bi-patch-exclamation-fill::before{content:"\f4b7"}.bi-patch-exclamation::before{content:"\f4b8"}.bi-patch-minus-fill::before{content:"\f4b9"}.bi-patch-minus::before{content:"\f4ba"}.bi-patch-plus-fill::before{content:"\f4bb"}.bi-patch-plus::before{content:"\f4bc"}.bi-patch-question-fill::before{content:"\f4bd"}.bi-patch-question::before{content:"\f4be"}.bi-pause-btn-fill::before{content:"\f4bf"}.bi-pause-btn::before{content:"\f4c0"}.bi-pause-circle-fill::before{content:"\f4c1"}.bi-pause-circle::before{content:"\f4c2"}.bi-pause-fill::before{content:"\f4c3"}.bi-pause::before{content:"\f4c4"}.bi-peace-fill::before{content:"\f4c5"}.bi-peace::before{content:"\f4c6"}.bi-pen-fill::before{content:"\f4c7"}.bi-pen::before{content:"\f4c8"}.bi-pencil-fill::before{content:"\f4c9"}.bi-pencil-square::before{content:"\f4ca"}.bi-pencil::before{content:"\f4cb"}.bi-pentagon-fill::before{content:"\f4cc"}.bi-pentagon-half::before{content:"\f4cd"}.bi-pentagon::before{content:"\f4ce"}.bi-people-fill::before{content:"\f4cf"}.bi-people::before{content:"\f4d0"}.bi-percent::before{content:"\f4d1"}.bi-person-badge-fill::before{content:"\f4d2"}.bi-person-badge::before{content:"\f4d3"}.bi-person-bounding-box::before{content:"\f4d4"}.bi-person-check-fill::before{content:"\f4d5"}.bi-person-check::before{content:"\f4d6"}.bi-person-circle::before{content:"\f4d7"}.bi-person-dash-fill::before{content:"\f4d8"}.bi-person-dash::before{content:"\f4d9"}.bi-person-fill::before{content:"\f4da"}.bi-person-lines-fill::before{content:"\f4db"}.bi-person-plus-fill::before{content:"\f4dc"}.bi-person-plus::before{content:"\f4dd"}.bi-person-square::before{content:"\f4de"}.bi-person-x-fill::before{content:"\f4df"}.bi-person-x::before{content:"\f4e0"}.bi-person::before{content:"\f4e1"}.bi-phone-fill::before{content:"\f4e2"}.bi-phone-landscape-fill::before{content:"\f4e3"}.bi-phone-landscape::before{content:"\f4e4"}.bi-phone-vibrate-fill::before{content:"\f4e5"}.bi-phone-vibrate::before{content:"\f4e6"}.bi-phone::before{content:"\f4e7"}.bi-pie-chart-fill::before{content:"\f4e8"}.bi-pie-chart::before{content:"\f4e9"}.bi-pin-angle-fill::before{content:"\f4ea"}.bi-pin-angle::before{content:"\f4eb"}.bi-pin-fill::before{content:"\f4ec"}.bi-pin::before{content:"\f4ed"}.bi-pip-fill::before{content:"\f4ee"}.bi-pip::before{content:"\f4ef"}.bi-play-btn-fill::before{content:"\f4f0"}.bi-play-btn::before{content:"\f4f1"}.bi-play-circle-fill::before{content:"\f4f2"}.bi-play-circle::before{content:"\f4f3"}.bi-play-fill::before{content:"\f4f4"}.bi-play::before{content:"\f4f5"}.bi-plug-fill::before{content:"\f4f6"}.bi-plug::before{content:"\f4f7"}.bi-plus-circle-dotted::before{content:"\f4f8"}.bi-plus-circle-fill::before{content:"\f4f9"}.bi-plus-circle::before{content:"\f4fa"}.bi-plus-square-dotted::before{content:"\f4fb"}.bi-plus-square-fill::before{content:"\f4fc"}.bi-plus-square::before{content:"\f4fd"}.bi-plus::before{content:"\f4fe"}.bi-power::before{content:"\f4ff"}.bi-printer-fill::before{content:"\f500"}.bi-printer::before{content:"\f501"}.bi-puzzle-fill::before{content:"\f502"}.bi-puzzle::before{content:"\f503"}.bi-question-circle-fill::before{content:"\f504"}.bi-question-circle::before{content:"\f505"}.bi-question-diamond-fill::before{content:"\f506"}.bi-question-diamond::before{content:"\f507"}.bi-question-octagon-fill::before{content:"\f508"}.bi-question-octagon::before{content:"\f509"}.bi-question-square-fill::before{content:"\f50a"}.bi-question-square::before{content:"\f50b"}.bi-question::before{content:"\f50c"}.bi-rainbow::before{content:"\f50d"}.bi-receipt-cutoff::before{content:"\f50e"}.bi-receipt::before{content:"\f50f"}.bi-reception-0::before{content:"\f510"}.bi-reception-1::before{content:"\f511"}.bi-reception-2::before{content:"\f512"}.bi-reception-3::before{content:"\f513"}.bi-reception-4::before{content:"\f514"}.bi-record-btn-fill::before{content:"\f515"}.bi-record-btn::before{content:"\f516"}.bi-record-circle-fill::before{content:"\f517"}.bi-record-circle::before{content:"\f518"}.bi-record-fill::before{content:"\f519"}.bi-record::before{content:"\f51a"}.bi-record2-fill::before{content:"\f51b"}.bi-record2::before{content:"\f51c"}.bi-reply-all-fill::before{content:"\f51d"}.bi-reply-all::before{content:"\f51e"}.bi-reply-fill::before{content:"\f51f"}.bi-reply::before{content:"\f520"}.bi-rss-fill::before{content:"\f521"}.bi-rss::before{content:"\f522"}.bi-rulers::before{content:"\f523"}.bi-save-fill::before{content:"\f524"}.bi-save::before{content:"\f525"}.bi-save2-fill::before{content:"\f526"}.bi-save2::before{content:"\f527"}.bi-scissors::before{content:"\f528"}.bi-screwdriver::before{content:"\f529"}.bi-search::before{content:"\f52a"}.bi-segmented-nav::before{content:"\f52b"}.bi-server::before{content:"\f52c"}.bi-share-fill::before{content:"\f52d"}.bi-share::before{content:"\f52e"}.bi-shield-check::before{content:"\f52f"}.bi-shield-exclamation::before{content:"\f530"}.bi-shield-fill-check::before{content:"\f531"}.bi-shield-fill-exclamation::before{content:"\f532"}.bi-shield-fill-minus::before{content:"\f533"}.bi-shield-fill-plus::before{content:"\f534"}.bi-shield-fill-x::before{content:"\f535"}.bi-shield-fill::before{content:"\f536"}.bi-shield-lock-fill::before{content:"\f537"}.bi-shield-lock::before{content:"\f538"}.bi-shield-minus::before{content:"\f539"}.bi-shield-plus::before{content:"\f53a"}.bi-shield-shaded::before{content:"\f53b"}.bi-shield-slash-fill::before{content:"\f53c"}.bi-shield-slash::before{content:"\f53d"}.bi-shield-x::before{content:"\f53e"}.bi-shield::before{content:"\f53f"}.bi-shift-fill::before{content:"\f540"}.bi-shift::before{content:"\f541"}.bi-shop-window::before{content:"\f542"}.bi-shop::before{content:"\f543"}.bi-shuffle::before{content:"\f544"}.bi-signpost-2-fill::before{content:"\f545"}.bi-signpost-2::before{content:"\f546"}.bi-signpost-fill::before{content:"\f547"}.bi-signpost-split-fill::before{content:"\f548"}.bi-signpost-split::before{content:"\f549"}.bi-signpost::before{content:"\f54a"}.bi-sim-fill::before{content:"\f54b"}.bi-sim::before{content:"\f54c"}.bi-skip-backward-btn-fill::before{content:"\f54d"}.bi-skip-backward-btn::before{content:"\f54e"}.bi-skip-backward-circle-fill::before{content:"\f54f"}.bi-skip-backward-circle::before{content:"\f550"}.bi-skip-backward-fill::before{content:"\f551"}.bi-skip-backward::before{content:"\f552"}.bi-skip-end-btn-fill::before{content:"\f553"}.bi-skip-end-btn::before{content:"\f554"}.bi-skip-end-circle-fill::before{content:"\f555"}.bi-skip-end-circle::before{content:"\f556"}.bi-skip-end-fill::before{content:"\f557"}.bi-skip-end::before{content:"\f558"}.bi-skip-forward-btn-fill::before{content:"\f559"}.bi-skip-forward-btn::before{content:"\f55a"}.bi-skip-forward-circle-fill::before{content:"\f55b"}.bi-skip-forward-circle::before{content:"\f55c"}.bi-skip-forward-fill::before{content:"\f55d"}.bi-skip-forward::before{content:"\f55e"}.bi-skip-start-btn-fill::before{content:"\f55f"}.bi-skip-start-btn::before{content:"\f560"}.bi-skip-start-circle-fill::before{content:"\f561"}.bi-skip-start-circle::before{content:"\f562"}.bi-skip-start-fill::before{content:"\f563"}.bi-skip-start::before{content:"\f564"}.bi-slack::before{content:"\f565"}.bi-slash-circle-fill::before{content:"\f566"}.bi-slash-circle::before{content:"\f567"}.bi-slash-square-fill::before{content:"\f568"}.bi-slash-square::before{content:"\f569"}.bi-slash::before{content:"\f56a"}.bi-sliders::before{content:"\f56b"}.bi-smartwatch::before{content:"\f56c"}.bi-snow::before{content:"\f56d"}.bi-snow2::before{content:"\f56e"}.bi-snow3::before{content:"\f56f"}.bi-sort-alpha-down-alt::before{content:"\f570"}.bi-sort-alpha-down::before{content:"\f571"}.bi-sort-alpha-up-alt::before{content:"\f572"}.bi-sort-alpha-up::before{content:"\f573"}.bi-sort-down-alt::before{content:"\f574"}.bi-sort-down::before{content:"\f575"}.bi-sort-numeric-down-alt::before{content:"\f576"}.bi-sort-numeric-down::before{content:"\f577"}.bi-sort-numeric-up-alt::before{content:"\f578"}.bi-sort-numeric-up::before{content:"\f579"}.bi-sort-up-alt::before{content:"\f57a"}.bi-sort-up::before{content:"\f57b"}.bi-soundwave::before{content:"\f57c"}.bi-speaker-fill::before{content:"\f57d"}.bi-speaker::before{content:"\f57e"}.bi-speedometer::before{content:"\f57f"}.bi-speedometer2::before{content:"\f580"}.bi-spellcheck::before{content:"\f581"}.bi-square-fill::before{content:"\f582"}.bi-square-half::before{content:"\f583"}.bi-square::before{content:"\f584"}.bi-stack::before{content:"\f585"}.bi-star-fill::before{content:"\f586"}.bi-star-half::before{content:"\f587"}.bi-star::before{content:"\f588"}.bi-stars::before{content:"\f589"}.bi-stickies-fill::before{content:"\f58a"}.bi-stickies::before{content:"\f58b"}.bi-sticky-fill::before{content:"\f58c"}.bi-sticky::before{content:"\f58d"}.bi-stop-btn-fill::before{content:"\f58e"}.bi-stop-btn::before{content:"\f58f"}.bi-stop-circle-fill::before{content:"\f590"}.bi-stop-circle::before{content:"\f591"}.bi-stop-fill::before{content:"\f592"}.bi-stop::before{content:"\f593"}.bi-stoplights-fill::before{content:"\f594"}.bi-stoplights::before{content:"\f595"}.bi-stopwatch-fill::before{content:"\f596"}.bi-stopwatch::before{content:"\f597"}.bi-subtract::before{content:"\f598"}.bi-suit-club-fill::before{content:"\f599"}.bi-suit-club::before{content:"\f59a"}.bi-suit-diamond-fill::before{content:"\f59b"}.bi-suit-diamond::before{content:"\f59c"}.bi-suit-heart-fill::before{content:"\f59d"}.bi-suit-heart::before{content:"\f59e"}.bi-suit-spade-fill::before{content:"\f59f"}.bi-suit-spade::before{content:"\f5a0"}.bi-sun-fill::before{content:"\f5a1"}.bi-sun::before{content:"\f5a2"}.bi-sunglasses::before{content:"\f5a3"}.bi-sunrise-fill::before{content:"\f5a4"}.bi-sunrise::before{content:"\f5a5"}.bi-sunset-fill::before{content:"\f5a6"}.bi-sunset::before{content:"\f5a7"}.bi-symmetry-horizontal::before{content:"\f5a8"}.bi-symmetry-vertical::before{content:"\f5a9"}.bi-table::before{content:"\f5aa"}.bi-tablet-fill::before{content:"\f5ab"}.bi-tablet-landscape-fill::before{content:"\f5ac"}.bi-tablet-landscape::before{content:"\f5ad"}.bi-tablet::before{content:"\f5ae"}.bi-tag-fill::before{content:"\f5af"}.bi-tag::before{content:"\f5b0"}.bi-tags-fill::before{content:"\f5b1"}.bi-tags::before{content:"\f5b2"}.bi-telegram::before{content:"\f5b3"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone-forward-fill::before{content:"\f5b5"}.bi-telephone-forward::before{content:"\f5b6"}.bi-telephone-inbound-fill::before{content:"\f5b7"}.bi-telephone-inbound::before{content:"\f5b8"}.bi-telephone-minus-fill::before{content:"\f5b9"}.bi-telephone-minus::before{content:"\f5ba"}.bi-telephone-outbound-fill::before{content:"\f5bb"}.bi-telephone-outbound::before{content:"\f5bc"}.bi-telephone-plus-fill::before{content:"\f5bd"}.bi-telephone-plus::before{content:"\f5be"}.bi-telephone-x-fill::before{content:"\f5bf"}.bi-telephone-x::before{content:"\f5c0"}.bi-telephone::before{content:"\f5c1"}.bi-terminal-fill::before{content:"\f5c2"}.bi-terminal::before{content:"\f5c3"}.bi-text-center::before{content:"\f5c4"}.bi-text-indent-left::before{content:"\f5c5"}.bi-text-indent-right::before{content:"\f5c6"}.bi-text-left::before{content:"\f5c7"}.bi-text-paragraph::before{content:"\f5c8"}.bi-text-right::before{content:"\f5c9"}.bi-textarea-resize::before{content:"\f5ca"}.bi-textarea-t::before{content:"\f5cb"}.bi-textarea::before{content:"\f5cc"}.bi-thermometer-half::before{content:"\f5cd"}.bi-thermometer-high::before{content:"\f5ce"}.bi-thermometer-low::before{content:"\f5cf"}.bi-thermometer-snow::before{content:"\f5d0"}.bi-thermometer-sun::before{content:"\f5d1"}.bi-thermometer::before{content:"\f5d2"}.bi-three-dots-vertical::before{content:"\f5d3"}.bi-three-dots::before{content:"\f5d4"}.bi-toggle-off::before{content:"\f5d5"}.bi-toggle-on::before{content:"\f5d6"}.bi-toggle2-off::before{content:"\f5d7"}.bi-toggle2-on::before{content:"\f5d8"}.bi-toggles::before{content:"\f5d9"}.bi-toggles2::before{content:"\f5da"}.bi-tools::before{content:"\f5db"}.bi-tornado::before{content:"\f5dc"}.bi-trash-fill::before{content:"\f5dd"}.bi-trash::before{content:"\f5de"}.bi-trash2-fill::before{content:"\f5df"}.bi-trash2::before{content:"\f5e0"}.bi-tree-fill::before{content:"\f5e1"}.bi-tree::before{content:"\f5e2"}.bi-triangle-fill::before{content:"\f5e3"}.bi-triangle-half::before{content:"\f5e4"}.bi-triangle::before{content:"\f5e5"}.bi-trophy-fill::before{content:"\f5e6"}.bi-trophy::before{content:"\f5e7"}.bi-tropical-storm::before{content:"\f5e8"}.bi-truck-flatbed::before{content:"\f5e9"}.bi-truck::before{content:"\f5ea"}.bi-tsunami::before{content:"\f5eb"}.bi-tv-fill::before{content:"\f5ec"}.bi-tv::before{content:"\f5ed"}.bi-twitch::before{content:"\f5ee"}.bi-twitter::before{content:"\f5ef"}.bi-type-bold::before{content:"\f5f0"}.bi-type-h1::before{content:"\f5f1"}.bi-type-h2::before{content:"\f5f2"}.bi-type-h3::before{content:"\f5f3"}.bi-type-italic::before{content:"\f5f4"}.bi-type-strikethrough::before{content:"\f5f5"}.bi-type-underline::before{content:"\f5f6"}.bi-type::before{content:"\f5f7"}.bi-ui-checks-grid::before{content:"\f5f8"}.bi-ui-checks::before{content:"\f5f9"}.bi-ui-radios-grid::before{content:"\f5fa"}.bi-ui-radios::before{content:"\f5fb"}.bi-umbrella-fill::before{content:"\f5fc"}.bi-umbrella::before{content:"\f5fd"}.bi-union::before{content:"\f5fe"}.bi-unlock-fill::before{content:"\f5ff"}.bi-unlock::before{content:"\f600"}.bi-upc-scan::before{content:"\f601"}.bi-upc::before{content:"\f602"}.bi-upload::before{content:"\f603"}.bi-vector-pen::before{content:"\f604"}.bi-view-list::before{content:"\f605"}.bi-view-stacked::before{content:"\f606"}.bi-vinyl-fill::before{content:"\f607"}.bi-vinyl::before{content:"\f608"}.bi-voicemail::before{content:"\f609"}.bi-volume-down-fill::before{content:"\f60a"}.bi-volume-down::before{content:"\f60b"}.bi-volume-mute-fill::before{content:"\f60c"}.bi-volume-mute::before{content:"\f60d"}.bi-volume-off-fill::before{content:"\f60e"}.bi-volume-off::before{content:"\f60f"}.bi-volume-up-fill::before{content:"\f610"}.bi-volume-up::before{content:"\f611"}.bi-vr::before{content:"\f612"}.bi-wallet-fill::before{content:"\f613"}.bi-wallet::before{content:"\f614"}.bi-wallet2::before{content:"\f615"}.bi-watch::before{content:"\f616"}.bi-water::before{content:"\f617"}.bi-whatsapp::before{content:"\f618"}.bi-wifi-1::before{content:"\f619"}.bi-wifi-2::before{content:"\f61a"}.bi-wifi-off::before{content:"\f61b"}.bi-wifi::before{content:"\f61c"}.bi-wind::before{content:"\f61d"}.bi-window-dock::before{content:"\f61e"}.bi-window-sidebar::before{content:"\f61f"}.bi-window::before{content:"\f620"}.bi-wrench::before{content:"\f621"}.bi-x-circle-fill::before{content:"\f622"}.bi-x-circle::before{content:"\f623"}.bi-x-diamond-fill::before{content:"\f624"}.bi-x-diamond::before{content:"\f625"}.bi-x-octagon-fill::before{content:"\f626"}.bi-x-octagon::before{content:"\f627"}.bi-x-square-fill::before{content:"\f628"}.bi-x-square::before{content:"\f629"}.bi-x::before{content:"\f62a"}.bi-youtube::before{content:"\f62b"}.bi-zoom-in::before{content:"\f62c"}.bi-zoom-out::before{content:"\f62d"}.bi-bank::before{content:"\f62e"}.bi-bank2::before{content:"\f62f"}.bi-bell-slash-fill::before{content:"\f630"}.bi-bell-slash::before{content:"\f631"}.bi-cash-coin::before{content:"\f632"}.bi-check-lg::before{content:"\f633"}.bi-coin::before{content:"\f634"}.bi-currency-bitcoin::before{content:"\f635"}.bi-currency-dollar::before{content:"\f636"}.bi-currency-euro::before{content:"\f637"}.bi-currency-exchange::before{content:"\f638"}.bi-currency-pound::before{content:"\f639"}.bi-currency-yen::before{content:"\f63a"}.bi-dash-lg::before{content:"\f63b"}.bi-exclamation-lg::before{content:"\f63c"}.bi-file-earmark-pdf-fill::before{content:"\f63d"}.bi-file-earmark-pdf::before{content:"\f63e"}.bi-file-pdf-fill::before{content:"\f63f"}.bi-file-pdf::before{content:"\f640"}.bi-gender-ambiguous::before{content:"\f641"}.bi-gender-female::before{content:"\f642"}.bi-gender-male::before{content:"\f643"}.bi-gender-trans::before{content:"\f644"}.bi-headset-vr::before{content:"\f645"}.bi-info-lg::before{content:"\f646"}.bi-mastodon::before{content:"\f647"}.bi-messenger::before{content:"\f648"}.bi-piggy-bank-fill::before{content:"\f649"}.bi-piggy-bank::before{content:"\f64a"}.bi-pin-map-fill::before{content:"\f64b"}.bi-pin-map::before{content:"\f64c"}.bi-plus-lg::before{content:"\f64d"}.bi-question-lg::before{content:"\f64e"}.bi-recycle::before{content:"\f64f"}.bi-reddit::before{content:"\f650"}.bi-safe-fill::before{content:"\f651"}.bi-safe2-fill::before{content:"\f652"}.bi-safe2::before{content:"\f653"}.bi-sd-card-fill::before{content:"\f654"}.bi-sd-card::before{content:"\f655"}.bi-skype::before{content:"\f656"}.bi-slash-lg::before{content:"\f657"}.bi-translate::before{content:"\f658"}.bi-x-lg::before{content:"\f659"}.bi-safe::before{content:"\f65a"}.bi-apple::before{content:"\f65b"}.bi-microsoft::before{content:"\f65d"}.bi-windows::before{content:"\f65e"}.bi-behance::before{content:"\f65c"}.bi-dribbble::before{content:"\f65f"}.bi-line::before{content:"\f660"}.bi-medium::before{content:"\f661"}.bi-paypal::before{content:"\f662"}.bi-pinterest::before{content:"\f663"}.bi-signal::before{content:"\f664"}.bi-snapchat::before{content:"\f665"}.bi-spotify::before{content:"\f666"}.bi-stack-overflow::before{content:"\f667"}.bi-strava::before{content:"\f668"}.bi-wordpress::before{content:"\f669"}.bi-vimeo::before{content:"\f66a"}.bi-activity::before{content:"\f66b"}.bi-easel2-fill::before{content:"\f66c"}.bi-easel2::before{content:"\f66d"}.bi-easel3-fill::before{content:"\f66e"}.bi-easel3::before{content:"\f66f"}.bi-fan::before{content:"\f670"}.bi-fingerprint::before{content:"\f671"}.bi-graph-down-arrow::before{content:"\f672"}.bi-graph-up-arrow::before{content:"\f673"}.bi-hypnotize::before{content:"\f674"}.bi-magic::before{content:"\f675"}.bi-person-rolodex::before{content:"\f676"}.bi-person-video::before{content:"\f677"}.bi-person-video2::before{content:"\f678"}.bi-person-video3::before{content:"\f679"}.bi-person-workspace::before{content:"\f67a"}.bi-radioactive::before{content:"\f67b"}.bi-webcam-fill::before{content:"\f67c"}.bi-webcam::before{content:"\f67d"}.bi-yin-yang::before{content:"\f67e"}.bi-bandaid-fill::before{content:"\f680"}.bi-bandaid::before{content:"\f681"}.bi-bluetooth::before{content:"\f682"}.bi-body-text::before{content:"\f683"}.bi-boombox::before{content:"\f684"}.bi-boxes::before{content:"\f685"}.bi-dpad-fill::before{content:"\f686"}.bi-dpad::before{content:"\f687"}.bi-ear-fill::before{content:"\f688"}.bi-ear::before{content:"\f689"}.bi-envelope-check-fill::before{content:"\f68b"}.bi-envelope-check::before{content:"\f68c"}.bi-envelope-dash-fill::before{content:"\f68e"}.bi-envelope-dash::before{content:"\f68f"}.bi-envelope-exclamation-fill::before{content:"\f691"}.bi-envelope-exclamation::before{content:"\f692"}.bi-envelope-plus-fill::before{content:"\f693"}.bi-envelope-plus::before{content:"\f694"}.bi-envelope-slash-fill::before{content:"\f696"}.bi-envelope-slash::before{content:"\f697"}.bi-envelope-x-fill::before{content:"\f699"}.bi-envelope-x::before{content:"\f69a"}.bi-explicit-fill::before{content:"\f69b"}.bi-explicit::before{content:"\f69c"}.bi-git::before{content:"\f69d"}.bi-infinity::before{content:"\f69e"}.bi-list-columns-reverse::before{content:"\f69f"}.bi-list-columns::before{content:"\f6a0"}.bi-meta::before{content:"\f6a1"}.bi-nintendo-switch::before{content:"\f6a4"}.bi-pc-display-horizontal::before{content:"\f6a5"}.bi-pc-display::before{content:"\f6a6"}.bi-pc-horizontal::before{content:"\f6a7"}.bi-pc::before{content:"\f6a8"}.bi-playstation::before{content:"\f6a9"}.bi-plus-slash-minus::before{content:"\f6aa"}.bi-projector-fill::before{content:"\f6ab"}.bi-projector::before{content:"\f6ac"}.bi-qr-code-scan::before{content:"\f6ad"}.bi-qr-code::before{content:"\f6ae"}.bi-quora::before{content:"\f6af"}.bi-quote::before{content:"\f6b0"}.bi-robot::before{content:"\f6b1"}.bi-send-check-fill::before{content:"\f6b2"}.bi-send-check::before{content:"\f6b3"}.bi-send-dash-fill::before{content:"\f6b4"}.bi-send-dash::before{content:"\f6b5"}.bi-send-exclamation-fill::before{content:"\f6b7"}.bi-send-exclamation::before{content:"\f6b8"}.bi-send-fill::before{content:"\f6b9"}.bi-send-plus-fill::before{content:"\f6ba"}.bi-send-plus::before{content:"\f6bb"}.bi-send-slash-fill::before{content:"\f6bc"}.bi-send-slash::before{content:"\f6bd"}.bi-send-x-fill::before{content:"\f6be"}.bi-send-x::before{content:"\f6bf"}.bi-send::before{content:"\f6c0"}.bi-steam::before{content:"\f6c1"}.bi-terminal-dash::before{content:"\f6c3"}.bi-terminal-plus::before{content:"\f6c4"}.bi-terminal-split::before{content:"\f6c5"}.bi-ticket-detailed-fill::before{content:"\f6c6"}.bi-ticket-detailed::before{content:"\f6c7"}.bi-ticket-fill::before{content:"\f6c8"}.bi-ticket-perforated-fill::before{content:"\f6c9"}.bi-ticket-perforated::before{content:"\f6ca"}.bi-ticket::before{content:"\f6cb"}.bi-tiktok::before{content:"\f6cc"}.bi-window-dash::before{content:"\f6cd"}.bi-window-desktop::before{content:"\f6ce"}.bi-window-fullscreen::before{content:"\f6cf"}.bi-window-plus::before{content:"\f6d0"}.bi-window-split::before{content:"\f6d1"}.bi-window-stack::before{content:"\f6d2"}.bi-window-x::before{content:"\f6d3"}.bi-xbox::before{content:"\f6d4"}.bi-ethernet::before{content:"\f6d5"}.bi-hdmi-fill::before{content:"\f6d6"}.bi-hdmi::before{content:"\f6d7"}.bi-usb-c-fill::before{content:"\f6d8"}.bi-usb-c::before{content:"\f6d9"}.bi-usb-fill::before{content:"\f6da"}.bi-usb-plug-fill::before{content:"\f6db"}.bi-usb-plug::before{content:"\f6dc"}.bi-usb-symbol::before{content:"\f6dd"}.bi-usb::before{content:"\f6de"}.bi-boombox-fill::before{content:"\f6df"}.bi-displayport::before{content:"\f6e1"}.bi-gpu-card::before{content:"\f6e2"}.bi-memory::before{content:"\f6e3"}.bi-modem-fill::before{content:"\f6e4"}.bi-modem::before{content:"\f6e5"}.bi-motherboard-fill::before{content:"\f6e6"}.bi-motherboard::before{content:"\f6e7"}.bi-optical-audio-fill::before{content:"\f6e8"}.bi-optical-audio::before{content:"\f6e9"}.bi-pci-card::before{content:"\f6ea"}.bi-router-fill::before{content:"\f6eb"}.bi-router::before{content:"\f6ec"}.bi-thunderbolt-fill::before{content:"\f6ef"}.bi-thunderbolt::before{content:"\f6f0"}.bi-usb-drive-fill::before{content:"\f6f1"}.bi-usb-drive::before{content:"\f6f2"}.bi-usb-micro-fill::before{content:"\f6f3"}.bi-usb-micro::before{content:"\f6f4"}.bi-usb-mini-fill::before{content:"\f6f5"}.bi-usb-mini::before{content:"\f6f6"}.bi-cloud-haze2::before{content:"\f6f7"}.bi-device-hdd-fill::before{content:"\f6f8"}.bi-device-hdd::before{content:"\f6f9"}.bi-device-ssd-fill::before{content:"\f6fa"}.bi-device-ssd::before{content:"\f6fb"}.bi-displayport-fill::before{content:"\f6fc"}.bi-mortarboard-fill::before{content:"\f6fd"}.bi-mortarboard::before{content:"\f6fe"}.bi-terminal-x::before{content:"\f6ff"}.bi-arrow-through-heart-fill::before{content:"\f700"}.bi-arrow-through-heart::before{content:"\f701"}.bi-badge-sd-fill::before{content:"\f702"}.bi-badge-sd::before{content:"\f703"}.bi-bag-heart-fill::before{content:"\f704"}.bi-bag-heart::before{content:"\f705"}.bi-balloon-fill::before{content:"\f706"}.bi-balloon-heart-fill::before{content:"\f707"}.bi-balloon-heart::before{content:"\f708"}.bi-balloon::before{content:"\f709"}.bi-box2-fill::before{content:"\f70a"}.bi-box2-heart-fill::before{content:"\f70b"}.bi-box2-heart::before{content:"\f70c"}.bi-box2::before{content:"\f70d"}.bi-braces-asterisk::before{content:"\f70e"}.bi-calendar-heart-fill::before{content:"\f70f"}.bi-calendar-heart::before{content:"\f710"}.bi-calendar2-heart-fill::before{content:"\f711"}.bi-calendar2-heart::before{content:"\f712"}.bi-chat-heart-fill::before{content:"\f713"}.bi-chat-heart::before{content:"\f714"}.bi-chat-left-heart-fill::before{content:"\f715"}.bi-chat-left-heart::before{content:"\f716"}.bi-chat-right-heart-fill::before{content:"\f717"}.bi-chat-right-heart::before{content:"\f718"}.bi-chat-square-heart-fill::before{content:"\f719"}.bi-chat-square-heart::before{content:"\f71a"}.bi-clipboard-check-fill::before{content:"\f71b"}.bi-clipboard-data-fill::before{content:"\f71c"}.bi-clipboard-fill::before{content:"\f71d"}.bi-clipboard-heart-fill::before{content:"\f71e"}.bi-clipboard-heart::before{content:"\f71f"}.bi-clipboard-minus-fill::before{content:"\f720"}.bi-clipboard-plus-fill::before{content:"\f721"}.bi-clipboard-pulse::before{content:"\f722"}.bi-clipboard-x-fill::before{content:"\f723"}.bi-clipboard2-check-fill::before{content:"\f724"}.bi-clipboard2-check::before{content:"\f725"}.bi-clipboard2-data-fill::before{content:"\f726"}.bi-clipboard2-data::before{content:"\f727"}.bi-clipboard2-fill::before{content:"\f728"}.bi-clipboard2-heart-fill::before{content:"\f729"}.bi-clipboard2-heart::before{content:"\f72a"}.bi-clipboard2-minus-fill::before{content:"\f72b"}.bi-clipboard2-minus::before{content:"\f72c"}.bi-clipboard2-plus-fill::before{content:"\f72d"}.bi-clipboard2-plus::before{content:"\f72e"}.bi-clipboard2-pulse-fill::before{content:"\f72f"}.bi-clipboard2-pulse::before{content:"\f730"}.bi-clipboard2-x-fill::before{content:"\f731"}.bi-clipboard2-x::before{content:"\f732"}.bi-clipboard2::before{content:"\f733"}.bi-emoji-kiss-fill::before{content:"\f734"}.bi-emoji-kiss::before{content:"\f735"}.bi-envelope-heart-fill::before{content:"\f736"}.bi-envelope-heart::before{content:"\f737"}.bi-envelope-open-heart-fill::before{content:"\f738"}.bi-envelope-open-heart::before{content:"\f739"}.bi-envelope-paper-fill::before{content:"\f73a"}.bi-envelope-paper-heart-fill::before{content:"\f73b"}.bi-envelope-paper-heart::before{content:"\f73c"}.bi-envelope-paper::before{content:"\f73d"}.bi-filetype-aac::before{content:"\f73e"}.bi-filetype-ai::before{content:"\f73f"}.bi-filetype-bmp::before{content:"\f740"}.bi-filetype-cs::before{content:"\f741"}.bi-filetype-css::before{content:"\f742"}.bi-filetype-csv::before{content:"\f743"}.bi-filetype-doc::before{content:"\f744"}.bi-filetype-docx::before{content:"\f745"}.bi-filetype-exe::before{content:"\f746"}.bi-filetype-gif::before{content:"\f747"}.bi-filetype-heic::before{content:"\f748"}.bi-filetype-html::before{content:"\f749"}.bi-filetype-java::before{content:"\f74a"}.bi-filetype-jpg::before{content:"\f74b"}.bi-filetype-js::before{content:"\f74c"}.bi-filetype-jsx::before{content:"\f74d"}.bi-filetype-key::before{content:"\f74e"}.bi-filetype-m4p::before{content:"\f74f"}.bi-filetype-md::before{content:"\f750"}.bi-filetype-mdx::before{content:"\f751"}.bi-filetype-mov::before{content:"\f752"}.bi-filetype-mp3::before{content:"\f753"}.bi-filetype-mp4::before{content:"\f754"}.bi-filetype-otf::before{content:"\f755"}.bi-filetype-pdf::before{content:"\f756"}.bi-filetype-php::before{content:"\f757"}.bi-filetype-png::before{content:"\f758"}.bi-filetype-ppt::before{content:"\f75a"}.bi-filetype-psd::before{content:"\f75b"}.bi-filetype-py::before{content:"\f75c"}.bi-filetype-raw::before{content:"\f75d"}.bi-filetype-rb::before{content:"\f75e"}.bi-filetype-sass::before{content:"\f75f"}.bi-filetype-scss::before{content:"\f760"}.bi-filetype-sh::before{content:"\f761"}.bi-filetype-svg::before{content:"\f762"}.bi-filetype-tiff::before{content:"\f763"}.bi-filetype-tsx::before{content:"\f764"}.bi-filetype-ttf::before{content:"\f765"}.bi-filetype-txt::before{content:"\f766"}.bi-filetype-wav::before{content:"\f767"}.bi-filetype-woff::before{content:"\f768"}.bi-filetype-xls::before{content:"\f76a"}.bi-filetype-xml::before{content:"\f76b"}.bi-filetype-yml::before{content:"\f76c"}.bi-heart-arrow::before{content:"\f76d"}.bi-heart-pulse-fill::before{content:"\f76e"}.bi-heart-pulse::before{content:"\f76f"}.bi-heartbreak-fill::before{content:"\f770"}.bi-heartbreak::before{content:"\f771"}.bi-hearts::before{content:"\f772"}.bi-hospital-fill::before{content:"\f773"}.bi-hospital::before{content:"\f774"}.bi-house-heart-fill::before{content:"\f775"}.bi-house-heart::before{content:"\f776"}.bi-incognito::before{content:"\f777"}.bi-magnet-fill::before{content:"\f778"}.bi-magnet::before{content:"\f779"}.bi-person-heart::before{content:"\f77a"}.bi-person-hearts::before{content:"\f77b"}.bi-phone-flip::before{content:"\f77c"}.bi-plugin::before{content:"\f77d"}.bi-postage-fill::before{content:"\f77e"}.bi-postage-heart-fill::before{content:"\f77f"}.bi-postage-heart::before{content:"\f780"}.bi-postage::before{content:"\f781"}.bi-postcard-fill::before{content:"\f782"}.bi-postcard-heart-fill::before{content:"\f783"}.bi-postcard-heart::before{content:"\f784"}.bi-postcard::before{content:"\f785"}.bi-search-heart-fill::before{content:"\f786"}.bi-search-heart::before{content:"\f787"}.bi-sliders2-vertical::before{content:"\f788"}.bi-sliders2::before{content:"\f789"}.bi-trash3-fill::before{content:"\f78a"}.bi-trash3::before{content:"\f78b"}.bi-valentine::before{content:"\f78c"}.bi-valentine2::before{content:"\f78d"}.bi-wrench-adjustable-circle-fill::before{content:"\f78e"}.bi-wrench-adjustable-circle::before{content:"\f78f"}.bi-wrench-adjustable::before{content:"\f790"}.bi-filetype-json::before{content:"\f791"}.bi-filetype-pptx::before{content:"\f792"}.bi-filetype-xlsx::before{content:"\f793"}.bi-1-circle-fill::before{content:"\f796"}.bi-1-circle::before{content:"\f797"}.bi-1-square-fill::before{content:"\f798"}.bi-1-square::before{content:"\f799"}.bi-2-circle-fill::before{content:"\f79c"}.bi-2-circle::before{content:"\f79d"}.bi-2-square-fill::before{content:"\f79e"}.bi-2-square::before{content:"\f79f"}.bi-3-circle-fill::before{content:"\f7a2"}.bi-3-circle::before{content:"\f7a3"}.bi-3-square-fill::before{content:"\f7a4"}.bi-3-square::before{content:"\f7a5"}.bi-4-circle-fill::before{content:"\f7a8"}.bi-4-circle::before{content:"\f7a9"}.bi-4-square-fill::before{content:"\f7aa"}.bi-4-square::before{content:"\f7ab"}.bi-5-circle-fill::before{content:"\f7ae"}.bi-5-circle::before{content:"\f7af"}.bi-5-square-fill::before{content:"\f7b0"}.bi-5-square::before{content:"\f7b1"}.bi-6-circle-fill::before{content:"\f7b4"}.bi-6-circle::before{content:"\f7b5"}.bi-6-square-fill::before{content:"\f7b6"}.bi-6-square::before{content:"\f7b7"}.bi-7-circle-fill::before{content:"\f7ba"}.bi-7-circle::before{content:"\f7bb"}.bi-7-square-fill::before{content:"\f7bc"}.bi-7-square::before{content:"\f7bd"}.bi-8-circle-fill::before{content:"\f7c0"}.bi-8-circle::before{content:"\f7c1"}.bi-8-square-fill::before{content:"\f7c2"}.bi-8-square::before{content:"\f7c3"}.bi-9-circle-fill::before{content:"\f7c6"}.bi-9-circle::before{content:"\f7c7"}.bi-9-square-fill::before{content:"\f7c8"}.bi-9-square::before{content:"\f7c9"}.bi-airplane-engines-fill::before{content:"\f7ca"}.bi-airplane-engines::before{content:"\f7cb"}.bi-airplane-fill::before{content:"\f7cc"}.bi-airplane::before{content:"\f7cd"}.bi-alexa::before{content:"\f7ce"}.bi-alipay::before{content:"\f7cf"}.bi-android::before{content:"\f7d0"}.bi-android2::before{content:"\f7d1"}.bi-box-fill::before{content:"\f7d2"}.bi-box-seam-fill::before{content:"\f7d3"}.bi-browser-chrome::before{content:"\f7d4"}.bi-browser-edge::before{content:"\f7d5"}.bi-browser-firefox::before{content:"\f7d6"}.bi-browser-safari::before{content:"\f7d7"}.bi-c-circle-fill::before{content:"\f7da"}.bi-c-circle::before{content:"\f7db"}.bi-c-square-fill::before{content:"\f7dc"}.bi-c-square::before{content:"\f7dd"}.bi-capsule-pill::before{content:"\f7de"}.bi-capsule::before{content:"\f7df"}.bi-car-front-fill::before{content:"\f7e0"}.bi-car-front::before{content:"\f7e1"}.bi-cassette-fill::before{content:"\f7e2"}.bi-cassette::before{content:"\f7e3"}.bi-cc-circle-fill::before{content:"\f7e6"}.bi-cc-circle::before{content:"\f7e7"}.bi-cc-square-fill::before{content:"\f7e8"}.bi-cc-square::before{content:"\f7e9"}.bi-cup-hot-fill::before{content:"\f7ea"}.bi-cup-hot::before{content:"\f7eb"}.bi-currency-rupee::before{content:"\f7ec"}.bi-dropbox::before{content:"\f7ed"}.bi-escape::before{content:"\f7ee"}.bi-fast-forward-btn-fill::before{content:"\f7ef"}.bi-fast-forward-btn::before{content:"\f7f0"}.bi-fast-forward-circle-fill::before{content:"\f7f1"}.bi-fast-forward-circle::before{content:"\f7f2"}.bi-fast-forward-fill::before{content:"\f7f3"}.bi-fast-forward::before{content:"\f7f4"}.bi-filetype-sql::before{content:"\f7f5"}.bi-fire::before{content:"\f7f6"}.bi-google-play::before{content:"\f7f7"}.bi-h-circle-fill::before{content:"\f7fa"}.bi-h-circle::before{content:"\f7fb"}.bi-h-square-fill::before{content:"\f7fc"}.bi-h-square::before{content:"\f7fd"}.bi-indent::before{content:"\f7fe"}.bi-lungs-fill::before{content:"\f7ff"}.bi-lungs::before{content:"\f800"}.bi-microsoft-teams::before{content:"\f801"}.bi-p-circle-fill::before{content:"\f804"}.bi-p-circle::before{content:"\f805"}.bi-p-square-fill::before{content:"\f806"}.bi-p-square::before{content:"\f807"}.bi-pass-fill::before{content:"\f808"}.bi-pass::before{content:"\f809"}.bi-prescription::before{content:"\f80a"}.bi-prescription2::before{content:"\f80b"}.bi-r-circle-fill::before{content:"\f80e"}.bi-r-circle::before{content:"\f80f"}.bi-r-square-fill::before{content:"\f810"}.bi-r-square::before{content:"\f811"}.bi-repeat-1::before{content:"\f812"}.bi-repeat::before{content:"\f813"}.bi-rewind-btn-fill::before{content:"\f814"}.bi-rewind-btn::before{content:"\f815"}.bi-rewind-circle-fill::before{content:"\f816"}.bi-rewind-circle::before{content:"\f817"}.bi-rewind-fill::before{content:"\f818"}.bi-rewind::before{content:"\f819"}.bi-train-freight-front-fill::before{content:"\f81a"}.bi-train-freight-front::before{content:"\f81b"}.bi-train-front-fill::before{content:"\f81c"}.bi-train-front::before{content:"\f81d"}.bi-train-lightrail-front-fill::before{content:"\f81e"}.bi-train-lightrail-front::before{content:"\f81f"}.bi-truck-front-fill::before{content:"\f820"}.bi-truck-front::before{content:"\f821"}.bi-ubuntu::before{content:"\f822"}.bi-unindent::before{content:"\f823"}.bi-unity::before{content:"\f824"}.bi-universal-access-circle::before{content:"\f825"}.bi-universal-access::before{content:"\f826"}.bi-virus::before{content:"\f827"}.bi-virus2::before{content:"\f828"}.bi-wechat::before{content:"\f829"}.bi-yelp::before{content:"\f82a"}.bi-sign-stop-fill::before{content:"\f82b"}.bi-sign-stop-lights-fill::before{content:"\f82c"}.bi-sign-stop-lights::before{content:"\f82d"}.bi-sign-stop::before{content:"\f82e"}.bi-sign-turn-left-fill::before{content:"\f82f"}.bi-sign-turn-left::before{content:"\f830"}.bi-sign-turn-right-fill::before{content:"\f831"}.bi-sign-turn-right::before{content:"\f832"}.bi-sign-turn-slight-left-fill::before{content:"\f833"}.bi-sign-turn-slight-left::before{content:"\f834"}.bi-sign-turn-slight-right-fill::before{content:"\f835"}.bi-sign-turn-slight-right::before{content:"\f836"}.bi-sign-yield-fill::before{content:"\f837"}.bi-sign-yield::before{content:"\f838"}.bi-ev-station-fill::before{content:"\f839"}.bi-ev-station::before{content:"\f83a"}.bi-fuel-pump-diesel-fill::before{content:"\f83b"}.bi-fuel-pump-diesel::before{content:"\f83c"}.bi-fuel-pump-fill::before{content:"\f83d"}.bi-fuel-pump::before{content:"\f83e"}.bi-0-circle-fill::before{content:"\f83f"}.bi-0-circle::before{content:"\f840"}.bi-0-square-fill::before{content:"\f841"}.bi-0-square::before{content:"\f842"}.bi-rocket-fill::before{content:"\f843"}.bi-rocket-takeoff-fill::before{content:"\f844"}.bi-rocket-takeoff::before{content:"\f845"}.bi-rocket::before{content:"\f846"}.bi-stripe::before{content:"\f847"}.bi-subscript::before{content:"\f848"}.bi-superscript::before{content:"\f849"}.bi-trello::before{content:"\f84a"}.bi-envelope-at-fill::before{content:"\f84b"}.bi-envelope-at::before{content:"\f84c"}.bi-regex::before{content:"\f84d"}.bi-text-wrap::before{content:"\f84e"}.bi-sign-dead-end-fill::before{content:"\f84f"}.bi-sign-dead-end::before{content:"\f850"}.bi-sign-do-not-enter-fill::before{content:"\f851"}.bi-sign-do-not-enter::before{content:"\f852"}.bi-sign-intersection-fill::before{content:"\f853"}.bi-sign-intersection-side-fill::before{content:"\f854"}.bi-sign-intersection-side::before{content:"\f855"}.bi-sign-intersection-t-fill::before{content:"\f856"}.bi-sign-intersection-t::before{content:"\f857"}.bi-sign-intersection-y-fill::before{content:"\f858"}.bi-sign-intersection-y::before{content:"\f859"}.bi-sign-intersection::before{content:"\f85a"}.bi-sign-merge-left-fill::before{content:"\f85b"}.bi-sign-merge-left::before{content:"\f85c"}.bi-sign-merge-right-fill::before{content:"\f85d"}.bi-sign-merge-right::before{content:"\f85e"}.bi-sign-no-left-turn-fill::before{content:"\f85f"}.bi-sign-no-left-turn::before{content:"\f860"}.bi-sign-no-parking-fill::before{content:"\f861"}.bi-sign-no-parking::before{content:"\f862"}.bi-sign-no-right-turn-fill::before{content:"\f863"}.bi-sign-no-right-turn::before{content:"\f864"}.bi-sign-railroad-fill::before{content:"\f865"}.bi-sign-railroad::before{content:"\f866"}.bi-building-add::before{content:"\f867"}.bi-building-check::before{content:"\f868"}.bi-building-dash::before{content:"\f869"}.bi-building-down::before{content:"\f86a"}.bi-building-exclamation::before{content:"\f86b"}.bi-building-fill-add::before{content:"\f86c"}.bi-building-fill-check::before{content:"\f86d"}.bi-building-fill-dash::before{content:"\f86e"}.bi-building-fill-down::before{content:"\f86f"}.bi-building-fill-exclamation::before{content:"\f870"}.bi-building-fill-gear::before{content:"\f871"}.bi-building-fill-lock::before{content:"\f872"}.bi-building-fill-slash::before{content:"\f873"}.bi-building-fill-up::before{content:"\f874"}.bi-building-fill-x::before{content:"\f875"}.bi-building-fill::before{content:"\f876"}.bi-building-gear::before{content:"\f877"}.bi-building-lock::before{content:"\f878"}.bi-building-slash::before{content:"\f879"}.bi-building-up::before{content:"\f87a"}.bi-building-x::before{content:"\f87b"}.bi-buildings-fill::before{content:"\f87c"}.bi-buildings::before{content:"\f87d"}.bi-bus-front-fill::before{content:"\f87e"}.bi-bus-front::before{content:"\f87f"}.bi-ev-front-fill::before{content:"\f880"}.bi-ev-front::before{content:"\f881"}.bi-globe-americas::before{content:"\f882"}.bi-globe-asia-australia::before{content:"\f883"}.bi-globe-central-south-asia::before{content:"\f884"}.bi-globe-europe-africa::before{content:"\f885"}.bi-house-add-fill::before{content:"\f886"}.bi-house-add::before{content:"\f887"}.bi-house-check-fill::before{content:"\f888"}.bi-house-check::before{content:"\f889"}.bi-house-dash-fill::before{content:"\f88a"}.bi-house-dash::before{content:"\f88b"}.bi-house-down-fill::before{content:"\f88c"}.bi-house-down::before{content:"\f88d"}.bi-house-exclamation-fill::before{content:"\f88e"}.bi-house-exclamation::before{content:"\f88f"}.bi-house-gear-fill::before{content:"\f890"}.bi-house-gear::before{content:"\f891"}.bi-house-lock-fill::before{content:"\f892"}.bi-house-lock::before{content:"\f893"}.bi-house-slash-fill::before{content:"\f894"}.bi-house-slash::before{content:"\f895"}.bi-house-up-fill::before{content:"\f896"}.bi-house-up::before{content:"\f897"}.bi-house-x-fill::before{content:"\f898"}.bi-house-x::before{content:"\f899"}.bi-person-add::before{content:"\f89a"}.bi-person-down::before{content:"\f89b"}.bi-person-exclamation::before{content:"\f89c"}.bi-person-fill-add::before{content:"\f89d"}.bi-person-fill-check::before{content:"\f89e"}.bi-person-fill-dash::before{content:"\f89f"}.bi-person-fill-down::before{content:"\f8a0"}.bi-person-fill-exclamation::before{content:"\f8a1"}.bi-person-fill-gear::before{content:"\f8a2"}.bi-person-fill-lock::before{content:"\f8a3"}.bi-person-fill-slash::before{content:"\f8a4"}.bi-person-fill-up::before{content:"\f8a5"}.bi-person-fill-x::before{content:"\f8a6"}.bi-person-gear::before{content:"\f8a7"}.bi-person-lock::before{content:"\f8a8"}.bi-person-slash::before{content:"\f8a9"}.bi-person-up::before{content:"\f8aa"}.bi-scooter::before{content:"\f8ab"}.bi-taxi-front-fill::before{content:"\f8ac"}.bi-taxi-front::before{content:"\f8ad"}.bi-amd::before{content:"\f8ae"}.bi-database-add::before{content:"\f8af"}.bi-database-check::before{content:"\f8b0"}.bi-database-dash::before{content:"\f8b1"}.bi-database-down::before{content:"\f8b2"}.bi-database-exclamation::before{content:"\f8b3"}.bi-database-fill-add::before{content:"\f8b4"}.bi-database-fill-check::before{content:"\f8b5"}.bi-database-fill-dash::before{content:"\f8b6"}.bi-database-fill-down::before{content:"\f8b7"}.bi-database-fill-exclamation::before{content:"\f8b8"}.bi-database-fill-gear::before{content:"\f8b9"}.bi-database-fill-lock::before{content:"\f8ba"}.bi-database-fill-slash::before{content:"\f8bb"}.bi-database-fill-up::before{content:"\f8bc"}.bi-database-fill-x::before{content:"\f8bd"}.bi-database-fill::before{content:"\f8be"}.bi-database-gear::before{content:"\f8bf"}.bi-database-lock::before{content:"\f8c0"}.bi-database-slash::before{content:"\f8c1"}.bi-database-up::before{content:"\f8c2"}.bi-database-x::before{content:"\f8c3"}.bi-database::before{content:"\f8c4"}.bi-houses-fill::before{content:"\f8c5"}.bi-houses::before{content:"\f8c6"}.bi-nvidia::before{content:"\f8c7"}.bi-person-vcard-fill::before{content:"\f8c8"}.bi-person-vcard::before{content:"\f8c9"}.bi-sina-weibo::before{content:"\f8ca"}.bi-tencent-qq::before{content:"\f8cb"}.bi-wikipedia::before{content:"\f8cc"}.bi-alphabet-uppercase::before{content:"\f2a5"}.bi-alphabet::before{content:"\f68a"}.bi-amazon::before{content:"\f68d"}.bi-arrows-collapse-vertical::before{content:"\f690"}.bi-arrows-expand-vertical::before{content:"\f695"}.bi-arrows-vertical::before{content:"\f698"}.bi-arrows::before{content:"\f6a2"}.bi-ban-fill::before{content:"\f6a3"}.bi-ban::before{content:"\f6b6"}.bi-bing::before{content:"\f6c2"}.bi-cake::before{content:"\f6e0"}.bi-cake2::before{content:"\f6ed"}.bi-cookie::before{content:"\f6ee"}.bi-copy::before{content:"\f759"}.bi-crosshair::before{content:"\f769"}.bi-crosshair2::before{content:"\f794"}.bi-emoji-astonished-fill::before{content:"\f795"}.bi-emoji-astonished::before{content:"\f79a"}.bi-emoji-grimace-fill::before{content:"\f79b"}.bi-emoji-grimace::before{content:"\f7a0"}.bi-emoji-grin-fill::before{content:"\f7a1"}.bi-emoji-grin::before{content:"\f7a6"}.bi-emoji-surprise-fill::before{content:"\f7a7"}.bi-emoji-surprise::before{content:"\f7ac"}.bi-emoji-tear-fill::before{content:"\f7ad"}.bi-emoji-tear::before{content:"\f7b2"}.bi-envelope-arrow-down-fill::before{content:"\f7b3"}.bi-envelope-arrow-down::before{content:"\f7b8"}.bi-envelope-arrow-up-fill::before{content:"\f7b9"}.bi-envelope-arrow-up::before{content:"\f7be"}.bi-feather::before{content:"\f7bf"}.bi-feather2::before{content:"\f7c4"}.bi-floppy-fill::before{content:"\f7c5"}.bi-floppy::before{content:"\f7d8"}.bi-floppy2-fill::before{content:"\f7d9"}.bi-floppy2::before{content:"\f7e4"}.bi-gitlab::before{content:"\f7e5"}.bi-highlighter::before{content:"\f7f8"}.bi-marker-tip::before{content:"\f802"}.bi-nvme-fill::before{content:"\f803"}.bi-nvme::before{content:"\f80c"}.bi-opencollective::before{content:"\f80d"}.bi-pci-card-network::before{content:"\f8cd"}.bi-pci-card-sound::before{content:"\f8ce"}.bi-radar::before{content:"\f8cf"}.bi-send-arrow-down-fill::before{content:"\f8d0"}.bi-send-arrow-down::before{content:"\f8d1"}.bi-send-arrow-up-fill::before{content:"\f8d2"}.bi-send-arrow-up::before{content:"\f8d3"}.bi-sim-slash-fill::before{content:"\f8d4"}.bi-sim-slash::before{content:"\f8d5"}.bi-sourceforge::before{content:"\f8d6"}.bi-substack::before{content:"\f8d7"}.bi-threads-fill::before{content:"\f8d8"}.bi-threads::before{content:"\f8d9"}.bi-transparency::before{content:"\f8da"}.bi-twitter-x::before{content:"\f8db"}.bi-type-h4::before{content:"\f8dc"}.bi-type-h5::before{content:"\f8dd"}.bi-type-h6::before{content:"\f8de"}.bi-backpack-fill::before{content:"\f8df"}.bi-backpack::before{content:"\f8e0"}.bi-backpack2-fill::before{content:"\f8e1"}.bi-backpack2::before{content:"\f8e2"}.bi-backpack3-fill::before{content:"\f8e3"}.bi-backpack3::before{content:"\f8e4"}.bi-backpack4-fill::before{content:"\f8e5"}.bi-backpack4::before{content:"\f8e6"}.bi-brilliance::before{content:"\f8e7"}.bi-cake-fill::before{content:"\f8e8"}.bi-cake2-fill::before{content:"\f8e9"}.bi-duffle-fill::before{content:"\f8ea"}.bi-duffle::before{content:"\f8eb"}.bi-exposure::before{content:"\f8ec"}.bi-gender-neuter::before{content:"\f8ed"}.bi-highlights::before{content:"\f8ee"}.bi-luggage-fill::before{content:"\f8ef"}.bi-luggage::before{content:"\f8f0"}.bi-mailbox-flag::before{content:"\f8f1"}.bi-mailbox2-flag::before{content:"\f8f2"}.bi-noise-reduction::before{content:"\f8f3"}.bi-passport-fill::before{content:"\f8f4"}.bi-passport::before{content:"\f8f5"}.bi-person-arms-up::before{content:"\f8f6"}.bi-person-raised-hand::before{content:"\f8f7"}.bi-person-standing-dress::before{content:"\f8f8"}.bi-person-standing::before{content:"\f8f9"}.bi-person-walking::before{content:"\f8fa"}.bi-person-wheelchair::before{content:"\f8fb"}.bi-shadows::before{content:"\f8fc"}.bi-suitcase-fill::before{content:"\f8fd"}.bi-suitcase-lg-fill::before{content:"\f8fe"}.bi-suitcase-lg::before{content:"\f8ff"}.bi-suitcase::before{content:"\f900"}.bi-suitcase2-fill::before{content:"\f901"}.bi-suitcase2::before{content:"\f902"}.bi-vignette::before{content:"\f903"} \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.scss b/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.scss deleted file mode 100644 index 9032fd2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.scss +++ /dev/null @@ -1,2090 +0,0 @@ -/*! - * Bootstrap Icons v1.10.5 (https://icons.getbootstrap.com/) - * Copyright 2019-2023 The Bootstrap Authors - * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) - */ - -$bootstrap-icons-font: "bootstrap-icons" !default; -$bootstrap-icons-font-dir: "./fonts" !default; -$bootstrap-icons-font-file: "#{$bootstrap-icons-font-dir}/#{$bootstrap-icons-font}" !default; -$bootstrap-icons-font-hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default; -$bootstrap-icons-font-src: url("#{$bootstrap-icons-font-file}.woff2?#{$bootstrap-icons-font-hash}") format("woff2"), - url("#{$bootstrap-icons-font-file}.woff?#{$bootstrap-icons-font-hash}") format("woff") !default; - -@font-face { - font-display: block; - font-family: $bootstrap-icons-font; - src: $bootstrap-icons-font-src; -} - -.bi::before, -[class^="bi-"]::before, -[class*=" bi-"]::before { - display: inline-block; - font-family: $bootstrap-icons-font !important; - font-style: normal; - font-weight: normal !important; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: -.125em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -$bootstrap-icons-map: ( - "123": "\f67f", - "alarm-fill": "\f101", - "alarm": "\f102", - "align-bottom": "\f103", - "align-center": "\f104", - "align-end": "\f105", - "align-middle": "\f106", - "align-start": "\f107", - "align-top": "\f108", - "alt": "\f109", - "app-indicator": "\f10a", - "app": "\f10b", - "archive-fill": "\f10c", - "archive": "\f10d", - "arrow-90deg-down": "\f10e", - "arrow-90deg-left": "\f10f", - "arrow-90deg-right": "\f110", - "arrow-90deg-up": "\f111", - "arrow-bar-down": "\f112", - "arrow-bar-left": "\f113", - "arrow-bar-right": "\f114", - "arrow-bar-up": "\f115", - "arrow-clockwise": "\f116", - "arrow-counterclockwise": "\f117", - "arrow-down-circle-fill": "\f118", - "arrow-down-circle": "\f119", - "arrow-down-left-circle-fill": "\f11a", - "arrow-down-left-circle": "\f11b", - "arrow-down-left-square-fill": "\f11c", - "arrow-down-left-square": "\f11d", - "arrow-down-left": "\f11e", - "arrow-down-right-circle-fill": "\f11f", - "arrow-down-right-circle": "\f120", - "arrow-down-right-square-fill": "\f121", - "arrow-down-right-square": "\f122", - "arrow-down-right": "\f123", - "arrow-down-short": "\f124", - "arrow-down-square-fill": "\f125", - "arrow-down-square": "\f126", - "arrow-down-up": "\f127", - "arrow-down": "\f128", - "arrow-left-circle-fill": "\f129", - "arrow-left-circle": "\f12a", - "arrow-left-right": "\f12b", - "arrow-left-short": "\f12c", - "arrow-left-square-fill": "\f12d", - "arrow-left-square": "\f12e", - "arrow-left": "\f12f", - "arrow-repeat": "\f130", - "arrow-return-left": "\f131", - "arrow-return-right": "\f132", - "arrow-right-circle-fill": "\f133", - "arrow-right-circle": "\f134", - "arrow-right-short": "\f135", - "arrow-right-square-fill": "\f136", - "arrow-right-square": "\f137", - "arrow-right": "\f138", - "arrow-up-circle-fill": "\f139", - "arrow-up-circle": "\f13a", - "arrow-up-left-circle-fill": "\f13b", - "arrow-up-left-circle": "\f13c", - "arrow-up-left-square-fill": "\f13d", - "arrow-up-left-square": "\f13e", - "arrow-up-left": "\f13f", - "arrow-up-right-circle-fill": "\f140", - "arrow-up-right-circle": "\f141", - "arrow-up-right-square-fill": "\f142", - "arrow-up-right-square": "\f143", - "arrow-up-right": "\f144", - "arrow-up-short": "\f145", - "arrow-up-square-fill": "\f146", - "arrow-up-square": "\f147", - "arrow-up": "\f148", - "arrows-angle-contract": "\f149", - "arrows-angle-expand": "\f14a", - "arrows-collapse": "\f14b", - "arrows-expand": "\f14c", - "arrows-fullscreen": "\f14d", - "arrows-move": "\f14e", - "aspect-ratio-fill": "\f14f", - "aspect-ratio": "\f150", - "asterisk": "\f151", - "at": "\f152", - "award-fill": "\f153", - "award": "\f154", - "back": "\f155", - "backspace-fill": "\f156", - "backspace-reverse-fill": "\f157", - "backspace-reverse": "\f158", - "backspace": "\f159", - "badge-3d-fill": "\f15a", - "badge-3d": "\f15b", - "badge-4k-fill": "\f15c", - "badge-4k": "\f15d", - "badge-8k-fill": "\f15e", - "badge-8k": "\f15f", - "badge-ad-fill": "\f160", - "badge-ad": "\f161", - "badge-ar-fill": "\f162", - "badge-ar": "\f163", - "badge-cc-fill": "\f164", - "badge-cc": "\f165", - "badge-hd-fill": "\f166", - "badge-hd": "\f167", - "badge-tm-fill": "\f168", - "badge-tm": "\f169", - "badge-vo-fill": "\f16a", - "badge-vo": "\f16b", - "badge-vr-fill": "\f16c", - "badge-vr": "\f16d", - "badge-wc-fill": "\f16e", - "badge-wc": "\f16f", - "bag-check-fill": "\f170", - "bag-check": "\f171", - "bag-dash-fill": "\f172", - "bag-dash": "\f173", - "bag-fill": "\f174", - "bag-plus-fill": "\f175", - "bag-plus": "\f176", - "bag-x-fill": "\f177", - "bag-x": "\f178", - "bag": "\f179", - "bar-chart-fill": "\f17a", - "bar-chart-line-fill": "\f17b", - "bar-chart-line": "\f17c", - "bar-chart-steps": "\f17d", - "bar-chart": "\f17e", - "basket-fill": "\f17f", - "basket": "\f180", - "basket2-fill": "\f181", - "basket2": "\f182", - "basket3-fill": "\f183", - "basket3": "\f184", - "battery-charging": "\f185", - "battery-full": "\f186", - "battery-half": "\f187", - "battery": "\f188", - "bell-fill": "\f189", - "bell": "\f18a", - "bezier": "\f18b", - "bezier2": "\f18c", - "bicycle": "\f18d", - "binoculars-fill": "\f18e", - "binoculars": "\f18f", - "blockquote-left": "\f190", - "blockquote-right": "\f191", - "book-fill": "\f192", - "book-half": "\f193", - "book": "\f194", - "bookmark-check-fill": "\f195", - "bookmark-check": "\f196", - "bookmark-dash-fill": "\f197", - "bookmark-dash": "\f198", - "bookmark-fill": "\f199", - "bookmark-heart-fill": "\f19a", - "bookmark-heart": "\f19b", - "bookmark-plus-fill": "\f19c", - "bookmark-plus": "\f19d", - "bookmark-star-fill": "\f19e", - "bookmark-star": "\f19f", - "bookmark-x-fill": "\f1a0", - "bookmark-x": "\f1a1", - "bookmark": "\f1a2", - "bookmarks-fill": "\f1a3", - "bookmarks": "\f1a4", - "bookshelf": "\f1a5", - "bootstrap-fill": "\f1a6", - "bootstrap-reboot": "\f1a7", - "bootstrap": "\f1a8", - "border-all": "\f1a9", - "border-bottom": "\f1aa", - "border-center": "\f1ab", - "border-inner": "\f1ac", - "border-left": "\f1ad", - "border-middle": "\f1ae", - "border-outer": "\f1af", - "border-right": "\f1b0", - "border-style": "\f1b1", - "border-top": "\f1b2", - "border-width": "\f1b3", - "border": "\f1b4", - "bounding-box-circles": "\f1b5", - "bounding-box": "\f1b6", - "box-arrow-down-left": "\f1b7", - "box-arrow-down-right": "\f1b8", - "box-arrow-down": "\f1b9", - "box-arrow-in-down-left": "\f1ba", - "box-arrow-in-down-right": "\f1bb", - "box-arrow-in-down": "\f1bc", - "box-arrow-in-left": "\f1bd", - "box-arrow-in-right": "\f1be", - "box-arrow-in-up-left": "\f1bf", - "box-arrow-in-up-right": "\f1c0", - "box-arrow-in-up": "\f1c1", - "box-arrow-left": "\f1c2", - "box-arrow-right": "\f1c3", - "box-arrow-up-left": "\f1c4", - "box-arrow-up-right": "\f1c5", - "box-arrow-up": "\f1c6", - "box-seam": "\f1c7", - "box": "\f1c8", - "braces": "\f1c9", - "bricks": "\f1ca", - "briefcase-fill": "\f1cb", - "briefcase": "\f1cc", - "brightness-alt-high-fill": "\f1cd", - "brightness-alt-high": "\f1ce", - "brightness-alt-low-fill": "\f1cf", - "brightness-alt-low": "\f1d0", - "brightness-high-fill": "\f1d1", - "brightness-high": "\f1d2", - "brightness-low-fill": "\f1d3", - "brightness-low": "\f1d4", - "broadcast-pin": "\f1d5", - "broadcast": "\f1d6", - "brush-fill": "\f1d7", - "brush": "\f1d8", - "bucket-fill": "\f1d9", - "bucket": "\f1da", - "bug-fill": "\f1db", - "bug": "\f1dc", - "building": "\f1dd", - "bullseye": "\f1de", - "calculator-fill": "\f1df", - "calculator": "\f1e0", - "calendar-check-fill": "\f1e1", - "calendar-check": "\f1e2", - "calendar-date-fill": "\f1e3", - "calendar-date": "\f1e4", - "calendar-day-fill": "\f1e5", - "calendar-day": "\f1e6", - "calendar-event-fill": "\f1e7", - "calendar-event": "\f1e8", - "calendar-fill": "\f1e9", - "calendar-minus-fill": "\f1ea", - "calendar-minus": "\f1eb", - "calendar-month-fill": "\f1ec", - "calendar-month": "\f1ed", - "calendar-plus-fill": "\f1ee", - "calendar-plus": "\f1ef", - "calendar-range-fill": "\f1f0", - "calendar-range": "\f1f1", - "calendar-week-fill": "\f1f2", - "calendar-week": "\f1f3", - "calendar-x-fill": "\f1f4", - "calendar-x": "\f1f5", - "calendar": "\f1f6", - "calendar2-check-fill": "\f1f7", - "calendar2-check": "\f1f8", - "calendar2-date-fill": "\f1f9", - "calendar2-date": "\f1fa", - "calendar2-day-fill": "\f1fb", - "calendar2-day": "\f1fc", - "calendar2-event-fill": "\f1fd", - "calendar2-event": "\f1fe", - "calendar2-fill": "\f1ff", - "calendar2-minus-fill": "\f200", - "calendar2-minus": "\f201", - "calendar2-month-fill": "\f202", - "calendar2-month": "\f203", - "calendar2-plus-fill": "\f204", - "calendar2-plus": "\f205", - "calendar2-range-fill": "\f206", - "calendar2-range": "\f207", - "calendar2-week-fill": "\f208", - "calendar2-week": "\f209", - "calendar2-x-fill": "\f20a", - "calendar2-x": "\f20b", - "calendar2": "\f20c", - "calendar3-event-fill": "\f20d", - "calendar3-event": "\f20e", - "calendar3-fill": "\f20f", - "calendar3-range-fill": "\f210", - "calendar3-range": "\f211", - "calendar3-week-fill": "\f212", - "calendar3-week": "\f213", - "calendar3": "\f214", - "calendar4-event": "\f215", - "calendar4-range": "\f216", - "calendar4-week": "\f217", - "calendar4": "\f218", - "camera-fill": "\f219", - "camera-reels-fill": "\f21a", - "camera-reels": "\f21b", - "camera-video-fill": "\f21c", - "camera-video-off-fill": "\f21d", - "camera-video-off": "\f21e", - "camera-video": "\f21f", - "camera": "\f220", - "camera2": "\f221", - "capslock-fill": "\f222", - "capslock": "\f223", - "card-checklist": "\f224", - "card-heading": "\f225", - "card-image": "\f226", - "card-list": "\f227", - "card-text": "\f228", - "caret-down-fill": "\f229", - "caret-down-square-fill": "\f22a", - "caret-down-square": "\f22b", - "caret-down": "\f22c", - "caret-left-fill": "\f22d", - "caret-left-square-fill": "\f22e", - "caret-left-square": "\f22f", - "caret-left": "\f230", - "caret-right-fill": "\f231", - "caret-right-square-fill": "\f232", - "caret-right-square": "\f233", - "caret-right": "\f234", - "caret-up-fill": "\f235", - "caret-up-square-fill": "\f236", - "caret-up-square": "\f237", - "caret-up": "\f238", - "cart-check-fill": "\f239", - "cart-check": "\f23a", - "cart-dash-fill": "\f23b", - "cart-dash": "\f23c", - "cart-fill": "\f23d", - "cart-plus-fill": "\f23e", - "cart-plus": "\f23f", - "cart-x-fill": "\f240", - "cart-x": "\f241", - "cart": "\f242", - "cart2": "\f243", - "cart3": "\f244", - "cart4": "\f245", - "cash-stack": "\f246", - "cash": "\f247", - "cast": "\f248", - "chat-dots-fill": "\f249", - "chat-dots": "\f24a", - "chat-fill": "\f24b", - "chat-left-dots-fill": "\f24c", - "chat-left-dots": "\f24d", - "chat-left-fill": "\f24e", - "chat-left-quote-fill": "\f24f", - "chat-left-quote": "\f250", - "chat-left-text-fill": "\f251", - "chat-left-text": "\f252", - "chat-left": "\f253", - "chat-quote-fill": "\f254", - "chat-quote": "\f255", - "chat-right-dots-fill": "\f256", - "chat-right-dots": "\f257", - "chat-right-fill": "\f258", - "chat-right-quote-fill": "\f259", - "chat-right-quote": "\f25a", - "chat-right-text-fill": "\f25b", - "chat-right-text": "\f25c", - "chat-right": "\f25d", - "chat-square-dots-fill": "\f25e", - "chat-square-dots": "\f25f", - "chat-square-fill": "\f260", - "chat-square-quote-fill": "\f261", - "chat-square-quote": "\f262", - "chat-square-text-fill": "\f263", - "chat-square-text": "\f264", - "chat-square": "\f265", - "chat-text-fill": "\f266", - "chat-text": "\f267", - "chat": "\f268", - "check-all": "\f269", - "check-circle-fill": "\f26a", - "check-circle": "\f26b", - "check-square-fill": "\f26c", - "check-square": "\f26d", - "check": "\f26e", - "check2-all": "\f26f", - "check2-circle": "\f270", - "check2-square": "\f271", - "check2": "\f272", - "chevron-bar-contract": "\f273", - "chevron-bar-down": "\f274", - "chevron-bar-expand": "\f275", - "chevron-bar-left": "\f276", - "chevron-bar-right": "\f277", - "chevron-bar-up": "\f278", - "chevron-compact-down": "\f279", - "chevron-compact-left": "\f27a", - "chevron-compact-right": "\f27b", - "chevron-compact-up": "\f27c", - "chevron-contract": "\f27d", - "chevron-double-down": "\f27e", - "chevron-double-left": "\f27f", - "chevron-double-right": "\f280", - "chevron-double-up": "\f281", - "chevron-down": "\f282", - "chevron-expand": "\f283", - "chevron-left": "\f284", - "chevron-right": "\f285", - "chevron-up": "\f286", - "circle-fill": "\f287", - "circle-half": "\f288", - "circle-square": "\f289", - "circle": "\f28a", - "clipboard-check": "\f28b", - "clipboard-data": "\f28c", - "clipboard-minus": "\f28d", - "clipboard-plus": "\f28e", - "clipboard-x": "\f28f", - "clipboard": "\f290", - "clock-fill": "\f291", - "clock-history": "\f292", - "clock": "\f293", - "cloud-arrow-down-fill": "\f294", - "cloud-arrow-down": "\f295", - "cloud-arrow-up-fill": "\f296", - "cloud-arrow-up": "\f297", - "cloud-check-fill": "\f298", - "cloud-check": "\f299", - "cloud-download-fill": "\f29a", - "cloud-download": "\f29b", - "cloud-drizzle-fill": "\f29c", - "cloud-drizzle": "\f29d", - "cloud-fill": "\f29e", - "cloud-fog-fill": "\f29f", - "cloud-fog": "\f2a0", - "cloud-fog2-fill": "\f2a1", - "cloud-fog2": "\f2a2", - "cloud-hail-fill": "\f2a3", - "cloud-hail": "\f2a4", - "cloud-haze-fill": "\f2a6", - "cloud-haze": "\f2a7", - "cloud-haze2-fill": "\f2a8", - "cloud-lightning-fill": "\f2a9", - "cloud-lightning-rain-fill": "\f2aa", - "cloud-lightning-rain": "\f2ab", - "cloud-lightning": "\f2ac", - "cloud-minus-fill": "\f2ad", - "cloud-minus": "\f2ae", - "cloud-moon-fill": "\f2af", - "cloud-moon": "\f2b0", - "cloud-plus-fill": "\f2b1", - "cloud-plus": "\f2b2", - "cloud-rain-fill": "\f2b3", - "cloud-rain-heavy-fill": "\f2b4", - "cloud-rain-heavy": "\f2b5", - "cloud-rain": "\f2b6", - "cloud-slash-fill": "\f2b7", - "cloud-slash": "\f2b8", - "cloud-sleet-fill": "\f2b9", - "cloud-sleet": "\f2ba", - "cloud-snow-fill": "\f2bb", - "cloud-snow": "\f2bc", - "cloud-sun-fill": "\f2bd", - "cloud-sun": "\f2be", - "cloud-upload-fill": "\f2bf", - "cloud-upload": "\f2c0", - "cloud": "\f2c1", - "clouds-fill": "\f2c2", - "clouds": "\f2c3", - "cloudy-fill": "\f2c4", - "cloudy": "\f2c5", - "code-slash": "\f2c6", - "code-square": "\f2c7", - "code": "\f2c8", - "collection-fill": "\f2c9", - "collection-play-fill": "\f2ca", - "collection-play": "\f2cb", - "collection": "\f2cc", - "columns-gap": "\f2cd", - "columns": "\f2ce", - "command": "\f2cf", - "compass-fill": "\f2d0", - "compass": "\f2d1", - "cone-striped": "\f2d2", - "cone": "\f2d3", - "controller": "\f2d4", - "cpu-fill": "\f2d5", - "cpu": "\f2d6", - "credit-card-2-back-fill": "\f2d7", - "credit-card-2-back": "\f2d8", - "credit-card-2-front-fill": "\f2d9", - "credit-card-2-front": "\f2da", - "credit-card-fill": "\f2db", - "credit-card": "\f2dc", - "crop": "\f2dd", - "cup-fill": "\f2de", - "cup-straw": "\f2df", - "cup": "\f2e0", - "cursor-fill": "\f2e1", - "cursor-text": "\f2e2", - "cursor": "\f2e3", - "dash-circle-dotted": "\f2e4", - "dash-circle-fill": "\f2e5", - "dash-circle": "\f2e6", - "dash-square-dotted": "\f2e7", - "dash-square-fill": "\f2e8", - "dash-square": "\f2e9", - "dash": "\f2ea", - "diagram-2-fill": "\f2eb", - "diagram-2": "\f2ec", - "diagram-3-fill": "\f2ed", - "diagram-3": "\f2ee", - "diamond-fill": "\f2ef", - "diamond-half": "\f2f0", - "diamond": "\f2f1", - "dice-1-fill": "\f2f2", - "dice-1": "\f2f3", - "dice-2-fill": "\f2f4", - "dice-2": "\f2f5", - "dice-3-fill": "\f2f6", - "dice-3": "\f2f7", - "dice-4-fill": "\f2f8", - "dice-4": "\f2f9", - "dice-5-fill": "\f2fa", - "dice-5": "\f2fb", - "dice-6-fill": "\f2fc", - "dice-6": "\f2fd", - "disc-fill": "\f2fe", - "disc": "\f2ff", - "discord": "\f300", - "display-fill": "\f301", - "display": "\f302", - "distribute-horizontal": "\f303", - "distribute-vertical": "\f304", - "door-closed-fill": "\f305", - "door-closed": "\f306", - "door-open-fill": "\f307", - "door-open": "\f308", - "dot": "\f309", - "download": "\f30a", - "droplet-fill": "\f30b", - "droplet-half": "\f30c", - "droplet": "\f30d", - "earbuds": "\f30e", - "easel-fill": "\f30f", - "easel": "\f310", - "egg-fill": "\f311", - "egg-fried": "\f312", - "egg": "\f313", - "eject-fill": "\f314", - "eject": "\f315", - "emoji-angry-fill": "\f316", - "emoji-angry": "\f317", - "emoji-dizzy-fill": "\f318", - "emoji-dizzy": "\f319", - "emoji-expressionless-fill": "\f31a", - "emoji-expressionless": "\f31b", - "emoji-frown-fill": "\f31c", - "emoji-frown": "\f31d", - "emoji-heart-eyes-fill": "\f31e", - "emoji-heart-eyes": "\f31f", - "emoji-laughing-fill": "\f320", - "emoji-laughing": "\f321", - "emoji-neutral-fill": "\f322", - "emoji-neutral": "\f323", - "emoji-smile-fill": "\f324", - "emoji-smile-upside-down-fill": "\f325", - "emoji-smile-upside-down": "\f326", - "emoji-smile": "\f327", - "emoji-sunglasses-fill": "\f328", - "emoji-sunglasses": "\f329", - "emoji-wink-fill": "\f32a", - "emoji-wink": "\f32b", - "envelope-fill": "\f32c", - "envelope-open-fill": "\f32d", - "envelope-open": "\f32e", - "envelope": "\f32f", - "eraser-fill": "\f330", - "eraser": "\f331", - "exclamation-circle-fill": "\f332", - "exclamation-circle": "\f333", - "exclamation-diamond-fill": "\f334", - "exclamation-diamond": "\f335", - "exclamation-octagon-fill": "\f336", - "exclamation-octagon": "\f337", - "exclamation-square-fill": "\f338", - "exclamation-square": "\f339", - "exclamation-triangle-fill": "\f33a", - "exclamation-triangle": "\f33b", - "exclamation": "\f33c", - "exclude": "\f33d", - "eye-fill": "\f33e", - "eye-slash-fill": "\f33f", - "eye-slash": "\f340", - "eye": "\f341", - "eyedropper": "\f342", - "eyeglasses": "\f343", - "facebook": "\f344", - "file-arrow-down-fill": "\f345", - "file-arrow-down": "\f346", - "file-arrow-up-fill": "\f347", - "file-arrow-up": "\f348", - "file-bar-graph-fill": "\f349", - "file-bar-graph": "\f34a", - "file-binary-fill": "\f34b", - "file-binary": "\f34c", - "file-break-fill": "\f34d", - "file-break": "\f34e", - "file-check-fill": "\f34f", - "file-check": "\f350", - "file-code-fill": "\f351", - "file-code": "\f352", - "file-diff-fill": "\f353", - "file-diff": "\f354", - "file-earmark-arrow-down-fill": "\f355", - "file-earmark-arrow-down": "\f356", - "file-earmark-arrow-up-fill": "\f357", - "file-earmark-arrow-up": "\f358", - "file-earmark-bar-graph-fill": "\f359", - "file-earmark-bar-graph": "\f35a", - "file-earmark-binary-fill": "\f35b", - "file-earmark-binary": "\f35c", - "file-earmark-break-fill": "\f35d", - "file-earmark-break": "\f35e", - "file-earmark-check-fill": "\f35f", - "file-earmark-check": "\f360", - "file-earmark-code-fill": "\f361", - "file-earmark-code": "\f362", - "file-earmark-diff-fill": "\f363", - "file-earmark-diff": "\f364", - "file-earmark-easel-fill": "\f365", - "file-earmark-easel": "\f366", - "file-earmark-excel-fill": "\f367", - "file-earmark-excel": "\f368", - "file-earmark-fill": "\f369", - "file-earmark-font-fill": "\f36a", - "file-earmark-font": "\f36b", - "file-earmark-image-fill": "\f36c", - "file-earmark-image": "\f36d", - "file-earmark-lock-fill": "\f36e", - "file-earmark-lock": "\f36f", - "file-earmark-lock2-fill": "\f370", - "file-earmark-lock2": "\f371", - "file-earmark-medical-fill": "\f372", - "file-earmark-medical": "\f373", - "file-earmark-minus-fill": "\f374", - "file-earmark-minus": "\f375", - "file-earmark-music-fill": "\f376", - "file-earmark-music": "\f377", - "file-earmark-person-fill": "\f378", - "file-earmark-person": "\f379", - "file-earmark-play-fill": "\f37a", - "file-earmark-play": "\f37b", - "file-earmark-plus-fill": "\f37c", - "file-earmark-plus": "\f37d", - "file-earmark-post-fill": "\f37e", - "file-earmark-post": "\f37f", - "file-earmark-ppt-fill": "\f380", - "file-earmark-ppt": "\f381", - "file-earmark-richtext-fill": "\f382", - "file-earmark-richtext": "\f383", - "file-earmark-ruled-fill": "\f384", - "file-earmark-ruled": "\f385", - "file-earmark-slides-fill": "\f386", - "file-earmark-slides": "\f387", - "file-earmark-spreadsheet-fill": "\f388", - "file-earmark-spreadsheet": "\f389", - "file-earmark-text-fill": "\f38a", - "file-earmark-text": "\f38b", - "file-earmark-word-fill": "\f38c", - "file-earmark-word": "\f38d", - "file-earmark-x-fill": "\f38e", - "file-earmark-x": "\f38f", - "file-earmark-zip-fill": "\f390", - "file-earmark-zip": "\f391", - "file-earmark": "\f392", - "file-easel-fill": "\f393", - "file-easel": "\f394", - "file-excel-fill": "\f395", - "file-excel": "\f396", - "file-fill": "\f397", - "file-font-fill": "\f398", - "file-font": "\f399", - "file-image-fill": "\f39a", - "file-image": "\f39b", - "file-lock-fill": "\f39c", - "file-lock": "\f39d", - "file-lock2-fill": "\f39e", - "file-lock2": "\f39f", - "file-medical-fill": "\f3a0", - "file-medical": "\f3a1", - "file-minus-fill": "\f3a2", - "file-minus": "\f3a3", - "file-music-fill": "\f3a4", - "file-music": "\f3a5", - "file-person-fill": "\f3a6", - "file-person": "\f3a7", - "file-play-fill": "\f3a8", - "file-play": "\f3a9", - "file-plus-fill": "\f3aa", - "file-plus": "\f3ab", - "file-post-fill": "\f3ac", - "file-post": "\f3ad", - "file-ppt-fill": "\f3ae", - "file-ppt": "\f3af", - "file-richtext-fill": "\f3b0", - "file-richtext": "\f3b1", - "file-ruled-fill": "\f3b2", - "file-ruled": "\f3b3", - "file-slides-fill": "\f3b4", - "file-slides": "\f3b5", - "file-spreadsheet-fill": "\f3b6", - "file-spreadsheet": "\f3b7", - "file-text-fill": "\f3b8", - "file-text": "\f3b9", - "file-word-fill": "\f3ba", - "file-word": "\f3bb", - "file-x-fill": "\f3bc", - "file-x": "\f3bd", - "file-zip-fill": "\f3be", - "file-zip": "\f3bf", - "file": "\f3c0", - "files-alt": "\f3c1", - "files": "\f3c2", - "film": "\f3c3", - "filter-circle-fill": "\f3c4", - "filter-circle": "\f3c5", - "filter-left": "\f3c6", - "filter-right": "\f3c7", - "filter-square-fill": "\f3c8", - "filter-square": "\f3c9", - "filter": "\f3ca", - "flag-fill": "\f3cb", - "flag": "\f3cc", - "flower1": "\f3cd", - "flower2": "\f3ce", - "flower3": "\f3cf", - "folder-check": "\f3d0", - "folder-fill": "\f3d1", - "folder-minus": "\f3d2", - "folder-plus": "\f3d3", - "folder-symlink-fill": "\f3d4", - "folder-symlink": "\f3d5", - "folder-x": "\f3d6", - "folder": "\f3d7", - "folder2-open": "\f3d8", - "folder2": "\f3d9", - "fonts": "\f3da", - "forward-fill": "\f3db", - "forward": "\f3dc", - "front": "\f3dd", - "fullscreen-exit": "\f3de", - "fullscreen": "\f3df", - "funnel-fill": "\f3e0", - "funnel": "\f3e1", - "gear-fill": "\f3e2", - "gear-wide-connected": "\f3e3", - "gear-wide": "\f3e4", - "gear": "\f3e5", - "gem": "\f3e6", - "geo-alt-fill": "\f3e7", - "geo-alt": "\f3e8", - "geo-fill": "\f3e9", - "geo": "\f3ea", - "gift-fill": "\f3eb", - "gift": "\f3ec", - "github": "\f3ed", - "globe": "\f3ee", - "globe2": "\f3ef", - "google": "\f3f0", - "graph-down": "\f3f1", - "graph-up": "\f3f2", - "grid-1x2-fill": "\f3f3", - "grid-1x2": "\f3f4", - "grid-3x2-gap-fill": "\f3f5", - "grid-3x2-gap": "\f3f6", - "grid-3x2": "\f3f7", - "grid-3x3-gap-fill": "\f3f8", - "grid-3x3-gap": "\f3f9", - "grid-3x3": "\f3fa", - "grid-fill": "\f3fb", - "grid": "\f3fc", - "grip-horizontal": "\f3fd", - "grip-vertical": "\f3fe", - "hammer": "\f3ff", - "hand-index-fill": "\f400", - "hand-index-thumb-fill": "\f401", - "hand-index-thumb": "\f402", - "hand-index": "\f403", - "hand-thumbs-down-fill": "\f404", - "hand-thumbs-down": "\f405", - "hand-thumbs-up-fill": "\f406", - "hand-thumbs-up": "\f407", - "handbag-fill": "\f408", - "handbag": "\f409", - "hash": "\f40a", - "hdd-fill": "\f40b", - "hdd-network-fill": "\f40c", - "hdd-network": "\f40d", - "hdd-rack-fill": "\f40e", - "hdd-rack": "\f40f", - "hdd-stack-fill": "\f410", - "hdd-stack": "\f411", - "hdd": "\f412", - "headphones": "\f413", - "headset": "\f414", - "heart-fill": "\f415", - "heart-half": "\f416", - "heart": "\f417", - "heptagon-fill": "\f418", - "heptagon-half": "\f419", - "heptagon": "\f41a", - "hexagon-fill": "\f41b", - "hexagon-half": "\f41c", - "hexagon": "\f41d", - "hourglass-bottom": "\f41e", - "hourglass-split": "\f41f", - "hourglass-top": "\f420", - "hourglass": "\f421", - "house-door-fill": "\f422", - "house-door": "\f423", - "house-fill": "\f424", - "house": "\f425", - "hr": "\f426", - "hurricane": "\f427", - "image-alt": "\f428", - "image-fill": "\f429", - "image": "\f42a", - "images": "\f42b", - "inbox-fill": "\f42c", - "inbox": "\f42d", - "inboxes-fill": "\f42e", - "inboxes": "\f42f", - "info-circle-fill": "\f430", - "info-circle": "\f431", - "info-square-fill": "\f432", - "info-square": "\f433", - "info": "\f434", - "input-cursor-text": "\f435", - "input-cursor": "\f436", - "instagram": "\f437", - "intersect": "\f438", - "journal-album": "\f439", - "journal-arrow-down": "\f43a", - "journal-arrow-up": "\f43b", - "journal-bookmark-fill": "\f43c", - "journal-bookmark": "\f43d", - "journal-check": "\f43e", - "journal-code": "\f43f", - "journal-medical": "\f440", - "journal-minus": "\f441", - "journal-plus": "\f442", - "journal-richtext": "\f443", - "journal-text": "\f444", - "journal-x": "\f445", - "journal": "\f446", - "journals": "\f447", - "joystick": "\f448", - "justify-left": "\f449", - "justify-right": "\f44a", - "justify": "\f44b", - "kanban-fill": "\f44c", - "kanban": "\f44d", - "key-fill": "\f44e", - "key": "\f44f", - "keyboard-fill": "\f450", - "keyboard": "\f451", - "ladder": "\f452", - "lamp-fill": "\f453", - "lamp": "\f454", - "laptop-fill": "\f455", - "laptop": "\f456", - "layer-backward": "\f457", - "layer-forward": "\f458", - "layers-fill": "\f459", - "layers-half": "\f45a", - "layers": "\f45b", - "layout-sidebar-inset-reverse": "\f45c", - "layout-sidebar-inset": "\f45d", - "layout-sidebar-reverse": "\f45e", - "layout-sidebar": "\f45f", - "layout-split": "\f460", - "layout-text-sidebar-reverse": "\f461", - "layout-text-sidebar": "\f462", - "layout-text-window-reverse": "\f463", - "layout-text-window": "\f464", - "layout-three-columns": "\f465", - "layout-wtf": "\f466", - "life-preserver": "\f467", - "lightbulb-fill": "\f468", - "lightbulb-off-fill": "\f469", - "lightbulb-off": "\f46a", - "lightbulb": "\f46b", - "lightning-charge-fill": "\f46c", - "lightning-charge": "\f46d", - "lightning-fill": "\f46e", - "lightning": "\f46f", - "link-45deg": "\f470", - "link": "\f471", - "linkedin": "\f472", - "list-check": "\f473", - "list-nested": "\f474", - "list-ol": "\f475", - "list-stars": "\f476", - "list-task": "\f477", - "list-ul": "\f478", - "list": "\f479", - "lock-fill": "\f47a", - "lock": "\f47b", - "mailbox": "\f47c", - "mailbox2": "\f47d", - "map-fill": "\f47e", - "map": "\f47f", - "markdown-fill": "\f480", - "markdown": "\f481", - "mask": "\f482", - "megaphone-fill": "\f483", - "megaphone": "\f484", - "menu-app-fill": "\f485", - "menu-app": "\f486", - "menu-button-fill": "\f487", - "menu-button-wide-fill": "\f488", - "menu-button-wide": "\f489", - "menu-button": "\f48a", - "menu-down": "\f48b", - "menu-up": "\f48c", - "mic-fill": "\f48d", - "mic-mute-fill": "\f48e", - "mic-mute": "\f48f", - "mic": "\f490", - "minecart-loaded": "\f491", - "minecart": "\f492", - "moisture": "\f493", - "moon-fill": "\f494", - "moon-stars-fill": "\f495", - "moon-stars": "\f496", - "moon": "\f497", - "mouse-fill": "\f498", - "mouse": "\f499", - "mouse2-fill": "\f49a", - "mouse2": "\f49b", - "mouse3-fill": "\f49c", - "mouse3": "\f49d", - "music-note-beamed": "\f49e", - "music-note-list": "\f49f", - "music-note": "\f4a0", - "music-player-fill": "\f4a1", - "music-player": "\f4a2", - "newspaper": "\f4a3", - "node-minus-fill": "\f4a4", - "node-minus": "\f4a5", - "node-plus-fill": "\f4a6", - "node-plus": "\f4a7", - "nut-fill": "\f4a8", - "nut": "\f4a9", - "octagon-fill": "\f4aa", - "octagon-half": "\f4ab", - "octagon": "\f4ac", - "option": "\f4ad", - "outlet": "\f4ae", - "paint-bucket": "\f4af", - "palette-fill": "\f4b0", - "palette": "\f4b1", - "palette2": "\f4b2", - "paperclip": "\f4b3", - "paragraph": "\f4b4", - "patch-check-fill": "\f4b5", - "patch-check": "\f4b6", - "patch-exclamation-fill": "\f4b7", - "patch-exclamation": "\f4b8", - "patch-minus-fill": "\f4b9", - "patch-minus": "\f4ba", - "patch-plus-fill": "\f4bb", - "patch-plus": "\f4bc", - "patch-question-fill": "\f4bd", - "patch-question": "\f4be", - "pause-btn-fill": "\f4bf", - "pause-btn": "\f4c0", - "pause-circle-fill": "\f4c1", - "pause-circle": "\f4c2", - "pause-fill": "\f4c3", - "pause": "\f4c4", - "peace-fill": "\f4c5", - "peace": "\f4c6", - "pen-fill": "\f4c7", - "pen": "\f4c8", - "pencil-fill": "\f4c9", - "pencil-square": "\f4ca", - "pencil": "\f4cb", - "pentagon-fill": "\f4cc", - "pentagon-half": "\f4cd", - "pentagon": "\f4ce", - "people-fill": "\f4cf", - "people": "\f4d0", - "percent": "\f4d1", - "person-badge-fill": "\f4d2", - "person-badge": "\f4d3", - "person-bounding-box": "\f4d4", - "person-check-fill": "\f4d5", - "person-check": "\f4d6", - "person-circle": "\f4d7", - "person-dash-fill": "\f4d8", - "person-dash": "\f4d9", - "person-fill": "\f4da", - "person-lines-fill": "\f4db", - "person-plus-fill": "\f4dc", - "person-plus": "\f4dd", - "person-square": "\f4de", - "person-x-fill": "\f4df", - "person-x": "\f4e0", - "person": "\f4e1", - "phone-fill": "\f4e2", - "phone-landscape-fill": "\f4e3", - "phone-landscape": "\f4e4", - "phone-vibrate-fill": "\f4e5", - "phone-vibrate": "\f4e6", - "phone": "\f4e7", - "pie-chart-fill": "\f4e8", - "pie-chart": "\f4e9", - "pin-angle-fill": "\f4ea", - "pin-angle": "\f4eb", - "pin-fill": "\f4ec", - "pin": "\f4ed", - "pip-fill": "\f4ee", - "pip": "\f4ef", - "play-btn-fill": "\f4f0", - "play-btn": "\f4f1", - "play-circle-fill": "\f4f2", - "play-circle": "\f4f3", - "play-fill": "\f4f4", - "play": "\f4f5", - "plug-fill": "\f4f6", - "plug": "\f4f7", - "plus-circle-dotted": "\f4f8", - "plus-circle-fill": "\f4f9", - "plus-circle": "\f4fa", - "plus-square-dotted": "\f4fb", - "plus-square-fill": "\f4fc", - "plus-square": "\f4fd", - "plus": "\f4fe", - "power": "\f4ff", - "printer-fill": "\f500", - "printer": "\f501", - "puzzle-fill": "\f502", - "puzzle": "\f503", - "question-circle-fill": "\f504", - "question-circle": "\f505", - "question-diamond-fill": "\f506", - "question-diamond": "\f507", - "question-octagon-fill": "\f508", - "question-octagon": "\f509", - "question-square-fill": "\f50a", - "question-square": "\f50b", - "question": "\f50c", - "rainbow": "\f50d", - "receipt-cutoff": "\f50e", - "receipt": "\f50f", - "reception-0": "\f510", - "reception-1": "\f511", - "reception-2": "\f512", - "reception-3": "\f513", - "reception-4": "\f514", - "record-btn-fill": "\f515", - "record-btn": "\f516", - "record-circle-fill": "\f517", - "record-circle": "\f518", - "record-fill": "\f519", - "record": "\f51a", - "record2-fill": "\f51b", - "record2": "\f51c", - "reply-all-fill": "\f51d", - "reply-all": "\f51e", - "reply-fill": "\f51f", - "reply": "\f520", - "rss-fill": "\f521", - "rss": "\f522", - "rulers": "\f523", - "save-fill": "\f524", - "save": "\f525", - "save2-fill": "\f526", - "save2": "\f527", - "scissors": "\f528", - "screwdriver": "\f529", - "search": "\f52a", - "segmented-nav": "\f52b", - "server": "\f52c", - "share-fill": "\f52d", - "share": "\f52e", - "shield-check": "\f52f", - "shield-exclamation": "\f530", - "shield-fill-check": "\f531", - "shield-fill-exclamation": "\f532", - "shield-fill-minus": "\f533", - "shield-fill-plus": "\f534", - "shield-fill-x": "\f535", - "shield-fill": "\f536", - "shield-lock-fill": "\f537", - "shield-lock": "\f538", - "shield-minus": "\f539", - "shield-plus": "\f53a", - "shield-shaded": "\f53b", - "shield-slash-fill": "\f53c", - "shield-slash": "\f53d", - "shield-x": "\f53e", - "shield": "\f53f", - "shift-fill": "\f540", - "shift": "\f541", - "shop-window": "\f542", - "shop": "\f543", - "shuffle": "\f544", - "signpost-2-fill": "\f545", - "signpost-2": "\f546", - "signpost-fill": "\f547", - "signpost-split-fill": "\f548", - "signpost-split": "\f549", - "signpost": "\f54a", - "sim-fill": "\f54b", - "sim": "\f54c", - "skip-backward-btn-fill": "\f54d", - "skip-backward-btn": "\f54e", - "skip-backward-circle-fill": "\f54f", - "skip-backward-circle": "\f550", - "skip-backward-fill": "\f551", - "skip-backward": "\f552", - "skip-end-btn-fill": "\f553", - "skip-end-btn": "\f554", - "skip-end-circle-fill": "\f555", - "skip-end-circle": "\f556", - "skip-end-fill": "\f557", - "skip-end": "\f558", - "skip-forward-btn-fill": "\f559", - "skip-forward-btn": "\f55a", - "skip-forward-circle-fill": "\f55b", - "skip-forward-circle": "\f55c", - "skip-forward-fill": "\f55d", - "skip-forward": "\f55e", - "skip-start-btn-fill": "\f55f", - "skip-start-btn": "\f560", - "skip-start-circle-fill": "\f561", - "skip-start-circle": "\f562", - "skip-start-fill": "\f563", - "skip-start": "\f564", - "slack": "\f565", - "slash-circle-fill": "\f566", - "slash-circle": "\f567", - "slash-square-fill": "\f568", - "slash-square": "\f569", - "slash": "\f56a", - "sliders": "\f56b", - "smartwatch": "\f56c", - "snow": "\f56d", - "snow2": "\f56e", - "snow3": "\f56f", - "sort-alpha-down-alt": "\f570", - "sort-alpha-down": "\f571", - "sort-alpha-up-alt": "\f572", - "sort-alpha-up": "\f573", - "sort-down-alt": "\f574", - "sort-down": "\f575", - "sort-numeric-down-alt": "\f576", - "sort-numeric-down": "\f577", - "sort-numeric-up-alt": "\f578", - "sort-numeric-up": "\f579", - "sort-up-alt": "\f57a", - "sort-up": "\f57b", - "soundwave": "\f57c", - "speaker-fill": "\f57d", - "speaker": "\f57e", - "speedometer": "\f57f", - "speedometer2": "\f580", - "spellcheck": "\f581", - "square-fill": "\f582", - "square-half": "\f583", - "square": "\f584", - "stack": "\f585", - "star-fill": "\f586", - "star-half": "\f587", - "star": "\f588", - "stars": "\f589", - "stickies-fill": "\f58a", - "stickies": "\f58b", - "sticky-fill": "\f58c", - "sticky": "\f58d", - "stop-btn-fill": "\f58e", - "stop-btn": "\f58f", - "stop-circle-fill": "\f590", - "stop-circle": "\f591", - "stop-fill": "\f592", - "stop": "\f593", - "stoplights-fill": "\f594", - "stoplights": "\f595", - "stopwatch-fill": "\f596", - "stopwatch": "\f597", - "subtract": "\f598", - "suit-club-fill": "\f599", - "suit-club": "\f59a", - "suit-diamond-fill": "\f59b", - "suit-diamond": "\f59c", - "suit-heart-fill": "\f59d", - "suit-heart": "\f59e", - "suit-spade-fill": "\f59f", - "suit-spade": "\f5a0", - "sun-fill": "\f5a1", - "sun": "\f5a2", - "sunglasses": "\f5a3", - "sunrise-fill": "\f5a4", - "sunrise": "\f5a5", - "sunset-fill": "\f5a6", - "sunset": "\f5a7", - "symmetry-horizontal": "\f5a8", - "symmetry-vertical": "\f5a9", - "table": "\f5aa", - "tablet-fill": "\f5ab", - "tablet-landscape-fill": "\f5ac", - "tablet-landscape": "\f5ad", - "tablet": "\f5ae", - "tag-fill": "\f5af", - "tag": "\f5b0", - "tags-fill": "\f5b1", - "tags": "\f5b2", - "telegram": "\f5b3", - "telephone-fill": "\f5b4", - "telephone-forward-fill": "\f5b5", - "telephone-forward": "\f5b6", - "telephone-inbound-fill": "\f5b7", - "telephone-inbound": "\f5b8", - "telephone-minus-fill": "\f5b9", - "telephone-minus": "\f5ba", - "telephone-outbound-fill": "\f5bb", - "telephone-outbound": "\f5bc", - "telephone-plus-fill": "\f5bd", - "telephone-plus": "\f5be", - "telephone-x-fill": "\f5bf", - "telephone-x": "\f5c0", - "telephone": "\f5c1", - "terminal-fill": "\f5c2", - "terminal": "\f5c3", - "text-center": "\f5c4", - "text-indent-left": "\f5c5", - "text-indent-right": "\f5c6", - "text-left": "\f5c7", - "text-paragraph": "\f5c8", - "text-right": "\f5c9", - "textarea-resize": "\f5ca", - "textarea-t": "\f5cb", - "textarea": "\f5cc", - "thermometer-half": "\f5cd", - "thermometer-high": "\f5ce", - "thermometer-low": "\f5cf", - "thermometer-snow": "\f5d0", - "thermometer-sun": "\f5d1", - "thermometer": "\f5d2", - "three-dots-vertical": "\f5d3", - "three-dots": "\f5d4", - "toggle-off": "\f5d5", - "toggle-on": "\f5d6", - "toggle2-off": "\f5d7", - "toggle2-on": "\f5d8", - "toggles": "\f5d9", - "toggles2": "\f5da", - "tools": "\f5db", - "tornado": "\f5dc", - "trash-fill": "\f5dd", - "trash": "\f5de", - "trash2-fill": "\f5df", - "trash2": "\f5e0", - "tree-fill": "\f5e1", - "tree": "\f5e2", - "triangle-fill": "\f5e3", - "triangle-half": "\f5e4", - "triangle": "\f5e5", - "trophy-fill": "\f5e6", - "trophy": "\f5e7", - "tropical-storm": "\f5e8", - "truck-flatbed": "\f5e9", - "truck": "\f5ea", - "tsunami": "\f5eb", - "tv-fill": "\f5ec", - "tv": "\f5ed", - "twitch": "\f5ee", - "twitter": "\f5ef", - "type-bold": "\f5f0", - "type-h1": "\f5f1", - "type-h2": "\f5f2", - "type-h3": "\f5f3", - "type-italic": "\f5f4", - "type-strikethrough": "\f5f5", - "type-underline": "\f5f6", - "type": "\f5f7", - "ui-checks-grid": "\f5f8", - "ui-checks": "\f5f9", - "ui-radios-grid": "\f5fa", - "ui-radios": "\f5fb", - "umbrella-fill": "\f5fc", - "umbrella": "\f5fd", - "union": "\f5fe", - "unlock-fill": "\f5ff", - "unlock": "\f600", - "upc-scan": "\f601", - "upc": "\f602", - "upload": "\f603", - "vector-pen": "\f604", - "view-list": "\f605", - "view-stacked": "\f606", - "vinyl-fill": "\f607", - "vinyl": "\f608", - "voicemail": "\f609", - "volume-down-fill": "\f60a", - "volume-down": "\f60b", - "volume-mute-fill": "\f60c", - "volume-mute": "\f60d", - "volume-off-fill": "\f60e", - "volume-off": "\f60f", - "volume-up-fill": "\f610", - "volume-up": "\f611", - "vr": "\f612", - "wallet-fill": "\f613", - "wallet": "\f614", - "wallet2": "\f615", - "watch": "\f616", - "water": "\f617", - "whatsapp": "\f618", - "wifi-1": "\f619", - "wifi-2": "\f61a", - "wifi-off": "\f61b", - "wifi": "\f61c", - "wind": "\f61d", - "window-dock": "\f61e", - "window-sidebar": "\f61f", - "window": "\f620", - "wrench": "\f621", - "x-circle-fill": "\f622", - "x-circle": "\f623", - "x-diamond-fill": "\f624", - "x-diamond": "\f625", - "x-octagon-fill": "\f626", - "x-octagon": "\f627", - "x-square-fill": "\f628", - "x-square": "\f629", - "x": "\f62a", - "youtube": "\f62b", - "zoom-in": "\f62c", - "zoom-out": "\f62d", - "bank": "\f62e", - "bank2": "\f62f", - "bell-slash-fill": "\f630", - "bell-slash": "\f631", - "cash-coin": "\f632", - "check-lg": "\f633", - "coin": "\f634", - "currency-bitcoin": "\f635", - "currency-dollar": "\f636", - "currency-euro": "\f637", - "currency-exchange": "\f638", - "currency-pound": "\f639", - "currency-yen": "\f63a", - "dash-lg": "\f63b", - "exclamation-lg": "\f63c", - "file-earmark-pdf-fill": "\f63d", - "file-earmark-pdf": "\f63e", - "file-pdf-fill": "\f63f", - "file-pdf": "\f640", - "gender-ambiguous": "\f641", - "gender-female": "\f642", - "gender-male": "\f643", - "gender-trans": "\f644", - "headset-vr": "\f645", - "info-lg": "\f646", - "mastodon": "\f647", - "messenger": "\f648", - "piggy-bank-fill": "\f649", - "piggy-bank": "\f64a", - "pin-map-fill": "\f64b", - "pin-map": "\f64c", - "plus-lg": "\f64d", - "question-lg": "\f64e", - "recycle": "\f64f", - "reddit": "\f650", - "safe-fill": "\f651", - "safe2-fill": "\f652", - "safe2": "\f653", - "sd-card-fill": "\f654", - "sd-card": "\f655", - "skype": "\f656", - "slash-lg": "\f657", - "translate": "\f658", - "x-lg": "\f659", - "safe": "\f65a", - "apple": "\f65b", - "microsoft": "\f65d", - "windows": "\f65e", - "behance": "\f65c", - "dribbble": "\f65f", - "line": "\f660", - "medium": "\f661", - "paypal": "\f662", - "pinterest": "\f663", - "signal": "\f664", - "snapchat": "\f665", - "spotify": "\f666", - "stack-overflow": "\f667", - "strava": "\f668", - "wordpress": "\f669", - "vimeo": "\f66a", - "activity": "\f66b", - "easel2-fill": "\f66c", - "easel2": "\f66d", - "easel3-fill": "\f66e", - "easel3": "\f66f", - "fan": "\f670", - "fingerprint": "\f671", - "graph-down-arrow": "\f672", - "graph-up-arrow": "\f673", - "hypnotize": "\f674", - "magic": "\f675", - "person-rolodex": "\f676", - "person-video": "\f677", - "person-video2": "\f678", - "person-video3": "\f679", - "person-workspace": "\f67a", - "radioactive": "\f67b", - "webcam-fill": "\f67c", - "webcam": "\f67d", - "yin-yang": "\f67e", - "bandaid-fill": "\f680", - "bandaid": "\f681", - "bluetooth": "\f682", - "body-text": "\f683", - "boombox": "\f684", - "boxes": "\f685", - "dpad-fill": "\f686", - "dpad": "\f687", - "ear-fill": "\f688", - "ear": "\f689", - "envelope-check-fill": "\f68b", - "envelope-check": "\f68c", - "envelope-dash-fill": "\f68e", - "envelope-dash": "\f68f", - "envelope-exclamation-fill": "\f691", - "envelope-exclamation": "\f692", - "envelope-plus-fill": "\f693", - "envelope-plus": "\f694", - "envelope-slash-fill": "\f696", - "envelope-slash": "\f697", - "envelope-x-fill": "\f699", - "envelope-x": "\f69a", - "explicit-fill": "\f69b", - "explicit": "\f69c", - "git": "\f69d", - "infinity": "\f69e", - "list-columns-reverse": "\f69f", - "list-columns": "\f6a0", - "meta": "\f6a1", - "nintendo-switch": "\f6a4", - "pc-display-horizontal": "\f6a5", - "pc-display": "\f6a6", - "pc-horizontal": "\f6a7", - "pc": "\f6a8", - "playstation": "\f6a9", - "plus-slash-minus": "\f6aa", - "projector-fill": "\f6ab", - "projector": "\f6ac", - "qr-code-scan": "\f6ad", - "qr-code": "\f6ae", - "quora": "\f6af", - "quote": "\f6b0", - "robot": "\f6b1", - "send-check-fill": "\f6b2", - "send-check": "\f6b3", - "send-dash-fill": "\f6b4", - "send-dash": "\f6b5", - "send-exclamation-fill": "\f6b7", - "send-exclamation": "\f6b8", - "send-fill": "\f6b9", - "send-plus-fill": "\f6ba", - "send-plus": "\f6bb", - "send-slash-fill": "\f6bc", - "send-slash": "\f6bd", - "send-x-fill": "\f6be", - "send-x": "\f6bf", - "send": "\f6c0", - "steam": "\f6c1", - "terminal-dash": "\f6c3", - "terminal-plus": "\f6c4", - "terminal-split": "\f6c5", - "ticket-detailed-fill": "\f6c6", - "ticket-detailed": "\f6c7", - "ticket-fill": "\f6c8", - "ticket-perforated-fill": "\f6c9", - "ticket-perforated": "\f6ca", - "ticket": "\f6cb", - "tiktok": "\f6cc", - "window-dash": "\f6cd", - "window-desktop": "\f6ce", - "window-fullscreen": "\f6cf", - "window-plus": "\f6d0", - "window-split": "\f6d1", - "window-stack": "\f6d2", - "window-x": "\f6d3", - "xbox": "\f6d4", - "ethernet": "\f6d5", - "hdmi-fill": "\f6d6", - "hdmi": "\f6d7", - "usb-c-fill": "\f6d8", - "usb-c": "\f6d9", - "usb-fill": "\f6da", - "usb-plug-fill": "\f6db", - "usb-plug": "\f6dc", - "usb-symbol": "\f6dd", - "usb": "\f6de", - "boombox-fill": "\f6df", - "displayport": "\f6e1", - "gpu-card": "\f6e2", - "memory": "\f6e3", - "modem-fill": "\f6e4", - "modem": "\f6e5", - "motherboard-fill": "\f6e6", - "motherboard": "\f6e7", - "optical-audio-fill": "\f6e8", - "optical-audio": "\f6e9", - "pci-card": "\f6ea", - "router-fill": "\f6eb", - "router": "\f6ec", - "thunderbolt-fill": "\f6ef", - "thunderbolt": "\f6f0", - "usb-drive-fill": "\f6f1", - "usb-drive": "\f6f2", - "usb-micro-fill": "\f6f3", - "usb-micro": "\f6f4", - "usb-mini-fill": "\f6f5", - "usb-mini": "\f6f6", - "cloud-haze2": "\f6f7", - "device-hdd-fill": "\f6f8", - "device-hdd": "\f6f9", - "device-ssd-fill": "\f6fa", - "device-ssd": "\f6fb", - "displayport-fill": "\f6fc", - "mortarboard-fill": "\f6fd", - "mortarboard": "\f6fe", - "terminal-x": "\f6ff", - "arrow-through-heart-fill": "\f700", - "arrow-through-heart": "\f701", - "badge-sd-fill": "\f702", - "badge-sd": "\f703", - "bag-heart-fill": "\f704", - "bag-heart": "\f705", - "balloon-fill": "\f706", - "balloon-heart-fill": "\f707", - "balloon-heart": "\f708", - "balloon": "\f709", - "box2-fill": "\f70a", - "box2-heart-fill": "\f70b", - "box2-heart": "\f70c", - "box2": "\f70d", - "braces-asterisk": "\f70e", - "calendar-heart-fill": "\f70f", - "calendar-heart": "\f710", - "calendar2-heart-fill": "\f711", - "calendar2-heart": "\f712", - "chat-heart-fill": "\f713", - "chat-heart": "\f714", - "chat-left-heart-fill": "\f715", - "chat-left-heart": "\f716", - "chat-right-heart-fill": "\f717", - "chat-right-heart": "\f718", - "chat-square-heart-fill": "\f719", - "chat-square-heart": "\f71a", - "clipboard-check-fill": "\f71b", - "clipboard-data-fill": "\f71c", - "clipboard-fill": "\f71d", - "clipboard-heart-fill": "\f71e", - "clipboard-heart": "\f71f", - "clipboard-minus-fill": "\f720", - "clipboard-plus-fill": "\f721", - "clipboard-pulse": "\f722", - "clipboard-x-fill": "\f723", - "clipboard2-check-fill": "\f724", - "clipboard2-check": "\f725", - "clipboard2-data-fill": "\f726", - "clipboard2-data": "\f727", - "clipboard2-fill": "\f728", - "clipboard2-heart-fill": "\f729", - "clipboard2-heart": "\f72a", - "clipboard2-minus-fill": "\f72b", - "clipboard2-minus": "\f72c", - "clipboard2-plus-fill": "\f72d", - "clipboard2-plus": "\f72e", - "clipboard2-pulse-fill": "\f72f", - "clipboard2-pulse": "\f730", - "clipboard2-x-fill": "\f731", - "clipboard2-x": "\f732", - "clipboard2": "\f733", - "emoji-kiss-fill": "\f734", - "emoji-kiss": "\f735", - "envelope-heart-fill": "\f736", - "envelope-heart": "\f737", - "envelope-open-heart-fill": "\f738", - "envelope-open-heart": "\f739", - "envelope-paper-fill": "\f73a", - "envelope-paper-heart-fill": "\f73b", - "envelope-paper-heart": "\f73c", - "envelope-paper": "\f73d", - "filetype-aac": "\f73e", - "filetype-ai": "\f73f", - "filetype-bmp": "\f740", - "filetype-cs": "\f741", - "filetype-css": "\f742", - "filetype-csv": "\f743", - "filetype-doc": "\f744", - "filetype-docx": "\f745", - "filetype-exe": "\f746", - "filetype-gif": "\f747", - "filetype-heic": "\f748", - "filetype-html": "\f749", - "filetype-java": "\f74a", - "filetype-jpg": "\f74b", - "filetype-js": "\f74c", - "filetype-jsx": "\f74d", - "filetype-key": "\f74e", - "filetype-m4p": "\f74f", - "filetype-md": "\f750", - "filetype-mdx": "\f751", - "filetype-mov": "\f752", - "filetype-mp3": "\f753", - "filetype-mp4": "\f754", - "filetype-otf": "\f755", - "filetype-pdf": "\f756", - "filetype-php": "\f757", - "filetype-png": "\f758", - "filetype-ppt": "\f75a", - "filetype-psd": "\f75b", - "filetype-py": "\f75c", - "filetype-raw": "\f75d", - "filetype-rb": "\f75e", - "filetype-sass": "\f75f", - "filetype-scss": "\f760", - "filetype-sh": "\f761", - "filetype-svg": "\f762", - "filetype-tiff": "\f763", - "filetype-tsx": "\f764", - "filetype-ttf": "\f765", - "filetype-txt": "\f766", - "filetype-wav": "\f767", - "filetype-woff": "\f768", - "filetype-xls": "\f76a", - "filetype-xml": "\f76b", - "filetype-yml": "\f76c", - "heart-arrow": "\f76d", - "heart-pulse-fill": "\f76e", - "heart-pulse": "\f76f", - "heartbreak-fill": "\f770", - "heartbreak": "\f771", - "hearts": "\f772", - "hospital-fill": "\f773", - "hospital": "\f774", - "house-heart-fill": "\f775", - "house-heart": "\f776", - "incognito": "\f777", - "magnet-fill": "\f778", - "magnet": "\f779", - "person-heart": "\f77a", - "person-hearts": "\f77b", - "phone-flip": "\f77c", - "plugin": "\f77d", - "postage-fill": "\f77e", - "postage-heart-fill": "\f77f", - "postage-heart": "\f780", - "postage": "\f781", - "postcard-fill": "\f782", - "postcard-heart-fill": "\f783", - "postcard-heart": "\f784", - "postcard": "\f785", - "search-heart-fill": "\f786", - "search-heart": "\f787", - "sliders2-vertical": "\f788", - "sliders2": "\f789", - "trash3-fill": "\f78a", - "trash3": "\f78b", - "valentine": "\f78c", - "valentine2": "\f78d", - "wrench-adjustable-circle-fill": "\f78e", - "wrench-adjustable-circle": "\f78f", - "wrench-adjustable": "\f790", - "filetype-json": "\f791", - "filetype-pptx": "\f792", - "filetype-xlsx": "\f793", - "1-circle-fill": "\f796", - "1-circle": "\f797", - "1-square-fill": "\f798", - "1-square": "\f799", - "2-circle-fill": "\f79c", - "2-circle": "\f79d", - "2-square-fill": "\f79e", - "2-square": "\f79f", - "3-circle-fill": "\f7a2", - "3-circle": "\f7a3", - "3-square-fill": "\f7a4", - "3-square": "\f7a5", - "4-circle-fill": "\f7a8", - "4-circle": "\f7a9", - "4-square-fill": "\f7aa", - "4-square": "\f7ab", - "5-circle-fill": "\f7ae", - "5-circle": "\f7af", - "5-square-fill": "\f7b0", - "5-square": "\f7b1", - "6-circle-fill": "\f7b4", - "6-circle": "\f7b5", - "6-square-fill": "\f7b6", - "6-square": "\f7b7", - "7-circle-fill": "\f7ba", - "7-circle": "\f7bb", - "7-square-fill": "\f7bc", - "7-square": "\f7bd", - "8-circle-fill": "\f7c0", - "8-circle": "\f7c1", - "8-square-fill": "\f7c2", - "8-square": "\f7c3", - "9-circle-fill": "\f7c6", - "9-circle": "\f7c7", - "9-square-fill": "\f7c8", - "9-square": "\f7c9", - "airplane-engines-fill": "\f7ca", - "airplane-engines": "\f7cb", - "airplane-fill": "\f7cc", - "airplane": "\f7cd", - "alexa": "\f7ce", - "alipay": "\f7cf", - "android": "\f7d0", - "android2": "\f7d1", - "box-fill": "\f7d2", - "box-seam-fill": "\f7d3", - "browser-chrome": "\f7d4", - "browser-edge": "\f7d5", - "browser-firefox": "\f7d6", - "browser-safari": "\f7d7", - "c-circle-fill": "\f7da", - "c-circle": "\f7db", - "c-square-fill": "\f7dc", - "c-square": "\f7dd", - "capsule-pill": "\f7de", - "capsule": "\f7df", - "car-front-fill": "\f7e0", - "car-front": "\f7e1", - "cassette-fill": "\f7e2", - "cassette": "\f7e3", - "cc-circle-fill": "\f7e6", - "cc-circle": "\f7e7", - "cc-square-fill": "\f7e8", - "cc-square": "\f7e9", - "cup-hot-fill": "\f7ea", - "cup-hot": "\f7eb", - "currency-rupee": "\f7ec", - "dropbox": "\f7ed", - "escape": "\f7ee", - "fast-forward-btn-fill": "\f7ef", - "fast-forward-btn": "\f7f0", - "fast-forward-circle-fill": "\f7f1", - "fast-forward-circle": "\f7f2", - "fast-forward-fill": "\f7f3", - "fast-forward": "\f7f4", - "filetype-sql": "\f7f5", - "fire": "\f7f6", - "google-play": "\f7f7", - "h-circle-fill": "\f7fa", - "h-circle": "\f7fb", - "h-square-fill": "\f7fc", - "h-square": "\f7fd", - "indent": "\f7fe", - "lungs-fill": "\f7ff", - "lungs": "\f800", - "microsoft-teams": "\f801", - "p-circle-fill": "\f804", - "p-circle": "\f805", - "p-square-fill": "\f806", - "p-square": "\f807", - "pass-fill": "\f808", - "pass": "\f809", - "prescription": "\f80a", - "prescription2": "\f80b", - "r-circle-fill": "\f80e", - "r-circle": "\f80f", - "r-square-fill": "\f810", - "r-square": "\f811", - "repeat-1": "\f812", - "repeat": "\f813", - "rewind-btn-fill": "\f814", - "rewind-btn": "\f815", - "rewind-circle-fill": "\f816", - "rewind-circle": "\f817", - "rewind-fill": "\f818", - "rewind": "\f819", - "train-freight-front-fill": "\f81a", - "train-freight-front": "\f81b", - "train-front-fill": "\f81c", - "train-front": "\f81d", - "train-lightrail-front-fill": "\f81e", - "train-lightrail-front": "\f81f", - "truck-front-fill": "\f820", - "truck-front": "\f821", - "ubuntu": "\f822", - "unindent": "\f823", - "unity": "\f824", - "universal-access-circle": "\f825", - "universal-access": "\f826", - "virus": "\f827", - "virus2": "\f828", - "wechat": "\f829", - "yelp": "\f82a", - "sign-stop-fill": "\f82b", - "sign-stop-lights-fill": "\f82c", - "sign-stop-lights": "\f82d", - "sign-stop": "\f82e", - "sign-turn-left-fill": "\f82f", - "sign-turn-left": "\f830", - "sign-turn-right-fill": "\f831", - "sign-turn-right": "\f832", - "sign-turn-slight-left-fill": "\f833", - "sign-turn-slight-left": "\f834", - "sign-turn-slight-right-fill": "\f835", - "sign-turn-slight-right": "\f836", - "sign-yield-fill": "\f837", - "sign-yield": "\f838", - "ev-station-fill": "\f839", - "ev-station": "\f83a", - "fuel-pump-diesel-fill": "\f83b", - "fuel-pump-diesel": "\f83c", - "fuel-pump-fill": "\f83d", - "fuel-pump": "\f83e", - "0-circle-fill": "\f83f", - "0-circle": "\f840", - "0-square-fill": "\f841", - "0-square": "\f842", - "rocket-fill": "\f843", - "rocket-takeoff-fill": "\f844", - "rocket-takeoff": "\f845", - "rocket": "\f846", - "stripe": "\f847", - "subscript": "\f848", - "superscript": "\f849", - "trello": "\f84a", - "envelope-at-fill": "\f84b", - "envelope-at": "\f84c", - "regex": "\f84d", - "text-wrap": "\f84e", - "sign-dead-end-fill": "\f84f", - "sign-dead-end": "\f850", - "sign-do-not-enter-fill": "\f851", - "sign-do-not-enter": "\f852", - "sign-intersection-fill": "\f853", - "sign-intersection-side-fill": "\f854", - "sign-intersection-side": "\f855", - "sign-intersection-t-fill": "\f856", - "sign-intersection-t": "\f857", - "sign-intersection-y-fill": "\f858", - "sign-intersection-y": "\f859", - "sign-intersection": "\f85a", - "sign-merge-left-fill": "\f85b", - "sign-merge-left": "\f85c", - "sign-merge-right-fill": "\f85d", - "sign-merge-right": "\f85e", - "sign-no-left-turn-fill": "\f85f", - "sign-no-left-turn": "\f860", - "sign-no-parking-fill": "\f861", - "sign-no-parking": "\f862", - "sign-no-right-turn-fill": "\f863", - "sign-no-right-turn": "\f864", - "sign-railroad-fill": "\f865", - "sign-railroad": "\f866", - "building-add": "\f867", - "building-check": "\f868", - "building-dash": "\f869", - "building-down": "\f86a", - "building-exclamation": "\f86b", - "building-fill-add": "\f86c", - "building-fill-check": "\f86d", - "building-fill-dash": "\f86e", - "building-fill-down": "\f86f", - "building-fill-exclamation": "\f870", - "building-fill-gear": "\f871", - "building-fill-lock": "\f872", - "building-fill-slash": "\f873", - "building-fill-up": "\f874", - "building-fill-x": "\f875", - "building-fill": "\f876", - "building-gear": "\f877", - "building-lock": "\f878", - "building-slash": "\f879", - "building-up": "\f87a", - "building-x": "\f87b", - "buildings-fill": "\f87c", - "buildings": "\f87d", - "bus-front-fill": "\f87e", - "bus-front": "\f87f", - "ev-front-fill": "\f880", - "ev-front": "\f881", - "globe-americas": "\f882", - "globe-asia-australia": "\f883", - "globe-central-south-asia": "\f884", - "globe-europe-africa": "\f885", - "house-add-fill": "\f886", - "house-add": "\f887", - "house-check-fill": "\f888", - "house-check": "\f889", - "house-dash-fill": "\f88a", - "house-dash": "\f88b", - "house-down-fill": "\f88c", - "house-down": "\f88d", - "house-exclamation-fill": "\f88e", - "house-exclamation": "\f88f", - "house-gear-fill": "\f890", - "house-gear": "\f891", - "house-lock-fill": "\f892", - "house-lock": "\f893", - "house-slash-fill": "\f894", - "house-slash": "\f895", - "house-up-fill": "\f896", - "house-up": "\f897", - "house-x-fill": "\f898", - "house-x": "\f899", - "person-add": "\f89a", - "person-down": "\f89b", - "person-exclamation": "\f89c", - "person-fill-add": "\f89d", - "person-fill-check": "\f89e", - "person-fill-dash": "\f89f", - "person-fill-down": "\f8a0", - "person-fill-exclamation": "\f8a1", - "person-fill-gear": "\f8a2", - "person-fill-lock": "\f8a3", - "person-fill-slash": "\f8a4", - "person-fill-up": "\f8a5", - "person-fill-x": "\f8a6", - "person-gear": "\f8a7", - "person-lock": "\f8a8", - "person-slash": "\f8a9", - "person-up": "\f8aa", - "scooter": "\f8ab", - "taxi-front-fill": "\f8ac", - "taxi-front": "\f8ad", - "amd": "\f8ae", - "database-add": "\f8af", - "database-check": "\f8b0", - "database-dash": "\f8b1", - "database-down": "\f8b2", - "database-exclamation": "\f8b3", - "database-fill-add": "\f8b4", - "database-fill-check": "\f8b5", - "database-fill-dash": "\f8b6", - "database-fill-down": "\f8b7", - "database-fill-exclamation": "\f8b8", - "database-fill-gear": "\f8b9", - "database-fill-lock": "\f8ba", - "database-fill-slash": "\f8bb", - "database-fill-up": "\f8bc", - "database-fill-x": "\f8bd", - "database-fill": "\f8be", - "database-gear": "\f8bf", - "database-lock": "\f8c0", - "database-slash": "\f8c1", - "database-up": "\f8c2", - "database-x": "\f8c3", - "database": "\f8c4", - "houses-fill": "\f8c5", - "houses": "\f8c6", - "nvidia": "\f8c7", - "person-vcard-fill": "\f8c8", - "person-vcard": "\f8c9", - "sina-weibo": "\f8ca", - "tencent-qq": "\f8cb", - "wikipedia": "\f8cc", - "alphabet-uppercase": "\f2a5", - "alphabet": "\f68a", - "amazon": "\f68d", - "arrows-collapse-vertical": "\f690", - "arrows-expand-vertical": "\f695", - "arrows-vertical": "\f698", - "arrows": "\f6a2", - "ban-fill": "\f6a3", - "ban": "\f6b6", - "bing": "\f6c2", - "cake": "\f6e0", - "cake2": "\f6ed", - "cookie": "\f6ee", - "copy": "\f759", - "crosshair": "\f769", - "crosshair2": "\f794", - "emoji-astonished-fill": "\f795", - "emoji-astonished": "\f79a", - "emoji-grimace-fill": "\f79b", - "emoji-grimace": "\f7a0", - "emoji-grin-fill": "\f7a1", - "emoji-grin": "\f7a6", - "emoji-surprise-fill": "\f7a7", - "emoji-surprise": "\f7ac", - "emoji-tear-fill": "\f7ad", - "emoji-tear": "\f7b2", - "envelope-arrow-down-fill": "\f7b3", - "envelope-arrow-down": "\f7b8", - "envelope-arrow-up-fill": "\f7b9", - "envelope-arrow-up": "\f7be", - "feather": "\f7bf", - "feather2": "\f7c4", - "floppy-fill": "\f7c5", - "floppy": "\f7d8", - "floppy2-fill": "\f7d9", - "floppy2": "\f7e4", - "gitlab": "\f7e5", - "highlighter": "\f7f8", - "marker-tip": "\f802", - "nvme-fill": "\f803", - "nvme": "\f80c", - "opencollective": "\f80d", - "pci-card-network": "\f8cd", - "pci-card-sound": "\f8ce", - "radar": "\f8cf", - "send-arrow-down-fill": "\f8d0", - "send-arrow-down": "\f8d1", - "send-arrow-up-fill": "\f8d2", - "send-arrow-up": "\f8d3", - "sim-slash-fill": "\f8d4", - "sim-slash": "\f8d5", - "sourceforge": "\f8d6", - "substack": "\f8d7", - "threads-fill": "\f8d8", - "threads": "\f8d9", - "transparency": "\f8da", - "twitter-x": "\f8db", - "type-h4": "\f8dc", - "type-h5": "\f8dd", - "type-h6": "\f8de", - "backpack-fill": "\f8df", - "backpack": "\f8e0", - "backpack2-fill": "\f8e1", - "backpack2": "\f8e2", - "backpack3-fill": "\f8e3", - "backpack3": "\f8e4", - "backpack4-fill": "\f8e5", - "backpack4": "\f8e6", - "brilliance": "\f8e7", - "cake-fill": "\f8e8", - "cake2-fill": "\f8e9", - "duffle-fill": "\f8ea", - "duffle": "\f8eb", - "exposure": "\f8ec", - "gender-neuter": "\f8ed", - "highlights": "\f8ee", - "luggage-fill": "\f8ef", - "luggage": "\f8f0", - "mailbox-flag": "\f8f1", - "mailbox2-flag": "\f8f2", - "noise-reduction": "\f8f3", - "passport-fill": "\f8f4", - "passport": "\f8f5", - "person-arms-up": "\f8f6", - "person-raised-hand": "\f8f7", - "person-standing-dress": "\f8f8", - "person-standing": "\f8f9", - "person-walking": "\f8fa", - "person-wheelchair": "\f8fb", - "shadows": "\f8fc", - "suitcase-fill": "\f8fd", - "suitcase-lg-fill": "\f8fe", - "suitcase-lg": "\f8ff", - "suitcase": "\f900", - "suitcase2-fill": "\f901", - "suitcase2": "\f902", - "vignette": "\f903", -); - -@each $icon, $codepoint in $bootstrap-icons-map { - .bi-#{$icon}::before { content: $codepoint; } -} diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.svg b/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.svg deleted file mode 100644 index b169c23..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap-icons.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap-reboot.svg b/src/main/resources/static/assets/bootstrap-icons/bootstrap-reboot.svg deleted file mode 100644 index 4a184cf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap-reboot.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bootstrap.svg b/src/main/resources/static/assets/bootstrap-icons/bootstrap.svg deleted file mode 100644 index b6aed61..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bootstrap.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-all.svg b/src/main/resources/static/assets/bootstrap-icons/border-all.svg deleted file mode 100644 index 803f5e2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-all.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-bottom.svg b/src/main/resources/static/assets/bootstrap-icons/border-bottom.svg deleted file mode 100644 index dbc2192..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-bottom.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-center.svg b/src/main/resources/static/assets/bootstrap-icons/border-center.svg deleted file mode 100644 index 009b97d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-center.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-inner.svg b/src/main/resources/static/assets/bootstrap-icons/border-inner.svg deleted file mode 100644 index 2beaa0c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-inner.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-left.svg b/src/main/resources/static/assets/bootstrap-icons/border-left.svg deleted file mode 100644 index 69df882..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-middle.svg b/src/main/resources/static/assets/bootstrap-icons/border-middle.svg deleted file mode 100644 index 90296f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-middle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-outer.svg b/src/main/resources/static/assets/bootstrap-icons/border-outer.svg deleted file mode 100644 index 355e05e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-outer.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-right.svg b/src/main/resources/static/assets/bootstrap-icons/border-right.svg deleted file mode 100644 index b0c16da..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-style.svg b/src/main/resources/static/assets/bootstrap-icons/border-style.svg deleted file mode 100644 index d742b2c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-style.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-top.svg b/src/main/resources/static/assets/bootstrap-icons/border-top.svg deleted file mode 100644 index 5aab368..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-top.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border-width.svg b/src/main/resources/static/assets/bootstrap-icons/border-width.svg deleted file mode 100644 index 0cbd0e6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border-width.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/border.svg b/src/main/resources/static/assets/bootstrap-icons/border.svg deleted file mode 100644 index 0e8c9b5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/border.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bounding-box-circles.svg b/src/main/resources/static/assets/bootstrap-icons/bounding-box-circles.svg deleted file mode 100644 index 2e59f31..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bounding-box-circles.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bounding-box.svg b/src/main/resources/static/assets/bootstrap-icons/bounding-box.svg deleted file mode 100644 index d529292..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bounding-box.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-down-left.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-down-left.svg deleted file mode 100644 index 6ad3e17..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-down-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-down-right.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-down-right.svg deleted file mode 100644 index 321cddf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-down-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-down.svg deleted file mode 100644 index 9a2ca12..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-left.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-left.svg deleted file mode 100644 index 76a687a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-right.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-right.svg deleted file mode 100644 index 9237293..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down.svg deleted file mode 100644 index 90f9301..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-left.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-left.svg deleted file mode 100644 index a237daf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-right.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-right.svg deleted file mode 100644 index d158dae..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-left.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-left.svg deleted file mode 100644 index 6937f6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-right.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-right.svg deleted file mode 100644 index 8918611..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up.svg deleted file mode 100644 index e6a4a7b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-in-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-left.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-left.svg deleted file mode 100644 index 8602603..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-right.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-right.svg deleted file mode 100644 index 2c4e26c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-up-left.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-up-left.svg deleted file mode 100644 index 7fb0b45..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-up-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-up-right.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-up-right.svg deleted file mode 100644 index 1d93acb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-up-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/box-arrow-up.svg deleted file mode 100644 index beaf334..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-fill.svg b/src/main/resources/static/assets/bootstrap-icons/box-fill.svg deleted file mode 100644 index 8cf213f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-seam-fill.svg b/src/main/resources/static/assets/bootstrap-icons/box-seam-fill.svg deleted file mode 100644 index 97566ab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-seam-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box-seam.svg b/src/main/resources/static/assets/bootstrap-icons/box-seam.svg deleted file mode 100644 index e1506b8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box-seam.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box.svg b/src/main/resources/static/assets/bootstrap-icons/box.svg deleted file mode 100644 index 58cbe2c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/box2-fill.svg deleted file mode 100644 index 242ad6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box2-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/box2-heart-fill.svg deleted file mode 100644 index 810e2ee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box2-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box2-heart.svg b/src/main/resources/static/assets/bootstrap-icons/box2-heart.svg deleted file mode 100644 index 400eb43..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box2-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/box2.svg b/src/main/resources/static/assets/bootstrap-icons/box2.svg deleted file mode 100644 index 6020baf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/box2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/boxes.svg b/src/main/resources/static/assets/bootstrap-icons/boxes.svg deleted file mode 100644 index b53fac8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/boxes.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/braces-asterisk.svg b/src/main/resources/static/assets/bootstrap-icons/braces-asterisk.svg deleted file mode 100644 index 0a1a25b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/braces-asterisk.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/braces.svg b/src/main/resources/static/assets/bootstrap-icons/braces.svg deleted file mode 100644 index 3fed8c9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/braces.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bricks.svg b/src/main/resources/static/assets/bootstrap-icons/bricks.svg deleted file mode 100644 index 99e2886..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bricks.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/briefcase-fill.svg b/src/main/resources/static/assets/bootstrap-icons/briefcase-fill.svg deleted file mode 100644 index bc6150d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/briefcase-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/briefcase.svg b/src/main/resources/static/assets/bootstrap-icons/briefcase.svg deleted file mode 100644 index 95d13a2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/briefcase.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-high-fill.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-alt-high-fill.svg deleted file mode 100644 index 7660658..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-high-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-high.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-alt-high.svg deleted file mode 100644 index 88f5255..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-high.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-low-fill.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-alt-low-fill.svg deleted file mode 100644 index 1692df2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-low-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-low.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-alt-low.svg deleted file mode 100644 index 2d68fb0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-alt-low.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-high-fill.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-high-fill.svg deleted file mode 100644 index 8969e9b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-high-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-high.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-high.svg deleted file mode 100644 index 42b2c20..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-high.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-low-fill.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-low-fill.svg deleted file mode 100644 index 29a1c3b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-low-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brightness-low.svg b/src/main/resources/static/assets/bootstrap-icons/brightness-low.svg deleted file mode 100644 index fdd251d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brightness-low.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brilliance.svg b/src/main/resources/static/assets/bootstrap-icons/brilliance.svg deleted file mode 100644 index 06be60f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brilliance.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/broadcast-pin.svg b/src/main/resources/static/assets/bootstrap-icons/broadcast-pin.svg deleted file mode 100644 index 5576e0e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/broadcast-pin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/broadcast.svg b/src/main/resources/static/assets/bootstrap-icons/broadcast.svg deleted file mode 100644 index 776a237..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/broadcast.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/browser-chrome.svg b/src/main/resources/static/assets/bootstrap-icons/browser-chrome.svg deleted file mode 100644 index a34ab42..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/browser-chrome.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/browser-edge.svg b/src/main/resources/static/assets/bootstrap-icons/browser-edge.svg deleted file mode 100644 index c8191d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/browser-edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/browser-firefox.svg b/src/main/resources/static/assets/bootstrap-icons/browser-firefox.svg deleted file mode 100644 index 2bfdba7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/browser-firefox.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/browser-safari.svg b/src/main/resources/static/assets/bootstrap-icons/browser-safari.svg deleted file mode 100644 index b304b1b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/browser-safari.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brush-fill.svg b/src/main/resources/static/assets/bootstrap-icons/brush-fill.svg deleted file mode 100644 index 53ec4d6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brush-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/brush.svg b/src/main/resources/static/assets/bootstrap-icons/brush.svg deleted file mode 100644 index cc3429b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/brush.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bucket-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bucket-fill.svg deleted file mode 100644 index e14f4a8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bucket-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bucket.svg b/src/main/resources/static/assets/bootstrap-icons/bucket.svg deleted file mode 100644 index 4911ef2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bucket.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bug-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bug-fill.svg deleted file mode 100644 index bf16447..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bug-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bug.svg b/src/main/resources/static/assets/bootstrap-icons/bug.svg deleted file mode 100644 index a97ffa1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bug.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-add.svg b/src/main/resources/static/assets/bootstrap-icons/building-add.svg deleted file mode 100644 index d5016d4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-add.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-check.svg b/src/main/resources/static/assets/bootstrap-icons/building-check.svg deleted file mode 100644 index 151712d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-dash.svg b/src/main/resources/static/assets/bootstrap-icons/building-dash.svg deleted file mode 100644 index df489c8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-dash.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-down.svg b/src/main/resources/static/assets/bootstrap-icons/building-down.svg deleted file mode 100644 index 2493f51..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/building-exclamation.svg deleted file mode 100644 index f2d8f62..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-add.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-add.svg deleted file mode 100644 index 2019e92..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-check.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-check.svg deleted file mode 100644 index 50485c6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-dash.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-dash.svg deleted file mode 100644 index 67107eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-down.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-down.svg deleted file mode 100644 index b072754..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-exclamation.svg deleted file mode 100644 index 6ca39dc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-gear.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-gear.svg deleted file mode 100644 index 95d6126..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-lock.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-lock.svg deleted file mode 100644 index ddd8e6c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-slash.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-slash.svg deleted file mode 100644 index 7e30330..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-up.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-up.svg deleted file mode 100644 index ef87446..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill-x.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill-x.svg deleted file mode 100644 index 0311537..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-fill.svg b/src/main/resources/static/assets/bootstrap-icons/building-fill.svg deleted file mode 100644 index fa95d1f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-gear.svg b/src/main/resources/static/assets/bootstrap-icons/building-gear.svg deleted file mode 100644 index 698a746..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-lock.svg b/src/main/resources/static/assets/bootstrap-icons/building-lock.svg deleted file mode 100644 index f4da96c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-slash.svg b/src/main/resources/static/assets/bootstrap-icons/building-slash.svg deleted file mode 100644 index 9920301..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-slash.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-up.svg b/src/main/resources/static/assets/bootstrap-icons/building-up.svg deleted file mode 100644 index b2b0433..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building-x.svg b/src/main/resources/static/assets/bootstrap-icons/building-x.svg deleted file mode 100644 index 81bff0f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/building.svg b/src/main/resources/static/assets/bootstrap-icons/building.svg deleted file mode 100644 index 2555f8f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/building.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/buildings-fill.svg b/src/main/resources/static/assets/bootstrap-icons/buildings-fill.svg deleted file mode 100644 index 3799c1d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/buildings-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/buildings.svg b/src/main/resources/static/assets/bootstrap-icons/buildings.svg deleted file mode 100644 index b842c0c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/buildings.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bullseye.svg b/src/main/resources/static/assets/bootstrap-icons/bullseye.svg deleted file mode 100644 index 85a807c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bullseye.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bus-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/bus-front-fill.svg deleted file mode 100644 index c71376d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bus-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/bus-front.svg b/src/main/resources/static/assets/bootstrap-icons/bus-front.svg deleted file mode 100644 index bdf6b61..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/bus-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/c-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/c-circle-fill.svg deleted file mode 100644 index 0b4adad..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/c-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/c-circle.svg b/src/main/resources/static/assets/bootstrap-icons/c-circle.svg deleted file mode 100644 index 3e4e268..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/c-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/c-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/c-square-fill.svg deleted file mode 100644 index 0b24f73..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/c-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/c-square.svg b/src/main/resources/static/assets/bootstrap-icons/c-square.svg deleted file mode 100644 index 822ae02..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/c-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cake-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cake-fill.svg deleted file mode 100644 index 4a8b837..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cake-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cake.svg b/src/main/resources/static/assets/bootstrap-icons/cake.svg deleted file mode 100644 index 2a2f165..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cake.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cake2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cake2-fill.svg deleted file mode 100644 index 0b2e8ee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cake2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cake2.svg b/src/main/resources/static/assets/bootstrap-icons/cake2.svg deleted file mode 100644 index a3b969c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cake2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calculator-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calculator-fill.svg deleted file mode 100644 index c4ee270..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calculator-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calculator.svg b/src/main/resources/static/assets/bootstrap-icons/calculator.svg deleted file mode 100644 index be8e11a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calculator.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-check-fill.svg deleted file mode 100644 index 76afaa2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-check.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-check.svg deleted file mode 100644 index 125b358..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-date-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-date-fill.svg deleted file mode 100644 index 37e9cb5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-date-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-date.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-date.svg deleted file mode 100644 index 7c53231..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-date.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-day-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-day-fill.svg deleted file mode 100644 index 7f1c3c1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-day-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-day.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-day.svg deleted file mode 100644 index f043369..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-day.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-event-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-event-fill.svg deleted file mode 100644 index 844dd15..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-event-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-event.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-event.svg deleted file mode 100644 index 41c0ef9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-event.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-fill.svg deleted file mode 100644 index 0cdeb35..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-heart-fill.svg deleted file mode 100644 index bed00d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-heart.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-heart.svg deleted file mode 100644 index 2fe7c13..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-minus-fill.svg deleted file mode 100644 index f23e648..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-minus.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-minus.svg deleted file mode 100644 index 8f970ac..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-month-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-month-fill.svg deleted file mode 100644 index 9123437..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-month-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-month.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-month.svg deleted file mode 100644 index ad6a330..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-month.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-plus-fill.svg deleted file mode 100644 index 3928c63..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-plus.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-plus.svg deleted file mode 100644 index 70746db..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-range-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-range-fill.svg deleted file mode 100644 index 41bb2a2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-range-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-range.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-range.svg deleted file mode 100644 index 934a45c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-week-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-week-fill.svg deleted file mode 100644 index 00930aa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-week-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-week.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-week.svg deleted file mode 100644 index 06d6995..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-x-fill.svg deleted file mode 100644 index 01be301..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar-x.svg b/src/main/resources/static/assets/bootstrap-icons/calendar-x.svg deleted file mode 100644 index faf46e1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar.svg b/src/main/resources/static/assets/bootstrap-icons/calendar.svg deleted file mode 100644 index c8590dd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-check-fill.svg deleted file mode 100644 index f49354e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-check.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-check.svg deleted file mode 100644 index f826056..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-date-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-date-fill.svg deleted file mode 100644 index ac005e0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-date-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-date.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-date.svg deleted file mode 100644 index 2dd64e8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-date.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-day-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-day-fill.svg deleted file mode 100644 index 2ab1b21..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-day-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-day.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-day.svg deleted file mode 100644 index d4d4856..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-day.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-event-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-event-fill.svg deleted file mode 100644 index 5bdbc27..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-event-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-event.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-event.svg deleted file mode 100644 index 8c1c7cd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-event.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-fill.svg deleted file mode 100644 index 4b81563..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-heart-fill.svg deleted file mode 100644 index a1782e3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-heart.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-heart.svg deleted file mode 100644 index 6d66981..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-minus-fill.svg deleted file mode 100644 index af87213..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-minus.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-minus.svg deleted file mode 100644 index eff8110..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-month-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-month-fill.svg deleted file mode 100644 index 58deabc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-month-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-month.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-month.svg deleted file mode 100644 index 88c922e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-month.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-plus-fill.svg deleted file mode 100644 index 8b41682..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-plus.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-plus.svg deleted file mode 100644 index 7ec7d49..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-range-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-range-fill.svg deleted file mode 100644 index 39ba322..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-range-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-range.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-range.svg deleted file mode 100644 index 4a8d9ad..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-week-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-week-fill.svg deleted file mode 100644 index 8303779..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-week-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-week.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-week.svg deleted file mode 100644 index 835ce06..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-x-fill.svg deleted file mode 100644 index 2157939..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2-x.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2-x.svg deleted file mode 100644 index e7cc339..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar2.svg b/src/main/resources/static/assets/bootstrap-icons/calendar2.svg deleted file mode 100644 index db2e06d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3-event-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3-event-fill.svg deleted file mode 100644 index c494090..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3-event-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3-event.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3-event.svg deleted file mode 100644 index 681ce4d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3-event.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3-fill.svg deleted file mode 100644 index e37c234..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3-range-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3-range-fill.svg deleted file mode 100644 index 00875b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3-range-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3-range.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3-range.svg deleted file mode 100644 index a452516..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3-week-fill.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3-week-fill.svg deleted file mode 100644 index 53e5bc7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3-week-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3-week.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3-week.svg deleted file mode 100644 index e9a768c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar3.svg b/src/main/resources/static/assets/bootstrap-icons/calendar3.svg deleted file mode 100644 index eb3c5f2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar3.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar4-event.svg b/src/main/resources/static/assets/bootstrap-icons/calendar4-event.svg deleted file mode 100644 index 51d40e8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar4-event.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar4-range.svg b/src/main/resources/static/assets/bootstrap-icons/calendar4-range.svg deleted file mode 100644 index 129d7c1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar4-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar4-week.svg b/src/main/resources/static/assets/bootstrap-icons/calendar4-week.svg deleted file mode 100644 index 5644238..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar4-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/calendar4.svg b/src/main/resources/static/assets/bootstrap-icons/calendar4.svg deleted file mode 100644 index 1c62685..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/calendar4.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera-fill.svg b/src/main/resources/static/assets/bootstrap-icons/camera-fill.svg deleted file mode 100644 index be16451..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera-reels-fill.svg b/src/main/resources/static/assets/bootstrap-icons/camera-reels-fill.svg deleted file mode 100644 index 347f44e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera-reels-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera-reels.svg b/src/main/resources/static/assets/bootstrap-icons/camera-reels.svg deleted file mode 100644 index 1aa7b1c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera-reels.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera-video-fill.svg b/src/main/resources/static/assets/bootstrap-icons/camera-video-fill.svg deleted file mode 100644 index 0222b95..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera-video-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera-video-off-fill.svg b/src/main/resources/static/assets/bootstrap-icons/camera-video-off-fill.svg deleted file mode 100644 index 9909060..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera-video-off-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera-video-off.svg b/src/main/resources/static/assets/bootstrap-icons/camera-video-off.svg deleted file mode 100644 index 7635e9b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera-video-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera-video.svg b/src/main/resources/static/assets/bootstrap-icons/camera-video.svg deleted file mode 100644 index 199e7a8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera-video.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera.svg b/src/main/resources/static/assets/bootstrap-icons/camera.svg deleted file mode 100644 index fb337fe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/camera2.svg b/src/main/resources/static/assets/bootstrap-icons/camera2.svg deleted file mode 100644 index a33ae6b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/camera2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/capslock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/capslock-fill.svg deleted file mode 100644 index e4af909..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/capslock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/capslock.svg b/src/main/resources/static/assets/bootstrap-icons/capslock.svg deleted file mode 100644 index 12155de..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/capslock.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/capsule-pill.svg b/src/main/resources/static/assets/bootstrap-icons/capsule-pill.svg deleted file mode 100644 index 0167f85..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/capsule-pill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/capsule.svg b/src/main/resources/static/assets/bootstrap-icons/capsule.svg deleted file mode 100644 index 98863d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/capsule.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/car-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/car-front-fill.svg deleted file mode 100644 index a9b9603..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/car-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/car-front.svg b/src/main/resources/static/assets/bootstrap-icons/car-front.svg deleted file mode 100644 index bb5fa3d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/car-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/card-checklist.svg b/src/main/resources/static/assets/bootstrap-icons/card-checklist.svg deleted file mode 100644 index ce2a553..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/card-checklist.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/card-heading.svg b/src/main/resources/static/assets/bootstrap-icons/card-heading.svg deleted file mode 100644 index 682bd4e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/card-heading.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/card-image.svg b/src/main/resources/static/assets/bootstrap-icons/card-image.svg deleted file mode 100644 index 473ff03..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/card-image.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/card-list.svg b/src/main/resources/static/assets/bootstrap-icons/card-list.svg deleted file mode 100644 index 3dc5d42..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/card-list.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/card-text.svg b/src/main/resources/static/assets/bootstrap-icons/card-text.svg deleted file mode 100644 index d218f55..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/card-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-down-fill.svg deleted file mode 100644 index d7c3990..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-down-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-down-square-fill.svg deleted file mode 100644 index ae8fbb4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-down-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-down-square.svg b/src/main/resources/static/assets/bootstrap-icons/caret-down-square.svg deleted file mode 100644 index cf34038..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-down-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-down.svg b/src/main/resources/static/assets/bootstrap-icons/caret-down.svg deleted file mode 100644 index 026b0ff..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-left-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-left-fill.svg deleted file mode 100644 index d989dff..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-left-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-left-square-fill.svg deleted file mode 100644 index 5d8ab56..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-left-square.svg b/src/main/resources/static/assets/bootstrap-icons/caret-left-square.svg deleted file mode 100644 index 099b54d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-left-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-left.svg b/src/main/resources/static/assets/bootstrap-icons/caret-left.svg deleted file mode 100644 index 89732f0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-right-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-right-fill.svg deleted file mode 100644 index b445551..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-right-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-right-square-fill.svg deleted file mode 100644 index ea06657..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-right-square.svg b/src/main/resources/static/assets/bootstrap-icons/caret-right-square.svg deleted file mode 100644 index 4039064..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-right-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-right.svg b/src/main/resources/static/assets/bootstrap-icons/caret-right.svg deleted file mode 100644 index 451686e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-up-fill.svg deleted file mode 100644 index a87820e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-up-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/caret-up-square-fill.svg deleted file mode 100644 index 25c66a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-up-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-up-square.svg b/src/main/resources/static/assets/bootstrap-icons/caret-up-square.svg deleted file mode 100644 index d59ecbf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-up-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/caret-up.svg b/src/main/resources/static/assets/bootstrap-icons/caret-up.svg deleted file mode 100644 index 36ca8f0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/caret-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cart-check-fill.svg deleted file mode 100644 index 019c1fc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-check.svg b/src/main/resources/static/assets/bootstrap-icons/cart-check.svg deleted file mode 100644 index 986706a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-dash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cart-dash-fill.svg deleted file mode 100644 index 2562744..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-dash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-dash.svg b/src/main/resources/static/assets/bootstrap-icons/cart-dash.svg deleted file mode 100644 index ecd23f3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cart-fill.svg deleted file mode 100644 index a2b95bf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cart-plus-fill.svg deleted file mode 100644 index 9858fe1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-plus.svg b/src/main/resources/static/assets/bootstrap-icons/cart-plus.svg deleted file mode 100644 index acafe13..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cart-x-fill.svg deleted file mode 100644 index a9a32ca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart-x.svg b/src/main/resources/static/assets/bootstrap-icons/cart-x.svg deleted file mode 100644 index feddfdd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart.svg b/src/main/resources/static/assets/bootstrap-icons/cart.svg deleted file mode 100644 index 486adb1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart2.svg b/src/main/resources/static/assets/bootstrap-icons/cart2.svg deleted file mode 100644 index 7e1bd9a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart3.svg b/src/main/resources/static/assets/bootstrap-icons/cart3.svg deleted file mode 100644 index 2187149..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cart4.svg b/src/main/resources/static/assets/bootstrap-icons/cart4.svg deleted file mode 100644 index b40891f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cart4.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cash-coin.svg b/src/main/resources/static/assets/bootstrap-icons/cash-coin.svg deleted file mode 100644 index bc82c64..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cash-coin.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cash-stack.svg b/src/main/resources/static/assets/bootstrap-icons/cash-stack.svg deleted file mode 100644 index 492cb38..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cash-stack.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cash.svg b/src/main/resources/static/assets/bootstrap-icons/cash.svg deleted file mode 100644 index ef3a4e7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cassette-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cassette-fill.svg deleted file mode 100644 index e8dd8f1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cassette-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cassette.svg b/src/main/resources/static/assets/bootstrap-icons/cassette.svg deleted file mode 100644 index c28170c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cassette.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cast.svg b/src/main/resources/static/assets/bootstrap-icons/cast.svg deleted file mode 100644 index 1eda173..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cast.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cc-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cc-circle-fill.svg deleted file mode 100644 index ca9779e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cc-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cc-circle.svg b/src/main/resources/static/assets/bootstrap-icons/cc-circle.svg deleted file mode 100644 index 6de6b76..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cc-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cc-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cc-square-fill.svg deleted file mode 100644 index f9b44d5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cc-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cc-square.svg b/src/main/resources/static/assets/bootstrap-icons/cc-square.svg deleted file mode 100644 index 90c52bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cc-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-dots-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-dots-fill.svg deleted file mode 100644 index 2e3d225..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-dots.svg b/src/main/resources/static/assets/bootstrap-icons/chat-dots.svg deleted file mode 100644 index a74267d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-fill.svg deleted file mode 100644 index 69ed44b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-heart-fill.svg deleted file mode 100644 index 9be92ca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-heart.svg b/src/main/resources/static/assets/bootstrap-icons/chat-heart.svg deleted file mode 100644 index 90c276b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-dots-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-dots-fill.svg deleted file mode 100644 index eb7f531..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-dots.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-dots.svg deleted file mode 100644 index c73169d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-fill.svg deleted file mode 100644 index 38c389f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-heart-fill.svg deleted file mode 100644 index 787ed61..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-heart.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-heart.svg deleted file mode 100644 index 1604e7b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-quote-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-quote-fill.svg deleted file mode 100644 index b115a9f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-quote.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-quote.svg deleted file mode 100644 index 448827f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-text-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-text-fill.svg deleted file mode 100644 index 28a0f47..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left-text.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left-text.svg deleted file mode 100644 index 2b69a98..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-left.svg b/src/main/resources/static/assets/bootstrap-icons/chat-left.svg deleted file mode 100644 index fd2f4ee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-quote-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-quote-fill.svg deleted file mode 100644 index 4a3af86..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-quote.svg b/src/main/resources/static/assets/bootstrap-icons/chat-quote.svg deleted file mode 100644 index f890c38..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-dots-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-dots-fill.svg deleted file mode 100644 index 49ce097..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-dots.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-dots.svg deleted file mode 100644 index 423d221..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-fill.svg deleted file mode 100644 index 41b767b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-heart-fill.svg deleted file mode 100644 index b55dc62..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-heart.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-heart.svg deleted file mode 100644 index 744e8a0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-quote-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-quote-fill.svg deleted file mode 100644 index e63f92b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-quote.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-quote.svg deleted file mode 100644 index 42c8dbe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-text-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-text-fill.svg deleted file mode 100644 index 32df921..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right-text.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right-text.svg deleted file mode 100644 index d8b6004..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-right.svg b/src/main/resources/static/assets/bootstrap-icons/chat-right.svg deleted file mode 100644 index b702b5d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-dots-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-dots-fill.svg deleted file mode 100644 index 1025978..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-dots.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-dots.svg deleted file mode 100644 index e59cd1a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-fill.svg deleted file mode 100644 index 2fb73ac..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-heart-fill.svg deleted file mode 100644 index f200049..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-heart.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-heart.svg deleted file mode 100644 index 89ca6ef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-quote-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-quote-fill.svg deleted file mode 100644 index 761cb91..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-quote.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-quote.svg deleted file mode 100644 index 40893f4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-text-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-text-fill.svg deleted file mode 100644 index 1dd17c5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square-text.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square-text.svg deleted file mode 100644 index ae3fd8d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-square.svg b/src/main/resources/static/assets/bootstrap-icons/chat-square.svg deleted file mode 100644 index 7611729..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-text-fill.svg b/src/main/resources/static/assets/bootstrap-icons/chat-text-fill.svg deleted file mode 100644 index fff3db3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat-text.svg b/src/main/resources/static/assets/bootstrap-icons/chat-text.svg deleted file mode 100644 index 75a79f1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chat.svg b/src/main/resources/static/assets/bootstrap-icons/chat.svg deleted file mode 100644 index 3cb81b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chat.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check-all.svg b/src/main/resources/static/assets/bootstrap-icons/check-all.svg deleted file mode 100644 index b0019d0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check-all.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/check-circle-fill.svg deleted file mode 100644 index e861174..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check-circle.svg b/src/main/resources/static/assets/bootstrap-icons/check-circle.svg deleted file mode 100644 index d8dd0cd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check-lg.svg b/src/main/resources/static/assets/bootstrap-icons/check-lg.svg deleted file mode 100644 index 7afb0ae..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/check-square-fill.svg deleted file mode 100644 index 45d6828..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check-square.svg b/src/main/resources/static/assets/bootstrap-icons/check-square.svg deleted file mode 100644 index d71c1f3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check.svg b/src/main/resources/static/assets/bootstrap-icons/check.svg deleted file mode 100644 index 9de6cc7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check2-all.svg b/src/main/resources/static/assets/bootstrap-icons/check2-all.svg deleted file mode 100644 index 25d8ba5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check2-all.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check2-circle.svg b/src/main/resources/static/assets/bootstrap-icons/check2-circle.svg deleted file mode 100644 index 7319d37..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check2-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check2-square.svg b/src/main/resources/static/assets/bootstrap-icons/check2-square.svg deleted file mode 100644 index 2d5e6eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check2-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/check2.svg b/src/main/resources/static/assets/bootstrap-icons/check2.svg deleted file mode 100644 index e187956..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/check2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-contract.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-bar-contract.svg deleted file mode 100644 index f12917f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-contract.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-down.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-bar-down.svg deleted file mode 100644 index 4df2259..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-expand.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-bar-expand.svg deleted file mode 100644 index 6cb775f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-left.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-bar-left.svg deleted file mode 100644 index 5d53406..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-right.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-bar-right.svg deleted file mode 100644 index b71553c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-up.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-bar-up.svg deleted file mode 100644 index 9ca1408..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-bar-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-down.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-compact-down.svg deleted file mode 100644 index fb1767e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-left.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-compact-left.svg deleted file mode 100644 index 5dd6b6b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-right.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-compact-right.svg deleted file mode 100644 index ecb5994..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-up.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-compact-up.svg deleted file mode 100644 index 8bc0a55..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-compact-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-contract.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-contract.svg deleted file mode 100644 index 5243d43..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-contract.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-double-down.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-double-down.svg deleted file mode 100644 index 0df76ee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-double-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-double-left.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-double-left.svg deleted file mode 100644 index 7181fd1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-double-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-double-right.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-double-right.svg deleted file mode 100644 index 73e1b35..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-double-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-double-up.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-double-up.svg deleted file mode 100644 index 5c9a013..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-double-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-down.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-down.svg deleted file mode 100644 index 1f0b8bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-expand.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-expand.svg deleted file mode 100644 index 0a2b81a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-left.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-left.svg deleted file mode 100644 index 018f8b6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-right.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-right.svg deleted file mode 100644 index d621289..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/chevron-up.svg b/src/main/resources/static/assets/bootstrap-icons/chevron-up.svg deleted file mode 100644 index 3b2bd42..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/chevron-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/circle-fill.svg deleted file mode 100644 index e0d1b51..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/circle-half.svg b/src/main/resources/static/assets/bootstrap-icons/circle-half.svg deleted file mode 100644 index 5380929..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/circle-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/circle-square.svg b/src/main/resources/static/assets/bootstrap-icons/circle-square.svg deleted file mode 100644 index 37d8622..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/circle-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/circle.svg b/src/main/resources/static/assets/bootstrap-icons/circle.svg deleted file mode 100644 index dc57919..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-check-fill.svg deleted file mode 100644 index 4c0c18f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-check.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-check.svg deleted file mode 100644 index f7591ae..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-data-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-data-fill.svg deleted file mode 100644 index e7de45a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-data-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-data.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-data.svg deleted file mode 100644 index b4fcb33..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-data.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-fill.svg deleted file mode 100644 index 86d3da0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-heart-fill.svg deleted file mode 100644 index c653de1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-heart.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-heart.svg deleted file mode 100644 index 0b5b319..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-heart.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-minus-fill.svg deleted file mode 100644 index 7828cb8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-minus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-minus.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-minus.svg deleted file mode 100644 index 4826c3e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-plus-fill.svg deleted file mode 100644 index 2ebdba4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-plus.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-plus.svg deleted file mode 100644 index 79020c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-pulse.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-pulse.svg deleted file mode 100644 index 0c43dab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-pulse.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-x-fill.svg deleted file mode 100644 index 8cba1ea..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard-x.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard-x.svg deleted file mode 100644 index bba444d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard.svg deleted file mode 100644 index 360e089..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-check-fill.svg deleted file mode 100644 index 01aed62..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-check.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-check.svg deleted file mode 100644 index c235208..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-data-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-data-fill.svg deleted file mode 100644 index 40656a7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-data-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-data.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-data.svg deleted file mode 100644 index 74b26f5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-data.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-fill.svg deleted file mode 100644 index ca2df57..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-heart-fill.svg deleted file mode 100644 index 2abc359..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-heart.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-heart.svg deleted file mode 100644 index 4883c3f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-heart.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-minus-fill.svg deleted file mode 100644 index 000a2c6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-minus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-minus.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-minus.svg deleted file mode 100644 index a634bb0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-plus-fill.svg deleted file mode 100644 index f1702d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-plus.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-plus.svg deleted file mode 100644 index 474ffdc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse-fill.svg deleted file mode 100644 index 5017f6d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse.svg deleted file mode 100644 index 1e6370c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-pulse.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-x-fill.svg deleted file mode 100644 index 8f63584..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2-x.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2-x.svg deleted file mode 100644 index 9ac8211..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clipboard2.svg b/src/main/resources/static/assets/bootstrap-icons/clipboard2.svg deleted file mode 100644 index d729ddb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clipboard2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clock-fill.svg deleted file mode 100644 index 189dec1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clock-history.svg b/src/main/resources/static/assets/bootstrap-icons/clock-history.svg deleted file mode 100644 index 414b526..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clock-history.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clock.svg b/src/main/resources/static/assets/bootstrap-icons/clock.svg deleted file mode 100644 index 72f2939..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down-fill.svg deleted file mode 100644 index 6e18ca9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down.svg deleted file mode 100644 index cb8e33a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up-fill.svg deleted file mode 100644 index 89d72fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up.svg deleted file mode 100644 index 6f69abc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-check-fill.svg deleted file mode 100644 index 81f28b5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-check.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-check.svg deleted file mode 100644 index 917d5c2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-download-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-download-fill.svg deleted file mode 100644 index 53c4242..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-download-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-download.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-download.svg deleted file mode 100644 index c6b3fe3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-download.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-drizzle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-drizzle-fill.svg deleted file mode 100644 index 996aec4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-drizzle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-drizzle.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-drizzle.svg deleted file mode 100644 index bb1e68b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-drizzle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-fill.svg deleted file mode 100644 index 23755bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-fog-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-fog-fill.svg deleted file mode 100644 index 07f10f4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-fog-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-fog.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-fog.svg deleted file mode 100644 index b40c983..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-fog.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-fog2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-fog2-fill.svg deleted file mode 100644 index 1d49851..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-fog2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-fog2.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-fog2.svg deleted file mode 100644 index 1bd3c25..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-fog2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-hail-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-hail-fill.svg deleted file mode 100644 index d8a096b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-hail-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-hail.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-hail.svg deleted file mode 100644 index 2f9bec1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-hail.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-haze-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-haze-fill.svg deleted file mode 100644 index 002fc26..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-haze-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-haze.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-haze.svg deleted file mode 100644 index 513e346..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-haze.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-haze2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-haze2-fill.svg deleted file mode 100644 index e9b7bda..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-haze2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-haze2.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-haze2.svg deleted file mode 100644 index c213dfb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-haze2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-fill.svg deleted file mode 100644 index 1d30904..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain-fill.svg deleted file mode 100644 index 2b6d4a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain.svg deleted file mode 100644 index 31badb3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning-rain.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-lightning.svg deleted file mode 100644 index 5a8bafd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-lightning.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-minus-fill.svg deleted file mode 100644 index 753727f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-minus.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-minus.svg deleted file mode 100644 index a4ab6f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-moon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-moon-fill.svg deleted file mode 100644 index d968faf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-moon-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-moon.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-moon.svg deleted file mode 100644 index 1089204..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-moon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-plus-fill.svg deleted file mode 100644 index 92620aa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-plus.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-plus.svg deleted file mode 100644 index 4ef51f2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-rain-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-rain-fill.svg deleted file mode 100644 index 94cddba..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-rain-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy-fill.svg deleted file mode 100644 index 167c8af..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy.svg deleted file mode 100644 index a5c41e5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-rain-heavy.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-rain.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-rain.svg deleted file mode 100644 index eb40032..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-rain.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-slash-fill.svg deleted file mode 100644 index a4b8bad..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-slash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-slash.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-slash.svg deleted file mode 100644 index fe89178..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-sleet-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-sleet-fill.svg deleted file mode 100644 index 73764dc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-sleet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-sleet.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-sleet.svg deleted file mode 100644 index d3c8f2e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-sleet.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-snow-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-snow-fill.svg deleted file mode 100644 index 0ffc577..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-snow-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-snow.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-snow.svg deleted file mode 100644 index b1643fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-snow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-sun-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-sun-fill.svg deleted file mode 100644 index 9ecf7de..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-sun-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-sun.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-sun.svg deleted file mode 100644 index 76ebc49..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-sun.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-upload-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-upload-fill.svg deleted file mode 100644 index 766015d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-upload-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud-upload.svg b/src/main/resources/static/assets/bootstrap-icons/cloud-upload.svg deleted file mode 100644 index 6184b72..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud-upload.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloud.svg b/src/main/resources/static/assets/bootstrap-icons/cloud.svg deleted file mode 100644 index 7b0b9b3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloud.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clouds-fill.svg b/src/main/resources/static/assets/bootstrap-icons/clouds-fill.svg deleted file mode 100644 index fe7fc07..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clouds-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/clouds.svg b/src/main/resources/static/assets/bootstrap-icons/clouds.svg deleted file mode 100644 index c9a5ba0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/clouds.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloudy-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cloudy-fill.svg deleted file mode 100644 index 3e90f9e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloudy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cloudy.svg b/src/main/resources/static/assets/bootstrap-icons/cloudy.svg deleted file mode 100644 index 0783bca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cloudy.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/code-slash.svg b/src/main/resources/static/assets/bootstrap-icons/code-slash.svg deleted file mode 100644 index ef0ef01..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/code-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/code-square.svg b/src/main/resources/static/assets/bootstrap-icons/code-square.svg deleted file mode 100644 index 415b56c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/code-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/code.svg b/src/main/resources/static/assets/bootstrap-icons/code.svg deleted file mode 100644 index 079f5c6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/code.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/coin.svg b/src/main/resources/static/assets/bootstrap-icons/coin.svg deleted file mode 100644 index 045d428..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/coin.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/collection-fill.svg b/src/main/resources/static/assets/bootstrap-icons/collection-fill.svg deleted file mode 100644 index fee7f54..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/collection-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/collection-play-fill.svg b/src/main/resources/static/assets/bootstrap-icons/collection-play-fill.svg deleted file mode 100644 index 2601e48..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/collection-play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/collection-play.svg b/src/main/resources/static/assets/bootstrap-icons/collection-play.svg deleted file mode 100644 index 96b5c6e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/collection-play.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/collection.svg b/src/main/resources/static/assets/bootstrap-icons/collection.svg deleted file mode 100644 index 0870f5a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/collection.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/columns-gap.svg b/src/main/resources/static/assets/bootstrap-icons/columns-gap.svg deleted file mode 100644 index b3cb175..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/columns-gap.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/columns.svg b/src/main/resources/static/assets/bootstrap-icons/columns.svg deleted file mode 100644 index d785491..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/columns.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/command.svg b/src/main/resources/static/assets/bootstrap-icons/command.svg deleted file mode 100644 index d162254..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/command.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/compass-fill.svg b/src/main/resources/static/assets/bootstrap-icons/compass-fill.svg deleted file mode 100644 index ad821c4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/compass-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/compass.svg b/src/main/resources/static/assets/bootstrap-icons/compass.svg deleted file mode 100644 index 8649461..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/compass.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cone-striped.svg b/src/main/resources/static/assets/bootstrap-icons/cone-striped.svg deleted file mode 100644 index 44e9606..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cone-striped.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cone.svg b/src/main/resources/static/assets/bootstrap-icons/cone.svg deleted file mode 100644 index 2de05c5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cone.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/controller.svg b/src/main/resources/static/assets/bootstrap-icons/controller.svg deleted file mode 100644 index 15e7774..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/controller.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cookie.svg b/src/main/resources/static/assets/bootstrap-icons/cookie.svg deleted file mode 100644 index 4b0e663..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cookie.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/copy.svg b/src/main/resources/static/assets/bootstrap-icons/copy.svg deleted file mode 100644 index f53a72f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/copy.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cpu-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cpu-fill.svg deleted file mode 100644 index 50d0a07..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cpu-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cpu.svg b/src/main/resources/static/assets/bootstrap-icons/cpu.svg deleted file mode 100644 index a9fbaa3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cpu.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-back-fill.svg b/src/main/resources/static/assets/bootstrap-icons/credit-card-2-back-fill.svg deleted file mode 100644 index c80bb6c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-back-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-back.svg b/src/main/resources/static/assets/bootstrap-icons/credit-card-2-back.svg deleted file mode 100644 index e99159c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-back.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/credit-card-2-front-fill.svg deleted file mode 100644 index c082ef0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-front.svg b/src/main/resources/static/assets/bootstrap-icons/credit-card-2-front.svg deleted file mode 100644 index 95b071d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/credit-card-2-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/credit-card-fill.svg b/src/main/resources/static/assets/bootstrap-icons/credit-card-fill.svg deleted file mode 100644 index d0686a8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/credit-card-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/credit-card.svg b/src/main/resources/static/assets/bootstrap-icons/credit-card.svg deleted file mode 100644 index f716d39..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/credit-card.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/crop.svg b/src/main/resources/static/assets/bootstrap-icons/crop.svg deleted file mode 100644 index b7e1749..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/crop.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/crosshair.svg b/src/main/resources/static/assets/bootstrap-icons/crosshair.svg deleted file mode 100644 index 9421cc0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/crosshair.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/crosshair2.svg b/src/main/resources/static/assets/bootstrap-icons/crosshair2.svg deleted file mode 100644 index 6a86c00..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/crosshair2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cup-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cup-fill.svg deleted file mode 100644 index c811935..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cup-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cup-hot-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cup-hot-fill.svg deleted file mode 100644 index f512ae0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cup-hot-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cup-hot.svg b/src/main/resources/static/assets/bootstrap-icons/cup-hot.svg deleted file mode 100644 index 789f1ea..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cup-hot.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cup-straw.svg b/src/main/resources/static/assets/bootstrap-icons/cup-straw.svg deleted file mode 100644 index bda9d07..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cup-straw.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cup.svg b/src/main/resources/static/assets/bootstrap-icons/cup.svg deleted file mode 100644 index 490fe09..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cup.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/currency-bitcoin.svg b/src/main/resources/static/assets/bootstrap-icons/currency-bitcoin.svg deleted file mode 100644 index 488adca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/currency-bitcoin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/currency-dollar.svg b/src/main/resources/static/assets/bootstrap-icons/currency-dollar.svg deleted file mode 100644 index 572e34c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/currency-dollar.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/currency-euro.svg b/src/main/resources/static/assets/bootstrap-icons/currency-euro.svg deleted file mode 100644 index 1fcaa7c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/currency-euro.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/currency-exchange.svg b/src/main/resources/static/assets/bootstrap-icons/currency-exchange.svg deleted file mode 100644 index 1e3eaf3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/currency-exchange.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/currency-pound.svg b/src/main/resources/static/assets/bootstrap-icons/currency-pound.svg deleted file mode 100644 index 60dbd58..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/currency-pound.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/currency-rupee.svg b/src/main/resources/static/assets/bootstrap-icons/currency-rupee.svg deleted file mode 100644 index 843d0fa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/currency-rupee.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/currency-yen.svg b/src/main/resources/static/assets/bootstrap-icons/currency-yen.svg deleted file mode 100644 index 5bbf1a2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/currency-yen.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cursor-fill.svg b/src/main/resources/static/assets/bootstrap-icons/cursor-fill.svg deleted file mode 100644 index 093372b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cursor-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cursor-text.svg b/src/main/resources/static/assets/bootstrap-icons/cursor-text.svg deleted file mode 100644 index 42a48fa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cursor-text.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/cursor.svg b/src/main/resources/static/assets/bootstrap-icons/cursor.svg deleted file mode 100644 index 315106b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/cursor.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash-circle-dotted.svg b/src/main/resources/static/assets/bootstrap-icons/dash-circle-dotted.svg deleted file mode 100644 index 7e29372..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash-circle-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dash-circle-fill.svg deleted file mode 100644 index db27419..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash-circle.svg b/src/main/resources/static/assets/bootstrap-icons/dash-circle.svg deleted file mode 100644 index 17483d6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash-lg.svg b/src/main/resources/static/assets/bootstrap-icons/dash-lg.svg deleted file mode 100644 index 0f4c5e9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash-square-dotted.svg b/src/main/resources/static/assets/bootstrap-icons/dash-square-dotted.svg deleted file mode 100644 index 15b8d4b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash-square-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dash-square-fill.svg deleted file mode 100644 index 85a95b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash-square.svg b/src/main/resources/static/assets/bootstrap-icons/dash-square.svg deleted file mode 100644 index b63e536..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dash.svg b/src/main/resources/static/assets/bootstrap-icons/dash.svg deleted file mode 100644 index 4ac4288..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-add.svg b/src/main/resources/static/assets/bootstrap-icons/database-add.svg deleted file mode 100644 index 8b9e0cc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-check.svg b/src/main/resources/static/assets/bootstrap-icons/database-check.svg deleted file mode 100644 index f193084..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-dash.svg b/src/main/resources/static/assets/bootstrap-icons/database-dash.svg deleted file mode 100644 index 1bcb011..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-down.svg b/src/main/resources/static/assets/bootstrap-icons/database-down.svg deleted file mode 100644 index 49dfd2e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/database-exclamation.svg deleted file mode 100644 index 178b61a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-add.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-add.svg deleted file mode 100644 index 993b4df..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-check.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-check.svg deleted file mode 100644 index 579da2e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-dash.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-dash.svg deleted file mode 100644 index ce9c8c7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-down.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-down.svg deleted file mode 100644 index 433b9ad..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-exclamation.svg deleted file mode 100644 index f935d0b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-exclamation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-gear.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-gear.svg deleted file mode 100644 index 1501670..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-lock.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-lock.svg deleted file mode 100644 index 27dce6d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-slash.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-slash.svg deleted file mode 100644 index 8ccdf44..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-up.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-up.svg deleted file mode 100644 index 6f767b5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill-x.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill-x.svg deleted file mode 100644 index 1f65f61..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-fill.svg b/src/main/resources/static/assets/bootstrap-icons/database-fill.svg deleted file mode 100644 index 2c7e04c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-gear.svg b/src/main/resources/static/assets/bootstrap-icons/database-gear.svg deleted file mode 100644 index 77a5855..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-lock.svg b/src/main/resources/static/assets/bootstrap-icons/database-lock.svg deleted file mode 100644 index ad5a8f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-slash.svg b/src/main/resources/static/assets/bootstrap-icons/database-slash.svg deleted file mode 100644 index d1f6a97..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-up.svg b/src/main/resources/static/assets/bootstrap-icons/database-up.svg deleted file mode 100644 index cfb75ed..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database-x.svg b/src/main/resources/static/assets/bootstrap-icons/database-x.svg deleted file mode 100644 index 314a6fd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/database.svg b/src/main/resources/static/assets/bootstrap-icons/database.svg deleted file mode 100644 index 45e4eb8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/database.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/device-hdd-fill.svg b/src/main/resources/static/assets/bootstrap-icons/device-hdd-fill.svg deleted file mode 100644 index 5b5ae29..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/device-hdd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/device-hdd.svg b/src/main/resources/static/assets/bootstrap-icons/device-hdd.svg deleted file mode 100644 index 960e609..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/device-hdd.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/device-ssd-fill.svg b/src/main/resources/static/assets/bootstrap-icons/device-ssd-fill.svg deleted file mode 100644 index 9ba5802..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/device-ssd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/device-ssd.svg b/src/main/resources/static/assets/bootstrap-icons/device-ssd.svg deleted file mode 100644 index 0dd8ae5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/device-ssd.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/diagram-2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/diagram-2-fill.svg deleted file mode 100644 index b46a212..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/diagram-2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/diagram-2.svg b/src/main/resources/static/assets/bootstrap-icons/diagram-2.svg deleted file mode 100644 index 2b330e5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/diagram-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/diagram-3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/diagram-3-fill.svg deleted file mode 100644 index 6cc31c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/diagram-3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/diagram-3.svg b/src/main/resources/static/assets/bootstrap-icons/diagram-3.svg deleted file mode 100644 index 464b051..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/diagram-3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/diamond-fill.svg b/src/main/resources/static/assets/bootstrap-icons/diamond-fill.svg deleted file mode 100644 index e6e3151..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/diamond-half.svg b/src/main/resources/static/assets/bootstrap-icons/diamond-half.svg deleted file mode 100644 index 4e13791..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/diamond-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/diamond.svg b/src/main/resources/static/assets/bootstrap-icons/diamond.svg deleted file mode 100644 index 4cddafa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/diamond.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-1-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dice-1-fill.svg deleted file mode 100644 index 0b20aa0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-1-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-1.svg b/src/main/resources/static/assets/bootstrap-icons/dice-1.svg deleted file mode 100644 index 97c2432..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-1.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dice-2-fill.svg deleted file mode 100644 index f55f921..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-2.svg b/src/main/resources/static/assets/bootstrap-icons/dice-2.svg deleted file mode 100644 index 38013a8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dice-3-fill.svg deleted file mode 100644 index ae5a1ba..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-3.svg b/src/main/resources/static/assets/bootstrap-icons/dice-3.svg deleted file mode 100644 index 705b7e7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-3.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-4-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dice-4-fill.svg deleted file mode 100644 index 6dad92b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-4-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-4.svg b/src/main/resources/static/assets/bootstrap-icons/dice-4.svg deleted file mode 100644 index 070f981..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-4.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-5-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dice-5-fill.svg deleted file mode 100644 index a92382b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-5-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-5.svg b/src/main/resources/static/assets/bootstrap-icons/dice-5.svg deleted file mode 100644 index b4369c7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-5.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-6-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dice-6-fill.svg deleted file mode 100644 index fce8cb4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-6-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dice-6.svg b/src/main/resources/static/assets/bootstrap-icons/dice-6.svg deleted file mode 100644 index 44d25dc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dice-6.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/disc-fill.svg b/src/main/resources/static/assets/bootstrap-icons/disc-fill.svg deleted file mode 100644 index b03f34d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/disc-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/disc.svg b/src/main/resources/static/assets/bootstrap-icons/disc.svg deleted file mode 100644 index f3475a2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/disc.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/discord.svg b/src/main/resources/static/assets/bootstrap-icons/discord.svg deleted file mode 100644 index 877cfdf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/discord.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/display-fill.svg b/src/main/resources/static/assets/bootstrap-icons/display-fill.svg deleted file mode 100644 index f7c3fca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/display-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/display.svg b/src/main/resources/static/assets/bootstrap-icons/display.svg deleted file mode 100644 index 700d780..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/display.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/displayport-fill.svg b/src/main/resources/static/assets/bootstrap-icons/displayport-fill.svg deleted file mode 100644 index 17fe771..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/displayport-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/displayport.svg b/src/main/resources/static/assets/bootstrap-icons/displayport.svg deleted file mode 100644 index 3e5748a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/displayport.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/distribute-horizontal.svg b/src/main/resources/static/assets/bootstrap-icons/distribute-horizontal.svg deleted file mode 100644 index fe90ff8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/distribute-horizontal.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/distribute-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/distribute-vertical.svg deleted file mode 100644 index 234b2c2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/distribute-vertical.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/door-closed-fill.svg b/src/main/resources/static/assets/bootstrap-icons/door-closed-fill.svg deleted file mode 100644 index 1d2a036..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/door-closed-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/door-closed.svg b/src/main/resources/static/assets/bootstrap-icons/door-closed.svg deleted file mode 100644 index 3eab448..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/door-closed.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/door-open-fill.svg b/src/main/resources/static/assets/bootstrap-icons/door-open-fill.svg deleted file mode 100644 index d4833a3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/door-open-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/door-open.svg b/src/main/resources/static/assets/bootstrap-icons/door-open.svg deleted file mode 100644 index d9638a3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/door-open.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dot.svg b/src/main/resources/static/assets/bootstrap-icons/dot.svg deleted file mode 100644 index 183e4a8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dot.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/download.svg b/src/main/resources/static/assets/bootstrap-icons/download.svg deleted file mode 100644 index 80a5817..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/download.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dpad-fill.svg b/src/main/resources/static/assets/bootstrap-icons/dpad-fill.svg deleted file mode 100644 index ea54468..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dpad-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dpad.svg b/src/main/resources/static/assets/bootstrap-icons/dpad.svg deleted file mode 100644 index 9363c90..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dpad.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dribbble.svg b/src/main/resources/static/assets/bootstrap-icons/dribbble.svg deleted file mode 100644 index 809f2d3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dribbble.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/dropbox.svg b/src/main/resources/static/assets/bootstrap-icons/dropbox.svg deleted file mode 100644 index 6431141..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/dropbox.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/droplet-fill.svg b/src/main/resources/static/assets/bootstrap-icons/droplet-fill.svg deleted file mode 100644 index a240876..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/droplet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/droplet-half.svg b/src/main/resources/static/assets/bootstrap-icons/droplet-half.svg deleted file mode 100644 index 43eb208..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/droplet-half.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/droplet.svg b/src/main/resources/static/assets/bootstrap-icons/droplet.svg deleted file mode 100644 index 2b405d6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/droplet.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/duffle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/duffle-fill.svg deleted file mode 100644 index df9e1c7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/duffle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/duffle.svg b/src/main/resources/static/assets/bootstrap-icons/duffle.svg deleted file mode 100644 index 3915aa4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/duffle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ear-fill.svg b/src/main/resources/static/assets/bootstrap-icons/ear-fill.svg deleted file mode 100644 index 8e564c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ear-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ear.svg b/src/main/resources/static/assets/bootstrap-icons/ear.svg deleted file mode 100644 index 8c8b869..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ear.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/earbuds.svg b/src/main/resources/static/assets/bootstrap-icons/earbuds.svg deleted file mode 100644 index 7bc0019..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/earbuds.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/easel-fill.svg b/src/main/resources/static/assets/bootstrap-icons/easel-fill.svg deleted file mode 100644 index db00798..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/easel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/easel.svg b/src/main/resources/static/assets/bootstrap-icons/easel.svg deleted file mode 100644 index f95976e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/easel.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/easel2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/easel2-fill.svg deleted file mode 100644 index c393242..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/easel2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/easel2.svg b/src/main/resources/static/assets/bootstrap-icons/easel2.svg deleted file mode 100644 index d1736de..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/easel2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/easel3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/easel3-fill.svg deleted file mode 100644 index 2e57223..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/easel3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/easel3.svg b/src/main/resources/static/assets/bootstrap-icons/easel3.svg deleted file mode 100644 index a39ad3d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/easel3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/egg-fill.svg b/src/main/resources/static/assets/bootstrap-icons/egg-fill.svg deleted file mode 100644 index 33b7d44..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/egg-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/egg-fried.svg b/src/main/resources/static/assets/bootstrap-icons/egg-fried.svg deleted file mode 100644 index b99cac3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/egg-fried.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/egg.svg b/src/main/resources/static/assets/bootstrap-icons/egg.svg deleted file mode 100644 index 9fb5c1e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/egg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eject-fill.svg b/src/main/resources/static/assets/bootstrap-icons/eject-fill.svg deleted file mode 100644 index 3255af6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eject-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eject.svg b/src/main/resources/static/assets/bootstrap-icons/eject.svg deleted file mode 100644 index 540cbc8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eject.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-angry-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-angry-fill.svg deleted file mode 100644 index 1bf7eb6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-angry-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-angry.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-angry.svg deleted file mode 100644 index d6d8914..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-angry.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-astonished-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-astonished-fill.svg deleted file mode 100644 index 99eb45b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-astonished-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-astonished.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-astonished.svg deleted file mode 100644 index ab60302..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-astonished.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-dizzy-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-dizzy-fill.svg deleted file mode 100644 index d801800..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-dizzy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-dizzy.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-dizzy.svg deleted file mode 100644 index f64fade..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-dizzy.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-expressionless-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-expressionless-fill.svg deleted file mode 100644 index f70140a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-expressionless-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-expressionless.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-expressionless.svg deleted file mode 100644 index 208a72d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-expressionless.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-frown-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-frown-fill.svg deleted file mode 100644 index c8a9ddc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-frown-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-frown.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-frown.svg deleted file mode 100644 index b7766eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-frown.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-grimace-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-grimace-fill.svg deleted file mode 100644 index d4200fe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-grimace-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-grimace.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-grimace.svg deleted file mode 100644 index dbe8591..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-grimace.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-grin-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-grin-fill.svg deleted file mode 100644 index 926f2d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-grin-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-grin.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-grin.svg deleted file mode 100644 index 50b8e42..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-grin.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes-fill.svg deleted file mode 100644 index cc91552..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes.svg deleted file mode 100644 index c19ec51..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-heart-eyes.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-kiss-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-kiss-fill.svg deleted file mode 100644 index ab46245..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-kiss-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-kiss.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-kiss.svg deleted file mode 100644 index 4646628..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-kiss.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-laughing-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-laughing-fill.svg deleted file mode 100644 index cc8c69b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-laughing-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-laughing.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-laughing.svg deleted file mode 100644 index 68d9b25..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-laughing.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-neutral-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-neutral-fill.svg deleted file mode 100644 index 58bcb6b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-neutral-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-neutral.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-neutral.svg deleted file mode 100644 index 2f3204a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-neutral.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-smile-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-smile-fill.svg deleted file mode 100644 index 76a6a16..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-smile-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down-fill.svg deleted file mode 100644 index c682933..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down.svg deleted file mode 100644 index 1e18424..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-smile-upside-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-smile.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-smile.svg deleted file mode 100644 index d222a9a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-smile.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses-fill.svg deleted file mode 100644 index 00e7bc0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses.svg deleted file mode 100644 index 4771e4d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-sunglasses.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-surprise-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-surprise-fill.svg deleted file mode 100644 index 5cd3e2e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-surprise-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-surprise.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-surprise.svg deleted file mode 100644 index d74830e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-surprise.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-tear-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-tear-fill.svg deleted file mode 100644 index aec9e3f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-tear-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-tear.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-tear.svg deleted file mode 100644 index f9abd4b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-tear.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-wink-fill.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-wink-fill.svg deleted file mode 100644 index 8601a58..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-wink-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/emoji-wink.svg b/src/main/resources/static/assets/bootstrap-icons/emoji-wink.svg deleted file mode 100644 index ee3b3d0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/emoji-wink.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down-fill.svg deleted file mode 100644 index 59ad513..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down.svg deleted file mode 100644 index ed8e9be..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up-fill.svg deleted file mode 100644 index 095a13f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up.svg deleted file mode 100644 index f660f36..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-at-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-at-fill.svg deleted file mode 100644 index 7102a5b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-at-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-at.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-at.svg deleted file mode 100644 index 46b9134..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-at.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-check-fill.svg deleted file mode 100644 index ca06ad0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-check.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-check.svg deleted file mode 100644 index 8a50181..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-dash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-dash-fill.svg deleted file mode 100644 index 7275d3d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-dash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-dash.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-dash.svg deleted file mode 100644 index 7ae3e5c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-exclamation-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-exclamation-fill.svg deleted file mode 100644 index 4bc91d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-exclamation-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-exclamation.svg deleted file mode 100644 index 936b777..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-fill.svg deleted file mode 100644 index 0b28c86..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-heart-fill.svg deleted file mode 100644 index 8ed9e02..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-heart.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-heart.svg deleted file mode 100644 index b104999..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-open-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-open-fill.svg deleted file mode 100644 index 29d8fe7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-open-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-open-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-open-heart-fill.svg deleted file mode 100644 index 478b85b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-open-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-open-heart.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-open-heart.svg deleted file mode 100644 index 7d324a2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-open-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-open.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-open.svg deleted file mode 100644 index 9a542d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-open.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-paper-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-paper-fill.svg deleted file mode 100644 index 14f613e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-paper-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart-fill.svg deleted file mode 100644 index e422acc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart.svg deleted file mode 100644 index 2d925ae..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-paper-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-paper.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-paper.svg deleted file mode 100644 index a909c63..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-paper.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-plus-fill.svg deleted file mode 100644 index 96703c2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-plus.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-plus.svg deleted file mode 100644 index 0abb966..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-slash-fill.svg deleted file mode 100644 index 09690e5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-slash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-slash.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-slash.svg deleted file mode 100644 index 35b3783..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-x-fill.svg deleted file mode 100644 index b8348b1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope-x.svg b/src/main/resources/static/assets/bootstrap-icons/envelope-x.svg deleted file mode 100644 index cd78475..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/envelope.svg b/src/main/resources/static/assets/bootstrap-icons/envelope.svg deleted file mode 100644 index 122fc35..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/envelope.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eraser-fill.svg b/src/main/resources/static/assets/bootstrap-icons/eraser-fill.svg deleted file mode 100644 index 10959b3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eraser-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eraser.svg b/src/main/resources/static/assets/bootstrap-icons/eraser.svg deleted file mode 100644 index e7060e5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eraser.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/escape.svg b/src/main/resources/static/assets/bootstrap-icons/escape.svg deleted file mode 100644 index 112c87b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/escape.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ethernet.svg b/src/main/resources/static/assets/bootstrap-icons/ethernet.svg deleted file mode 100644 index 9b97a3a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ethernet.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ev-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/ev-front-fill.svg deleted file mode 100644 index 6926f52..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ev-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ev-front.svg b/src/main/resources/static/assets/bootstrap-icons/ev-front.svg deleted file mode 100644 index 2e0acc6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ev-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ev-station-fill.svg b/src/main/resources/static/assets/bootstrap-icons/ev-station-fill.svg deleted file mode 100644 index a30f613..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ev-station-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ev-station.svg b/src/main/resources/static/assets/bootstrap-icons/ev-station.svg deleted file mode 100644 index faec20c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ev-station.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-circle-fill.svg deleted file mode 100644 index f7a7d17..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-circle.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-circle.svg deleted file mode 100644 index 73c7e8d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-diamond-fill.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-diamond-fill.svg deleted file mode 100644 index 5987fe7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-diamond.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-diamond.svg deleted file mode 100644 index 6c0388b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-diamond.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-lg.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-lg.svg deleted file mode 100644 index b21e727..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-octagon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-octagon-fill.svg deleted file mode 100644 index 3347f64..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-octagon.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-octagon.svg deleted file mode 100644 index 6ef1db9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-octagon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-square-fill.svg deleted file mode 100644 index e99eab8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-square.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-square.svg deleted file mode 100644 index 41436cb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-triangle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-triangle-fill.svg deleted file mode 100644 index 50e1752..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-triangle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation-triangle.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation-triangle.svg deleted file mode 100644 index 7ca0dc7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation-triangle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/exclamation.svg deleted file mode 100644 index 953004b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclamation.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exclude.svg b/src/main/resources/static/assets/bootstrap-icons/exclude.svg deleted file mode 100644 index 9be5f93..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exclude.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/explicit-fill.svg b/src/main/resources/static/assets/bootstrap-icons/explicit-fill.svg deleted file mode 100644 index 159d365..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/explicit-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/explicit.svg b/src/main/resources/static/assets/bootstrap-icons/explicit.svg deleted file mode 100644 index 22a0ef4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/explicit.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/exposure.svg b/src/main/resources/static/assets/bootstrap-icons/exposure.svg deleted file mode 100644 index 504c135..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/exposure.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eye-fill.svg b/src/main/resources/static/assets/bootstrap-icons/eye-fill.svg deleted file mode 100644 index 2697206..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eye-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eye-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/eye-slash-fill.svg deleted file mode 100644 index 9339262..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eye-slash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eye-slash.svg b/src/main/resources/static/assets/bootstrap-icons/eye-slash.svg deleted file mode 100644 index c520837..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eye-slash.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eye.svg b/src/main/resources/static/assets/bootstrap-icons/eye.svg deleted file mode 100644 index 412ff69..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eye.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eyedropper.svg b/src/main/resources/static/assets/bootstrap-icons/eyedropper.svg deleted file mode 100644 index 698d40d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eyedropper.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/eyeglasses.svg b/src/main/resources/static/assets/bootstrap-icons/eyeglasses.svg deleted file mode 100644 index 020d943..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/eyeglasses.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/facebook.svg b/src/main/resources/static/assets/bootstrap-icons/facebook.svg deleted file mode 100644 index e8d1443..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/facebook.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fan.svg b/src/main/resources/static/assets/bootstrap-icons/fan.svg deleted file mode 100644 index fab6eab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fan.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fast-forward-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/fast-forward-btn-fill.svg deleted file mode 100644 index 9c9a1c6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fast-forward-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fast-forward-btn.svg b/src/main/resources/static/assets/bootstrap-icons/fast-forward-btn.svg deleted file mode 100644 index a3d605c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fast-forward-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fast-forward-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/fast-forward-circle-fill.svg deleted file mode 100644 index aa5c37b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fast-forward-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fast-forward-circle.svg b/src/main/resources/static/assets/bootstrap-icons/fast-forward-circle.svg deleted file mode 100644 index 2eceb91..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fast-forward-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fast-forward-fill.svg b/src/main/resources/static/assets/bootstrap-icons/fast-forward-fill.svg deleted file mode 100644 index 329cad0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fast-forward-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fast-forward.svg b/src/main/resources/static/assets/bootstrap-icons/fast-forward.svg deleted file mode 100644 index 1064360..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fast-forward.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/feather.svg b/src/main/resources/static/assets/bootstrap-icons/feather.svg deleted file mode 100644 index aafb86d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/feather.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/feather2.svg b/src/main/resources/static/assets/bootstrap-icons/feather2.svg deleted file mode 100644 index 2e5234f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/feather2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-arrow-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-arrow-down-fill.svg deleted file mode 100644 index 910fc07..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-arrow-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/file-arrow-down.svg deleted file mode 100644 index 6f75d50..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-arrow-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-arrow-up-fill.svg deleted file mode 100644 index 9dba205..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-arrow-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/file-arrow-up.svg deleted file mode 100644 index 223379e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-bar-graph-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-bar-graph-fill.svg deleted file mode 100644 index a0e31d6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-bar-graph-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-bar-graph.svg b/src/main/resources/static/assets/bootstrap-icons/file-bar-graph.svg deleted file mode 100644 index e66be6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-bar-graph.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-binary-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-binary-fill.svg deleted file mode 100644 index 13343bf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-binary-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-binary.svg b/src/main/resources/static/assets/bootstrap-icons/file-binary.svg deleted file mode 100644 index 7e667bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-binary.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-break-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-break-fill.svg deleted file mode 100644 index 4eddc4a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-break-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-break.svg b/src/main/resources/static/assets/bootstrap-icons/file-break.svg deleted file mode 100644 index b4485d7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-break.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-check-fill.svg deleted file mode 100644 index fb54b18..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-check.svg b/src/main/resources/static/assets/bootstrap-icons/file-check.svg deleted file mode 100644 index 1426311..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-code-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-code-fill.svg deleted file mode 100644 index ee2f0f6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-code-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-code.svg b/src/main/resources/static/assets/bootstrap-icons/file-code.svg deleted file mode 100644 index a8c390b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-code.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-diff-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-diff-fill.svg deleted file mode 100644 index 945aef1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-diff-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-diff.svg b/src/main/resources/static/assets/bootstrap-icons/file-diff.svg deleted file mode 100644 index dd848f0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-diff.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down-fill.svg deleted file mode 100644 index 0e96047..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down.svg deleted file mode 100644 index 81cc43a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up-fill.svg deleted file mode 100644 index ce881cc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up.svg deleted file mode 100644 index 6cf324a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph-fill.svg deleted file mode 100644 index 7dc0df9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph.svg deleted file mode 100644 index eefb687..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-bar-graph.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-binary-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-binary-fill.svg deleted file mode 100644 index 1652562..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-binary-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-binary.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-binary.svg deleted file mode 100644 index e068bf6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-binary.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-break-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-break-fill.svg deleted file mode 100644 index b36ea25..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-break-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-break.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-break.svg deleted file mode 100644 index e98c647..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-break.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-check-fill.svg deleted file mode 100644 index de7bf69..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-check.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-check.svg deleted file mode 100644 index f2fbf66..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-code-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-code-fill.svg deleted file mode 100644 index c23a7b6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-code-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-code.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-code.svg deleted file mode 100644 index 1b94a6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-code.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-diff-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-diff-fill.svg deleted file mode 100644 index 5f18a88..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-diff-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-diff.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-diff.svg deleted file mode 100644 index 0b28667..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-diff.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-easel-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-easel-fill.svg deleted file mode 100644 index 0743de4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-easel-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-easel.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-easel.svg deleted file mode 100644 index 045fc87..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-easel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-excel-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-excel-fill.svg deleted file mode 100644 index 2d492a8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-excel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-excel.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-excel.svg deleted file mode 100644 index c40f16b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-excel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-fill.svg deleted file mode 100644 index 668247e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-font-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-font-fill.svg deleted file mode 100644 index c4fe9a4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-font-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-font.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-font.svg deleted file mode 100644 index f7aad0b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-font.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-image-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-image-fill.svg deleted file mode 100644 index e568ee7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-image-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-image.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-image.svg deleted file mode 100644 index 1e1964b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-image.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock-fill.svg deleted file mode 100644 index 18a7fb7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock.svg deleted file mode 100644 index b15ec6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2-fill.svg deleted file mode 100644 index 828a545..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2.svg deleted file mode 100644 index cf76d3f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-lock2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-medical-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-medical-fill.svg deleted file mode 100644 index ed5f6bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-medical-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-medical.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-medical.svg deleted file mode 100644 index 6fa8a39..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-medical.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-minus-fill.svg deleted file mode 100644 index 25e708f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-minus.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-minus.svg deleted file mode 100644 index e87b163..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-music-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-music-fill.svg deleted file mode 100644 index c64c797..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-music-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-music.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-music.svg deleted file mode 100644 index cc25eb9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-music.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf-fill.svg deleted file mode 100644 index 0ba21ab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf.svg deleted file mode 100644 index 52da96f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-pdf.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-person-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-person-fill.svg deleted file mode 100644 index 29a8129..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-person-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-person.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-person.svg deleted file mode 100644 index 59a6a2a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-person.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-play-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-play-fill.svg deleted file mode 100644 index 80731db..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-play.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-play.svg deleted file mode 100644 index 62042ab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-play.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-plus-fill.svg deleted file mode 100644 index 6cead3a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-plus.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-plus.svg deleted file mode 100644 index 9284026..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-post-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-post-fill.svg deleted file mode 100644 index 0c0e7b8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-post-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-post.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-post.svg deleted file mode 100644 index 1f0d435..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-post.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt-fill.svg deleted file mode 100644 index 68e9793..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt.svg deleted file mode 100644 index bedf552..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ppt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext-fill.svg deleted file mode 100644 index e5c82ee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext.svg deleted file mode 100644 index 35af146..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-richtext.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled-fill.svg deleted file mode 100644 index 43aecce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled.svg deleted file mode 100644 index 4f28858..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-ruled.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-slides-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-slides-fill.svg deleted file mode 100644 index 98b59df..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-slides-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-slides.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-slides.svg deleted file mode 100644 index 2d97fa7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-slides.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet-fill.svg deleted file mode 100644 index 9a71e73..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet.svg deleted file mode 100644 index a111232..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-spreadsheet.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-text-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-text-fill.svg deleted file mode 100644 index b329919..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-text.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-text.svg deleted file mode 100644 index 0d60c79..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-word-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-word-fill.svg deleted file mode 100644 index 717b049..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-word-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-word.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-word.svg deleted file mode 100644 index 7186b69..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-word.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-x-fill.svg deleted file mode 100644 index a19d14b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-x.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-x.svg deleted file mode 100644 index bedb970..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-zip-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-zip-fill.svg deleted file mode 100644 index b92ff9a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-zip-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark-zip.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark-zip.svg deleted file mode 100644 index b82afcc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark-zip.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-earmark.svg b/src/main/resources/static/assets/bootstrap-icons/file-earmark.svg deleted file mode 100644 index c3d086b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-earmark.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-easel-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-easel-fill.svg deleted file mode 100644 index e1122e5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-easel-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-easel.svg b/src/main/resources/static/assets/bootstrap-icons/file-easel.svg deleted file mode 100644 index c6d6a4d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-easel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-excel-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-excel-fill.svg deleted file mode 100644 index 350a7df..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-excel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-excel.svg b/src/main/resources/static/assets/bootstrap-icons/file-excel.svg deleted file mode 100644 index 0f43afe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-excel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-fill.svg deleted file mode 100644 index a1f4de0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-font-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-font-fill.svg deleted file mode 100644 index 198a259..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-font-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-font.svg b/src/main/resources/static/assets/bootstrap-icons/file-font.svg deleted file mode 100644 index 1d67f5e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-font.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-image-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-image-fill.svg deleted file mode 100644 index f4e81ab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-image-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-image.svg b/src/main/resources/static/assets/bootstrap-icons/file-image.svg deleted file mode 100644 index 127fd89..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-image.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-lock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-lock-fill.svg deleted file mode 100644 index a14dafc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-lock-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-lock.svg b/src/main/resources/static/assets/bootstrap-icons/file-lock.svg deleted file mode 100644 index 4206978..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-lock2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-lock2-fill.svg deleted file mode 100644 index a68a5d4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-lock2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-lock2.svg b/src/main/resources/static/assets/bootstrap-icons/file-lock2.svg deleted file mode 100644 index 134f747..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-lock2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-medical-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-medical-fill.svg deleted file mode 100644 index 6caf0a3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-medical-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-medical.svg b/src/main/resources/static/assets/bootstrap-icons/file-medical.svg deleted file mode 100644 index afec18e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-medical.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-minus-fill.svg deleted file mode 100644 index 85d9999..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-minus.svg b/src/main/resources/static/assets/bootstrap-icons/file-minus.svg deleted file mode 100644 index 67a4538..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-music-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-music-fill.svg deleted file mode 100644 index c7dfa82..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-music-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-music.svg b/src/main/resources/static/assets/bootstrap-icons/file-music.svg deleted file mode 100644 index 6531a95..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-music.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-pdf-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-pdf-fill.svg deleted file mode 100644 index 87543f5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-pdf-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-pdf.svg b/src/main/resources/static/assets/bootstrap-icons/file-pdf.svg deleted file mode 100644 index e8ba0a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-pdf.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-person-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-person-fill.svg deleted file mode 100644 index d7e05e4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-person-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-person.svg b/src/main/resources/static/assets/bootstrap-icons/file-person.svg deleted file mode 100644 index 892800a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-person.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-play-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-play-fill.svg deleted file mode 100644 index 838dda9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-play.svg b/src/main/resources/static/assets/bootstrap-icons/file-play.svg deleted file mode 100644 index fef9adf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-play.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-plus-fill.svg deleted file mode 100644 index 1730c27..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-plus.svg b/src/main/resources/static/assets/bootstrap-icons/file-plus.svg deleted file mode 100644 index d0ef464..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-post-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-post-fill.svg deleted file mode 100644 index c3fc7e0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-post-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-post.svg b/src/main/resources/static/assets/bootstrap-icons/file-post.svg deleted file mode 100644 index dd8aefc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-post.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-ppt-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-ppt-fill.svg deleted file mode 100644 index 3d3ac35..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-ppt-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-ppt.svg b/src/main/resources/static/assets/bootstrap-icons/file-ppt.svg deleted file mode 100644 index 0100d0b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-ppt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-richtext-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-richtext-fill.svg deleted file mode 100644 index 64c1fc8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-richtext-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-richtext.svg b/src/main/resources/static/assets/bootstrap-icons/file-richtext.svg deleted file mode 100644 index 22edf68..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-richtext.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-ruled-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-ruled-fill.svg deleted file mode 100644 index f93c255..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-ruled-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-ruled.svg b/src/main/resources/static/assets/bootstrap-icons/file-ruled.svg deleted file mode 100644 index 431b4eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-ruled.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-slides-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-slides-fill.svg deleted file mode 100644 index e8cb12a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-slides-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-slides.svg b/src/main/resources/static/assets/bootstrap-icons/file-slides.svg deleted file mode 100644 index df3f65d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-slides.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-spreadsheet-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-spreadsheet-fill.svg deleted file mode 100644 index a3977e1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-spreadsheet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-spreadsheet.svg b/src/main/resources/static/assets/bootstrap-icons/file-spreadsheet.svg deleted file mode 100644 index e83e733..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-spreadsheet.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-text-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-text-fill.svg deleted file mode 100644 index 29c9fc4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-text.svg b/src/main/resources/static/assets/bootstrap-icons/file-text.svg deleted file mode 100644 index fa1e861..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-word-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-word-fill.svg deleted file mode 100644 index 2df1fca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-word-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-word.svg b/src/main/resources/static/assets/bootstrap-icons/file-word.svg deleted file mode 100644 index 61a96c2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-word.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-x-fill.svg deleted file mode 100644 index 980e405..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-x.svg b/src/main/resources/static/assets/bootstrap-icons/file-x.svg deleted file mode 100644 index 1fe66e6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-zip-fill.svg b/src/main/resources/static/assets/bootstrap-icons/file-zip-fill.svg deleted file mode 100644 index 95d3966..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-zip-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file-zip.svg b/src/main/resources/static/assets/bootstrap-icons/file-zip.svg deleted file mode 100644 index 3da93c8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file-zip.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/file.svg b/src/main/resources/static/assets/bootstrap-icons/file.svg deleted file mode 100644 index 3562fb2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/file.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/files-alt.svg b/src/main/resources/static/assets/bootstrap-icons/files-alt.svg deleted file mode 100644 index 1d4d069..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/files-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/files.svg b/src/main/resources/static/assets/bootstrap-icons/files.svg deleted file mode 100644 index f8842f8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/files.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-aac.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-aac.svg deleted file mode 100644 index 8a2d02a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-aac.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-ai.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-ai.svg deleted file mode 100644 index 23e2ebc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-ai.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-bmp.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-bmp.svg deleted file mode 100644 index acf902f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-bmp.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-cs.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-cs.svg deleted file mode 100644 index fb76aec..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-cs.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-css.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-css.svg deleted file mode 100644 index da12ac6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-css.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-csv.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-csv.svg deleted file mode 100644 index efda95c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-csv.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-doc.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-doc.svg deleted file mode 100644 index 14fb544..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-doc.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-docx.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-docx.svg deleted file mode 100644 index 29a54ff..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-docx.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-exe.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-exe.svg deleted file mode 100644 index 2c4bea4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-exe.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-gif.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-gif.svg deleted file mode 100644 index 6b016d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-gif.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-heic.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-heic.svg deleted file mode 100644 index dcdb6f1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-heic.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-html.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-html.svg deleted file mode 100644 index 35d7218..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-html.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-java.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-java.svg deleted file mode 100644 index c9dc543..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-java.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-jpg.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-jpg.svg deleted file mode 100644 index 5e4ae64..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-jpg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-js.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-js.svg deleted file mode 100644 index 8b198bf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-js.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-json.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-json.svg deleted file mode 100644 index 2b9d988..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-json.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-jsx.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-jsx.svg deleted file mode 100644 index c23ba4c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-jsx.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-key.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-key.svg deleted file mode 100644 index 5b98050..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-key.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-m4p.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-m4p.svg deleted file mode 100644 index a10dc24..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-m4p.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-md.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-md.svg deleted file mode 100644 index ca5cd59..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-md.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-mdx.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-mdx.svg deleted file mode 100644 index e8774d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-mdx.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-mov.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-mov.svg deleted file mode 100644 index 9f05d63..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-mov.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-mp3.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-mp3.svg deleted file mode 100644 index 0170351..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-mp3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-mp4.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-mp4.svg deleted file mode 100644 index 997c427..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-mp4.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-otf.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-otf.svg deleted file mode 100644 index 44d0c8e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-otf.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-pdf.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-pdf.svg deleted file mode 100644 index e1fc9b6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-pdf.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-php.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-php.svg deleted file mode 100644 index 422cc2d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-php.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-png.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-png.svg deleted file mode 100644 index f719344..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-png.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-ppt.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-ppt.svg deleted file mode 100644 index cfaaf1b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-ppt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-pptx.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-pptx.svg deleted file mode 100644 index 88ef369..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-pptx.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-psd.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-psd.svg deleted file mode 100644 index cfcb13b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-psd.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-py.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-py.svg deleted file mode 100644 index 654df70..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-py.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-raw.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-raw.svg deleted file mode 100644 index fdbeefc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-raw.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-rb.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-rb.svg deleted file mode 100644 index e3387b4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-rb.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-sass.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-sass.svg deleted file mode 100644 index 5ff5ae5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-sass.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-scss.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-scss.svg deleted file mode 100644 index 68f195a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-scss.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-sh.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-sh.svg deleted file mode 100644 index 200fae4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-sh.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-sql.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-sql.svg deleted file mode 100644 index b523b37..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-sql.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-svg.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-svg.svg deleted file mode 100644 index ea1264c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-svg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-tiff.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-tiff.svg deleted file mode 100644 index d6f9e9b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-tiff.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-tsx.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-tsx.svg deleted file mode 100644 index cef1dc4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-tsx.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-ttf.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-ttf.svg deleted file mode 100644 index 549d4df..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-ttf.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-txt.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-txt.svg deleted file mode 100644 index 6fae02a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-txt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-wav.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-wav.svg deleted file mode 100644 index bd226e8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-wav.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-woff.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-woff.svg deleted file mode 100644 index d8ec582..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-woff.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-xls.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-xls.svg deleted file mode 100644 index 9c266cd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-xls.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-xlsx.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-xlsx.svg deleted file mode 100644 index a1aa802..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-xlsx.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-xml.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-xml.svg deleted file mode 100644 index d822645..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-xml.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filetype-yml.svg b/src/main/resources/static/assets/bootstrap-icons/filetype-yml.svg deleted file mode 100644 index e8bf63d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filetype-yml.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/film.svg b/src/main/resources/static/assets/bootstrap-icons/film.svg deleted file mode 100644 index 5cef939..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/film.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filter-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/filter-circle-fill.svg deleted file mode 100644 index f60fd59..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filter-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filter-circle.svg b/src/main/resources/static/assets/bootstrap-icons/filter-circle.svg deleted file mode 100644 index bbdc85f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filter-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filter-left.svg b/src/main/resources/static/assets/bootstrap-icons/filter-left.svg deleted file mode 100644 index 22441de..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filter-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filter-right.svg b/src/main/resources/static/assets/bootstrap-icons/filter-right.svg deleted file mode 100644 index 466a9b1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filter-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filter-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/filter-square-fill.svg deleted file mode 100644 index f8813b8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filter-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filter-square.svg b/src/main/resources/static/assets/bootstrap-icons/filter-square.svg deleted file mode 100644 index ae8c837..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filter-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/filter.svg b/src/main/resources/static/assets/bootstrap-icons/filter.svg deleted file mode 100644 index 555c612..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/filter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fingerprint.svg b/src/main/resources/static/assets/bootstrap-icons/fingerprint.svg deleted file mode 100644 index 3cf2042..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fingerprint.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fire.svg b/src/main/resources/static/assets/bootstrap-icons/fire.svg deleted file mode 100644 index f702837..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fire.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/flag-fill.svg b/src/main/resources/static/assets/bootstrap-icons/flag-fill.svg deleted file mode 100644 index 73fffc2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/flag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/flag.svg b/src/main/resources/static/assets/bootstrap-icons/flag.svg deleted file mode 100644 index 357c481..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/flag.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/floppy-fill.svg b/src/main/resources/static/assets/bootstrap-icons/floppy-fill.svg deleted file mode 100644 index 9c01f4c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/floppy-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/floppy.svg b/src/main/resources/static/assets/bootstrap-icons/floppy.svg deleted file mode 100644 index 6aaf1c3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/floppy.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/floppy2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/floppy2-fill.svg deleted file mode 100644 index de4bb3b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/floppy2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/floppy2.svg b/src/main/resources/static/assets/bootstrap-icons/floppy2.svg deleted file mode 100644 index ee5fd36..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/floppy2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/flower1.svg b/src/main/resources/static/assets/bootstrap-icons/flower1.svg deleted file mode 100644 index 08a7e2e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/flower1.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/flower2.svg b/src/main/resources/static/assets/bootstrap-icons/flower2.svg deleted file mode 100644 index d793728..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/flower2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/flower3.svg b/src/main/resources/static/assets/bootstrap-icons/flower3.svg deleted file mode 100644 index 147e32f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/flower3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder-check.svg b/src/main/resources/static/assets/bootstrap-icons/folder-check.svg deleted file mode 100644 index d599554..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder-fill.svg b/src/main/resources/static/assets/bootstrap-icons/folder-fill.svg deleted file mode 100644 index fd10c8e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder-minus.svg b/src/main/resources/static/assets/bootstrap-icons/folder-minus.svg deleted file mode 100644 index f41b660..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder-plus.svg b/src/main/resources/static/assets/bootstrap-icons/folder-plus.svg deleted file mode 100644 index c18e2a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder-symlink-fill.svg b/src/main/resources/static/assets/bootstrap-icons/folder-symlink-fill.svg deleted file mode 100644 index 91dc0c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder-symlink-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder-symlink.svg b/src/main/resources/static/assets/bootstrap-icons/folder-symlink.svg deleted file mode 100644 index b258b6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder-symlink.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder-x.svg b/src/main/resources/static/assets/bootstrap-icons/folder-x.svg deleted file mode 100644 index d571d08..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder.svg b/src/main/resources/static/assets/bootstrap-icons/folder.svg deleted file mode 100644 index fd4dc5a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder2-open.svg b/src/main/resources/static/assets/bootstrap-icons/folder2-open.svg deleted file mode 100644 index 59d8382..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder2-open.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/folder2.svg b/src/main/resources/static/assets/bootstrap-icons/folder2.svg deleted file mode 100644 index 4145753..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/folder2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fonts.svg b/src/main/resources/static/assets/bootstrap-icons/fonts.svg deleted file mode 100644 index 3afc7d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fonts.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fonts/bootstrap-icons.woff b/src/main/resources/static/assets/bootstrap-icons/fonts/bootstrap-icons.woff deleted file mode 100644 index ce6152bc9a417c75ea7c7198f4ebf6b230cea27a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176196 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

2+UrCZlNAp`)&G@jg{m-!Dn; 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

S154BSNfVUFulCkf_|NJv|5Y-?5 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 B0v!MV diff --git a/src/main/resources/static/assets/bootstrap-icons/fonts/bootstrap-icons.woff2 b/src/main/resources/static/assets/bootstrap-icons/fonts/bootstrap-icons.woff2 deleted file mode 100644 index c1e00940334ff868912280e6f38a33f9be469310..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130764 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 diff --git a/src/main/resources/static/assets/bootstrap-icons/forward-fill.svg b/src/main/resources/static/assets/bootstrap-icons/forward-fill.svg deleted file mode 100644 index 7f2839b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/forward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/forward.svg b/src/main/resources/static/assets/bootstrap-icons/forward.svg deleted file mode 100644 index 4b85614..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/forward.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/front.svg b/src/main/resources/static/assets/bootstrap-icons/front.svg deleted file mode 100644 index d1edeb1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/front.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel-fill.svg b/src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel-fill.svg deleted file mode 100644 index 824913c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel.svg b/src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel.svg deleted file mode 100644 index ad24a92..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fuel-pump-diesel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fuel-pump-fill.svg b/src/main/resources/static/assets/bootstrap-icons/fuel-pump-fill.svg deleted file mode 100644 index 5154523..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fuel-pump-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fuel-pump.svg b/src/main/resources/static/assets/bootstrap-icons/fuel-pump.svg deleted file mode 100644 index f4742f5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fuel-pump.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fullscreen-exit.svg b/src/main/resources/static/assets/bootstrap-icons/fullscreen-exit.svg deleted file mode 100644 index b9bdb1b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fullscreen-exit.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/fullscreen.svg b/src/main/resources/static/assets/bootstrap-icons/fullscreen.svg deleted file mode 100644 index 7789d36..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/fullscreen.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/funnel-fill.svg b/src/main/resources/static/assets/bootstrap-icons/funnel-fill.svg deleted file mode 100644 index 5f16f16..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/funnel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/funnel.svg b/src/main/resources/static/assets/bootstrap-icons/funnel.svg deleted file mode 100644 index d027aa5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/funnel.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gear-fill.svg b/src/main/resources/static/assets/bootstrap-icons/gear-fill.svg deleted file mode 100644 index 2aa36a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gear-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gear-wide-connected.svg b/src/main/resources/static/assets/bootstrap-icons/gear-wide-connected.svg deleted file mode 100644 index fc196dd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gear-wide-connected.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gear-wide.svg b/src/main/resources/static/assets/bootstrap-icons/gear-wide.svg deleted file mode 100644 index 83194ce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gear-wide.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gear.svg b/src/main/resources/static/assets/bootstrap-icons/gear.svg deleted file mode 100644 index c11dbc1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gem.svg b/src/main/resources/static/assets/bootstrap-icons/gem.svg deleted file mode 100644 index 360d554..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gem.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gender-ambiguous.svg b/src/main/resources/static/assets/bootstrap-icons/gender-ambiguous.svg deleted file mode 100644 index 2ffaf11..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gender-ambiguous.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gender-female.svg b/src/main/resources/static/assets/bootstrap-icons/gender-female.svg deleted file mode 100644 index 102783c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gender-female.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gender-male.svg b/src/main/resources/static/assets/bootstrap-icons/gender-male.svg deleted file mode 100644 index b0aee1d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gender-male.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gender-neuter.svg b/src/main/resources/static/assets/bootstrap-icons/gender-neuter.svg deleted file mode 100644 index 8dce8f5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gender-neuter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gender-trans.svg b/src/main/resources/static/assets/bootstrap-icons/gender-trans.svg deleted file mode 100644 index 4c4c074..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gender-trans.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/geo-alt-fill.svg b/src/main/resources/static/assets/bootstrap-icons/geo-alt-fill.svg deleted file mode 100644 index e88b77b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/geo-alt-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/geo-alt.svg b/src/main/resources/static/assets/bootstrap-icons/geo-alt.svg deleted file mode 100644 index 4092794..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/geo-alt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/geo-fill.svg b/src/main/resources/static/assets/bootstrap-icons/geo-fill.svg deleted file mode 100644 index a53f2bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/geo-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/geo.svg b/src/main/resources/static/assets/bootstrap-icons/geo.svg deleted file mode 100644 index 6686fea..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/geo.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gift-fill.svg b/src/main/resources/static/assets/bootstrap-icons/gift-fill.svg deleted file mode 100644 index 69f3379..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gift-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gift.svg b/src/main/resources/static/assets/bootstrap-icons/gift.svg deleted file mode 100644 index 663b87e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gift.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/git.svg b/src/main/resources/static/assets/bootstrap-icons/git.svg deleted file mode 100644 index 092d23e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/git.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/github.svg b/src/main/resources/static/assets/bootstrap-icons/github.svg deleted file mode 100644 index bb4e45c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/github.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gitlab.svg b/src/main/resources/static/assets/bootstrap-icons/gitlab.svg deleted file mode 100644 index 7b7df0b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gitlab.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/globe-americas.svg b/src/main/resources/static/assets/bootstrap-icons/globe-americas.svg deleted file mode 100644 index f66f5fe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/globe-americas.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/globe-asia-australia.svg b/src/main/resources/static/assets/bootstrap-icons/globe-asia-australia.svg deleted file mode 100644 index e4715f1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/globe-asia-australia.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/globe-central-south-asia.svg b/src/main/resources/static/assets/bootstrap-icons/globe-central-south-asia.svg deleted file mode 100644 index d4699d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/globe-central-south-asia.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/globe-europe-africa.svg b/src/main/resources/static/assets/bootstrap-icons/globe-europe-africa.svg deleted file mode 100644 index 3bd6c49..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/globe-europe-africa.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/globe.svg b/src/main/resources/static/assets/bootstrap-icons/globe.svg deleted file mode 100644 index 96cf815..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/globe.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/globe2.svg b/src/main/resources/static/assets/bootstrap-icons/globe2.svg deleted file mode 100644 index 150a01e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/globe2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/google-play.svg b/src/main/resources/static/assets/bootstrap-icons/google-play.svg deleted file mode 100644 index a970e9a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/google-play.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/google.svg b/src/main/resources/static/assets/bootstrap-icons/google.svg deleted file mode 100644 index 47abd49..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/google.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/gpu-card.svg b/src/main/resources/static/assets/bootstrap-icons/gpu-card.svg deleted file mode 100644 index b75ddce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/gpu-card.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/graph-down-arrow.svg b/src/main/resources/static/assets/bootstrap-icons/graph-down-arrow.svg deleted file mode 100644 index bf522b5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/graph-down-arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/graph-down.svg b/src/main/resources/static/assets/bootstrap-icons/graph-down.svg deleted file mode 100644 index 55adb4f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/graph-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/graph-up-arrow.svg b/src/main/resources/static/assets/bootstrap-icons/graph-up-arrow.svg deleted file mode 100644 index fd582e4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/graph-up-arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/graph-up.svg b/src/main/resources/static/assets/bootstrap-icons/graph-up.svg deleted file mode 100644 index a68bc9d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/graph-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-1x2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/grid-1x2-fill.svg deleted file mode 100644 index 1195117..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-1x2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-1x2.svg b/src/main/resources/static/assets/bootstrap-icons/grid-1x2.svg deleted file mode 100644 index dd36f54..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-1x2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap-fill.svg b/src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap-fill.svg deleted file mode 100644 index 4fe8288..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap.svg b/src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap.svg deleted file mode 100644 index a9e8689..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-3x2-gap.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-3x2.svg b/src/main/resources/static/assets/bootstrap-icons/grid-3x2.svg deleted file mode 100644 index 6dd39fd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-3x2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap-fill.svg b/src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap-fill.svg deleted file mode 100644 index d29616c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap.svg b/src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap.svg deleted file mode 100644 index 675f428..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-3x3-gap.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-3x3.svg b/src/main/resources/static/assets/bootstrap-icons/grid-3x3.svg deleted file mode 100644 index c40d98c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-3x3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid-fill.svg b/src/main/resources/static/assets/bootstrap-icons/grid-fill.svg deleted file mode 100644 index 202265f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grid.svg b/src/main/resources/static/assets/bootstrap-icons/grid.svg deleted file mode 100644 index bc50595..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grid.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grip-horizontal.svg b/src/main/resources/static/assets/bootstrap-icons/grip-horizontal.svg deleted file mode 100644 index c4439af..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grip-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/grip-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/grip-vertical.svg deleted file mode 100644 index 0182ad9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/grip-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/h-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/h-circle-fill.svg deleted file mode 100644 index 6a70736..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/h-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/h-circle.svg b/src/main/resources/static/assets/bootstrap-icons/h-circle.svg deleted file mode 100644 index 6579c1f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/h-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/h-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/h-square-fill.svg deleted file mode 100644 index 51d11d1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/h-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/h-square.svg b/src/main/resources/static/assets/bootstrap-icons/h-square.svg deleted file mode 100644 index 2eac5d7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/h-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hammer.svg b/src/main/resources/static/assets/bootstrap-icons/hammer.svg deleted file mode 100644 index d702c11..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hammer.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-index-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hand-index-fill.svg deleted file mode 100644 index ef94089..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-index-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-index-thumb-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hand-index-thumb-fill.svg deleted file mode 100644 index 43e958c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-index-thumb-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-index-thumb.svg b/src/main/resources/static/assets/bootstrap-icons/hand-index-thumb.svg deleted file mode 100644 index 699e505..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-index-thumb.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-index.svg b/src/main/resources/static/assets/bootstrap-icons/hand-index.svg deleted file mode 100644 index 789622c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-index.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down-fill.svg deleted file mode 100644 index c2f51eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down.svg b/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down.svg deleted file mode 100644 index e8dadb5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up-fill.svg deleted file mode 100644 index e7216e1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up.svg b/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up.svg deleted file mode 100644 index 0d410a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hand-thumbs-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/handbag-fill.svg b/src/main/resources/static/assets/bootstrap-icons/handbag-fill.svg deleted file mode 100644 index 5d4367c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/handbag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/handbag.svg b/src/main/resources/static/assets/bootstrap-icons/handbag.svg deleted file mode 100644 index 99e5904..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/handbag.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hash.svg b/src/main/resources/static/assets/bootstrap-icons/hash.svg deleted file mode 100644 index 4621b1d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hdd-fill.svg deleted file mode 100644 index 9bdc467..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd-network-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hdd-network-fill.svg deleted file mode 100644 index 403d472..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd-network-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd-network.svg b/src/main/resources/static/assets/bootstrap-icons/hdd-network.svg deleted file mode 100644 index f0db305..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd-network.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd-rack-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hdd-rack-fill.svg deleted file mode 100644 index bb45078..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd-rack-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd-rack.svg b/src/main/resources/static/assets/bootstrap-icons/hdd-rack.svg deleted file mode 100644 index 480d0d9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd-rack.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd-stack-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hdd-stack-fill.svg deleted file mode 100644 index c81687a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd-stack-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd-stack.svg b/src/main/resources/static/assets/bootstrap-icons/hdd-stack.svg deleted file mode 100644 index 2f74d3b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd-stack.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdd.svg b/src/main/resources/static/assets/bootstrap-icons/hdd.svg deleted file mode 100644 index 7dd6700..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdd.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdmi-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hdmi-fill.svg deleted file mode 100644 index 9b52d61..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdmi-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hdmi.svg b/src/main/resources/static/assets/bootstrap-icons/hdmi.svg deleted file mode 100644 index b8a4b41..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hdmi.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/headphones.svg b/src/main/resources/static/assets/bootstrap-icons/headphones.svg deleted file mode 100644 index c2c1d6f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/headphones.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/headset-vr.svg b/src/main/resources/static/assets/bootstrap-icons/headset-vr.svg deleted file mode 100644 index 9f07b76..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/headset-vr.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/headset.svg b/src/main/resources/static/assets/bootstrap-icons/headset.svg deleted file mode 100644 index 5369974..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/headset.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heart-arrow.svg b/src/main/resources/static/assets/bootstrap-icons/heart-arrow.svg deleted file mode 100644 index 0407ed6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heart-arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/heart-fill.svg deleted file mode 100644 index 4026252..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heart-half.svg b/src/main/resources/static/assets/bootstrap-icons/heart-half.svg deleted file mode 100644 index 1474a72..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heart-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heart-pulse-fill.svg b/src/main/resources/static/assets/bootstrap-icons/heart-pulse-fill.svg deleted file mode 100644 index b95a18b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heart-pulse-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heart-pulse.svg b/src/main/resources/static/assets/bootstrap-icons/heart-pulse.svg deleted file mode 100644 index 16aaaaf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heart-pulse.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heart.svg b/src/main/resources/static/assets/bootstrap-icons/heart.svg deleted file mode 100644 index d650006..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heartbreak-fill.svg b/src/main/resources/static/assets/bootstrap-icons/heartbreak-fill.svg deleted file mode 100644 index b669ad9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heartbreak-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heartbreak.svg b/src/main/resources/static/assets/bootstrap-icons/heartbreak.svg deleted file mode 100644 index 7fe62a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heartbreak.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hearts.svg b/src/main/resources/static/assets/bootstrap-icons/hearts.svg deleted file mode 100644 index c1c52e4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hearts.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heptagon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/heptagon-fill.svg deleted file mode 100644 index ad8e058..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heptagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heptagon-half.svg b/src/main/resources/static/assets/bootstrap-icons/heptagon-half.svg deleted file mode 100644 index 5753b62..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heptagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/heptagon.svg b/src/main/resources/static/assets/bootstrap-icons/heptagon.svg deleted file mode 100644 index e85a0bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/heptagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hexagon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hexagon-fill.svg deleted file mode 100644 index afd7870..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hexagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hexagon-half.svg b/src/main/resources/static/assets/bootstrap-icons/hexagon-half.svg deleted file mode 100644 index a9fc136..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hexagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hexagon.svg b/src/main/resources/static/assets/bootstrap-icons/hexagon.svg deleted file mode 100644 index f6601f2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hexagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/highlighter.svg b/src/main/resources/static/assets/bootstrap-icons/highlighter.svg deleted file mode 100644 index 5406b61..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/highlighter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/highlights.svg b/src/main/resources/static/assets/bootstrap-icons/highlights.svg deleted file mode 100644 index b49ca26..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/highlights.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hospital-fill.svg b/src/main/resources/static/assets/bootstrap-icons/hospital-fill.svg deleted file mode 100644 index a932133..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hospital-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hospital.svg b/src/main/resources/static/assets/bootstrap-icons/hospital.svg deleted file mode 100644 index 5168a29..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hospital.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hourglass-bottom.svg b/src/main/resources/static/assets/bootstrap-icons/hourglass-bottom.svg deleted file mode 100644 index 8ce8394..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hourglass-bottom.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hourglass-split.svg b/src/main/resources/static/assets/bootstrap-icons/hourglass-split.svg deleted file mode 100644 index b8bba9b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hourglass-split.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hourglass-top.svg b/src/main/resources/static/assets/bootstrap-icons/hourglass-top.svg deleted file mode 100644 index f471084..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hourglass-top.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hourglass.svg b/src/main/resources/static/assets/bootstrap-icons/hourglass.svg deleted file mode 100644 index cecfa7e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hourglass.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-add-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-add-fill.svg deleted file mode 100644 index e4733b5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-add-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-add.svg b/src/main/resources/static/assets/bootstrap-icons/house-add.svg deleted file mode 100644 index 2964397..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-check-fill.svg deleted file mode 100644 index 7546342..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-check-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-check.svg b/src/main/resources/static/assets/bootstrap-icons/house-check.svg deleted file mode 100644 index a30080a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-dash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-dash-fill.svg deleted file mode 100644 index 5465ef4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-dash-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-dash.svg b/src/main/resources/static/assets/bootstrap-icons/house-dash.svg deleted file mode 100644 index fa6fb26..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-door-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-door-fill.svg deleted file mode 100644 index a260a70..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-door-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-door.svg b/src/main/resources/static/assets/bootstrap-icons/house-door.svg deleted file mode 100644 index d411105..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-door.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-down-fill.svg deleted file mode 100644 index d3bf68f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-down-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-down.svg b/src/main/resources/static/assets/bootstrap-icons/house-down.svg deleted file mode 100644 index 6de3d79..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-exclamation-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-exclamation-fill.svg deleted file mode 100644 index 7433738..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-exclamation-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/house-exclamation.svg deleted file mode 100644 index 301d981..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-fill.svg deleted file mode 100644 index 8932667..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-gear-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-gear-fill.svg deleted file mode 100644 index 001ea96..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-gear-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-gear.svg b/src/main/resources/static/assets/bootstrap-icons/house-gear.svg deleted file mode 100644 index c7f9d43..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-heart-fill.svg deleted file mode 100644 index 6d874fc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-heart.svg b/src/main/resources/static/assets/bootstrap-icons/house-heart.svg deleted file mode 100644 index 26b2395..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-lock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-lock-fill.svg deleted file mode 100644 index 842b914..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-lock-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-lock.svg b/src/main/resources/static/assets/bootstrap-icons/house-lock.svg deleted file mode 100644 index e6eb968..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-slash-fill.svg deleted file mode 100644 index 20ea07b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-slash-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-slash.svg b/src/main/resources/static/assets/bootstrap-icons/house-slash.svg deleted file mode 100644 index 3e1cb66..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-up-fill.svg deleted file mode 100644 index 3e6713e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-up-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-up.svg b/src/main/resources/static/assets/bootstrap-icons/house-up.svg deleted file mode 100644 index 0a8deb3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/house-x-fill.svg deleted file mode 100644 index 00483c4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-x-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house-x.svg b/src/main/resources/static/assets/bootstrap-icons/house-x.svg deleted file mode 100644 index 88b2825..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/house.svg b/src/main/resources/static/assets/bootstrap-icons/house.svg deleted file mode 100644 index 77ac144..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/house.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/houses-fill.svg b/src/main/resources/static/assets/bootstrap-icons/houses-fill.svg deleted file mode 100644 index 30a72d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/houses-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/houses.svg b/src/main/resources/static/assets/bootstrap-icons/houses.svg deleted file mode 100644 index d66b4da..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/houses.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hr.svg b/src/main/resources/static/assets/bootstrap-icons/hr.svg deleted file mode 100644 index b6f2e33..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hr.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hurricane.svg b/src/main/resources/static/assets/bootstrap-icons/hurricane.svg deleted file mode 100644 index e21aaec..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hurricane.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/hypnotize.svg b/src/main/resources/static/assets/bootstrap-icons/hypnotize.svg deleted file mode 100644 index baa2298..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/hypnotize.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/image-alt.svg b/src/main/resources/static/assets/bootstrap-icons/image-alt.svg deleted file mode 100644 index 98142b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/image-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/image-fill.svg b/src/main/resources/static/assets/bootstrap-icons/image-fill.svg deleted file mode 100644 index 33c40a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/image-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/image.svg b/src/main/resources/static/assets/bootstrap-icons/image.svg deleted file mode 100644 index facacee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/image.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/images.svg b/src/main/resources/static/assets/bootstrap-icons/images.svg deleted file mode 100644 index b35eceb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/images.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/inbox-fill.svg b/src/main/resources/static/assets/bootstrap-icons/inbox-fill.svg deleted file mode 100644 index bf5c8c9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/inbox-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/inbox.svg b/src/main/resources/static/assets/bootstrap-icons/inbox.svg deleted file mode 100644 index 59ad2d7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/inbox.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/inboxes-fill.svg b/src/main/resources/static/assets/bootstrap-icons/inboxes-fill.svg deleted file mode 100644 index 27447dc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/inboxes-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/inboxes.svg b/src/main/resources/static/assets/bootstrap-icons/inboxes.svg deleted file mode 100644 index f23f0ec..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/inboxes.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/incognito.svg b/src/main/resources/static/assets/bootstrap-icons/incognito.svg deleted file mode 100644 index fc9f6dc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/incognito.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/indent.svg b/src/main/resources/static/assets/bootstrap-icons/indent.svg deleted file mode 100644 index 025acef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/indent.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/infinity.svg b/src/main/resources/static/assets/bootstrap-icons/infinity.svg deleted file mode 100644 index e9dd437..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/infinity.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/info-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/info-circle-fill.svg deleted file mode 100644 index 9d38231..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/info-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/info-circle.svg b/src/main/resources/static/assets/bootstrap-icons/info-circle.svg deleted file mode 100644 index 8f48f86..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/info-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/info-lg.svg b/src/main/resources/static/assets/bootstrap-icons/info-lg.svg deleted file mode 100644 index d1b988e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/info-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/info-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/info-square-fill.svg deleted file mode 100644 index c2e5a66..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/info-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/info-square.svg b/src/main/resources/static/assets/bootstrap-icons/info-square.svg deleted file mode 100644 index 71e2818..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/info-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/info.svg b/src/main/resources/static/assets/bootstrap-icons/info.svg deleted file mode 100644 index 9d061b4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/info.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/input-cursor-text.svg b/src/main/resources/static/assets/bootstrap-icons/input-cursor-text.svg deleted file mode 100644 index f212111..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/input-cursor-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/input-cursor.svg b/src/main/resources/static/assets/bootstrap-icons/input-cursor.svg deleted file mode 100644 index 3a89bb7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/input-cursor.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/instagram.svg b/src/main/resources/static/assets/bootstrap-icons/instagram.svg deleted file mode 100644 index 0b5c5ce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/instagram.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/intersect.svg b/src/main/resources/static/assets/bootstrap-icons/intersect.svg deleted file mode 100644 index 2d8c329..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/intersect.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-album.svg b/src/main/resources/static/assets/bootstrap-icons/journal-album.svg deleted file mode 100644 index 2504b3d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-album.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/journal-arrow-down.svg deleted file mode 100644 index 79c313d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-arrow-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/journal-arrow-up.svg deleted file mode 100644 index 8423461..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-arrow-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-bookmark-fill.svg b/src/main/resources/static/assets/bootstrap-icons/journal-bookmark-fill.svg deleted file mode 100644 index 03e2476..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-bookmark-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-bookmark.svg b/src/main/resources/static/assets/bootstrap-icons/journal-bookmark.svg deleted file mode 100644 index 6652764..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-bookmark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-check.svg b/src/main/resources/static/assets/bootstrap-icons/journal-check.svg deleted file mode 100644 index 41b97e9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-code.svg b/src/main/resources/static/assets/bootstrap-icons/journal-code.svg deleted file mode 100644 index 82098b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-code.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-medical.svg b/src/main/resources/static/assets/bootstrap-icons/journal-medical.svg deleted file mode 100644 index 5500110..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-medical.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-minus.svg b/src/main/resources/static/assets/bootstrap-icons/journal-minus.svg deleted file mode 100644 index c8cd4d8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-plus.svg b/src/main/resources/static/assets/bootstrap-icons/journal-plus.svg deleted file mode 100644 index fa6d702..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-richtext.svg b/src/main/resources/static/assets/bootstrap-icons/journal-richtext.svg deleted file mode 100644 index 14b0e1f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-richtext.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-text.svg b/src/main/resources/static/assets/bootstrap-icons/journal-text.svg deleted file mode 100644 index 9b66f43..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-text.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal-x.svg b/src/main/resources/static/assets/bootstrap-icons/journal-x.svg deleted file mode 100644 index 2ca24f4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journal.svg b/src/main/resources/static/assets/bootstrap-icons/journal.svg deleted file mode 100644 index 941c987..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journal.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/journals.svg b/src/main/resources/static/assets/bootstrap-icons/journals.svg deleted file mode 100644 index 03f6dad..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/journals.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/joystick.svg b/src/main/resources/static/assets/bootstrap-icons/joystick.svg deleted file mode 100644 index a8a9027..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/joystick.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/justify-left.svg b/src/main/resources/static/assets/bootstrap-icons/justify-left.svg deleted file mode 100644 index 68859b8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/justify-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/justify-right.svg b/src/main/resources/static/assets/bootstrap-icons/justify-right.svg deleted file mode 100644 index 1efe4f3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/justify-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/justify.svg b/src/main/resources/static/assets/bootstrap-icons/justify.svg deleted file mode 100644 index 009bd72..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/justify.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/kanban-fill.svg b/src/main/resources/static/assets/bootstrap-icons/kanban-fill.svg deleted file mode 100644 index d633a53..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/kanban-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/kanban.svg b/src/main/resources/static/assets/bootstrap-icons/kanban.svg deleted file mode 100644 index c5cdaaf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/kanban.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/key-fill.svg b/src/main/resources/static/assets/bootstrap-icons/key-fill.svg deleted file mode 100644 index 25a6d45..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/key-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/key.svg b/src/main/resources/static/assets/bootstrap-icons/key.svg deleted file mode 100644 index dbaae3f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/key.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/keyboard-fill.svg b/src/main/resources/static/assets/bootstrap-icons/keyboard-fill.svg deleted file mode 100644 index 876321d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/keyboard-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/keyboard.svg b/src/main/resources/static/assets/bootstrap-icons/keyboard.svg deleted file mode 100644 index 996c1eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/keyboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ladder.svg b/src/main/resources/static/assets/bootstrap-icons/ladder.svg deleted file mode 100644 index fd9182a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ladder.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lamp-fill.svg b/src/main/resources/static/assets/bootstrap-icons/lamp-fill.svg deleted file mode 100644 index ff91f4b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lamp-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lamp.svg b/src/main/resources/static/assets/bootstrap-icons/lamp.svg deleted file mode 100644 index 6c50a70..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lamp.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/laptop-fill.svg b/src/main/resources/static/assets/bootstrap-icons/laptop-fill.svg deleted file mode 100644 index 5b1755d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/laptop-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/laptop.svg b/src/main/resources/static/assets/bootstrap-icons/laptop.svg deleted file mode 100644 index 0fc463d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/laptop.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layer-backward.svg b/src/main/resources/static/assets/bootstrap-icons/layer-backward.svg deleted file mode 100644 index 073034a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layer-backward.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layer-forward.svg b/src/main/resources/static/assets/bootstrap-icons/layer-forward.svg deleted file mode 100644 index ffc6e2a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layer-forward.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layers-fill.svg b/src/main/resources/static/assets/bootstrap-icons/layers-fill.svg deleted file mode 100644 index 8af0b1c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layers-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layers-half.svg b/src/main/resources/static/assets/bootstrap-icons/layers-half.svg deleted file mode 100644 index a054e25..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layers-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layers.svg b/src/main/resources/static/assets/bootstrap-icons/layers.svg deleted file mode 100644 index ac2f5b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layers.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset-reverse.svg b/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset-reverse.svg deleted file mode 100644 index 5b6f324..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset.svg b/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset.svg deleted file mode 100644 index 8dc0243..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-inset.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-reverse.svg b/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-reverse.svg deleted file mode 100644 index 8ab9509..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar-reverse.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar.svg b/src/main/resources/static/assets/bootstrap-icons/layout-sidebar.svg deleted file mode 100644 index 1cfc86e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-sidebar.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-split.svg b/src/main/resources/static/assets/bootstrap-icons/layout-split.svg deleted file mode 100644 index 71f33d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-split.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar-reverse.svg b/src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar-reverse.svg deleted file mode 100644 index 46252d5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar.svg b/src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar.svg deleted file mode 100644 index 5effada..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-text-sidebar.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-text-window-reverse.svg b/src/main/resources/static/assets/bootstrap-icons/layout-text-window-reverse.svg deleted file mode 100644 index fb34840..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-text-window-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-text-window.svg b/src/main/resources/static/assets/bootstrap-icons/layout-text-window.svg deleted file mode 100644 index 0aef110..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-text-window.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-three-columns.svg b/src/main/resources/static/assets/bootstrap-icons/layout-three-columns.svg deleted file mode 100644 index 6d358d6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-three-columns.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/layout-wtf.svg b/src/main/resources/static/assets/bootstrap-icons/layout-wtf.svg deleted file mode 100644 index b603f8f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/layout-wtf.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/life-preserver.svg b/src/main/resources/static/assets/bootstrap-icons/life-preserver.svg deleted file mode 100644 index 6466ea2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/life-preserver.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightbulb-fill.svg b/src/main/resources/static/assets/bootstrap-icons/lightbulb-fill.svg deleted file mode 100644 index 9903950..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightbulb-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightbulb-off-fill.svg b/src/main/resources/static/assets/bootstrap-icons/lightbulb-off-fill.svg deleted file mode 100644 index 7d9600e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightbulb-off-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightbulb-off.svg b/src/main/resources/static/assets/bootstrap-icons/lightbulb-off.svg deleted file mode 100644 index 5675e9c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightbulb-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightbulb.svg b/src/main/resources/static/assets/bootstrap-icons/lightbulb.svg deleted file mode 100644 index c13f627..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightbulb.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightning-charge-fill.svg b/src/main/resources/static/assets/bootstrap-icons/lightning-charge-fill.svg deleted file mode 100644 index 5e197fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightning-charge-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightning-charge.svg b/src/main/resources/static/assets/bootstrap-icons/lightning-charge.svg deleted file mode 100644 index 8a97432..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightning-charge.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightning-fill.svg b/src/main/resources/static/assets/bootstrap-icons/lightning-fill.svg deleted file mode 100644 index 4d05a2b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightning-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lightning.svg b/src/main/resources/static/assets/bootstrap-icons/lightning.svg deleted file mode 100644 index 8737060..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lightning.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/line.svg b/src/main/resources/static/assets/bootstrap-icons/line.svg deleted file mode 100644 index bedc051..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/line.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/link-45deg.svg b/src/main/resources/static/assets/bootstrap-icons/link-45deg.svg deleted file mode 100644 index 127956a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/link-45deg.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/link.svg b/src/main/resources/static/assets/bootstrap-icons/link.svg deleted file mode 100644 index df35bc8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/link.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/linkedin.svg b/src/main/resources/static/assets/bootstrap-icons/linkedin.svg deleted file mode 100644 index 4c4efe5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/linkedin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-check.svg b/src/main/resources/static/assets/bootstrap-icons/list-check.svg deleted file mode 100644 index 34dd420..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-check.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-columns-reverse.svg b/src/main/resources/static/assets/bootstrap-icons/list-columns-reverse.svg deleted file mode 100644 index 2cb5078..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-columns-reverse.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-columns.svg b/src/main/resources/static/assets/bootstrap-icons/list-columns.svg deleted file mode 100644 index d04a30f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-columns.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-nested.svg b/src/main/resources/static/assets/bootstrap-icons/list-nested.svg deleted file mode 100644 index 21c9a7d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-nested.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-ol.svg b/src/main/resources/static/assets/bootstrap-icons/list-ol.svg deleted file mode 100644 index 5782568..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-ol.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-stars.svg b/src/main/resources/static/assets/bootstrap-icons/list-stars.svg deleted file mode 100644 index 88dce52..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-stars.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-task.svg b/src/main/resources/static/assets/bootstrap-icons/list-task.svg deleted file mode 100644 index 8118190..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-task.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list-ul.svg b/src/main/resources/static/assets/bootstrap-icons/list-ul.svg deleted file mode 100644 index 217d153..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list-ul.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/list.svg b/src/main/resources/static/assets/bootstrap-icons/list.svg deleted file mode 100644 index e039056..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/list.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/lock-fill.svg deleted file mode 100644 index 9fb8f7b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lock.svg b/src/main/resources/static/assets/bootstrap-icons/lock.svg deleted file mode 100644 index b50a68ef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lock.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/luggage-fill.svg b/src/main/resources/static/assets/bootstrap-icons/luggage-fill.svg deleted file mode 100644 index 53851e3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/luggage-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/luggage.svg b/src/main/resources/static/assets/bootstrap-icons/luggage.svg deleted file mode 100644 index e36baa0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/luggage.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lungs-fill.svg b/src/main/resources/static/assets/bootstrap-icons/lungs-fill.svg deleted file mode 100644 index a3b555d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lungs-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/lungs.svg b/src/main/resources/static/assets/bootstrap-icons/lungs.svg deleted file mode 100644 index 5370852..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/lungs.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/magic.svg b/src/main/resources/static/assets/bootstrap-icons/magic.svg deleted file mode 100644 index 3df2ec0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/magic.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/magnet-fill.svg b/src/main/resources/static/assets/bootstrap-icons/magnet-fill.svg deleted file mode 100644 index 9ca1865..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/magnet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/magnet.svg b/src/main/resources/static/assets/bootstrap-icons/magnet.svg deleted file mode 100644 index aab1763..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/magnet.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mailbox-flag.svg b/src/main/resources/static/assets/bootstrap-icons/mailbox-flag.svg deleted file mode 100644 index 6d900e4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mailbox-flag.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mailbox.svg b/src/main/resources/static/assets/bootstrap-icons/mailbox.svg deleted file mode 100644 index e2ac2f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mailbox.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mailbox2-flag.svg b/src/main/resources/static/assets/bootstrap-icons/mailbox2-flag.svg deleted file mode 100644 index 2a2c74a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mailbox2-flag.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mailbox2.svg b/src/main/resources/static/assets/bootstrap-icons/mailbox2.svg deleted file mode 100644 index 60a523b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mailbox2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/map-fill.svg b/src/main/resources/static/assets/bootstrap-icons/map-fill.svg deleted file mode 100644 index 6097c5f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/map-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/map.svg b/src/main/resources/static/assets/bootstrap-icons/map.svg deleted file mode 100644 index f9dbb08..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/map.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/markdown-fill.svg b/src/main/resources/static/assets/bootstrap-icons/markdown-fill.svg deleted file mode 100644 index b87e236..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/markdown-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/markdown.svg b/src/main/resources/static/assets/bootstrap-icons/markdown.svg deleted file mode 100644 index f9933a6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/markdown.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/marker-tip.svg b/src/main/resources/static/assets/bootstrap-icons/marker-tip.svg deleted file mode 100644 index 8db939c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/marker-tip.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mask.svg b/src/main/resources/static/assets/bootstrap-icons/mask.svg deleted file mode 100644 index 3bfe141..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mask.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mastodon.svg b/src/main/resources/static/assets/bootstrap-icons/mastodon.svg deleted file mode 100644 index 23b34f5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mastodon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/medium.svg b/src/main/resources/static/assets/bootstrap-icons/medium.svg deleted file mode 100644 index cc46876..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/medium.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/megaphone-fill.svg b/src/main/resources/static/assets/bootstrap-icons/megaphone-fill.svg deleted file mode 100644 index 237e814..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/megaphone-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/megaphone.svg b/src/main/resources/static/assets/bootstrap-icons/megaphone.svg deleted file mode 100644 index 834083c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/megaphone.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/memory.svg b/src/main/resources/static/assets/bootstrap-icons/memory.svg deleted file mode 100644 index cdc2943..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/memory.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-app-fill.svg b/src/main/resources/static/assets/bootstrap-icons/menu-app-fill.svg deleted file mode 100644 index c41c6fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-app-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-app.svg b/src/main/resources/static/assets/bootstrap-icons/menu-app.svg deleted file mode 100644 index 36e57df..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-app.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-button-fill.svg b/src/main/resources/static/assets/bootstrap-icons/menu-button-fill.svg deleted file mode 100644 index 034b64d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-button-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-button-wide-fill.svg b/src/main/resources/static/assets/bootstrap-icons/menu-button-wide-fill.svg deleted file mode 100644 index d6e17da..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-button-wide-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-button-wide.svg b/src/main/resources/static/assets/bootstrap-icons/menu-button-wide.svg deleted file mode 100644 index d67ba6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-button-wide.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-button.svg b/src/main/resources/static/assets/bootstrap-icons/menu-button.svg deleted file mode 100644 index 4e0fff9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-button.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-down.svg b/src/main/resources/static/assets/bootstrap-icons/menu-down.svg deleted file mode 100644 index b2d84b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/menu-up.svg b/src/main/resources/static/assets/bootstrap-icons/menu-up.svg deleted file mode 100644 index fb35e8d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/menu-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/messenger.svg b/src/main/resources/static/assets/bootstrap-icons/messenger.svg deleted file mode 100644 index 5c6d37d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/messenger.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/meta.svg b/src/main/resources/static/assets/bootstrap-icons/meta.svg deleted file mode 100644 index 2c6885d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/meta.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mic-fill.svg b/src/main/resources/static/assets/bootstrap-icons/mic-fill.svg deleted file mode 100644 index 9be58e9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mic-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mic-mute-fill.svg b/src/main/resources/static/assets/bootstrap-icons/mic-mute-fill.svg deleted file mode 100644 index cc325a0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mic-mute-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mic-mute.svg b/src/main/resources/static/assets/bootstrap-icons/mic-mute.svg deleted file mode 100644 index 5a520a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mic-mute.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mic.svg b/src/main/resources/static/assets/bootstrap-icons/mic.svg deleted file mode 100644 index 57be2e5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mic.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/microsoft-teams.svg b/src/main/resources/static/assets/bootstrap-icons/microsoft-teams.svg deleted file mode 100644 index e0cc253..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/microsoft-teams.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/microsoft.svg b/src/main/resources/static/assets/bootstrap-icons/microsoft.svg deleted file mode 100644 index d28281f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/microsoft.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/minecart-loaded.svg b/src/main/resources/static/assets/bootstrap-icons/minecart-loaded.svg deleted file mode 100644 index 8a75457..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/minecart-loaded.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/minecart.svg b/src/main/resources/static/assets/bootstrap-icons/minecart.svg deleted file mode 100644 index 7f3ad00..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/minecart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/modem-fill.svg b/src/main/resources/static/assets/bootstrap-icons/modem-fill.svg deleted file mode 100644 index 1fe97be..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/modem-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/modem.svg b/src/main/resources/static/assets/bootstrap-icons/modem.svg deleted file mode 100644 index 873090d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/modem.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/moisture.svg b/src/main/resources/static/assets/bootstrap-icons/moisture.svg deleted file mode 100644 index 732f4ac..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/moisture.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/moon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/moon-fill.svg deleted file mode 100644 index 1149676..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/moon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/moon-stars-fill.svg b/src/main/resources/static/assets/bootstrap-icons/moon-stars-fill.svg deleted file mode 100644 index d2e1d6e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/moon-stars-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/moon-stars.svg b/src/main/resources/static/assets/bootstrap-icons/moon-stars.svg deleted file mode 100644 index b25ef86..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/moon-stars.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/moon.svg b/src/main/resources/static/assets/bootstrap-icons/moon.svg deleted file mode 100644 index 4cd8820..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/moon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mortarboard-fill.svg b/src/main/resources/static/assets/bootstrap-icons/mortarboard-fill.svg deleted file mode 100644 index 7f5fb48..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mortarboard-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mortarboard.svg b/src/main/resources/static/assets/bootstrap-icons/mortarboard.svg deleted file mode 100644 index ed82b6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mortarboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/motherboard-fill.svg b/src/main/resources/static/assets/bootstrap-icons/motherboard-fill.svg deleted file mode 100644 index bf15e96..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/motherboard-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/motherboard.svg b/src/main/resources/static/assets/bootstrap-icons/motherboard.svg deleted file mode 100644 index ed13d0c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/motherboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mouse-fill.svg b/src/main/resources/static/assets/bootstrap-icons/mouse-fill.svg deleted file mode 100644 index bd0b5eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mouse-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mouse.svg b/src/main/resources/static/assets/bootstrap-icons/mouse.svg deleted file mode 100644 index 40976e0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mouse.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mouse2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/mouse2-fill.svg deleted file mode 100644 index 283d1cd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mouse2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mouse2.svg b/src/main/resources/static/assets/bootstrap-icons/mouse2.svg deleted file mode 100644 index 359da4d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mouse2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mouse3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/mouse3-fill.svg deleted file mode 100644 index de6dbc7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mouse3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/mouse3.svg b/src/main/resources/static/assets/bootstrap-icons/mouse3.svg deleted file mode 100644 index d042bfd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/mouse3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/music-note-beamed.svg b/src/main/resources/static/assets/bootstrap-icons/music-note-beamed.svg deleted file mode 100644 index 04cedf0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/music-note-beamed.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/music-note-list.svg b/src/main/resources/static/assets/bootstrap-icons/music-note-list.svg deleted file mode 100644 index 5c306bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/music-note-list.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/music-note.svg b/src/main/resources/static/assets/bootstrap-icons/music-note.svg deleted file mode 100644 index 1125a66..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/music-note.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/music-player-fill.svg b/src/main/resources/static/assets/bootstrap-icons/music-player-fill.svg deleted file mode 100644 index 6619d1e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/music-player-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/music-player.svg b/src/main/resources/static/assets/bootstrap-icons/music-player.svg deleted file mode 100644 index 2d50a63..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/music-player.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/newspaper.svg b/src/main/resources/static/assets/bootstrap-icons/newspaper.svg deleted file mode 100644 index 7d7fa71..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/newspaper.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/nintendo-switch.svg b/src/main/resources/static/assets/bootstrap-icons/nintendo-switch.svg deleted file mode 100644 index 0f1e2ac..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/nintendo-switch.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/node-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/node-minus-fill.svg deleted file mode 100644 index 32430b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/node-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/node-minus.svg b/src/main/resources/static/assets/bootstrap-icons/node-minus.svg deleted file mode 100644 index b1accd4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/node-minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/node-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/node-plus-fill.svg deleted file mode 100644 index e5ee855..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/node-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/node-plus.svg b/src/main/resources/static/assets/bootstrap-icons/node-plus.svg deleted file mode 100644 index 085f04f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/node-plus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/noise-reduction.svg b/src/main/resources/static/assets/bootstrap-icons/noise-reduction.svg deleted file mode 100644 index 5cf2189..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/noise-reduction.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/nut-fill.svg b/src/main/resources/static/assets/bootstrap-icons/nut-fill.svg deleted file mode 100644 index 4babc03..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/nut-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/nut.svg b/src/main/resources/static/assets/bootstrap-icons/nut.svg deleted file mode 100644 index 4912d48..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/nut.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/nvidia.svg b/src/main/resources/static/assets/bootstrap-icons/nvidia.svg deleted file mode 100644 index 6492046..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/nvidia.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/nvme-fill.svg b/src/main/resources/static/assets/bootstrap-icons/nvme-fill.svg deleted file mode 100644 index 2f3b4a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/nvme-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/nvme.svg b/src/main/resources/static/assets/bootstrap-icons/nvme.svg deleted file mode 100644 index 792bafe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/nvme.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/octagon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/octagon-fill.svg deleted file mode 100644 index c128317..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/octagon-half.svg b/src/main/resources/static/assets/bootstrap-icons/octagon-half.svg deleted file mode 100644 index d95240a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/octagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/octagon.svg b/src/main/resources/static/assets/bootstrap-icons/octagon.svg deleted file mode 100644 index 9f3657e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/octagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/opencollective.svg b/src/main/resources/static/assets/bootstrap-icons/opencollective.svg deleted file mode 100644 index cbd720f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/opencollective.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/optical-audio-fill.svg b/src/main/resources/static/assets/bootstrap-icons/optical-audio-fill.svg deleted file mode 100644 index 5bdfd82..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/optical-audio-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/optical-audio.svg b/src/main/resources/static/assets/bootstrap-icons/optical-audio.svg deleted file mode 100644 index 7a38b83..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/optical-audio.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/option.svg b/src/main/resources/static/assets/bootstrap-icons/option.svg deleted file mode 100644 index d7702b1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/option.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/outlet.svg b/src/main/resources/static/assets/bootstrap-icons/outlet.svg deleted file mode 100644 index b48af60..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/outlet.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/p-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/p-circle-fill.svg deleted file mode 100644 index ea54307..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/p-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/p-circle.svg b/src/main/resources/static/assets/bootstrap-icons/p-circle.svg deleted file mode 100644 index 888a1fa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/p-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/p-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/p-square-fill.svg deleted file mode 100644 index ad3caa2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/p-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/p-square.svg b/src/main/resources/static/assets/bootstrap-icons/p-square.svg deleted file mode 100644 index ad630d0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/p-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/paint-bucket.svg b/src/main/resources/static/assets/bootstrap-icons/paint-bucket.svg deleted file mode 100644 index ee15d10..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/paint-bucket.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/palette-fill.svg b/src/main/resources/static/assets/bootstrap-icons/palette-fill.svg deleted file mode 100644 index 7dc5ecd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/palette-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/palette.svg b/src/main/resources/static/assets/bootstrap-icons/palette.svg deleted file mode 100644 index fea76d9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/palette.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/palette2.svg b/src/main/resources/static/assets/bootstrap-icons/palette2.svg deleted file mode 100644 index 5d140b3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/palette2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/paperclip.svg b/src/main/resources/static/assets/bootstrap-icons/paperclip.svg deleted file mode 100644 index 00f311d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/paperclip.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/paragraph.svg b/src/main/resources/static/assets/bootstrap-icons/paragraph.svg deleted file mode 100644 index 999cb53..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/paragraph.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pass-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pass-fill.svg deleted file mode 100644 index a5715df..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pass-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pass.svg b/src/main/resources/static/assets/bootstrap-icons/pass.svg deleted file mode 100644 index 3f51eb5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pass.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/passport-fill.svg b/src/main/resources/static/assets/bootstrap-icons/passport-fill.svg deleted file mode 100644 index f5ab5dd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/passport-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/passport.svg b/src/main/resources/static/assets/bootstrap-icons/passport.svg deleted file mode 100644 index 9ecdaa3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/passport.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/patch-check-fill.svg deleted file mode 100644 index 1301415..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-check.svg b/src/main/resources/static/assets/bootstrap-icons/patch-check.svg deleted file mode 100644 index 2dd799e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-exclamation-fill.svg b/src/main/resources/static/assets/bootstrap-icons/patch-exclamation-fill.svg deleted file mode 100644 index fd900c4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-exclamation-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/patch-exclamation.svg deleted file mode 100644 index 153d97d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/patch-minus-fill.svg deleted file mode 100644 index 12f35c2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-minus.svg b/src/main/resources/static/assets/bootstrap-icons/patch-minus.svg deleted file mode 100644 index f6024f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/patch-plus-fill.svg deleted file mode 100644 index 1a79d79..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-plus.svg b/src/main/resources/static/assets/bootstrap-icons/patch-plus.svg deleted file mode 100644 index b9a7846..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-question-fill.svg b/src/main/resources/static/assets/bootstrap-icons/patch-question-fill.svg deleted file mode 100644 index 665588b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-question-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/patch-question.svg b/src/main/resources/static/assets/bootstrap-icons/patch-question.svg deleted file mode 100644 index ef4ca58..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/patch-question.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pause-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pause-btn-fill.svg deleted file mode 100644 index efca142..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pause-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pause-btn.svg b/src/main/resources/static/assets/bootstrap-icons/pause-btn.svg deleted file mode 100644 index 0e9eb3a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pause-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pause-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pause-circle-fill.svg deleted file mode 100644 index 5e3525f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pause-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pause-circle.svg b/src/main/resources/static/assets/bootstrap-icons/pause-circle.svg deleted file mode 100644 index 1b6b64a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pause-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pause-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pause-fill.svg deleted file mode 100644 index 68285b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pause-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pause.svg b/src/main/resources/static/assets/bootstrap-icons/pause.svg deleted file mode 100644 index 22478ea..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pause.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/paypal.svg b/src/main/resources/static/assets/bootstrap-icons/paypal.svg deleted file mode 100644 index 41bd536..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/paypal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pc-display-horizontal.svg b/src/main/resources/static/assets/bootstrap-icons/pc-display-horizontal.svg deleted file mode 100644 index 2013f15..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pc-display-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pc-display.svg b/src/main/resources/static/assets/bootstrap-icons/pc-display.svg deleted file mode 100644 index f5d09da..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pc-display.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pc-horizontal.svg b/src/main/resources/static/assets/bootstrap-icons/pc-horizontal.svg deleted file mode 100644 index 9ae513a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pc-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pc.svg b/src/main/resources/static/assets/bootstrap-icons/pc.svg deleted file mode 100644 index f0f280d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pc.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pci-card-network.svg b/src/main/resources/static/assets/bootstrap-icons/pci-card-network.svg deleted file mode 100644 index 183c730..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pci-card-network.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pci-card-sound.svg b/src/main/resources/static/assets/bootstrap-icons/pci-card-sound.svg deleted file mode 100644 index eaf0aba..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pci-card-sound.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pci-card.svg b/src/main/resources/static/assets/bootstrap-icons/pci-card.svg deleted file mode 100644 index 600a5d0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pci-card.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/peace-fill.svg b/src/main/resources/static/assets/bootstrap-icons/peace-fill.svg deleted file mode 100644 index c8ed5bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/peace-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/peace.svg b/src/main/resources/static/assets/bootstrap-icons/peace.svg deleted file mode 100644 index 3e4420b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/peace.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pen-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pen-fill.svg deleted file mode 100644 index b7bb337..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pen-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pen.svg b/src/main/resources/static/assets/bootstrap-icons/pen.svg deleted file mode 100644 index 8eb3be7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pen.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pencil-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pencil-fill.svg deleted file mode 100644 index 59d2830..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pencil-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pencil-square.svg b/src/main/resources/static/assets/bootstrap-icons/pencil-square.svg deleted file mode 100644 index b8c90d5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pencil-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pencil.svg b/src/main/resources/static/assets/bootstrap-icons/pencil.svg deleted file mode 100644 index f8dbfeb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pencil.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pentagon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pentagon-fill.svg deleted file mode 100644 index 9c80789..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pentagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pentagon-half.svg b/src/main/resources/static/assets/bootstrap-icons/pentagon-half.svg deleted file mode 100644 index 305125c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pentagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pentagon.svg b/src/main/resources/static/assets/bootstrap-icons/pentagon.svg deleted file mode 100644 index b6f5fe3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pentagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/people-fill.svg b/src/main/resources/static/assets/bootstrap-icons/people-fill.svg deleted file mode 100644 index 81d5a8e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/people-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/people.svg b/src/main/resources/static/assets/bootstrap-icons/people.svg deleted file mode 100644 index 29dfc5b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/people.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/percent.svg b/src/main/resources/static/assets/bootstrap-icons/percent.svg deleted file mode 100644 index 8af2bc4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/percent.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-add.svg b/src/main/resources/static/assets/bootstrap-icons/person-add.svg deleted file mode 100644 index cd9f071..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-arms-up.svg b/src/main/resources/static/assets/bootstrap-icons/person-arms-up.svg deleted file mode 100644 index 36c2b82..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-arms-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-badge-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-badge-fill.svg deleted file mode 100644 index d9ebe67..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-badge-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-badge.svg b/src/main/resources/static/assets/bootstrap-icons/person-badge.svg deleted file mode 100644 index d071d44..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-badge.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-bounding-box.svg b/src/main/resources/static/assets/bootstrap-icons/person-bounding-box.svg deleted file mode 100644 index 92e662c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-bounding-box.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-check-fill.svg deleted file mode 100644 index 872497a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-check.svg b/src/main/resources/static/assets/bootstrap-icons/person-check.svg deleted file mode 100644 index 85f6ada..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-circle.svg b/src/main/resources/static/assets/bootstrap-icons/person-circle.svg deleted file mode 100644 index fd7f2c9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-dash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-dash-fill.svg deleted file mode 100644 index fd719f2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-dash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-dash.svg b/src/main/resources/static/assets/bootstrap-icons/person-dash.svg deleted file mode 100644 index b374ee0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-down.svg b/src/main/resources/static/assets/bootstrap-icons/person-down.svg deleted file mode 100644 index 00489b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/person-exclamation.svg deleted file mode 100644 index ceb698a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-add.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-add.svg deleted file mode 100644 index 4383a85..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-check.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-check.svg deleted file mode 100644 index 0bb8ee4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-dash.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-dash.svg deleted file mode 100644 index d2cdec5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-down.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-down.svg deleted file mode 100644 index a1cfcdc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-exclamation.svg deleted file mode 100644 index 59cfd6f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-gear.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-gear.svg deleted file mode 100644 index f91006b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-gear.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-lock.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-lock.svg deleted file mode 100644 index 8af5ee1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-lock.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-slash.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-slash.svg deleted file mode 100644 index ede8fa4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-up.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-up.svg deleted file mode 100644 index be73bf2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill-x.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill-x.svg deleted file mode 100644 index 959fcee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-fill.svg deleted file mode 100644 index 5e71aca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-gear.svg b/src/main/resources/static/assets/bootstrap-icons/person-gear.svg deleted file mode 100644 index 8024d86..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-gear.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-heart.svg b/src/main/resources/static/assets/bootstrap-icons/person-heart.svg deleted file mode 100644 index e9ebbf4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-hearts.svg b/src/main/resources/static/assets/bootstrap-icons/person-hearts.svg deleted file mode 100644 index 06970be..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-hearts.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-lines-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-lines-fill.svg deleted file mode 100644 index 736421c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-lines-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-lock.svg b/src/main/resources/static/assets/bootstrap-icons/person-lock.svg deleted file mode 100644 index 1c20dc7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-lock.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-plus-fill.svg deleted file mode 100644 index 151ccfe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-plus.svg b/src/main/resources/static/assets/bootstrap-icons/person-plus.svg deleted file mode 100644 index aac3a67..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-raised-hand.svg b/src/main/resources/static/assets/bootstrap-icons/person-raised-hand.svg deleted file mode 100644 index 8594c33..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-raised-hand.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-rolodex.svg b/src/main/resources/static/assets/bootstrap-icons/person-rolodex.svg deleted file mode 100644 index af898ca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-rolodex.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-slash.svg b/src/main/resources/static/assets/bootstrap-icons/person-slash.svg deleted file mode 100644 index 7316d7e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-square.svg b/src/main/resources/static/assets/bootstrap-icons/person-square.svg deleted file mode 100644 index a7eb40e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-standing-dress.svg b/src/main/resources/static/assets/bootstrap-icons/person-standing-dress.svg deleted file mode 100644 index 9339d5b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-standing-dress.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-standing.svg b/src/main/resources/static/assets/bootstrap-icons/person-standing.svg deleted file mode 100644 index f2bea96..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-standing.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-up.svg b/src/main/resources/static/assets/bootstrap-icons/person-up.svg deleted file mode 100644 index 5ec777d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-vcard-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-vcard-fill.svg deleted file mode 100644 index f40d108..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-vcard-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-vcard.svg b/src/main/resources/static/assets/bootstrap-icons/person-vcard.svg deleted file mode 100644 index 3b87158..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-vcard.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-video.svg b/src/main/resources/static/assets/bootstrap-icons/person-video.svg deleted file mode 100644 index b8c1995..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-video.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-video2.svg b/src/main/resources/static/assets/bootstrap-icons/person-video2.svg deleted file mode 100644 index 3f4292e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-video2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-video3.svg b/src/main/resources/static/assets/bootstrap-icons/person-video3.svg deleted file mode 100644 index be38b24..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-video3.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-walking.svg b/src/main/resources/static/assets/bootstrap-icons/person-walking.svg deleted file mode 100644 index 4c2c118..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-walking.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-wheelchair.svg b/src/main/resources/static/assets/bootstrap-icons/person-wheelchair.svg deleted file mode 100644 index 55783d3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-wheelchair.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-workspace.svg b/src/main/resources/static/assets/bootstrap-icons/person-workspace.svg deleted file mode 100644 index e72bea0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-workspace.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/person-x-fill.svg deleted file mode 100644 index d4903a6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person-x.svg b/src/main/resources/static/assets/bootstrap-icons/person-x.svg deleted file mode 100644 index 129660d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/person.svg b/src/main/resources/static/assets/bootstrap-icons/person.svg deleted file mode 100644 index 18d6411..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/person.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/phone-fill.svg b/src/main/resources/static/assets/bootstrap-icons/phone-fill.svg deleted file mode 100644 index a2dfd03..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/phone-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/phone-flip.svg b/src/main/resources/static/assets/bootstrap-icons/phone-flip.svg deleted file mode 100644 index 54e2d26..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/phone-flip.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/phone-landscape-fill.svg b/src/main/resources/static/assets/bootstrap-icons/phone-landscape-fill.svg deleted file mode 100644 index 295481c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/phone-landscape-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/phone-landscape.svg b/src/main/resources/static/assets/bootstrap-icons/phone-landscape.svg deleted file mode 100644 index 65cd273..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/phone-landscape.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/phone-vibrate-fill.svg b/src/main/resources/static/assets/bootstrap-icons/phone-vibrate-fill.svg deleted file mode 100644 index 6e61ecc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/phone-vibrate-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/phone-vibrate.svg b/src/main/resources/static/assets/bootstrap-icons/phone-vibrate.svg deleted file mode 100644 index f380cab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/phone-vibrate.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/phone.svg b/src/main/resources/static/assets/bootstrap-icons/phone.svg deleted file mode 100644 index 3f3fd74..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/phone.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pie-chart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pie-chart-fill.svg deleted file mode 100644 index 6aa71eb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pie-chart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pie-chart.svg b/src/main/resources/static/assets/bootstrap-icons/pie-chart.svg deleted file mode 100644 index a20f6a7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pie-chart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/piggy-bank-fill.svg b/src/main/resources/static/assets/bootstrap-icons/piggy-bank-fill.svg deleted file mode 100644 index b44f35d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/piggy-bank-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/piggy-bank.svg b/src/main/resources/static/assets/bootstrap-icons/piggy-bank.svg deleted file mode 100644 index 1d836ce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/piggy-bank.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pin-angle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pin-angle-fill.svg deleted file mode 100644 index 3112c0b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pin-angle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pin-angle.svg b/src/main/resources/static/assets/bootstrap-icons/pin-angle.svg deleted file mode 100644 index a07b038..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pin-angle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pin-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pin-fill.svg deleted file mode 100644 index f00b790..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pin-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pin-map-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pin-map-fill.svg deleted file mode 100644 index b8c8502..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pin-map-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pin-map.svg b/src/main/resources/static/assets/bootstrap-icons/pin-map.svg deleted file mode 100644 index f04129a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pin-map.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pin.svg b/src/main/resources/static/assets/bootstrap-icons/pin.svg deleted file mode 100644 index 45fd7de..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pinterest.svg b/src/main/resources/static/assets/bootstrap-icons/pinterest.svg deleted file mode 100644 index b4fbc23..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pinterest.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pip-fill.svg b/src/main/resources/static/assets/bootstrap-icons/pip-fill.svg deleted file mode 100644 index 1869f78..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pip-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/pip.svg b/src/main/resources/static/assets/bootstrap-icons/pip.svg deleted file mode 100644 index 58f0638..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/pip.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/play-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/play-btn-fill.svg deleted file mode 100644 index 18b9167..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/play-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/play-btn.svg b/src/main/resources/static/assets/bootstrap-icons/play-btn.svg deleted file mode 100644 index 576e30b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/play-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/play-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/play-circle-fill.svg deleted file mode 100644 index 511ef37..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/play-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/play-circle.svg b/src/main/resources/static/assets/bootstrap-icons/play-circle.svg deleted file mode 100644 index c93144a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/play-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/play-fill.svg b/src/main/resources/static/assets/bootstrap-icons/play-fill.svg deleted file mode 100644 index 28f2e67..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/play.svg b/src/main/resources/static/assets/bootstrap-icons/play.svg deleted file mode 100644 index b3fd3dc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/play.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/playstation.svg b/src/main/resources/static/assets/bootstrap-icons/playstation.svg deleted file mode 100644 index f8ce05b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/playstation.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plug-fill.svg b/src/main/resources/static/assets/bootstrap-icons/plug-fill.svg deleted file mode 100644 index d15b8e6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plug-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plug.svg b/src/main/resources/static/assets/bootstrap-icons/plug.svg deleted file mode 100644 index c5e6688..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plug.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plugin.svg b/src/main/resources/static/assets/bootstrap-icons/plugin.svg deleted file mode 100644 index 3f179a3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plugin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-circle-dotted.svg b/src/main/resources/static/assets/bootstrap-icons/plus-circle-dotted.svg deleted file mode 100644 index c69316e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-circle-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/plus-circle-fill.svg deleted file mode 100644 index f320116..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-circle.svg b/src/main/resources/static/assets/bootstrap-icons/plus-circle.svg deleted file mode 100644 index 66308ef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-lg.svg b/src/main/resources/static/assets/bootstrap-icons/plus-lg.svg deleted file mode 100644 index f821cc3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-slash-minus.svg b/src/main/resources/static/assets/bootstrap-icons/plus-slash-minus.svg deleted file mode 100644 index 44a8e0e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-slash-minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-square-dotted.svg b/src/main/resources/static/assets/bootstrap-icons/plus-square-dotted.svg deleted file mode 100644 index 4ae7ad6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-square-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/plus-square-fill.svg deleted file mode 100644 index 0d5e15c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus-square.svg b/src/main/resources/static/assets/bootstrap-icons/plus-square.svg deleted file mode 100644 index 15c4c44..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/plus.svg b/src/main/resources/static/assets/bootstrap-icons/plus.svg deleted file mode 100644 index 5b088c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/plus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postage-fill.svg b/src/main/resources/static/assets/bootstrap-icons/postage-fill.svg deleted file mode 100644 index 701a1c6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postage-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postage-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/postage-heart-fill.svg deleted file mode 100644 index a268901..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postage-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postage-heart.svg b/src/main/resources/static/assets/bootstrap-icons/postage-heart.svg deleted file mode 100644 index 4d22b18..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postage-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postage.svg b/src/main/resources/static/assets/bootstrap-icons/postage.svg deleted file mode 100644 index cc49c70..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postage.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postcard-fill.svg b/src/main/resources/static/assets/bootstrap-icons/postcard-fill.svg deleted file mode 100644 index 01b54dd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postcard-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postcard-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/postcard-heart-fill.svg deleted file mode 100644 index 590cac9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postcard-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postcard-heart.svg b/src/main/resources/static/assets/bootstrap-icons/postcard-heart.svg deleted file mode 100644 index e0f2f05..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postcard-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/postcard.svg b/src/main/resources/static/assets/bootstrap-icons/postcard.svg deleted file mode 100644 index 827180e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/postcard.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/power.svg b/src/main/resources/static/assets/bootstrap-icons/power.svg deleted file mode 100644 index 6fb9756..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/power.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/prescription.svg b/src/main/resources/static/assets/bootstrap-icons/prescription.svg deleted file mode 100644 index 263433a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/prescription.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/prescription2.svg b/src/main/resources/static/assets/bootstrap-icons/prescription2.svg deleted file mode 100644 index fbe2f91..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/prescription2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/printer-fill.svg b/src/main/resources/static/assets/bootstrap-icons/printer-fill.svg deleted file mode 100644 index 485d987..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/printer-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/printer.svg b/src/main/resources/static/assets/bootstrap-icons/printer.svg deleted file mode 100644 index 60196bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/printer.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/projector-fill.svg b/src/main/resources/static/assets/bootstrap-icons/projector-fill.svg deleted file mode 100644 index ff6a341..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/projector-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/projector.svg b/src/main/resources/static/assets/bootstrap-icons/projector.svg deleted file mode 100644 index 218c6a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/projector.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/puzzle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/puzzle-fill.svg deleted file mode 100644 index e9bbfae..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/puzzle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/puzzle.svg b/src/main/resources/static/assets/bootstrap-icons/puzzle.svg deleted file mode 100644 index c9b07a2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/puzzle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/qr-code-scan.svg b/src/main/resources/static/assets/bootstrap-icons/qr-code-scan.svg deleted file mode 100644 index 7eb599e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/qr-code-scan.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/qr-code.svg b/src/main/resources/static/assets/bootstrap-icons/qr-code.svg deleted file mode 100644 index bf5570d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/qr-code.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/question-circle-fill.svg deleted file mode 100644 index d8e5e06..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-circle.svg b/src/main/resources/static/assets/bootstrap-icons/question-circle.svg deleted file mode 100644 index 1c8cbe7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-diamond-fill.svg b/src/main/resources/static/assets/bootstrap-icons/question-diamond-fill.svg deleted file mode 100644 index a86583b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-diamond.svg b/src/main/resources/static/assets/bootstrap-icons/question-diamond.svg deleted file mode 100644 index a7d8233..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-diamond.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-lg.svg b/src/main/resources/static/assets/bootstrap-icons/question-lg.svg deleted file mode 100644 index fa3452e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-octagon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/question-octagon-fill.svg deleted file mode 100644 index 2ff954e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-octagon.svg b/src/main/resources/static/assets/bootstrap-icons/question-octagon.svg deleted file mode 100644 index 02e8ffe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-octagon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/question-square-fill.svg deleted file mode 100644 index dd72410..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question-square.svg b/src/main/resources/static/assets/bootstrap-icons/question-square.svg deleted file mode 100644 index d0a56ff..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/question.svg b/src/main/resources/static/assets/bootstrap-icons/question.svg deleted file mode 100644 index 05abe29..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/question.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/quora.svg b/src/main/resources/static/assets/bootstrap-icons/quora.svg deleted file mode 100644 index e90e571..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/quora.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/quote.svg b/src/main/resources/static/assets/bootstrap-icons/quote.svg deleted file mode 100644 index 03b45bf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/quote.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/r-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/r-circle-fill.svg deleted file mode 100644 index c2386c3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/r-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/r-circle.svg b/src/main/resources/static/assets/bootstrap-icons/r-circle.svg deleted file mode 100644 index ab5c574..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/r-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/r-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/r-square-fill.svg deleted file mode 100644 index e039b8a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/r-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/r-square.svg b/src/main/resources/static/assets/bootstrap-icons/r-square.svg deleted file mode 100644 index 37ddc6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/r-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/radar.svg b/src/main/resources/static/assets/bootstrap-icons/radar.svg deleted file mode 100644 index 0b575fe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/radar.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/radioactive.svg b/src/main/resources/static/assets/bootstrap-icons/radioactive.svg deleted file mode 100644 index 1b1072f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/radioactive.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rainbow.svg b/src/main/resources/static/assets/bootstrap-icons/rainbow.svg deleted file mode 100644 index 8e8aea7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rainbow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/receipt-cutoff.svg b/src/main/resources/static/assets/bootstrap-icons/receipt-cutoff.svg deleted file mode 100644 index 27be3c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/receipt-cutoff.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/receipt.svg b/src/main/resources/static/assets/bootstrap-icons/receipt.svg deleted file mode 100644 index 9ea7283..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/receipt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reception-0.svg b/src/main/resources/static/assets/bootstrap-icons/reception-0.svg deleted file mode 100644 index 885bf3b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reception-0.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reception-1.svg b/src/main/resources/static/assets/bootstrap-icons/reception-1.svg deleted file mode 100644 index 3deafb6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reception-1.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reception-2.svg b/src/main/resources/static/assets/bootstrap-icons/reception-2.svg deleted file mode 100644 index 7dca57a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reception-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reception-3.svg b/src/main/resources/static/assets/bootstrap-icons/reception-3.svg deleted file mode 100644 index b30d5fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reception-3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reception-4.svg b/src/main/resources/static/assets/bootstrap-icons/reception-4.svg deleted file mode 100644 index 611bdf1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reception-4.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/record-btn-fill.svg deleted file mode 100644 index caa3ea1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record-btn.svg b/src/main/resources/static/assets/bootstrap-icons/record-btn.svg deleted file mode 100644 index 4fd261c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/record-circle-fill.svg deleted file mode 100644 index 2c2429a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record-circle.svg b/src/main/resources/static/assets/bootstrap-icons/record-circle.svg deleted file mode 100644 index d45d91c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record-fill.svg b/src/main/resources/static/assets/bootstrap-icons/record-fill.svg deleted file mode 100644 index d474393..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record.svg b/src/main/resources/static/assets/bootstrap-icons/record.svg deleted file mode 100644 index 27f82a9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/record2-fill.svg deleted file mode 100644 index 7648928..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/record2.svg b/src/main/resources/static/assets/bootstrap-icons/record2.svg deleted file mode 100644 index 43a1150..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/record2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/recycle.svg b/src/main/resources/static/assets/bootstrap-icons/recycle.svg deleted file mode 100644 index e4fa6c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/recycle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reddit.svg b/src/main/resources/static/assets/bootstrap-icons/reddit.svg deleted file mode 100644 index b1c9cfe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reddit.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/regex.svg b/src/main/resources/static/assets/bootstrap-icons/regex.svg deleted file mode 100644 index 19c0ff3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/regex.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/repeat-1.svg b/src/main/resources/static/assets/bootstrap-icons/repeat-1.svg deleted file mode 100644 index 07f4a8b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/repeat-1.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/repeat.svg b/src/main/resources/static/assets/bootstrap-icons/repeat.svg deleted file mode 100644 index 0f6d54d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/repeat.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reply-all-fill.svg b/src/main/resources/static/assets/bootstrap-icons/reply-all-fill.svg deleted file mode 100644 index 7b77b06..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reply-all-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reply-all.svg b/src/main/resources/static/assets/bootstrap-icons/reply-all.svg deleted file mode 100644 index c95025b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reply-all.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reply-fill.svg b/src/main/resources/static/assets/bootstrap-icons/reply-fill.svg deleted file mode 100644 index b5a8722..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reply-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/reply.svg b/src/main/resources/static/assets/bootstrap-icons/reply.svg deleted file mode 100644 index c2dc098..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/reply.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rewind-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/rewind-btn-fill.svg deleted file mode 100644 index 5136147..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rewind-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rewind-btn.svg b/src/main/resources/static/assets/bootstrap-icons/rewind-btn.svg deleted file mode 100644 index 45c0232..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rewind-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rewind-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/rewind-circle-fill.svg deleted file mode 100644 index afdaaf3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rewind-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rewind-circle.svg b/src/main/resources/static/assets/bootstrap-icons/rewind-circle.svg deleted file mode 100644 index 054fd95..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rewind-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rewind-fill.svg b/src/main/resources/static/assets/bootstrap-icons/rewind-fill.svg deleted file mode 100644 index 79596e0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rewind-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rewind.svg b/src/main/resources/static/assets/bootstrap-icons/rewind.svg deleted file mode 100644 index 58684d4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rewind.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/robot.svg b/src/main/resources/static/assets/bootstrap-icons/robot.svg deleted file mode 100644 index 526cb99..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/robot.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rocket-fill.svg b/src/main/resources/static/assets/bootstrap-icons/rocket-fill.svg deleted file mode 100644 index dcb5cb8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rocket-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rocket-takeoff-fill.svg b/src/main/resources/static/assets/bootstrap-icons/rocket-takeoff-fill.svg deleted file mode 100644 index a748d6d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rocket-takeoff-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rocket-takeoff.svg b/src/main/resources/static/assets/bootstrap-icons/rocket-takeoff.svg deleted file mode 100644 index 376d342..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rocket-takeoff.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rocket.svg b/src/main/resources/static/assets/bootstrap-icons/rocket.svg deleted file mode 100644 index 5b3cd5c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rocket.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/router-fill.svg b/src/main/resources/static/assets/bootstrap-icons/router-fill.svg deleted file mode 100644 index de050cf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/router-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/router.svg b/src/main/resources/static/assets/bootstrap-icons/router.svg deleted file mode 100644 index 8fa22d0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/router.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rss-fill.svg b/src/main/resources/static/assets/bootstrap-icons/rss-fill.svg deleted file mode 100644 index 39bef06..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rss-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rss.svg b/src/main/resources/static/assets/bootstrap-icons/rss.svg deleted file mode 100644 index be41f20..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rss.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/rulers.svg b/src/main/resources/static/assets/bootstrap-icons/rulers.svg deleted file mode 100644 index e9891c9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/rulers.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/safe-fill.svg b/src/main/resources/static/assets/bootstrap-icons/safe-fill.svg deleted file mode 100644 index 1036d67..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/safe-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/safe.svg b/src/main/resources/static/assets/bootstrap-icons/safe.svg deleted file mode 100644 index fb5b7cb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/safe.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/safe2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/safe2-fill.svg deleted file mode 100644 index d1d37f2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/safe2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/safe2.svg b/src/main/resources/static/assets/bootstrap-icons/safe2.svg deleted file mode 100644 index 37bfbe8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/safe2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/save-fill.svg b/src/main/resources/static/assets/bootstrap-icons/save-fill.svg deleted file mode 100644 index 0a43dc1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/save-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/save.svg b/src/main/resources/static/assets/bootstrap-icons/save.svg deleted file mode 100644 index 26b8aed..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/save.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/save2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/save2-fill.svg deleted file mode 100644 index 45feb59..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/save2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/save2.svg b/src/main/resources/static/assets/bootstrap-icons/save2.svg deleted file mode 100644 index 52bc9e4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/save2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/scissors.svg b/src/main/resources/static/assets/bootstrap-icons/scissors.svg deleted file mode 100644 index ab71b0d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/scissors.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/scooter.svg b/src/main/resources/static/assets/bootstrap-icons/scooter.svg deleted file mode 100644 index 238eedb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/scooter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/screwdriver.svg b/src/main/resources/static/assets/bootstrap-icons/screwdriver.svg deleted file mode 100644 index dc9c374..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/screwdriver.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sd-card-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sd-card-fill.svg deleted file mode 100644 index 9fe36b6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sd-card-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sd-card.svg b/src/main/resources/static/assets/bootstrap-icons/sd-card.svg deleted file mode 100644 index 12ed59f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sd-card.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/search-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/search-heart-fill.svg deleted file mode 100644 index 54e31c7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/search-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/search-heart.svg b/src/main/resources/static/assets/bootstrap-icons/search-heart.svg deleted file mode 100644 index 92ea059..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/search-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/search.svg b/src/main/resources/static/assets/bootstrap-icons/search.svg deleted file mode 100644 index d3dc7ca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/search.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/segmented-nav.svg b/src/main/resources/static/assets/bootstrap-icons/segmented-nav.svg deleted file mode 100644 index 42323b2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/segmented-nav.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-arrow-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-arrow-down-fill.svg deleted file mode 100644 index b9a437e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-arrow-down-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-arrow-down.svg b/src/main/resources/static/assets/bootstrap-icons/send-arrow-down.svg deleted file mode 100644 index 3bc034b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-arrow-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-arrow-up-fill.svg deleted file mode 100644 index 827a504..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-arrow-up-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-arrow-up.svg b/src/main/resources/static/assets/bootstrap-icons/send-arrow-up.svg deleted file mode 100644 index 9f2d340..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-check-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-check-fill.svg deleted file mode 100644 index 4b0a56a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-check.svg b/src/main/resources/static/assets/bootstrap-icons/send-check.svg deleted file mode 100644 index 581ebbe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-dash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-dash-fill.svg deleted file mode 100644 index 254329c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-dash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-dash.svg b/src/main/resources/static/assets/bootstrap-icons/send-dash.svg deleted file mode 100644 index abfbad3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-exclamation-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-exclamation-fill.svg deleted file mode 100644 index 5a77e98..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-exclamation-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/send-exclamation.svg deleted file mode 100644 index 149a7f7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-fill.svg deleted file mode 100644 index 2a84015..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-plus-fill.svg deleted file mode 100644 index bea3738..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-plus.svg b/src/main/resources/static/assets/bootstrap-icons/send-plus.svg deleted file mode 100644 index 4120228..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-slash-fill.svg deleted file mode 100644 index 3345687..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-slash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-slash.svg b/src/main/resources/static/assets/bootstrap-icons/send-slash.svg deleted file mode 100644 index 782daf3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/send-x-fill.svg deleted file mode 100644 index ce102ba..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send-x.svg b/src/main/resources/static/assets/bootstrap-icons/send-x.svg deleted file mode 100644 index c8bc8bf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/send.svg b/src/main/resources/static/assets/bootstrap-icons/send.svg deleted file mode 100644 index c81fc95..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/send.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/server.svg b/src/main/resources/static/assets/bootstrap-icons/server.svg deleted file mode 100644 index ff85feb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/server.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shadows.svg b/src/main/resources/static/assets/bootstrap-icons/shadows.svg deleted file mode 100644 index 28dca01..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shadows.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/share-fill.svg b/src/main/resources/static/assets/bootstrap-icons/share-fill.svg deleted file mode 100644 index 8b0ee88..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/share-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/share.svg b/src/main/resources/static/assets/bootstrap-icons/share.svg deleted file mode 100644 index 79d3075..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/share.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-check.svg b/src/main/resources/static/assets/bootstrap-icons/shield-check.svg deleted file mode 100644 index ecbf543..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/shield-exclamation.svg deleted file mode 100644 index 825de04..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-fill-check.svg b/src/main/resources/static/assets/bootstrap-icons/shield-fill-check.svg deleted file mode 100644 index a72b2ba..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-fill-check.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-fill-exclamation.svg b/src/main/resources/static/assets/bootstrap-icons/shield-fill-exclamation.svg deleted file mode 100644 index b489a68..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-fill-exclamation.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-fill-minus.svg b/src/main/resources/static/assets/bootstrap-icons/shield-fill-minus.svg deleted file mode 100644 index b9b9129..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-fill-minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-fill-plus.svg b/src/main/resources/static/assets/bootstrap-icons/shield-fill-plus.svg deleted file mode 100644 index aec96d1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-fill-plus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-fill-x.svg b/src/main/resources/static/assets/bootstrap-icons/shield-fill-x.svg deleted file mode 100644 index d384af4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-fill-x.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-fill.svg b/src/main/resources/static/assets/bootstrap-icons/shield-fill.svg deleted file mode 100644 index d1d877d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-lock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/shield-lock-fill.svg deleted file mode 100644 index e4c96b4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-lock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-lock.svg b/src/main/resources/static/assets/bootstrap-icons/shield-lock.svg deleted file mode 100644 index ff38425..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-minus.svg b/src/main/resources/static/assets/bootstrap-icons/shield-minus.svg deleted file mode 100644 index d1cedfd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-plus.svg b/src/main/resources/static/assets/bootstrap-icons/shield-plus.svg deleted file mode 100644 index 77bcb1a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-shaded.svg b/src/main/resources/static/assets/bootstrap-icons/shield-shaded.svg deleted file mode 100644 index 9c4af1a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-shaded.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/shield-slash-fill.svg deleted file mode 100644 index 015d11b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-slash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-slash.svg b/src/main/resources/static/assets/bootstrap-icons/shield-slash.svg deleted file mode 100644 index 234afa2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield-x.svg b/src/main/resources/static/assets/bootstrap-icons/shield-x.svg deleted file mode 100644 index 3fe1666..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shield.svg b/src/main/resources/static/assets/bootstrap-icons/shield.svg deleted file mode 100644 index 18309d1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shield.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shift-fill.svg b/src/main/resources/static/assets/bootstrap-icons/shift-fill.svg deleted file mode 100644 index da897bc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shift-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shift.svg b/src/main/resources/static/assets/bootstrap-icons/shift.svg deleted file mode 100644 index 59a88ef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shift.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shop-window.svg b/src/main/resources/static/assets/bootstrap-icons/shop-window.svg deleted file mode 100644 index a306cfa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shop-window.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shop.svg b/src/main/resources/static/assets/bootstrap-icons/shop.svg deleted file mode 100644 index 223d77b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shop.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/shuffle.svg b/src/main/resources/static/assets/bootstrap-icons/shuffle.svg deleted file mode 100644 index 83bf20c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/shuffle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-dead-end-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-dead-end-fill.svg deleted file mode 100644 index b7f5876..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-dead-end-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-dead-end.svg b/src/main/resources/static/assets/bootstrap-icons/sign-dead-end.svg deleted file mode 100644 index 2828c9a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-dead-end.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter-fill.svg deleted file mode 100644 index 3dfab6c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter.svg b/src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter.svg deleted file mode 100644 index bf1ab21..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-do-not-enter.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection-fill.svg deleted file mode 100644 index a8d0e5b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-side-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection-side-fill.svg deleted file mode 100644 index 7e6fd34..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-side-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-side.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection-side.svg deleted file mode 100644 index 80959aa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-side.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-t-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection-t-fill.svg deleted file mode 100644 index 0927772..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-t-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-t.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection-t.svg deleted file mode 100644 index 95240f4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-t.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-y-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection-y-fill.svg deleted file mode 100644 index 80201f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-y-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-y.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection-y.svg deleted file mode 100644 index efc84a3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection-y.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-intersection.svg b/src/main/resources/static/assets/bootstrap-icons/sign-intersection.svg deleted file mode 100644 index 509b13f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-intersection.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-merge-left-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-merge-left-fill.svg deleted file mode 100644 index a1bd7ac..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-merge-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-merge-left.svg b/src/main/resources/static/assets/bootstrap-icons/sign-merge-left.svg deleted file mode 100644 index b509fa2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-merge-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-merge-right-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-merge-right-fill.svg deleted file mode 100644 index 7f77190..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-merge-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-merge-right.svg b/src/main/resources/static/assets/bootstrap-icons/sign-merge-right.svg deleted file mode 100644 index 0339ab2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-merge-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn-fill.svg deleted file mode 100644 index 86cc79b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn.svg b/src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn.svg deleted file mode 100644 index e29d443..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-no-left-turn.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-no-parking-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-no-parking-fill.svg deleted file mode 100644 index 0e1bf46..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-no-parking-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-no-parking.svg b/src/main/resources/static/assets/bootstrap-icons/sign-no-parking.svg deleted file mode 100644 index cc97b1c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-no-parking.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn-fill.svg deleted file mode 100644 index 7448c09..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn.svg b/src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn.svg deleted file mode 100644 index e7de083..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-no-right-turn.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-railroad-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-railroad-fill.svg deleted file mode 100644 index 2581813..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-railroad-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-railroad.svg b/src/main/resources/static/assets/bootstrap-icons/sign-railroad.svg deleted file mode 100644 index a264db2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-railroad.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-stop-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-stop-fill.svg deleted file mode 100644 index 375af76..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-stop-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-stop-lights-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-stop-lights-fill.svg deleted file mode 100644 index df93e1c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-stop-lights-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-stop-lights.svg b/src/main/resources/static/assets/bootstrap-icons/sign-stop-lights.svg deleted file mode 100644 index 297320a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-stop-lights.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-stop.svg b/src/main/resources/static/assets/bootstrap-icons/sign-stop.svg deleted file mode 100644 index 14def74..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-stop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-left-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-left-fill.svg deleted file mode 100644 index 87a6dca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-left.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-left.svg deleted file mode 100644 index bea00b7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-right-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-right-fill.svg deleted file mode 100644 index 4181518..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-right.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-right.svg deleted file mode 100644 index da447db..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left-fill.svg deleted file mode 100644 index 62f8388..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left.svg deleted file mode 100644 index 79475ad..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right-fill.svg deleted file mode 100644 index c4c4761..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right.svg b/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right.svg deleted file mode 100644 index cf22c01..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-turn-slight-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-yield-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sign-yield-fill.svg deleted file mode 100644 index c2ec9a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-yield-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sign-yield.svg b/src/main/resources/static/assets/bootstrap-icons/sign-yield.svg deleted file mode 100644 index aabf3fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sign-yield.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/signal.svg b/src/main/resources/static/assets/bootstrap-icons/signal.svg deleted file mode 100644 index 4220d48..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/signal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/signpost-2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/signpost-2-fill.svg deleted file mode 100644 index cc51e51..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/signpost-2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/signpost-2.svg b/src/main/resources/static/assets/bootstrap-icons/signpost-2.svg deleted file mode 100644 index 6a18b3b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/signpost-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/signpost-fill.svg b/src/main/resources/static/assets/bootstrap-icons/signpost-fill.svg deleted file mode 100644 index f95f257..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/signpost-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/signpost-split-fill.svg b/src/main/resources/static/assets/bootstrap-icons/signpost-split-fill.svg deleted file mode 100644 index 86aa086..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/signpost-split-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/signpost-split.svg b/src/main/resources/static/assets/bootstrap-icons/signpost-split.svg deleted file mode 100644 index 0168ae5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/signpost-split.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/signpost.svg b/src/main/resources/static/assets/bootstrap-icons/signpost.svg deleted file mode 100644 index 90a8882..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/signpost.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sim-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sim-fill.svg deleted file mode 100644 index c8e2c29..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sim-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sim-slash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sim-slash-fill.svg deleted file mode 100644 index e7dd752..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sim-slash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sim-slash.svg b/src/main/resources/static/assets/bootstrap-icons/sim-slash.svg deleted file mode 100644 index 90b9805..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sim-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sim.svg b/src/main/resources/static/assets/bootstrap-icons/sim.svg deleted file mode 100644 index cc0e869..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sim.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sina-weibo.svg b/src/main/resources/static/assets/bootstrap-icons/sina-weibo.svg deleted file mode 100644 index 05c5f4b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sina-weibo.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-backward-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-backward-btn-fill.svg deleted file mode 100644 index bf06429..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-backward-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-backward-btn.svg b/src/main/resources/static/assets/bootstrap-icons/skip-backward-btn.svg deleted file mode 100644 index b04455e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-backward-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-backward-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-backward-circle-fill.svg deleted file mode 100644 index f6b6e4d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-backward-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-backward-circle.svg b/src/main/resources/static/assets/bootstrap-icons/skip-backward-circle.svg deleted file mode 100644 index 63e2a19..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-backward-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-backward-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-backward-fill.svg deleted file mode 100644 index a0ce53c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-backward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-backward.svg b/src/main/resources/static/assets/bootstrap-icons/skip-backward.svg deleted file mode 100644 index 9be60fe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-backward.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-end-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-end-btn-fill.svg deleted file mode 100644 index 55bf1ba..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-end-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-end-btn.svg b/src/main/resources/static/assets/bootstrap-icons/skip-end-btn.svg deleted file mode 100644 index 6c5b044..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-end-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-end-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-end-circle-fill.svg deleted file mode 100644 index e303750..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-end-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-end-circle.svg b/src/main/resources/static/assets/bootstrap-icons/skip-end-circle.svg deleted file mode 100644 index 39e8cd3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-end-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-end-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-end-fill.svg deleted file mode 100644 index fa90d3f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-end-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-end.svg b/src/main/resources/static/assets/bootstrap-icons/skip-end.svg deleted file mode 100644 index 40d6fa9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-end.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-forward-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-forward-btn-fill.svg deleted file mode 100644 index b767e9c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-forward-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-forward-btn.svg b/src/main/resources/static/assets/bootstrap-icons/skip-forward-btn.svg deleted file mode 100644 index f67d3a8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-forward-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-forward-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-forward-circle-fill.svg deleted file mode 100644 index 00cea35..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-forward-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-forward-circle.svg b/src/main/resources/static/assets/bootstrap-icons/skip-forward-circle.svg deleted file mode 100644 index 3b55d7e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-forward-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-forward-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-forward-fill.svg deleted file mode 100644 index c4071aa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-forward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-forward.svg b/src/main/resources/static/assets/bootstrap-icons/skip-forward.svg deleted file mode 100644 index a1c4720..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-forward.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-start-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-start-btn-fill.svg deleted file mode 100644 index 56a1370..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-start-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-start-btn.svg b/src/main/resources/static/assets/bootstrap-icons/skip-start-btn.svg deleted file mode 100644 index c86afbe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-start-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-start-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-start-circle-fill.svg deleted file mode 100644 index b6d13b0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-start-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-start-circle.svg b/src/main/resources/static/assets/bootstrap-icons/skip-start-circle.svg deleted file mode 100644 index f9664d9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-start-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-start-fill.svg b/src/main/resources/static/assets/bootstrap-icons/skip-start-fill.svg deleted file mode 100644 index c4295fc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-start-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skip-start.svg b/src/main/resources/static/assets/bootstrap-icons/skip-start.svg deleted file mode 100644 index a178e0e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skip-start.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/skype.svg b/src/main/resources/static/assets/bootstrap-icons/skype.svg deleted file mode 100644 index b3beaf9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/skype.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/slack.svg b/src/main/resources/static/assets/bootstrap-icons/slack.svg deleted file mode 100644 index f4aa6e6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/slack.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/slash-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/slash-circle-fill.svg deleted file mode 100644 index f703101..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/slash-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/slash-circle.svg b/src/main/resources/static/assets/bootstrap-icons/slash-circle.svg deleted file mode 100644 index 4c1344b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/slash-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/slash-lg.svg b/src/main/resources/static/assets/bootstrap-icons/slash-lg.svg deleted file mode 100644 index 161b6ec..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/slash-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/slash-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/slash-square-fill.svg deleted file mode 100644 index c7a3935..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/slash-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/slash-square.svg b/src/main/resources/static/assets/bootstrap-icons/slash-square.svg deleted file mode 100644 index ccf42bd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/slash-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/slash.svg b/src/main/resources/static/assets/bootstrap-icons/slash.svg deleted file mode 100644 index 9616561..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sliders.svg b/src/main/resources/static/assets/bootstrap-icons/sliders.svg deleted file mode 100644 index da4b835..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sliders.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sliders2-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/sliders2-vertical.svg deleted file mode 100644 index c474281..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sliders2-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sliders2.svg b/src/main/resources/static/assets/bootstrap-icons/sliders2.svg deleted file mode 100644 index 86fa70c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sliders2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/smartwatch.svg b/src/main/resources/static/assets/bootstrap-icons/smartwatch.svg deleted file mode 100644 index 696bd33..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/smartwatch.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/snapchat.svg b/src/main/resources/static/assets/bootstrap-icons/snapchat.svg deleted file mode 100644 index 505f55a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/snapchat.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/snow.svg b/src/main/resources/static/assets/bootstrap-icons/snow.svg deleted file mode 100644 index 9b648a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/snow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/snow2.svg b/src/main/resources/static/assets/bootstrap-icons/snow2.svg deleted file mode 100644 index cede335..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/snow2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/snow3.svg b/src/main/resources/static/assets/bootstrap-icons/snow3.svg deleted file mode 100644 index 75e5ef2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/snow3.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-down-alt.svg b/src/main/resources/static/assets/bootstrap-icons/sort-alpha-down-alt.svg deleted file mode 100644 index fa4f4fa..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-down-alt.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-down.svg b/src/main/resources/static/assets/bootstrap-icons/sort-alpha-down.svg deleted file mode 100644 index e0fcad0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-up-alt.svg b/src/main/resources/static/assets/bootstrap-icons/sort-alpha-up-alt.svg deleted file mode 100644 index 69c1a39..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-up-alt.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-up.svg b/src/main/resources/static/assets/bootstrap-icons/sort-alpha-up.svg deleted file mode 100644 index 0be5e68..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-alpha-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-down-alt.svg b/src/main/resources/static/assets/bootstrap-icons/sort-down-alt.svg deleted file mode 100644 index d7f7fc8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-down-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-down.svg b/src/main/resources/static/assets/bootstrap-icons/sort-down.svg deleted file mode 100644 index 848834c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-down-alt.svg b/src/main/resources/static/assets/bootstrap-icons/sort-numeric-down-alt.svg deleted file mode 100644 index 8c39a5a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-down-alt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-down.svg b/src/main/resources/static/assets/bootstrap-icons/sort-numeric-down.svg deleted file mode 100644 index 57a3fb0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-up-alt.svg b/src/main/resources/static/assets/bootstrap-icons/sort-numeric-up-alt.svg deleted file mode 100644 index e8edf88..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-up-alt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-up.svg b/src/main/resources/static/assets/bootstrap-icons/sort-numeric-up.svg deleted file mode 100644 index 1cd0a37..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-numeric-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-up-alt.svg b/src/main/resources/static/assets/bootstrap-icons/sort-up-alt.svg deleted file mode 100644 index 96650d5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-up-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sort-up.svg b/src/main/resources/static/assets/bootstrap-icons/sort-up.svg deleted file mode 100644 index 2158801..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sort-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/soundwave.svg b/src/main/resources/static/assets/bootstrap-icons/soundwave.svg deleted file mode 100644 index 288f108..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/soundwave.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sourceforge.svg b/src/main/resources/static/assets/bootstrap-icons/sourceforge.svg deleted file mode 100644 index 1a249e8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sourceforge.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/speaker-fill.svg b/src/main/resources/static/assets/bootstrap-icons/speaker-fill.svg deleted file mode 100644 index bae80e2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/speaker-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/speaker.svg b/src/main/resources/static/assets/bootstrap-icons/speaker.svg deleted file mode 100644 index 461626d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/speaker.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/speedometer.svg b/src/main/resources/static/assets/bootstrap-icons/speedometer.svg deleted file mode 100644 index 5a0a43c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/speedometer.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/speedometer2.svg b/src/main/resources/static/assets/bootstrap-icons/speedometer2.svg deleted file mode 100644 index d5676df..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/speedometer2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/spellcheck.svg b/src/main/resources/static/assets/bootstrap-icons/spellcheck.svg deleted file mode 100644 index 029950f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/spellcheck.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/spotify.svg b/src/main/resources/static/assets/bootstrap-icons/spotify.svg deleted file mode 100644 index 31b4238..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/spotify.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/square-fill.svg deleted file mode 100644 index 31bae4f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/square-half.svg b/src/main/resources/static/assets/bootstrap-icons/square-half.svg deleted file mode 100644 index 3f8179d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/square-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/square.svg b/src/main/resources/static/assets/bootstrap-icons/square.svg deleted file mode 100644 index ded82d4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/square.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stack-overflow.svg b/src/main/resources/static/assets/bootstrap-icons/stack-overflow.svg deleted file mode 100644 index b7d482d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stack-overflow.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stack.svg b/src/main/resources/static/assets/bootstrap-icons/stack.svg deleted file mode 100644 index b8a9c94..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stack.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/star-fill.svg b/src/main/resources/static/assets/bootstrap-icons/star-fill.svg deleted file mode 100644 index de09c4a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/star-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/star-half.svg b/src/main/resources/static/assets/bootstrap-icons/star-half.svg deleted file mode 100644 index 8d30e7e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/star-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/star.svg b/src/main/resources/static/assets/bootstrap-icons/star.svg deleted file mode 100644 index 742b5e2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/star.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stars.svg b/src/main/resources/static/assets/bootstrap-icons/stars.svg deleted file mode 100644 index 2c16677..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stars.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/steam.svg b/src/main/resources/static/assets/bootstrap-icons/steam.svg deleted file mode 100644 index aecd433..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/steam.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stickies-fill.svg b/src/main/resources/static/assets/bootstrap-icons/stickies-fill.svg deleted file mode 100644 index a0252da..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stickies-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stickies.svg b/src/main/resources/static/assets/bootstrap-icons/stickies.svg deleted file mode 100644 index 8252c49..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stickies.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sticky-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sticky-fill.svg deleted file mode 100644 index acd42b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sticky-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sticky.svg b/src/main/resources/static/assets/bootstrap-icons/sticky.svg deleted file mode 100644 index dba0142..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sticky.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stop-btn-fill.svg b/src/main/resources/static/assets/bootstrap-icons/stop-btn-fill.svg deleted file mode 100644 index 58b6c02..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stop-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stop-btn.svg b/src/main/resources/static/assets/bootstrap-icons/stop-btn.svg deleted file mode 100644 index 5c392ec..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stop-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stop-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/stop-circle-fill.svg deleted file mode 100644 index ac711e0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stop-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stop-circle.svg b/src/main/resources/static/assets/bootstrap-icons/stop-circle.svg deleted file mode 100644 index 441613c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stop-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stop-fill.svg b/src/main/resources/static/assets/bootstrap-icons/stop-fill.svg deleted file mode 100644 index e00085a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stop-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stop.svg b/src/main/resources/static/assets/bootstrap-icons/stop.svg deleted file mode 100644 index 2b86647..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stop.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stoplights-fill.svg b/src/main/resources/static/assets/bootstrap-icons/stoplights-fill.svg deleted file mode 100644 index a18566b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stoplights-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stoplights.svg b/src/main/resources/static/assets/bootstrap-icons/stoplights.svg deleted file mode 100644 index f765ab2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stoplights.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stopwatch-fill.svg b/src/main/resources/static/assets/bootstrap-icons/stopwatch-fill.svg deleted file mode 100644 index 2d2ed11..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stopwatch-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stopwatch.svg b/src/main/resources/static/assets/bootstrap-icons/stopwatch.svg deleted file mode 100644 index 964dbb8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stopwatch.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/strava.svg b/src/main/resources/static/assets/bootstrap-icons/strava.svg deleted file mode 100644 index 7e3237d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/strava.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/stripe.svg b/src/main/resources/static/assets/bootstrap-icons/stripe.svg deleted file mode 100644 index f24fdf3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/stripe.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/subscript.svg b/src/main/resources/static/assets/bootstrap-icons/subscript.svg deleted file mode 100644 index 6976c0d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/subscript.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/substack.svg b/src/main/resources/static/assets/bootstrap-icons/substack.svg deleted file mode 100644 index ebdcb0c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/substack.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/subtract.svg b/src/main/resources/static/assets/bootstrap-icons/subtract.svg deleted file mode 100644 index e1d878a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/subtract.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-club-fill.svg b/src/main/resources/static/assets/bootstrap-icons/suit-club-fill.svg deleted file mode 100644 index d4d311a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-club-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-club.svg b/src/main/resources/static/assets/bootstrap-icons/suit-club.svg deleted file mode 100644 index 75e5e85..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-club.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-diamond-fill.svg b/src/main/resources/static/assets/bootstrap-icons/suit-diamond-fill.svg deleted file mode 100644 index 2be1b7f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-diamond.svg b/src/main/resources/static/assets/bootstrap-icons/suit-diamond.svg deleted file mode 100644 index 9192a27..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-diamond.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-heart-fill.svg b/src/main/resources/static/assets/bootstrap-icons/suit-heart-fill.svg deleted file mode 100644 index 0dd86f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-heart.svg b/src/main/resources/static/assets/bootstrap-icons/suit-heart.svg deleted file mode 100644 index c761ef4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-spade-fill.svg b/src/main/resources/static/assets/bootstrap-icons/suit-spade-fill.svg deleted file mode 100644 index 63bb0c6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-spade-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suit-spade.svg b/src/main/resources/static/assets/bootstrap-icons/suit-spade.svg deleted file mode 100644 index 8f14427..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suit-spade.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suitcase-fill.svg b/src/main/resources/static/assets/bootstrap-icons/suitcase-fill.svg deleted file mode 100644 index e7fc796..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suitcase-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suitcase-lg-fill.svg b/src/main/resources/static/assets/bootstrap-icons/suitcase-lg-fill.svg deleted file mode 100644 index e5c50cc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suitcase-lg-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suitcase-lg.svg b/src/main/resources/static/assets/bootstrap-icons/suitcase-lg.svg deleted file mode 100644 index ca006d5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suitcase-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suitcase.svg b/src/main/resources/static/assets/bootstrap-icons/suitcase.svg deleted file mode 100644 index ba09ae5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suitcase.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suitcase2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/suitcase2-fill.svg deleted file mode 100644 index 46a558d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suitcase2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/suitcase2.svg b/src/main/resources/static/assets/bootstrap-icons/suitcase2.svg deleted file mode 100644 index 2b4891e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/suitcase2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sun-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sun-fill.svg deleted file mode 100644 index cc1a60e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sun-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sun.svg b/src/main/resources/static/assets/bootstrap-icons/sun.svg deleted file mode 100644 index c311208..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sun.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sunglasses.svg b/src/main/resources/static/assets/bootstrap-icons/sunglasses.svg deleted file mode 100644 index 3f7dad0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sunglasses.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sunrise-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sunrise-fill.svg deleted file mode 100644 index eb6a668..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sunrise-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sunrise.svg b/src/main/resources/static/assets/bootstrap-icons/sunrise.svg deleted file mode 100644 index 53d670d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sunrise.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sunset-fill.svg b/src/main/resources/static/assets/bootstrap-icons/sunset-fill.svg deleted file mode 100644 index 7f5b60e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sunset-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/sunset.svg b/src/main/resources/static/assets/bootstrap-icons/sunset.svg deleted file mode 100644 index 91041cf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/sunset.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/superscript.svg b/src/main/resources/static/assets/bootstrap-icons/superscript.svg deleted file mode 100644 index 06a1a78..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/superscript.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/symmetry-horizontal.svg b/src/main/resources/static/assets/bootstrap-icons/symmetry-horizontal.svg deleted file mode 100644 index 7e46d90..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/symmetry-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/symmetry-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/symmetry-vertical.svg deleted file mode 100644 index a18fa2f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/symmetry-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/table.svg b/src/main/resources/static/assets/bootstrap-icons/table.svg deleted file mode 100644 index 5e70d22..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/table.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tablet-fill.svg b/src/main/resources/static/assets/bootstrap-icons/tablet-fill.svg deleted file mode 100644 index 571ae8f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tablet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tablet-landscape-fill.svg b/src/main/resources/static/assets/bootstrap-icons/tablet-landscape-fill.svg deleted file mode 100644 index a4a6048..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tablet-landscape-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tablet-landscape.svg b/src/main/resources/static/assets/bootstrap-icons/tablet-landscape.svg deleted file mode 100644 index b36f7d4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tablet-landscape.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tablet.svg b/src/main/resources/static/assets/bootstrap-icons/tablet.svg deleted file mode 100644 index be81ff5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tablet.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tag-fill.svg b/src/main/resources/static/assets/bootstrap-icons/tag-fill.svg deleted file mode 100644 index 1502792..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tag.svg b/src/main/resources/static/assets/bootstrap-icons/tag.svg deleted file mode 100644 index ab34fdd..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tag.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tags-fill.svg b/src/main/resources/static/assets/bootstrap-icons/tags-fill.svg deleted file mode 100644 index f92a361..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tags-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tags.svg b/src/main/resources/static/assets/bootstrap-icons/tags.svg deleted file mode 100644 index 9f6d676..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tags.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/taxi-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/taxi-front-fill.svg deleted file mode 100644 index 1e1eb19..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/taxi-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/taxi-front.svg b/src/main/resources/static/assets/bootstrap-icons/taxi-front.svg deleted file mode 100644 index 4cb5fda..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/taxi-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telegram.svg b/src/main/resources/static/assets/bootstrap-icons/telegram.svg deleted file mode 100644 index 139af07..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telegram.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-fill.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-fill.svg deleted file mode 100644 index efc72c0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-forward-fill.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-forward-fill.svg deleted file mode 100644 index f4ce483..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-forward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-forward.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-forward.svg deleted file mode 100644 index 17ec9ce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-forward.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-inbound-fill.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-inbound-fill.svg deleted file mode 100644 index 998c8fb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-inbound-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-inbound.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-inbound.svg deleted file mode 100644 index 460fe9f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-inbound.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-minus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-minus-fill.svg deleted file mode 100644 index bc17abb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-minus.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-minus.svg deleted file mode 100644 index 4f4d93c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-outbound-fill.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-outbound-fill.svg deleted file mode 100644 index 16013a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-outbound-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-outbound.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-outbound.svg deleted file mode 100644 index 1382886..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-outbound.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-plus-fill.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-plus-fill.svg deleted file mode 100644 index 6d8c58f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-plus.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-plus.svg deleted file mode 100644 index 21ef909..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-x-fill.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-x-fill.svg deleted file mode 100644 index c8ef894..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone-x.svg b/src/main/resources/static/assets/bootstrap-icons/telephone-x.svg deleted file mode 100644 index 5aa3f95..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/telephone.svg b/src/main/resources/static/assets/bootstrap-icons/telephone.svg deleted file mode 100644 index 8e359b8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/telephone.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tencent-qq.svg b/src/main/resources/static/assets/bootstrap-icons/tencent-qq.svg deleted file mode 100644 index b107eb5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tencent-qq.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/terminal-dash.svg b/src/main/resources/static/assets/bootstrap-icons/terminal-dash.svg deleted file mode 100644 index 9049b5e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/terminal-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/terminal-fill.svg b/src/main/resources/static/assets/bootstrap-icons/terminal-fill.svg deleted file mode 100644 index d3c6394..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/terminal-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/terminal-plus.svg b/src/main/resources/static/assets/bootstrap-icons/terminal-plus.svg deleted file mode 100644 index be268c8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/terminal-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/terminal-split.svg b/src/main/resources/static/assets/bootstrap-icons/terminal-split.svg deleted file mode 100644 index f65d2c7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/terminal-split.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/terminal-x.svg b/src/main/resources/static/assets/bootstrap-icons/terminal-x.svg deleted file mode 100644 index 5128f11..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/terminal-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/terminal.svg b/src/main/resources/static/assets/bootstrap-icons/terminal.svg deleted file mode 100644 index e12c9f8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/terminal.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/text-center.svg b/src/main/resources/static/assets/bootstrap-icons/text-center.svg deleted file mode 100644 index 2887a99..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/text-center.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/text-indent-left.svg b/src/main/resources/static/assets/bootstrap-icons/text-indent-left.svg deleted file mode 100644 index 34d8c55..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/text-indent-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/text-indent-right.svg b/src/main/resources/static/assets/bootstrap-icons/text-indent-right.svg deleted file mode 100644 index fdd837f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/text-indent-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/text-left.svg b/src/main/resources/static/assets/bootstrap-icons/text-left.svg deleted file mode 100644 index 0452611..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/text-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/text-paragraph.svg b/src/main/resources/static/assets/bootstrap-icons/text-paragraph.svg deleted file mode 100644 index 9779bea..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/text-paragraph.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/text-right.svg b/src/main/resources/static/assets/bootstrap-icons/text-right.svg deleted file mode 100644 index 34686b0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/text-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/text-wrap.svg b/src/main/resources/static/assets/bootstrap-icons/text-wrap.svg deleted file mode 100644 index 713a96c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/text-wrap.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/textarea-resize.svg b/src/main/resources/static/assets/bootstrap-icons/textarea-resize.svg deleted file mode 100644 index c4a9d9f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/textarea-resize.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/textarea-t.svg b/src/main/resources/static/assets/bootstrap-icons/textarea-t.svg deleted file mode 100644 index dc7e17c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/textarea-t.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/textarea.svg b/src/main/resources/static/assets/bootstrap-icons/textarea.svg deleted file mode 100644 index 9aa5445..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/textarea.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thermometer-half.svg b/src/main/resources/static/assets/bootstrap-icons/thermometer-half.svg deleted file mode 100644 index cafefd2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thermometer-half.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thermometer-high.svg b/src/main/resources/static/assets/bootstrap-icons/thermometer-high.svg deleted file mode 100644 index 15acf4c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thermometer-high.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thermometer-low.svg b/src/main/resources/static/assets/bootstrap-icons/thermometer-low.svg deleted file mode 100644 index ce540e0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thermometer-low.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thermometer-snow.svg b/src/main/resources/static/assets/bootstrap-icons/thermometer-snow.svg deleted file mode 100644 index 0e1b400..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thermometer-snow.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thermometer-sun.svg b/src/main/resources/static/assets/bootstrap-icons/thermometer-sun.svg deleted file mode 100644 index 07c3290..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thermometer-sun.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thermometer.svg b/src/main/resources/static/assets/bootstrap-icons/thermometer.svg deleted file mode 100644 index 748813e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thermometer.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/threads-fill.svg b/src/main/resources/static/assets/bootstrap-icons/threads-fill.svg deleted file mode 100644 index 7291cdb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/threads-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/threads.svg b/src/main/resources/static/assets/bootstrap-icons/threads.svg deleted file mode 100644 index e60ff38..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/threads.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/three-dots-vertical.svg b/src/main/resources/static/assets/bootstrap-icons/three-dots-vertical.svg deleted file mode 100644 index cd0c79a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/three-dots-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/three-dots.svg b/src/main/resources/static/assets/bootstrap-icons/three-dots.svg deleted file mode 100644 index ea92369..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/three-dots.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thunderbolt-fill.svg b/src/main/resources/static/assets/bootstrap-icons/thunderbolt-fill.svg deleted file mode 100644 index 85c437e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thunderbolt-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/thunderbolt.svg b/src/main/resources/static/assets/bootstrap-icons/thunderbolt.svg deleted file mode 100644 index b8356da..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/thunderbolt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ticket-detailed-fill.svg b/src/main/resources/static/assets/bootstrap-icons/ticket-detailed-fill.svg deleted file mode 100644 index bc5d192..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ticket-detailed-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ticket-detailed.svg b/src/main/resources/static/assets/bootstrap-icons/ticket-detailed.svg deleted file mode 100644 index c2701bb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ticket-detailed.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ticket-fill.svg b/src/main/resources/static/assets/bootstrap-icons/ticket-fill.svg deleted file mode 100644 index 73728b6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ticket-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ticket-perforated-fill.svg b/src/main/resources/static/assets/bootstrap-icons/ticket-perforated-fill.svg deleted file mode 100644 index 2ec1d57..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ticket-perforated-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ticket-perforated.svg b/src/main/resources/static/assets/bootstrap-icons/ticket-perforated.svg deleted file mode 100644 index 194ae05..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ticket-perforated.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ticket.svg b/src/main/resources/static/assets/bootstrap-icons/ticket.svg deleted file mode 100644 index f24a93e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ticket.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tiktok.svg b/src/main/resources/static/assets/bootstrap-icons/tiktok.svg deleted file mode 100644 index 7edac4e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tiktok.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/toggle-off.svg b/src/main/resources/static/assets/bootstrap-icons/toggle-off.svg deleted file mode 100644 index 97d6dab..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/toggle-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/toggle-on.svg b/src/main/resources/static/assets/bootstrap-icons/toggle-on.svg deleted file mode 100644 index d13b495..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/toggle-on.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/toggle2-off.svg b/src/main/resources/static/assets/bootstrap-icons/toggle2-off.svg deleted file mode 100644 index a8fee6b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/toggle2-off.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/toggle2-on.svg b/src/main/resources/static/assets/bootstrap-icons/toggle2-on.svg deleted file mode 100644 index 993ec33..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/toggle2-on.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/toggles.svg b/src/main/resources/static/assets/bootstrap-icons/toggles.svg deleted file mode 100644 index d53ae01..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/toggles.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/toggles2.svg b/src/main/resources/static/assets/bootstrap-icons/toggles2.svg deleted file mode 100644 index 862fc9f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/toggles2.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tools.svg b/src/main/resources/static/assets/bootstrap-icons/tools.svg deleted file mode 100644 index fcc8362..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tools.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tornado.svg b/src/main/resources/static/assets/bootstrap-icons/tornado.svg deleted file mode 100644 index 5bb53a2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tornado.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/train-freight-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/train-freight-front-fill.svg deleted file mode 100644 index 8278bb9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/train-freight-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/train-freight-front.svg b/src/main/resources/static/assets/bootstrap-icons/train-freight-front.svg deleted file mode 100644 index a56961a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/train-freight-front.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/train-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/train-front-fill.svg deleted file mode 100644 index 85c56ef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/train-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/train-front.svg b/src/main/resources/static/assets/bootstrap-icons/train-front.svg deleted file mode 100644 index c84d62b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/train-front.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/train-lightrail-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/train-lightrail-front-fill.svg deleted file mode 100644 index e4fdebf..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/train-lightrail-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/train-lightrail-front.svg b/src/main/resources/static/assets/bootstrap-icons/train-lightrail-front.svg deleted file mode 100644 index 0e4c57e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/train-lightrail-front.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/translate.svg b/src/main/resources/static/assets/bootstrap-icons/translate.svg deleted file mode 100644 index 39a17d2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/translate.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/transparency.svg b/src/main/resources/static/assets/bootstrap-icons/transparency.svg deleted file mode 100644 index f498aa3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/transparency.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trash-fill.svg b/src/main/resources/static/assets/bootstrap-icons/trash-fill.svg deleted file mode 100644 index 1a20e6a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trash.svg b/src/main/resources/static/assets/bootstrap-icons/trash.svg deleted file mode 100644 index 4d0ee36..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trash.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trash2-fill.svg b/src/main/resources/static/assets/bootstrap-icons/trash2-fill.svg deleted file mode 100644 index bc78b6d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trash2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trash2.svg b/src/main/resources/static/assets/bootstrap-icons/trash2.svg deleted file mode 100644 index 6e6468e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trash2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trash3-fill.svg b/src/main/resources/static/assets/bootstrap-icons/trash3-fill.svg deleted file mode 100644 index e0e81f1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trash3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trash3.svg b/src/main/resources/static/assets/bootstrap-icons/trash3.svg deleted file mode 100644 index 1d5f42e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trash3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tree-fill.svg b/src/main/resources/static/assets/bootstrap-icons/tree-fill.svg deleted file mode 100644 index 4d45dd4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tree-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tree.svg b/src/main/resources/static/assets/bootstrap-icons/tree.svg deleted file mode 100644 index b97eb64..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tree.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trello.svg b/src/main/resources/static/assets/bootstrap-icons/trello.svg deleted file mode 100644 index 0886058..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trello.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/triangle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/triangle-fill.svg deleted file mode 100644 index 654787f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/triangle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/triangle-half.svg b/src/main/resources/static/assets/bootstrap-icons/triangle-half.svg deleted file mode 100644 index 8f86f28..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/triangle-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/triangle.svg b/src/main/resources/static/assets/bootstrap-icons/triangle.svg deleted file mode 100644 index 1fa1898..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/triangle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trophy-fill.svg b/src/main/resources/static/assets/bootstrap-icons/trophy-fill.svg deleted file mode 100644 index e29f001..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trophy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/trophy.svg b/src/main/resources/static/assets/bootstrap-icons/trophy.svg deleted file mode 100644 index adfa108..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/trophy.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tropical-storm.svg b/src/main/resources/static/assets/bootstrap-icons/tropical-storm.svg deleted file mode 100644 index c16188d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tropical-storm.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/truck-flatbed.svg b/src/main/resources/static/assets/bootstrap-icons/truck-flatbed.svg deleted file mode 100644 index 5a37c8d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/truck-flatbed.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/truck-front-fill.svg b/src/main/resources/static/assets/bootstrap-icons/truck-front-fill.svg deleted file mode 100644 index 0aeb0a1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/truck-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/truck-front.svg b/src/main/resources/static/assets/bootstrap-icons/truck-front.svg deleted file mode 100644 index 9e4bbf1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/truck-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/truck.svg b/src/main/resources/static/assets/bootstrap-icons/truck.svg deleted file mode 100644 index 1afc549..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/truck.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tsunami.svg b/src/main/resources/static/assets/bootstrap-icons/tsunami.svg deleted file mode 100644 index cf57486..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tsunami.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tv-fill.svg b/src/main/resources/static/assets/bootstrap-icons/tv-fill.svg deleted file mode 100644 index bf9830f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tv-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/tv.svg b/src/main/resources/static/assets/bootstrap-icons/tv.svg deleted file mode 100644 index bba3da1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/tv.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/twitch.svg b/src/main/resources/static/assets/bootstrap-icons/twitch.svg deleted file mode 100644 index 2975f80..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/twitch.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/twitter-x.svg b/src/main/resources/static/assets/bootstrap-icons/twitter-x.svg deleted file mode 100644 index 7097f07..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/twitter-x.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/twitter.svg b/src/main/resources/static/assets/bootstrap-icons/twitter.svg deleted file mode 100644 index 8a83fa6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/twitter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-bold.svg b/src/main/resources/static/assets/bootstrap-icons/type-bold.svg deleted file mode 100644 index 276d133..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-bold.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-h1.svg b/src/main/resources/static/assets/bootstrap-icons/type-h1.svg deleted file mode 100644 index 5b412fe..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-h1.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-h2.svg b/src/main/resources/static/assets/bootstrap-icons/type-h2.svg deleted file mode 100644 index c92dd91..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-h2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-h3.svg b/src/main/resources/static/assets/bootstrap-icons/type-h3.svg deleted file mode 100644 index 7136286..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-h3.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-h4.svg b/src/main/resources/static/assets/bootstrap-icons/type-h4.svg deleted file mode 100644 index f368b9f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-h4.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-h5.svg b/src/main/resources/static/assets/bootstrap-icons/type-h5.svg deleted file mode 100644 index a8a29b6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-h5.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-h6.svg b/src/main/resources/static/assets/bootstrap-icons/type-h6.svg deleted file mode 100644 index 53df6a5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-h6.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-italic.svg b/src/main/resources/static/assets/bootstrap-icons/type-italic.svg deleted file mode 100644 index 3ac6b09..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-italic.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-strikethrough.svg b/src/main/resources/static/assets/bootstrap-icons/type-strikethrough.svg deleted file mode 100644 index 1c940e4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-strikethrough.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type-underline.svg b/src/main/resources/static/assets/bootstrap-icons/type-underline.svg deleted file mode 100644 index c299b8b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type-underline.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/type.svg b/src/main/resources/static/assets/bootstrap-icons/type.svg deleted file mode 100644 index 9ab1e4c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/type.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ubuntu.svg b/src/main/resources/static/assets/bootstrap-icons/ubuntu.svg deleted file mode 100644 index 27f8c27..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ubuntu.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ui-checks-grid.svg b/src/main/resources/static/assets/bootstrap-icons/ui-checks-grid.svg deleted file mode 100644 index a32d424..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ui-checks-grid.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ui-checks.svg b/src/main/resources/static/assets/bootstrap-icons/ui-checks.svg deleted file mode 100644 index 9b659e2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ui-checks.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ui-radios-grid.svg b/src/main/resources/static/assets/bootstrap-icons/ui-radios-grid.svg deleted file mode 100644 index 00c7b08..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ui-radios-grid.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/ui-radios.svg b/src/main/resources/static/assets/bootstrap-icons/ui-radios.svg deleted file mode 100644 index da779af..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/ui-radios.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/umbrella-fill.svg b/src/main/resources/static/assets/bootstrap-icons/umbrella-fill.svg deleted file mode 100644 index c4886e9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/umbrella-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/umbrella.svg b/src/main/resources/static/assets/bootstrap-icons/umbrella.svg deleted file mode 100644 index 94f32f9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/umbrella.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/unindent.svg b/src/main/resources/static/assets/bootstrap-icons/unindent.svg deleted file mode 100644 index 1969283..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/unindent.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/union.svg b/src/main/resources/static/assets/bootstrap-icons/union.svg deleted file mode 100644 index b629b88..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/union.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/unity.svg b/src/main/resources/static/assets/bootstrap-icons/unity.svg deleted file mode 100644 index e179a38..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/unity.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/universal-access-circle.svg b/src/main/resources/static/assets/bootstrap-icons/universal-access-circle.svg deleted file mode 100644 index 158465b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/universal-access-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/universal-access.svg b/src/main/resources/static/assets/bootstrap-icons/universal-access.svg deleted file mode 100644 index 3b7fc37..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/universal-access.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/unlock-fill.svg b/src/main/resources/static/assets/bootstrap-icons/unlock-fill.svg deleted file mode 100644 index f053354..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/unlock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/unlock.svg b/src/main/resources/static/assets/bootstrap-icons/unlock.svg deleted file mode 100644 index 8eb0925..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/unlock.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/upc-scan.svg b/src/main/resources/static/assets/bootstrap-icons/upc-scan.svg deleted file mode 100644 index 2a9a6af..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/upc-scan.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/upc.svg b/src/main/resources/static/assets/bootstrap-icons/upc.svg deleted file mode 100644 index 6669ef7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/upc.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/upload.svg b/src/main/resources/static/assets/bootstrap-icons/upload.svg deleted file mode 100644 index be3f8e3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/upload.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-c-fill.svg b/src/main/resources/static/assets/bootstrap-icons/usb-c-fill.svg deleted file mode 100644 index 0e50ac6..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-c-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-c.svg b/src/main/resources/static/assets/bootstrap-icons/usb-c.svg deleted file mode 100644 index c17d4ca..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-c.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-drive-fill.svg b/src/main/resources/static/assets/bootstrap-icons/usb-drive-fill.svg deleted file mode 100644 index 834614d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-drive-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-drive.svg b/src/main/resources/static/assets/bootstrap-icons/usb-drive.svg deleted file mode 100644 index ca08df5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-drive.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-fill.svg b/src/main/resources/static/assets/bootstrap-icons/usb-fill.svg deleted file mode 100644 index 443c91a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-micro-fill.svg b/src/main/resources/static/assets/bootstrap-icons/usb-micro-fill.svg deleted file mode 100644 index 67ad744..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-micro-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-micro.svg b/src/main/resources/static/assets/bootstrap-icons/usb-micro.svg deleted file mode 100644 index 945b6e7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-micro.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-mini-fill.svg b/src/main/resources/static/assets/bootstrap-icons/usb-mini-fill.svg deleted file mode 100644 index 7235636..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-mini-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-mini.svg b/src/main/resources/static/assets/bootstrap-icons/usb-mini.svg deleted file mode 100644 index 7cc383f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-mini.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-plug-fill.svg b/src/main/resources/static/assets/bootstrap-icons/usb-plug-fill.svg deleted file mode 100644 index 2f1c185..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-plug-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-plug.svg b/src/main/resources/static/assets/bootstrap-icons/usb-plug.svg deleted file mode 100644 index 68f5f97..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-plug.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb-symbol.svg b/src/main/resources/static/assets/bootstrap-icons/usb-symbol.svg deleted file mode 100644 index eb02d87..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb-symbol.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/usb.svg b/src/main/resources/static/assets/bootstrap-icons/usb.svg deleted file mode 100644 index e82324c..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/usb.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/valentine.svg b/src/main/resources/static/assets/bootstrap-icons/valentine.svg deleted file mode 100644 index 5542055..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/valentine.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/valentine2.svg b/src/main/resources/static/assets/bootstrap-icons/valentine2.svg deleted file mode 100644 index c70e274..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/valentine2.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/vector-pen.svg b/src/main/resources/static/assets/bootstrap-icons/vector-pen.svg deleted file mode 100644 index 013acc2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/vector-pen.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/view-list.svg b/src/main/resources/static/assets/bootstrap-icons/view-list.svg deleted file mode 100644 index 3d1a972..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/view-list.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/view-stacked.svg b/src/main/resources/static/assets/bootstrap-icons/view-stacked.svg deleted file mode 100644 index 7f59bb9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/view-stacked.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/vignette.svg b/src/main/resources/static/assets/bootstrap-icons/vignette.svg deleted file mode 100644 index bc46090..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/vignette.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/vimeo.svg b/src/main/resources/static/assets/bootstrap-icons/vimeo.svg deleted file mode 100644 index 34eea6d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/vimeo.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/vinyl-fill.svg b/src/main/resources/static/assets/bootstrap-icons/vinyl-fill.svg deleted file mode 100644 index a5ab73d..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/vinyl-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/vinyl.svg b/src/main/resources/static/assets/bootstrap-icons/vinyl.svg deleted file mode 100644 index 75c2681..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/vinyl.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/virus.svg b/src/main/resources/static/assets/bootstrap-icons/virus.svg deleted file mode 100644 index 4029fad..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/virus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/virus2.svg b/src/main/resources/static/assets/bootstrap-icons/virus2.svg deleted file mode 100644 index b0501ec..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/virus2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/voicemail.svg b/src/main/resources/static/assets/bootstrap-icons/voicemail.svg deleted file mode 100644 index ff7ce86..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/voicemail.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-down-fill.svg b/src/main/resources/static/assets/bootstrap-icons/volume-down-fill.svg deleted file mode 100644 index 4879b5a..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-down.svg b/src/main/resources/static/assets/bootstrap-icons/volume-down.svg deleted file mode 100644 index 996dbef..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-mute-fill.svg b/src/main/resources/static/assets/bootstrap-icons/volume-mute-fill.svg deleted file mode 100644 index 7ab7684..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-mute-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-mute.svg b/src/main/resources/static/assets/bootstrap-icons/volume-mute.svg deleted file mode 100644 index 12659d9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-mute.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-off-fill.svg b/src/main/resources/static/assets/bootstrap-icons/volume-off-fill.svg deleted file mode 100644 index 4941870..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-off-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-off.svg b/src/main/resources/static/assets/bootstrap-icons/volume-off.svg deleted file mode 100644 index 08bb6b9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-up-fill.svg b/src/main/resources/static/assets/bootstrap-icons/volume-up-fill.svg deleted file mode 100644 index 495ee98..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-up-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/volume-up.svg b/src/main/resources/static/assets/bootstrap-icons/volume-up.svg deleted file mode 100644 index 3840310..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/volume-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/vr.svg b/src/main/resources/static/assets/bootstrap-icons/vr.svg deleted file mode 100644 index cf2ea37..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/vr.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wallet-fill.svg b/src/main/resources/static/assets/bootstrap-icons/wallet-fill.svg deleted file mode 100644 index d44e5c8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wallet-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wallet.svg b/src/main/resources/static/assets/bootstrap-icons/wallet.svg deleted file mode 100644 index d18441b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wallet.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wallet2.svg b/src/main/resources/static/assets/bootstrap-icons/wallet2.svg deleted file mode 100644 index e646d94..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wallet2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/watch.svg b/src/main/resources/static/assets/bootstrap-icons/watch.svg deleted file mode 100644 index 8c3ee98..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/watch.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/water.svg b/src/main/resources/static/assets/bootstrap-icons/water.svg deleted file mode 100644 index 18e0825..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/water.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/webcam-fill.svg b/src/main/resources/static/assets/bootstrap-icons/webcam-fill.svg deleted file mode 100644 index 04b835b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/webcam-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/webcam.svg b/src/main/resources/static/assets/bootstrap-icons/webcam.svg deleted file mode 100644 index da7ef71..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/webcam.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wechat.svg b/src/main/resources/static/assets/bootstrap-icons/wechat.svg deleted file mode 100644 index 06b8ff8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wechat.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/whatsapp.svg b/src/main/resources/static/assets/bootstrap-icons/whatsapp.svg deleted file mode 100644 index 6242d05..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/whatsapp.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wifi-1.svg b/src/main/resources/static/assets/bootstrap-icons/wifi-1.svg deleted file mode 100644 index 4d75ef5..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wifi-1.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wifi-2.svg b/src/main/resources/static/assets/bootstrap-icons/wifi-2.svg deleted file mode 100644 index 377c1fc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wifi-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wifi-off.svg b/src/main/resources/static/assets/bootstrap-icons/wifi-off.svg deleted file mode 100644 index 4399861..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wifi-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wifi.svg b/src/main/resources/static/assets/bootstrap-icons/wifi.svg deleted file mode 100644 index 8cb1f71..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wifi.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wikipedia.svg b/src/main/resources/static/assets/bootstrap-icons/wikipedia.svg deleted file mode 100644 index 5fa98b1..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wikipedia.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wind.svg b/src/main/resources/static/assets/bootstrap-icons/wind.svg deleted file mode 100644 index d350ea4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wind.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-dash.svg b/src/main/resources/static/assets/bootstrap-icons/window-dash.svg deleted file mode 100644 index 191fbd7..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-dash.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-desktop.svg b/src/main/resources/static/assets/bootstrap-icons/window-desktop.svg deleted file mode 100644 index a044521..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-desktop.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-dock.svg b/src/main/resources/static/assets/bootstrap-icons/window-dock.svg deleted file mode 100644 index dbffecb..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-dock.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-fullscreen.svg b/src/main/resources/static/assets/bootstrap-icons/window-fullscreen.svg deleted file mode 100644 index 22a8d20..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-fullscreen.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-plus.svg b/src/main/resources/static/assets/bootstrap-icons/window-plus.svg deleted file mode 100644 index 08444f3..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-sidebar.svg b/src/main/resources/static/assets/bootstrap-icons/window-sidebar.svg deleted file mode 100644 index 98476ce..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-sidebar.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-split.svg b/src/main/resources/static/assets/bootstrap-icons/window-split.svg deleted file mode 100644 index 21862f2..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-split.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-stack.svg b/src/main/resources/static/assets/bootstrap-icons/window-stack.svg deleted file mode 100644 index 592e5c8..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-stack.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window-x.svg b/src/main/resources/static/assets/bootstrap-icons/window-x.svg deleted file mode 100644 index e7a97dc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/window.svg b/src/main/resources/static/assets/bootstrap-icons/window.svg deleted file mode 100644 index ad6166e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/window.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/windows.svg b/src/main/resources/static/assets/bootstrap-icons/windows.svg deleted file mode 100644 index b280560..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/windows.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wordpress.svg b/src/main/resources/static/assets/bootstrap-icons/wordpress.svg deleted file mode 100644 index 4c8cbc4..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wordpress.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle-fill.svg deleted file mode 100644 index b723d7f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle.svg b/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle.svg deleted file mode 100644 index a5a6f0b..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable.svg b/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable.svg deleted file mode 100644 index 4ec8082..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wrench-adjustable.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/wrench.svg b/src/main/resources/static/assets/bootstrap-icons/wrench.svg deleted file mode 100644 index bef0713..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/wrench.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-circle-fill.svg b/src/main/resources/static/assets/bootstrap-icons/x-circle-fill.svg deleted file mode 100644 index 448fdee..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-circle.svg b/src/main/resources/static/assets/bootstrap-icons/x-circle.svg deleted file mode 100644 index ce37cdc..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-diamond-fill.svg b/src/main/resources/static/assets/bootstrap-icons/x-diamond-fill.svg deleted file mode 100644 index 2de6403..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-diamond.svg b/src/main/resources/static/assets/bootstrap-icons/x-diamond.svg deleted file mode 100644 index 0ade536..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-diamond.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-lg.svg b/src/main/resources/static/assets/bootstrap-icons/x-lg.svg deleted file mode 100644 index 53aec00..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-octagon-fill.svg b/src/main/resources/static/assets/bootstrap-icons/x-octagon-fill.svg deleted file mode 100644 index 7872889..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-octagon.svg b/src/main/resources/static/assets/bootstrap-icons/x-octagon.svg deleted file mode 100644 index 794afd9..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-octagon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-square-fill.svg b/src/main/resources/static/assets/bootstrap-icons/x-square-fill.svg deleted file mode 100644 index ddfd727..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x-square.svg b/src/main/resources/static/assets/bootstrap-icons/x-square.svg deleted file mode 100644 index 9d7852f..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/x.svg b/src/main/resources/static/assets/bootstrap-icons/x.svg deleted file mode 100644 index c865d88..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/x.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/xbox.svg b/src/main/resources/static/assets/bootstrap-icons/xbox.svg deleted file mode 100644 index 9d84973..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/xbox.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/yelp.svg b/src/main/resources/static/assets/bootstrap-icons/yelp.svg deleted file mode 100644 index 08d3465..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/yelp.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/yin-yang.svg b/src/main/resources/static/assets/bootstrap-icons/yin-yang.svg deleted file mode 100644 index cf1da48..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/yin-yang.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/youtube.svg b/src/main/resources/static/assets/bootstrap-icons/youtube.svg deleted file mode 100644 index 86fa490..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/youtube.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/zoom-in.svg b/src/main/resources/static/assets/bootstrap-icons/zoom-in.svg deleted file mode 100644 index 6cde1a0..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/zoom-in.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/assets/bootstrap-icons/zoom-out.svg b/src/main/resources/static/assets/bootstrap-icons/zoom-out.svg deleted file mode 100644 index b965f8e..0000000 --- a/src/main/resources/static/assets/bootstrap-icons/zoom-out.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/main/resources/static/img/flags/france.png b/src/main/resources/static/img/flags/france.png new file mode 100644 index 0000000000000000000000000000000000000000..043d9ea4dd66d6a544383cf1874b728d485cb998 GIT binary patch literal 9361 zcmeHNdstH07T-Qfvni)?v{AH~8)mmmZct*QLiSScnDte+G#}WgX!%O<1%g;knPazy zlttpB=F7TMX6emD1!>Ax;G&!UIA#+0 z)+dkzfa5*=$LL)4q^*wlZSwwrt=}`BNtQ!G+w@Wg~7S?6y8RFQi^Z9wc$o z7KhG?BDb6vO#Cp-;*z`ORe=Q@W=aAv)E#q6AQ+mi1!s){=n9_KA&{kYw0j)sxmE#8J9jS}cpg8G!A$bv|sc22``t5h^Il|$&MrK{TcgO(yR9+&b2rFnx` zdjClLH@bH2@uEWD+}!bU6X>BxvzBMcJM25b=d}e&c_m&^UL|i!!)Xfftiq$k<#y5^ zb{xW`Dg?7iCV7Ot-UMh-rqRGntG|Uibw^73SiQw~x6(0GIS;@o<}hFqw!zAxaZ!raB)#;9@W*tp7v)=mUS;=b!L?3%?tw za+|rXQ}tWzpo!wSE_{>@aZpPyvbEoqD&pxfXFf-QggUN%g(hgmhQeRecit5*pD0Y= zMiaR^F?{mvWqLmELP8XsnV_9ql~6aTG%L0%)y~ys5Xa-hG2cM)ePJ}d24AcimJiZg zcgsYo->UfxhMJvl(9%Y=Z#9>ritV@d}@*T-wpg|WpXo4E$h^WmID zYK4(rC@jyJ@3a9&{q!~}6lbq{+Pc%kU73dqp$>a2a)^J(Xyc9Vj3~l>a+uC=bytt= z6cINgXAgA>Fh-ORJhe2>KwmvopDAu(Y`D!73O=L-@2m=@b$;n+^%QzTiH_VZDYQ&q z3Bmg!iWD7!SYk*8eqtL$iM@&SqzY$ZT&o1nvO^)$;1vj2lnx>>)skXnkctc`2rp#r zO6uHe7}SN2Zg$1U?_@g|1X2ULg#!YCqnW3v9*`ARRiBE%6lNDgugj|rM6D}!!rx2eW8Mjkfz+9a{#t9i18P?o>75qH`WdX!x4ZYi;_%b~ z0ILlEu*m=by9?M=>h}eBn}D}SI6QzOD>$lzLnECZfI}lVG}4C!@V`hnG}5U7oIQXu zCwg}PXHNdFGABHIADe!yPHKF4q=S9>(w@A47c~Xe{|KNm+UTZc&(3FOr+#g!nEW_g z=JJcZ)mAsFeb+1+*JHPCK4+D;`T3>m{~Z5h*Ld-(ojbKb(eiOM0(qy}w~&4)Ue?zU zRVP-rvpZ6U+=Bsl_$9{(w}xCRJP+_Z=-nZ#2e2N%dH~zOfAIreCQ&PNhYF1KX950a zz9PEE%3zeyZgoCMr-WPe3JQA8lvU*+QK$?k!v%uc+@AX+r3x_y=1*m@&gimre37B- zXpO1lw%qu8qzvMQ#W0)P>RZ-N@xK%;yU-nSMxJvM;ntU`<+ibjCm3&6Yhl0Ub>%Hc z=xNI3KQA&Ou5Y|*e^6~{s6=9$cg)I>fk@w`g%3x%4X~Yl%5Dk6on9FHRcD?@?RzhX z9J`9-Fu*V=Y;6Rz^udyRk1D}Ii1D~y-ddf5$_!A;X4m6`-x#Xs)fcaqJSn35QDTD+ zU0X`f_~wW6d!T|U?@dOegFMZJ^H~cxGgBwfO?zKZ*Fs%AO0c#3gySTR{_DrQZbZ7a zfquh}&c6RE#0*G$C-19nSgfmPQ1t@ZM;;OF;D?U?;0$q(_p-=TCD&#(cTQ!Ohed>F z8)f-3OF?L;R-E<0wF%qhUmAv%=&HR;|nsD7JubAFooy<#v! z-O0wfCy#+5q}}4`$YMNWbhIrPT3y~Rw&X2h@u6v4on|=5o+j608q|BoCBL@1QI0l2 zi~RIAhr#NRkc_VOI7GvpR|)o|jEHaa_}sFA1(GFssl%`@5^G4i&e;@m(_m zQC}8iKst&s2Q6haaf>-!{&60Oo~W8?KzpkaIaSFULt5v;^2595S3|>#u7tL=Toscw zyx!bb1dd|iE~$I*p5)?#{&|UgV87;m1l6&XgH_`|y4m_1g-eDps2@=)+cOG0jetmW zAk=5JirlMyDP_><8e;uylgZqDsjB~^bslOH8=p%^1vSRH>Ug}T?&dNzal4Yfy;AYM zwWvX;(><(w42#`Om@GC+-Bg%?ZZcy?q?aX9KY2#JM|CCI1) uO~S?b-t`Y`|#ZN z^|Wv468m98w1*G`F>K+2x!)56`sW}*g#rJGpH!a=|4~{$+i^BQ@Do+Pcql_#&uhW= zjsy`lfgpIh38EJs@mdHX*q9*Rxf6s%5<#&2PvtMOf*)d*I;@x{T)C;Iwz0pzzx896 zf7I{FR2ePkepxSEzTv}_TUAr-Q!~mo^DaCx zbGkQjdfm3zFCCo^C(ae6U#?!_-Szy>ZG+Uj0TRt~vHe{7I@O)1!3YOW}Nvrn;Gr5THD9z_SMDc7H{2Nv8A~(G568QvM&#Ml-s;_eL0+x zEV=UOSVZ{#IZf+RDiU`|-mY)>;Ir%F;sPV3R6>)NeQs@EZ-;K>`V>ji=!B$xhk{QQ zjH`b>xY_sRS6waoQeudmbJdoJ?$1vmW~6+1vHXCv!e9&{W1;mb|(wkyH^mj2Dp_JP>o|Xhy;H%z}PP;(ei%l_P4+6t(sbv$M?R zXweJ_Wj*oT-W~0|pZnsp`1$WezPi~)h(i6s+>MkQEQ*5^*S?^BV@&a?R52OpT6+By`MR9eDhXC zti3APwO&r&?CRQ;Sp~W(1Nt&bdq3B7cF&RHJL?>=wm`CLmYlw!qE-!2>tZ=${IVt7 z%aYrMa-9fK>ugc0Dr3N6_7w^Dn&h^eB>!(jtpTFe2XdW`@g>|m$*bYK5O+&sGEBL< zJG+IQ-PZv*40kCOAiYyE0#RT-jb_~XmYTME_HS{P-&)O zhZHVODb1orCB}5ic>e^=8!`=|<2c;Rn?UkhfAU(%?BqWESKp z=yH)aWs4CW!FqIcK=mz^QP_;ts`6f{R8ZHXpw90r>J&V;g__0wsjj=AuU=KO<(q*C z1tGsWFc?v)NVP&>7wqioOzE3SIR#CDfdBfafm}symFkAvM1hog1!h$g_e{BAD`z}f zDgK37Y9qxgbqA$c>N(6Dbyfk$ga-;h!ZPkFXm+@u&^$d|Zd_*+B%co)$oG=o$xAlM zH~o?;6qsW!D5zTWvozYI3$(vcaDm8tl7g!5ep7&bu3SM@*ltDGU(PFNru_|evLbAY z&4UZ4mE=;(V|DG7zK>4TwZG5>I$QAih(_v*Fn?{Q%halh;-C44)~e0Y-@6@3OXo2J zw((LSYeid{k8iMgSc6w)lp)vXUP}3Lzx#RW^e>PXSa$ZKgP&9)XuQAw&^!6xJp#UL zeICi#Et?Cf4?hmgz6z^91YVOIPMJwsj~>404si#cD(j7IeN}K(a$-c8tq%1BCYddw zu^X)Z^kj~bPIA|Vd%m{pzsmSr#ZW~{|Mn2cm4f*tYJ*ZEzN3~soO59?OOWe6m7xc( z4>Td?A{-QZKa};J%-%>dd`s;t_!8}*TWKvRPpR#J=u-L_S0YR}(0e%a{vhjpVled9 zm2M_Pmzbz`!$9w0(7RpMTbqew*T`hAKMlRb1HDzCcaN<12_+=^Pg(D>ROsC`(3=6h z`((Yf=}301thWK`O;CHGl3r2cT2;Gagv<#|1+GNzoNTF&MD+%2UUHO7TJP&;bU|>T zOxmMqY@TGi7;nG$lCTf=lvC|JWYTOpt`b2eGHHJA9w?{UvSdGVw+GT%whwrzYR6Q< zO+zM4y9a)*Dv>Em{}rGc4nR*^1JIRa($?Jq=+S%`^w|h{+yL|=0R3u_OqvOT9wbv1 zRtnI|ykydB>HvD=0Q5Tu`Z(Fo+%14@^mCcCst|zwjZB*M2L%0|>}P|M0DUQfj#iNH z47O_FG~2)n{ugG2GIwpkX&soft+m!AqB59S6}&c~{|Y_ASvCOF%udIgsHzRONq3Ap8dYu5X)NVF0jTxs%n^xKEpZ%b2>Y)ve)snxOhcy)V4sCQTSCg}j` z^w=DpR5q`8UNLJ5foI?oevVrk6DxI3a-3npM(b{xgJ{`0t8aH~zJ|vbU(%~{-KMPZ ze*Jw9sUWlRtAp}Bu5Ye-C>11{c&<}(1~=K-Y5?c%)w=ZopZq^%O9h>%cbW0Bhta|G zl?v)4o`ms6I|-6g-xpGIh0U!@r`FuPxqF4uxgvf`=EtADOzd5rBNY@DvcdXBT$yj; zBbl#sUsf}>xh`;BAeIW6aJ~BVOo?INvKpx%>uWjO)lJb6Ny%re7Z2cEm-23gW!8kO z2{K`GR{QymiAa`M$xtObyEsj0zihiq?GNsG*;AXWs=op_$25;=%Dlck)9g~b?TU!= zGGS_yGh=?qt51Bo{A&6}SwE+DBX)jY7JN7OuGEEoEBxX&HabjxR3Dis3GMqhVCtD1?y{yVTlcDG$(Ja+J8i;kuJ`Rs zm>f4bPNsratt}``;oEx2kfk54esb?+f4X?=i#gY*eu?K2n-X*@1C9qA=SzcdqSEEc z^PcD~=1;O{x<3vxKE6`2Y{%oS->9bz%ik`~d!8QX>gVbw!&`c}+IglVr*DHS2-b&l zk{33`+HOgF!M!fUs~4`<{mCvt6-b76ZuN=sQr$e;KpEb$L)DGtI$bdzj=z|3o$6P0 zrmA67%H4pc0Z(OkwM$)!g*{uln>Wkwj(;3B{J2;DYwOS*ZB)8v7TD~y*?Tc!XxUjH z%I7-kSbmirjcT>JwS|*%V-A|vC)Pf>p1uWx5%h{iw2a7YGw^qfaE+j>jdP!$ zU9B>67kw9E+FX@9puuQ;GYLO_+vUl# z9uq|5%kIaP`bTM1I63?^yh|C`8`%SzSRzMqB5&u7A5Y|!s+9oE zCApa_HJwam!gfJo$%s4yle_D&wk=6uzp@^8hSj1>}_9xX%cUo3&sGBCwXqnM6snSaoD_2&oY>asgG@hIoi}%DFs4l+i+T-=tkq;B4 zyeU&sGMtJ0C3#DpM=I;l1-*Vb(_Nm@1y1*!?o;BcMkY^&MPS*VY57w3uCQ5=M+ET$ z`BL|+@cI3B)#(t>G9$w6hU*PTSa5FK^!cOHHqu(so730hffBa2ZD{@Iacmy9*7`Oz zVr}dYfnBt%v@19X9hXip9I;|5(Wla(ru*x#8?}!NT{P&d3(@-=5iGWbg!MO}i`tF=Sha5M2kV#Qo;G~$P9Wg? zs|jcVX{P@1Llq0aOhy+Fxf>3%Yva|?#=>5w&ANWa9X8q__XhO~h1KOq?72QeGkb;h)HXz6*)n5^z4TQkkd;0Xz$j%xd7bL8O zU+5KC76n16?#^gkwU&G~qaNsxs@+OUL|~J0>gn>O-i9cg*AbDzMnoFWos{y3j>6W+ zT1El+tgHwKEHK)R2=EWFYd^TX+-e1+c@QE}SPV^#!5swdxKO*iAbl74%qa>8{O#85 z3Zz8Fb8OndW#=KDe<31;Rnd|eR!ne5T7i8;q6D5bF$6J%K&hZ~7b19ejv>(W9x`3| z8-^gU76_~=+)RWiwW-u;=#Ake_gnYxkbrxQwRs5KzI|=iMtGe zNu8GeP?+qT!4naPXuc}ON?LRPw@Ep5PVMPd0Vs_|gp|?+Vy`Zf&nkAzC`M7F9--_$ ziE!&dq@232aJ>6)IM>M@$x8^czm>Lz$RC9WB9Ju1&MT2$Ce$Z5!x9GBqjQi8L{Q~6 zAU3a**2oL61Nc7@7ImC9Rw%6{3K4_^q&r$o;EqTnf)>mguQMD&c=HNq4RK;{h0;1Y zICeFy#d%wXWwmnZ#WRRV>84_>kfD}zK|p=3zbhCB5LSjEqWKydYiSL|1{S~c_+ShM z#v{VgPkB8wX$AvhqKk{hVgp~h0V$`xEevwEpbYf4&((*4X@dwGsGp!w77GTBO;ERw z#Ri6N17h>$E9pmRzjD3Ib znq-LGvBii$)N-2dIg=;OAc}$f4rkiNBY8$GMlIEAX}+GuCP`Y@F=@{qZR#7z%Q}t- zqnhP)iVvdf4M1B||?9e%JV@p94$2LK?ERi%hNO_y` zb%4OwO}j&&*uby1S!==MpuxdFBS~wT*zE^Eltrx0T-G?!db1KVsPlPQ6 z3Pd0$4@_>ccn36zv?ktYJ{yS|Z~n8+LTqyIi{KXk;eFx!!D+hzLM9O;u<%7Dv&5e7 zJTaf+)N`YNFNa}yN@ofEAeiTU!yB2$5n6d9tMhW`f{*V)uL5q%?8(1R{+$>)6+>y9SrH}F-dc#gv7#zuH`Q=&=kVNE6K!j#$Iql zf@9e^ujNF;B+;ZXH||5cd}o=Q(psXVmoTGjm3Y<&n1_FP4z!B!6d3!K3>pS;;2dQw zjyX$|oUJ}PGvorqO5o~gWO7W!PG=MAny?717zZvRB1&>RYGNJ7KnyI#aSkOcpv8(Z zML&tdCPSA)B?~;qYw%_@=mhZf(OU7$3lS~$P;t4&7;|Kyv4s{Vj;_vjWB)0fw-UNM ziQQ0QI*tesnu|SS&?;ec7ZF{3YfPU0%x#dlEwh4jELh5VSvRw8@+V({E`v0pV`tAL z8iZTLcN44uzS|x|%6fa%itRV`K-LPzwy5VoR9$zu?eaRd7P?gGt%Gw&qJ-8$#BtEd zmQUOuAQSW^sE=5%i4KEJ@Tj@v3gU@&i}rekb`kNqrD}+0S&LyDXAk1(%I|`}>y@f| zE!Z>^@kBNkA|7#}Q3+p_57;KC9gczQ@nnV=ma^s{Y$0wT5O{UV>{a7u9zgaaZLL@Z zLPFeEHVU7jSL8V{r;8zb_zX*~S6Lbe$;!>jh3tvt2T&Q8Ir7faQ3zrjtU%4LUbw!QR35zOfI?NB}lwy|@jn;onq$Q%!EzkI55Oi&D?5fQ-jm>VS{ZWGUCS7Q^)d~Kg9L1O_wL8K;=&2P2!9&~VAJj|^C5+}UG#dk5x~ZeEFFTu z`o?oIK}i0&{BtNgA?}TfHo2nk(BAMaIf z%)Ela;~Y4J3eS7t532!e@otYhI6RxZ$}&Mn)^AzAVX$?>$GD>KXqm@R;n^mBJQcv2 z-_fDMbCVy9@|?Yly$pvZY@g#a0BaGYGaC!(v<&G(;ZgC}O@*gUsDWZEN*AT$@Z2ex zk8UqHRxB>IcpUdeEDBGUu{9N*0I@L=a`wsDCpbJ_o?FokWWt!Tcx>@EiEeN*MVQXg z(xJj*9x?@lwEX_|_YF8aGx#3pb~Pq$4w~Nij2oxQjG6)LiP059F<2VMGF92#hHx`> zGsb?~cW&k*mBKK>!bN8)?qg=X&5_M}Pna5Mv9YE!i_jISg&{=#kNH312zd>o174OU zb3X>>0n3lw;i!d0*wZ;EdOpLk$F89ZqcRmN{3!<G-4S|x~c*|&6K*gPG?Ek**N z83db`Q0E8@7#VI28n7yu>f#pXwF+9^X1S2RIhv!E#q^8<6-cqHb`@B6w1?qVLXZ+# zK-rn(Z}T~*#nHqn*gKS9Wph-?JU$vV2Y-pfjZd+?Y0Kdam$NK?sDef z)@dec#YA%YG;Y0)My<5M-UBeQ#Wjg&=VwB-TI|uL&rCr6 zw&}}k)S|if&4bCOi{PQ2gQ=eSJS62o3YIx^H)^Ha!mZ^5!pW6jYi*dMm;PEsdTH2q zsMX6~O}4Cu=%M{wUM&VwObR`ajK!E@p}Dx#j)i`rgldpNUtyu~b4j5dlu%7l=mtut zS0uu=_*X2(6$`zBTZd^R(hf@K7*gnc3aLFQRD%-AC54WrgfgO#P}Ngd%o9%7VC01&oH^Epp-a^vuR6T9VE$zvmua9a z^QtQnxKd=C{H0* z!<&np9YF^(RaEQ`9)B*;iRv8%O)XF4$1-ObGVw3^@n}mM@ z{vS+N0IsBm@cs?>-%bBF;D0my-+Hn50(wP0v1Fu#s{FX@XT_pJP-Q)cBOnb3FoOW31SBy5 zN&9a<|A)u_<6K{X@D*MEb*`@n`-(UIZ*hGE!dK$;U+4OYu&?CCe}jwG5&`v&|Fx7u z&i=0_>VJ>x|F`r;A^LxJQ2d8P<^4i$8&-JXcHrYzc)n`-Or(eDw`}e#T|3O*=)b!p z{_m_T)LQ<(vn2jMzp@N$W2hzZtJ@eDlL{N5|GXsrZ5u-^iD(D)pSCeDsr=ib`fs}@ z#r@a+Byf>(U0K`kg5IlZA3WIE^>$0w+o51^Uk10Ow!g6|z5miXc0tFjhIvYQ(>}ha z?R#a=;$!pa`I1_F=(X+Rt?m0Go)>)S?C5vA1@*~WM$r$>`O;%x+xcnx!$h>BHCn0G zb-f@(Qg9)0SKFN0si<^u#xL;0E_YNE=p13a6m6^bp|Tn!(U$fn==RU=C{#YFRM!e; zeFLqO6IAO8I=JM%K$Rugl2V%mbU4HCe-1TM?tSr&-$SeS5!JGukAyy_goz z#4`wXuzW-Dwa;r`C(xx(6`2#lJ#8 zp!mgA6B}2IUa_FE$uO2g7gmGn$Dk5sE=K3pifVo`3g(}|>?x=s57^u7FgpDL+>RNG z(VbaO`pRtBUF>=x<$7g|F8MR%dM4$18|287+wAs%Jp`boyo)6 z859~NcT#(BM;WQzje)h5reN@CsIUuMSEEbXZaPRvrU|D9OJk$TI>>{21{lmzR2{{a zvr*-mWwQvr@^3r-6QF7{LwC5;h@vDI^NoEGMg(oSr{o?s2Z$_|8MX)7q` zzfsWH82bEQF?9W64Bdi)u1!IIO+mNE(k4>S+bHNI6m%v9eH&Ib5)U80LJInP3i<~u zZB7)1ewu@!AE%)IL_ycY%2YqQutR7<7I{Dh7sPyt#qZJfSBXu`RKK%+XW?Smv(Kzr zsZ1O7u|JT8>VLqU=a`q?(zCg|Qsu@dvQMyGGs~Bjq-MuN&EUOm4YLAUm$6$-bScamZsS&Jkl>~e4n6LvK78jR$c#}fh z^1Y622C$VHO)3~{Zan8Ynp}R){~1b~0BrQ)P5$V(k^kBml~ZICWYzF5qQm07gNt`# zuyTjRs9Z#JNqSh!3$#OZ8`W#sVxclREFQ6E-yIww7ccvZASCNT)&&eUclelvn@mxemFc6_>WK(kNpY#N*o@evaAOHR@*F28-txa+R_k& z1o4CURCsRB)=iQ0f&dNaFZSik4bY9 zstSSdl=3g4tCqd2IWZWl+*Jz>kMydgaBCeEo(AC_bk%Y=<{m0k4A8U~;$?ptgk;^y zx`n`+lxPhfGY5sI!@L(+{LKAXozM*NG{$@+c?b)_i%Fhv6&e*Hp1~zb!%x~F9u*5E zr1;p{W3|FJXr-GGJGunv5u0~;mL(%ScM#Fli(~5bXYNFc`G36D%HArx%R*%jZu=1_ z>ou{q+Hd**J1ap^i+hkUTu}wN1$nXEpo^paIgKaqVS+|;>;X;y@*DRCkg8pr&in*n zIb6i1>Oa`97eU<;JGz(?E_QJUF^M})7qbrL>Sqc&SWg$SLcu6xI#_%`H0r)Xz ziywPTBmyo3Ux;_xi1OfA(&CD5=;~$18>fVvLidjM#XxZH=&NPw8U59JN0v#9vsfM7 zJHB}i1ow`m#$F}s(5{S=%38`iPn0NEE6)sxL~HnN&+kl5!@Z+hLYD9m+SmByAR?k0IUz`bL(jx(RJ7~r!vBBI6KyW_2KatgBW zyu}L6?+~CLjy)B^l`X!p&47DH2lI2DWoTcQRgH+QK4;JAaWmnXm(~&*eA8kL+&iAn zI?sozVYqjMo8icLM1z0eth+1&fbVu05d>&(``k@%olF$&jJxa5#3#(`j{~Yu&Lzc z9q?NxK7n`wN})!9L*7a z9)C-y^guiZyv5@X&)d=$@8w41PeKIoN>a5eMnQy1mf@_yF({@`TAsHJh|OC^ zpAmT+mFl?uvsA}OR;ptSU5Y<0Hb97|k1M2lobz-9WGt$sWVw(yZvAO1^_qnU$ z76~+a8sYZE6$k-grcNw}!Yi1sQf?vwd33>6UNccegZrA6)E`<1HIsL(0C%Bkzat9p|= z$!9iNh~S3l^j094N8vs;&SCz9G`N(S_!$V+c6f^$6FReP6U;q{pSbPTP2{t1i=9B< z(^|Bffeawk2~()ui?hG*&$_?UBNgiYVtasogDJZb$PpYw^PN8(Y6d~rdJzzM{~|h$ z)J-f}{vBLyz1)%8?T_pJ%s&DxgnFoxh`=VgAk};6bi=c_zL9)$BdGdD;6(L}=w;B5 z2zTBI1PabHomq!o=)lgS4vWv71v~fk?t^<{Ol49L3YY)`5K6qYLIl#|%;%2AN>my5SWCgZ~i-z%D+%_&E8BO7q=3 z9V$QpMRQBDFGdj-*!H^a9yo~m+Pa+FsB7|UED=FaMs6L6DnJ1LFsHo+#mga_P^?P6 z;z2CPVpT{4RIEzDV3q?xz8JY1xl{ND-&gX9S_EmEoRW-Dw2ZzpWB2;lABnJ?-94KD zhKgOvIG{6-Kp}Y{s6c@((DH%8T5zk{L$!xsj|PuB-fBVULGX>iHm46DJC^8J_7@O{ zesJ``Q4l>23Z|fjcLkuV_)>u`=b=Wa%d~#O8L+O#ItQ!+!7Oq6>vnM7$|)yEVG@CI{gTdOLtAD(9CohoeA!Tx@m9HZp-W#RW&w*4OLB( zW`?-yPSd?~(PqstrPReo79XMPYMR{sG`Rg~&nHAMR~Zr?ch?V2>)idZhv-1%+7xq& zNeX|ltydz;Zl%FW1F3zh_GTQ2$@rLt2$sU7M1x7O*L;yl<7qf|d3hy|Qexw4d zu+-koqpu$wef?j`;+aaR27ykmDJ7rFKb2>89I~_~+!9<9DCW|NtJM`|yG9`*^WG{r z^qsGD@F|!yORdRDJ{U70?mIsm{rob1@*za~@C{*R6`r|Ma^I3#-_>NxkEC7ACF8{RzmR3T2Em8Gn z$_+d~pl;&u0@1?PxkN|Z`yx~ch`hf3(fWV`RSmiCa^ImkO0Y{9Im|25W7C&IpY^F} zhR@icv%xw+XE-l8&w49`q{pt;?n8T|4jTxMQz+rsmtl4&-u9=68te?c5cjI_nd^Uk zHYm01r^FZ3Lz`c0emNOFsqAX$Ra7&BP_Q;l@r(CqRIAa=k%5g~C@OkAlGd{D#o=qz zL-`M2@C*Xg1LOxVGrHE3#|Q8kHnS_}ahOHkG{V|@M>*x8kDod|z3gf?&oa(3mO*2< z_}Pt#xG4#xrXF!2cbQ9~;kV4xX1}UuvTnMMZ`uCV*wE16iG%0KoO$-@xtxy%A}3VV zMZy=GpY1#qxR?mb>GDOjnGij|u`oQ!=^YfNWyw4nzcF*!PhU>=&OwD*kS^d^=MB~w zH;oDFA9nmsf#owk=h{3d3wHh9^?NE2#Dz^)t8dPfSoLkECUs$?H9sfW*+z%QJ#W2~ ziit2XT=p523_t#i>WIW}z|7SyiBlU_)m#~HHuHLC5r;jTjp~O`vRh`~%QVZ2x1ATU zUnZ!^D0BU>k6Q0dYGh_VdC}XE;1}x`D~noBwRUZ(ZmKPOSwab7CRH;kLZiBr1{|ZY zIed57o8mX9h7X5-uV1BqW7WfyUuA-pJBTK(v$EO|I^Y%A7jRM!&m_NqD{D%ulnN3r zJJ)GABl)B?{GkGnjIudAX|--sz$5=hs8o#f`N<}iCog+Ov>Q-sCWOlBNm%me#0u_l znUicDWjb}_uE||95WJwwLz{1ZDNl*B&4}*Lenn}}Y5Mc?_1i_R+!+PPpc$`lG|0X3_=Gm!WI}Par8j(OM>XK#>XH z^<|d&8xVaOsE7lyswUF->6(grDGUZ#ew+kbb)T1j3;`DcsB4%AK*D(X7dgz%m#R>4^)PMo_#W& zCriW|fCrzKqU8R3v&^QIE*Lq$Q+Ht4PSAr2KEXJclJuR#hkytEwgwfP&w?_W4!YoO zp$yx*1CHUKXSa-JtCKhncr*uiUYFT?LLbMoe82?dL^igdS{7yOPMdWI=xfkSRY7EYlZ<>sNLLmwy%Aw`3X+{{y{db7_YuJIx zHHYq1kahQ0d)O(<)Wf%XF+a*TPqLu!UJ4e9>^{NX3_cV`HJYgWbU5scNnK8-OK@tlU>S-5?<%tE*RJ`_DyAl!S=!GE6z#W64wGdnlL2pwH{^n1gl7Wkh37Iv@MLgykSQ z{uaiA)Pb=a=Z!ZF&E_9PWm{mSC-a=y%!G)8d%nC)M8#KVzGS9f3IC|6fXiad<`Pui z2csHF%T`}$>{;);F5x;TLB*EV)`MY^lmYlORvzB4gKq}H3G#aw zCS=9dw@-v=)NDw$1Gtq>46-`ePKu4Kq3 z(^xpmkvSFPs(ccuAwssN-!pakiZa2EnWfp2g|loI!Oq7)Dl1&%IAbW{5ih;UUcAw0>3DLI*m#SYOTzgy7B|aUrv{aI3q6tWUjWNS)WVI`gK2I5Mx% zX8EBv(J7sk9V^pY-`yB&p*YBiB%(pg#MMK(kC zG9ytYvde>M|i7pV0?T*CU&%L#?QtAdyCY_?^a-!?e~>%@hZUdjvPGYU4!3D{K5 z`m$eMfWBp0pJf}WX&^_Rhf_%14tarD;=*ou#6LZcY?Vhm<_e>hFNgTrI_B-|atg(j zteqm3m24v*{FT#lO&)-)W!qHCHmiHRpYQ5s;6e9W1#4$9>x){QMscKj@0@D{L3|T5 z&pF83Bgn_XE6@l2LrgcGZaUR?##H0!E2ht|Ffq3Ud({5{IWa~s literal 0 HcmV?d00001 diff --git a/src/main/resources/templates/accueil.html b/src/main/resources/templates/accueil.html index 42e7ca4..32e62db 100644 --- a/src/main/resources/templates/accueil.html +++ b/src/main/resources/templates/accueil.html @@ -14,7 +14,7 @@

- +
From ce9b0a212c2f9091631ecf692e9935664199c710 Mon Sep 17 00:00:00 2001 From: jleroy Date: Wed, 24 Apr 2024 08:47:09 +0200 Subject: [PATCH 5/7] patch session utilisateur --- ...eController.java => ProfilController.java} | 33 ++++++++++++++----- .../enchere/security/WebSecurityConfig.java | 4 +-- .../{profile.html => editProfil.html} | 16 +++++++-- src/main/resources/templates/inscription.html | 2 +- src/main/resources/templates/modele-page.html | 2 +- 5 files changed, 43 insertions(+), 14 deletions(-) rename src/main/java/fr/eni/enchere/controllers/{ProfileController.java => ProfilController.java} (65%) rename src/main/resources/templates/{profile.html => editProfil.html} (87%) diff --git a/src/main/java/fr/eni/enchere/controllers/ProfileController.java b/src/main/java/fr/eni/enchere/controllers/ProfilController.java similarity index 65% rename from src/main/java/fr/eni/enchere/controllers/ProfileController.java rename to src/main/java/fr/eni/enchere/controllers/ProfilController.java index f484fa3..ec2be31 100644 --- a/src/main/java/fr/eni/enchere/controllers/ProfileController.java +++ b/src/main/java/fr/eni/enchere/controllers/ProfilController.java @@ -1,24 +1,22 @@ package fr.eni.enchere.controllers; import fr.eni.enchere.bo.UserProfil; -import fr.eni.enchere.dal.UserRepository; import org.springframework.ui.Model; import fr.eni.enchere.bll.UserService; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; @Controller() -@RequestMapping("/profile") -public class ProfileController { +@RequestMapping("/profil") +public class ProfilController { private final UserService userService; - public ProfileController(UserService userService) { + public ProfilController(UserService userService) { this.userService = userService; } @@ -27,7 +25,7 @@ public class ProfileController { // Obtenez l'authentification actuelle Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); // Vérifiez si l'utilisateur est authentifié - if (!authentication.getName().equals("anonymousUser")) { //Retirer le true pour le bon fonctionnement + if (!authentication.getName().equals("anonymousUser")) { // Obtenez les détails de l'utilisateur authentifié String username = authentication.getName(); // Utilisez le service approprié pour récupérer les informations de l'utilisateur à partir du nom d'utilisateur @@ -35,14 +33,33 @@ public class ProfileController { // Ajoutez les informations du profil à l'objet Model pour les afficher dans la page HTML // model.addAttribute("user", new UserProfil()); model.addAttribute("userProfile", userProfile); - return "profile"; + return "profil"; + }else { + return "accueil"; + } + } + + @PostMapping("/edit") + public String editProfile(Model model) { + // Obtenez l'authentification actuelle + Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); + // Vérifiez si l'utilisateur est authentifié + if (!authentication.getName().equals("anonymousUser")) { + // Obtenez les détails de l'utilisateur authentifié + String username = authentication.getName(); + // Utilisez le service approprié pour récupérer les informations de l'utilisateur à partir du nom d'utilisateur + UserProfil userProfile = userService.utilisateurByName(username); + // Ajoutez les informations du profil à l'objet Model pour les afficher dans la page HTML +// model.addAttribute("user", new UserProfil()); + model.addAttribute("userProfile", userProfile); + return "editProfil"; }else { return "accueil"; } } @PostMapping("/delete") - public String setUser() { + public String deleteUser() { Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); // Obtenez les détails de l'utilisateur authentifié String username = authentication.getName(); diff --git a/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java b/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java index b6fd6cb..11086e9 100644 --- a/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java +++ b/src/main/java/fr/eni/enchere/security/WebSecurityConfig.java @@ -17,9 +17,9 @@ public class WebSecurityConfig{ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests((requests) -> requests .requestMatchers("/", "/accueil").permitAll() - .requestMatchers("/accueil", "/login", "/inscription/**", "/searchArticle", "/profile/**").permitAll() + .requestMatchers("/accueil", "/login", "/inscription/**", "/searchArticle", "/article/**").permitAll() .requestMatchers("/css/**", "/images/**", "/assets/**", "/img/**", "/js/**").permitAll() - .requestMatchers("/article/**").authenticated() + .requestMatchers("/profile/**").authenticated() .requestMatchers("/admin").hasRole("ADMIN") .anyRequest().authenticated()) .formLogin((form) -> form.loginPage("/login").defaultSuccessUrl("/", true)) diff --git a/src/main/resources/templates/profile.html b/src/main/resources/templates/editProfil.html similarity index 87% rename from src/main/resources/templates/profile.html rename to src/main/resources/templates/editProfil.html index 748111a..ca6c711 100644 --- a/src/main/resources/templates/profile.html +++ b/src/main/resources/templates/editProfil.html @@ -1,5 +1,5 @@ - + @@ -107,6 +107,17 @@
+
+ +
+ +
+ +
    +
  • +
+
+
@@ -125,10 +136,11 @@
Crédits:
+ -
+
diff --git a/src/main/resources/templates/inscription.html b/src/main/resources/templates/inscription.html index 33b34c7..9278e53 100644 --- a/src/main/resources/templates/inscription.html +++ b/src/main/resources/templates/inscription.html @@ -125,7 +125,7 @@ -
+
diff --git a/src/main/resources/templates/modele-page.html b/src/main/resources/templates/modele-page.html index ced5f47..1adc48c 100644 --- a/src/main/resources/templates/modele-page.html +++ b/src/main/resources/templates/modele-page.html @@ -25,7 +25,7 @@ Vendre un article