diff --git a/micromamba_root/Lib/site-packages/material/plugins/blog/__init__.py b/micromamba_root/Lib/site-packages/material/plugins/blog/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..87d2bc6a73985a0a1f963b9ed6390878521c2ea3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/blog/__init__.py @@ -0,0 +1,33 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from .structure import View + +# ----------------------------------------------------------------------------- +# Functions +# ----------------------------------------------------------------------------- + +# Sort views by name +def view_name(view: View): + return view.name + +# Sort views by post count +def view_post_count(view: View): + return len(view.posts) diff --git a/micromamba_root/Lib/site-packages/material/plugins/blog/author.py b/micromamba_root/Lib/site-packages/material/plugins/blog/author.py new file mode 100644 index 0000000000000000000000000000000000000000..3e7ccd7ce96e3cc0644ae68b3d40177a034c2254 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/blog/author.py @@ -0,0 +1,40 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from mkdocs.config.base import Config +from mkdocs.config.config_options import DictOfItems, Optional, SubConfig, Type + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Author +class Author(Config): + name = Type(str) + description = Type(str) + avatar = Type(str) + slug = Optional(Type(str)) + url = Optional(Type(str)) + +# ----------------------------------------------------------------------------- + +# Authors +class Authors(Config): + authors = DictOfItems(SubConfig(Author), default = {}) diff --git a/micromamba_root/Lib/site-packages/material/plugins/blog/config.py b/micromamba_root/Lib/site-packages/material/plugins/blog/config.py new file mode 100644 index 0000000000000000000000000000000000000000..0f3374ea7e6f4be4a63f50abdaad9cb2b18bf3d1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/blog/config.py @@ -0,0 +1,102 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from collections.abc import Callable +from mkdocs.config.config_options import Choice, Deprecated, Optional, Type +from mkdocs.config.base import Config +from pymdownx.slugs import slugify + +from . import view_name + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Blog plugin configuration +class BlogConfig(Config): + enabled = Type(bool, default = True) + + # Settings for blog + blog_dir = Type(str, default = "blog") + blog_toc = Type(bool, default = False) + + # Settings for posts + post_dir = Type(str, default = "{blog}/posts") + post_date_format = Type(str, default = "long") + post_url_date_format = Type(str, default = "yyyy/MM/dd") + post_url_format = Type(str, default = "{date}/{slug}") + post_url_max_categories = Type(int, default = 1) + post_slugify = Type(Callable, default = slugify(case = "lower")) + post_slugify_separator = Type(str, default = "-") + post_excerpt = Choice(["optional", "required"], default = "optional") + post_excerpt_max_authors = Type(int, default = 1) + post_excerpt_max_categories = Type(int, default = 5) + post_excerpt_separator = Type(str, default = "") + post_readtime = Type(bool, default = True) + post_readtime_words_per_minute = Type(int, default = 265) + + # Settings for archive + archive = Type(bool, default = True) + archive_name = Type(str, default = "blog.archive") + archive_date_format = Type(str, default = "yyyy") + archive_url_date_format = Type(str, default = "yyyy") + archive_url_format = Type(str, default = "archive/{date}") + archive_pagination = Optional(Type(bool)) + archive_pagination_per_page = Optional(Type(int)) + archive_toc = Optional(Type(bool)) + + # Settings for categories + categories = Type(bool, default = True) + categories_name = Type(str, default = "blog.categories") + categories_url_format = Type(str, default = "category/{slug}") + categories_slugify = Type(Callable, default = slugify(case = "lower")) + categories_slugify_separator = Type(str, default = "-") + categories_sort_by = Type(Callable, default = view_name) + categories_sort_reverse = Type(bool, default = False) + categories_allowed = Type(list, default = []) + categories_pagination = Optional(Type(bool)) + categories_pagination_per_page = Optional(Type(int)) + categories_toc = Optional(Type(bool)) + + # Settings for authors + authors = Type(bool, default = True) + authors_file = Type(str, default = "{blog}/.authors.yml") + authors_profiles = Type(bool, default = False) + authors_profiles_name = Type(str, default = "blog.authors") + authors_profiles_url_format = Type(str, default = "author/{slug}") + authors_profiles_pagination = Optional(Type(bool)) + authors_profiles_pagination_per_page = Optional(Type(int)) + authors_profiles_toc = Optional(Type(bool)) + + # Settings for pagination + pagination = Type(bool, default = True) + pagination_per_page = Type(int, default = 10) + pagination_url_format = Type(str, default = "page/{page}") + pagination_format = Type(str, default = "~2~") + pagination_if_single_page = Type(bool, default = False) + pagination_keep_content = Type(bool, default = False) + + # Settings for drafts + draft = Type(bool, default = False) + draft_on_serve = Type(bool, default = True) + draft_if_future_date = Type(bool, default = False) + + # Deprecated settings + pagination_template = Deprecated(moved_to = "pagination_format") diff --git a/micromamba_root/Lib/site-packages/material/plugins/blog/plugin.py b/micromamba_root/Lib/site-packages/material/plugins/blog/plugin.py new file mode 100644 index 0000000000000000000000000000000000000000..25c140056ef78b3162d82592188e0478a568e8d4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/blog/plugin.py @@ -0,0 +1,1083 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from __future__ import annotations + +import logging +import os +import posixpath +import yaml + +from babel.dates import format_date, format_datetime +from copy import copy +from datetime import datetime, timezone +from jinja2 import pass_context +from jinja2.runtime import Context +from mkdocs.config.defaults import MkDocsConfig +from mkdocs.exceptions import PluginError +from mkdocs.plugins import BasePlugin, event_priority +from mkdocs.structure import StructureItem +from mkdocs.structure.files import File, Files, InclusionLevel +from mkdocs.structure.nav import Link, Navigation, Section +from mkdocs.structure.pages import Page +from mkdocs.structure.toc import AnchorLink, TableOfContents +from mkdocs.utils import copy_file, get_relative_url +from paginate import Page as Pagination +from shutil import rmtree +from tempfile import mkdtemp +from urllib.parse import urlparse +from yaml import SafeLoader + +from . import view_name +from .author import Author, Authors +from .config import BlogConfig +from .readtime import readtime +from .structure import ( + Archive, Category, Profile, + Excerpt, Post, View, + Reference +) + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Blog plugin +class BlogPlugin(BasePlugin[BlogConfig]): + supports_multiple_instances = True + + # Initialize plugin + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + # Initialize incremental builds + self.is_serve = False + self.is_dirty = False + + # Initialize temporary directory + self.temp_dir = mkdtemp() + + # Determine whether we're serving the site + def on_startup(self, *, command, dirty): + self.is_serve = command == "serve" + self.is_dirty = dirty + + # Initialize authors and set defaults + def on_config(self, config): + if not self.config.enabled: + return + + # Initialize entrypoint + self.blog: View + + # Initialize and resolve authors, if enabled + if self.config.authors: + self.authors = self._resolve_authors(config) + + # By default, drafts are rendered when the documentation is served, + # but not when it is built, for a better user experience + if self.is_serve and self.config.draft_on_serve: + self.config.draft = True + + # Resolve and load posts and generate views (run later) - we want to allow + # other plugins to add generated posts or views, so we run this plugin as + # late as possible. We also need to remove the posts from the navigation + # before navigation is constructed, as the entrypoint should be considered + # to be the active page for each post. The URLs of posts are computed before + # Markdown processing, so that when linking to and from posts, behavior is + # exactly the same as with regular documentation pages. We create all pages + # related to posts as part of this plugin, so we control the entire process. + @event_priority(-50) + def on_files(self, files, *, config): + if not self.config.enabled: + return + + # Resolve path to entrypoint and site directory + root = posixpath.normpath(self.config.blog_dir) + site = config.site_dir + + # Compute and normalize path to posts directory + path = self.config.post_dir.format(blog = root) + path = posixpath.normpath(path) + + # Adjust destination paths for media files + for file in files.media_files(): + if not file.src_uri.startswith(path): + continue + + # We need to adjust destination paths for assets to remove the + # purely functional posts directory prefix when building + file.dest_uri = file.dest_uri.replace(path, root) + file.abs_dest_path = os.path.join(site, file.dest_path) + file.url = file.url.replace(path, root) + + # Resolve entrypoint and posts sorted by descending date - if the posts + # directory or entrypoint do not exist, they are automatically created + self.blog = self._resolve(files, config) + self.blog.posts = sorted( + self._resolve_posts(files, config), + key = lambda post: ( + post.config.pin, + post.config.date.created + ), + reverse = True + ) + + # Generate views for archive + if self.config.archive: + views = self._generate_archive(config, files) + self.blog.views.extend(views) + + # Generate views for categories + if self.config.categories: + views = self._generate_categories(config, files) + + # We always sort the list of categories by name first, so that any + # custom sorting function that returns the same value for two items + # returns them in a predictable and logical order, because sorting + # in Python is stable, i.e., order of equal items is preserved + self.blog.views.extend(sorted( + sorted(views, key = view_name), + key = self.config.categories_sort_by, + reverse = self.config.categories_sort_reverse + )) + + # Generate views for profiles + if self.config.authors_profiles: + views = self._generate_profiles(config, files) + self.blog.views.extend(views) + + # Generate pages for views + for view in self._resolve_views(self.blog): + if self._config_pagination(view): + for page in self._generate_pages(view, config, files): + view.pages.append(page) + + # Ensure that entrypoint is always included in navigation + self.blog.file.inclusion = InclusionLevel.INCLUDED + + # Attach posts and views to navigation (run later) - again, we allow other + # plugins to alter the navigation before we start to attach posts and views + # generated by this plugin at the correct locations in the navigation. Also, + # we make sure to correct links to the parent and siblings of each page. + @event_priority(-50) + def on_nav(self, nav, *, config, files): + if not self.config.enabled: + return + + # If we're not building a standalone blog, the entrypoint will always + # have a parent when it is included in the navigation. The parent is + # essential to correctly resolve the location where the archive and + # category views are attached. If the entrypoint doesn't have a parent, + # we know that the author did not include it in the navigation, so we + # explicitly mark it as not included. + if not self.blog.parent and self.config.blog_dir != ".": + self.blog.file.inclusion = InclusionLevel.NOT_IN_NAV + + # Attach posts to entrypoint without adding them to the navigation, so + # that the entrypoint is considered to be the active page for each post + self._attach(self.blog, [None, *reversed(self.blog.posts), None]) + for post in self.blog.posts: + post.file.inclusion = InclusionLevel.NOT_IN_NAV + + # Revert temporary exclusion of views from navigation + for view in self._resolve_views(self.blog): + view.file.inclusion = self.blog.file.inclusion + for page in view.pages: + page.file.inclusion = self.blog.file.inclusion + + # Attach views for archive + if self.config.archive: + title = self._translate(self.config.archive_name, config) + views = [_ for _ in self.blog.views if isinstance(_, Archive)] + + # Attach and link views for archive + if self.blog.file.inclusion.is_in_nav(): + self._attach_to(self.blog, Section(title, views), nav) + + # Attach views for categories + if self.config.categories: + title = self._translate(self.config.categories_name, config) + views = [_ for _ in self.blog.views if isinstance(_, Category)] + + # Attach and link views for categories, if any + if self.blog.file.inclusion.is_in_nav() and views: + self._attach_to(self.blog, Section(title, views), nav) + + # Attach views for profiles + if self.config.authors_profiles: + title = self._translate(self.config.authors_profiles_name, config) + views = [_ for _ in self.blog.views if isinstance(_, Profile)] + + # Attach and link views for categories, if any + if self.blog.file.inclusion.is_in_nav() and views: + self._attach_to(self.blog, Section(title, views), nav) + + # Attach pages for views + for view in self._resolve_views(self.blog): + if self._config_pagination(view): + for at in range(1, len(view.pages)): + self._attach_at(view.parent, view, view.pages[at]) + + # Prepare post for rendering (run later) - allow other plugins to alter + # the contents or metadata of a post before it is rendered and make sure + # that the post includes a separator, which is essential for rendering + # excerpts that should be included in views + @event_priority(-50) + def on_page_markdown(self, markdown, *, page, config, files): + if not self.config.enabled: + return + + # Skip if page is not a post managed by this instance - this plugin has + # support for multiple instances, which is why this check is necessary + if page not in self.blog.posts: + if not self._config_pagination(page): + return + + # We set the contents of the view to its title if pagination should + # not keep the content of the original view on paginated views + if not self.config.pagination_keep_content: + view = self._resolve_original(page) + if view in self._resolve_views(self.blog): + + # If the current view is paginated, use the rendered title + # of the original view in case the author set the title in + # the page's contents, or it would be overridden with the + # one set in mkdocs.yml, leading to inconsistent headings + assert isinstance(view, View) + if view != page: + name = view._title_from_render or view.title + return f"# {name}" + + # Nothing more to be done for views + return + + # Extract and assign authors to post, if enabled + if self.config.authors: + for id in page.config.authors: + if id not in self.authors: + raise PluginError(f"Couldn't find author '{id}'") + + # Append to list of authors + page.authors.append(self.authors[id]) + + # Extract settings for excerpts + separator = self.config.post_excerpt_separator + max_authors = self.config.post_excerpt_max_authors + max_categories = self.config.post_excerpt_max_categories + + # Ensure presence of separator and throw, if its absent and required - + # we append the separator to the end of the contents of the post, if it + # is not already present, so we can remove footnotes or other content + # from the excerpt without affecting the content of the excerpt + if separator not in page.markdown: + if self.config.post_excerpt == "required": + docs = os.path.relpath(config.docs_dir) + path = os.path.relpath(page.file.abs_src_path, docs) + raise PluginError( + f"Couldn't find '{separator}' in post '{path}' in '{docs}'" + ) + + # Create excerpt for post and inherit authors and categories - excerpts + # can contain a subset of the authors and categories of the post + page.excerpt = Excerpt(page, config, files) + page.excerpt.authors = page.authors[:max_authors] + page.excerpt.categories = page.categories[:max_categories] + + # Process posts + def on_page_content(self, html, *, page, config, files): + if not self.config.enabled: + return + + # Skip if page is not a post managed by this instance - this plugin has + # support for multiple instances, which is why this check is necessary + if page not in self.blog.posts: + return + + # Compute readtime of post, if enabled and not explicitly set + if self.config.post_readtime: + words_per_minute = self.config.post_readtime_words_per_minute + if not page.config.readtime: + page.config.readtime = readtime(html, words_per_minute) + + # Register template filters for plugin + def on_env(self, env, *, config, files): + if not self.config.enabled: + return + + # Transform links to point to posts and pages + for post in self.blog.posts: + self._generate_links(post, config, files) + + # Filter for formatting dates related to posts + def date_filter(date: datetime): + return self._format_date_for_post(date, config) + + # Fetch URL template filter from environment - the filter might + # be overridden by other plugins, so we must retrieve and wrap it + url_filter = env.filters["url"] + + # Patch URL template filter to add support for paginated views, i.e., + # that paginated views never link to themselves but to the main vie + @pass_context + def url_filter_with_pagination(context: Context, url: str | None): + page = context["page"] + + # If the current page is a view, check if the URL links to the page + # itself, and replace it with the URL of the main view + if isinstance(page, View): + view = self._resolve_original(page) + if page.url == url: + url = view.url + + # Forward to original template filter + return url_filter(context, url) + + # Register custom template filters + env.filters["date"] = date_filter + env.filters["url"] = url_filter_with_pagination + + # Prepare view for rendering (run latest) - views are rendered last, as we + # need to mutate the navigation to account for pagination. The main problem + # is that we need to replace the view in the navigation, because otherwise + # the view would not be considered active. + @event_priority(-100) + def on_page_context(self, context, *, page, config, nav): + if not self.config.enabled: + return + + # Skip if page is not a view managed by this instance - this plugin has + # support for multiple instances, which is why this check is necessary + view = self._resolve_original(page) + if view not in self._resolve_views(self.blog): + return + + # Render excerpts and prepare pagination + posts, pagination = self._render(page) + + # Render pagination links + def pager(args: object): + return pagination.pager( + format = self.config.pagination_format, + show_if_single_page = self.config.pagination_if_single_page, + **args + ) + + # Assign posts and pagination to context + context["posts"] = posts + context["pagination"] = pager if pagination else None + + # Remove temporary directory on shutdown + def on_shutdown(self): + rmtree(self.temp_dir) + + # ------------------------------------------------------------------------- + + # Check if the given post is excluded + def _is_excluded(self, post: Post): + if self.config.draft: + return False + + # If a post was not explicitly marked or unmarked as draft, and the + # date should be taken into account, we automatically mark it as draft + # if the publishing date is in the future. This, of course, is opt-in + # and must be explicitly enabled by the author. + if not isinstance(post.config.draft, bool): + if self.config.draft_if_future_date: + return post.config.date.created > datetime.now(timezone.utc) + + # Post might be a draft + return bool(post.config.draft) + + # ------------------------------------------------------------------------- + + # Resolve entrypoint - the entrypoint of the blog must have been created + # if it did not exist before, and hosts all posts sorted by descending date + def _resolve(self, files: Files, config: MkDocsConfig): + path = os.path.join(self.config.blog_dir, "index.md") + path = os.path.normpath(path) + + # Create entrypoint, if it does not exist - note that the entrypoint is + # created in the docs directory, not in the temporary directory + docs = os.path.relpath(config.docs_dir) + name = os.path.join(docs, path) + if not os.path.isfile(name): + file = self._path_to_file(path, config, temp = False) + files.append(file) + + # Create file in docs directory + self._save_to_file(file.abs_src_path, "# Blog\n\n") + + # Create and return entrypoint + file = files.get_file_from_path(path) + return View(None, file, config) + + # Resolve post - the caller must make sure that the given file points to an + # actual post (and not a page), or behavior might be unpredictable + def _resolve_post(self, file: File, config: MkDocsConfig): + post = Post(file, config) + + # Compute path and create a temporary file for path resolution + path = self._format_path_for_post(post, config) + temp = self._path_to_file(path, config, temp = False) + + # Replace destination file system path and URL + file.dest_uri = temp.dest_uri + file.abs_dest_path = temp.abs_dest_path + file.url = temp.url + + # Replace canonical URL and return post + post._set_canonical_url(config.site_url) + return post + + # Resolve posts from directory - traverse all documentation pages and filter + # and yield those that are located in the posts directory + def _resolve_posts(self, files: Files, config: MkDocsConfig): + path = self.config.post_dir.format(blog = self.config.blog_dir) + path = os.path.normpath(path) + + # Create posts directory, if it does not exist + docs = os.path.relpath(config.docs_dir) + name = os.path.join(docs, path) + if not os.path.isdir(name): + os.makedirs(name, exist_ok = True) + + # Filter posts from pages + for file in files.documentation_pages(): + if not file.src_path.startswith(path): + continue + + # Temporarily remove post from navigation + file.inclusion = InclusionLevel.EXCLUDED + + # Resolve post - in order to determine whether a post should be + # excluded, we must load it and analyze its metadata. All posts + # marked as drafts are excluded, except for when the author has + # configured drafts to be included in the navigation. + post = self._resolve_post(file, config) + if not self._is_excluded(post): + yield post + + # Resolve authors - check if there's an authors file at the configured + # location, and if one was found, load and validate it + def _resolve_authors(self, config: MkDocsConfig): + path = self.config.authors_file.format(blog = self.config.blog_dir) + path = os.path.normpath(path) + + # Resolve path relative to docs directory + docs = os.path.relpath(config.docs_dir) + file = os.path.join(docs, path) + + # If the authors file does not exist, return here + config: Authors = Authors() + if not os.path.isfile(file): + return config.authors + + # Open file and parse as YAML + with open(file, encoding = "utf-8-sig") as f: + config.config_file_path = os.path.abspath(file) + try: + config.load_dict(yaml.load(f, SafeLoader) or {}) + + # The authors file could not be loaded because of a syntax error, + # which we display to the author with a nice error message + except Exception as e: + raise PluginError( + f"Error reading authors file '{path}' in '{docs}':\n" + f"{e}" + ) + + # Validate authors and throw if errors occurred + errors, warnings = config.validate() + for _, w in warnings: + log.warning(w) + for _, e in errors: + raise PluginError( + f"Error reading authors file '{path}' in '{docs}':\n" + f"{e}" + ) + + # Return authors + return config.authors + + # Resolve views of the given view in pre-order + def _resolve_views(self, view: View): + yield view + + # Resolve views recursively + for page in view.views: + for next in self._resolve_views(page): + assert isinstance(next, View) + yield next + + # Resolve siblings of a navigation item + def _resolve_siblings(self, item: StructureItem, nav: Navigation): + if isinstance(item.parent, Section): + return item.parent.children + else: + return nav.items + + # Resolve original page or view (e.g. for paginated views) + def _resolve_original(self, page: Page): + if isinstance(page, View) and page.pages: + return page.pages[0] + else: + return page + + # ------------------------------------------------------------------------- + + # Generate views for archive - analyze posts and generate the necessary + # views, taking the date format provided by the author into account + def _generate_archive(self, config: MkDocsConfig, files: Files): + for post in self.blog.posts: + date = post.config.date.created + + # Compute name and path of archive view + name = self._format_date_for_archive(date, config) + path = self._format_path_for_archive(post, config) + + # Create file for view, if it does not exist + file = files.get_file_from_path(path) + if not file: + file = self._path_to_file(path, config) + files.append(file) + + # Create file in temporary directory + self._save_to_file(file.abs_src_path, f"# {name}") + + # Temporarily remove view from navigation + file.inclusion = InclusionLevel.EXCLUDED + + # Create and yield view + if not isinstance(file.page, Archive): + yield Archive(name, file, config) + + # Assign post to archive + assert isinstance(file.page, Archive) + file.page.posts.append(post) + + # Generate views for categories - analyze posts and generate the necessary + # views, taking the allowed categories as set by the author into account + def _generate_categories(self, config: MkDocsConfig, files: Files): + for post in self.blog.posts: + for name in post.config.categories: + path = self._format_path_for_category(name) + + # Ensure category is in non-empty allow list + categories = self.config.categories_allowed or [name] + if name not in categories: + docs = os.path.relpath(config.docs_dir) + path = os.path.relpath(post.file.abs_src_path, docs) + raise PluginError( + f"Error reading categories of post '{path}' in " + f"'{docs}': category '{name}' not in allow list" + ) + + # Create file for view, if it does not exist + file = files.get_file_from_path(path) + if not file: + file = self._path_to_file(path, config) + files.append(file) + + # Create file in temporary directory + self._save_to_file(file.abs_src_path, f"# {name}") + + # Temporarily remove view from navigation + file.inclusion = InclusionLevel.EXCLUDED + + # Create and yield view + if not isinstance(file.page, Category): + yield Category(name, file, config) + + # Assign post to category and vice versa + assert isinstance(file.page, Category) + file.page.posts.append(post) + post.categories.append(file.page) + + # Generate views for profiles - analyze posts and generate the necessary + # views to provide a profile page for each author listing all posts + def _generate_profiles(self, config: MkDocsConfig, files: Files): + for post in self.blog.posts: + for id in post.config.authors: + author = self.authors[id] + path = self._format_path_for_profile(id, author) + + # Create file for view, if it does not exist + file = files.get_file_from_path(path) + if not file: + file = self._path_to_file(path, config) + files.append(file) + + # Create file in temporary directory + self._save_to_file(file.abs_src_path, f"# {author.name}") + + # Temporarily remove view from navigation and assign profile + # URL to author, if not explicitly set + file.inclusion = InclusionLevel.EXCLUDED + if not author.url: + author.url = file.url + + # Create and yield view + if not isinstance(file.page, Profile): + yield Profile(author.name, file, config) + + # Assign post to profile + assert isinstance(file.page, Profile) + file.page.posts.append(post) + + # Generate pages for pagination - analyze view and generate the necessary + # pages, creating a chain of views for simple rendering and replacement + def _generate_pages(self, view: View, config: MkDocsConfig, files: Files): + yield view + + # Compute pagination boundaries and create pages - pages are internally + # handled as copies of a view, as they map to the same source location + step = self._config_pagination_per_page(view) + for at in range(step, len(view.posts), step): + path = self._format_path_for_pagination(view, 1 + at // step) + + # Create file for view, if it does not exist + file = files.get_file_from_path(path) + if not file: + file = self._path_to_file(path, config) + files.append(file) + + # Copy file to temporary directory + copy_file(view.file.abs_src_path, file.abs_src_path) + + # Temporarily remove view from navigation + file.inclusion = InclusionLevel.EXCLUDED + + # Create and yield view + if not isinstance(file.page, View): + yield view.__class__(None, file, config) + + # Assign pages and posts to view + assert isinstance(file.page, View) + file.page.pages = view.pages + file.page.posts = view.posts + + # Generate links from the given post to other posts, pages, and sections - + # this can only be done once all posts and pages have been parsed + def _generate_links(self, post: Post, config: MkDocsConfig, files: Files): + if not post.config.links: + return + + # Resolve path relative to docs directory for error reporting + docs = os.path.relpath(config.docs_dir) + path = os.path.relpath(post.file.abs_src_path, docs) + + # Find all links to pages and replace them with references - while all + # internal links are processed, external links remain as they are + for link in _find_links(post.config.links.items): + url = urlparse(link.url) + if url.scheme: + continue + + # Resolve file for link, and throw if the file could not be found - + # authors can link to other pages, as well as to assets or files of + # any kind, but it is essential that the file that is linked to is + # found, so errors are actually catched and reported + file = files.get_file_from_path(url.path) + if not file: + log.warning( + f"Error reading metadata of post '{path}' in '{docs}':\n" + f"Couldn't find file for link '{url.path}'" + ) + continue + + # If the file linked to is not a page, but an asset or any other + # file, we resolve the destination URL and continue + if not isinstance(file.page, Page): + link.url = file.url + continue + + # Cast link to reference + link.__class__ = Reference + assert isinstance(link, Reference) + + # Assign page title, URL and metadata to link + link.title = link.title or file.page.title + link.url = file.page.url + link.meta = copy(file.page.meta) + + # If the link has no fragment, we can continue - if it does, we + # need to find the matching anchor in the table of contents + if not url.fragment: + continue + + # If we're running under dirty reload, MkDocs will reset all pages, + # so it's not possible to resolve anchor links. Thus, the only way + # to make this work is to skip the entire process of anchor link + # resolution in case of a dirty reload. + if self.is_dirty: + continue + + # Resolve anchor for fragment, and throw if the anchor could not be + # found - authors can link to any anchor in the table of contents + anchor = _find_anchor(file.page.toc, url.fragment) + if not anchor: + log.warning( + f"Error reading metadata of post '{path}' in '{docs}':\n" + f"Couldn't find anchor '{url.fragment}' in '{url.path}'" + ) + + # Restore link to original state + link.url = url.geturl() + continue + + # Append anchor to URL and set subtitle + link.url += f"#{anchor.id}" + link.meta["subtitle"] = anchor.title + + # ------------------------------------------------------------------------- + + # Attach a list of pages to each other and to the given parent item without + # explicitly adding them to the navigation, which can be done by the caller + def _attach(self, parent: StructureItem, pages: list[Page]): + for tail, page, head in zip(pages, pages[1:], pages[2:]): + + # Link page to parent and siblings + page.parent = parent + page.previous_page = tail + page.next_page = head + + # If the page is a view, we know that we generated it and need to + # link its siblings back to the view + if isinstance(page, View): + view = self._resolve_original(page) + if tail: tail.next_page = view + if head: head.previous_page = view + + # Attach a page to the given parent and link it to the previous and next + # page of the given host - this is exclusively used for paginated views + def _attach_at(self, parent: StructureItem, host: Page, page: Page): + self._attach(parent, [host.previous_page, page, host.next_page]) + + # Attach a section as a sibling to the given view, make sure its pages are + # part of the navigation, and ensure all pages are linked correctly + def _attach_to(self, view: View, section: Section, nav: Navigation): + section.parent = view.parent + + # Resolve siblings, which are the children of the parent section, or + # the top-level list of navigation items if the view is at the root of + # the project, and append the given section to it. It's currently not + # possible to chose the position of a section. + items = self._resolve_siblings(view, nav) + items.append(section) + + # Find last sibling that is a page, skipping sections, as we need to + # append the given section after all other pages + tail = next(item for item in reversed(items) if isinstance(item, Page)) + head = tail.next_page + + # Attach section to navigation and pages to each other + nav.pages.extend(section.children) + self._attach(section, [tail, *section.children, head]) + + # ------------------------------------------------------------------------- + + # Render excerpts and pagination for the given view + def _render(self, view: View): + posts, pagination = view.posts, None + + # Create pagination, if enabled + if self._config_pagination(view): + at = view.pages.index(view) + + # Compute pagination boundaries + step = self._config_pagination_per_page(view) + p, q = at * step, at * step + step + + # Extract posts in pagination boundaries + posts = view.posts[p:q] + pagination = self._render_pagination(view, (p, q)) + + # Render excerpts for selected posts + posts = [ + self._render_post(post.excerpt, view) + for post in posts if post.excerpt + ] + + # Return posts and pagination + return posts, pagination + + # Render excerpt in the context of the given view + def _render_post(self, excerpt: Excerpt, view: View): + excerpt.render(view, self.config.post_excerpt_separator) + + # Attach top-level table of contents item to view if it should be added + # and both, the view and excerpt contain table of contents items + toc = self._config_toc(view) + if toc and excerpt.toc.items and view.toc.items: + view.toc.items[0].children.append(excerpt.toc.items[0]) + + # Return excerpt + return excerpt + + # Create pagination for the given view and range + def _render_pagination(self, view: View, range: tuple[int, int]): + p, q = range + + # Create URL from the given page to another page + def url_maker(n: int): + return get_relative_url(view.pages[n - 1].url, view.url) + + # Return pagination + return Pagination( + view.posts, page = q // (q - p), + items_per_page = q - p, + url_maker = url_maker + ) + + # ------------------------------------------------------------------------- + + # Retrieve configuration value or return default + def _config(self, key: str, default: any): + return default if self.config[key] is None else self.config[key] + + # Retrieve configuration value for table of contents + def _config_toc(self, view: View): + default = self.config.blog_toc + if isinstance(view, Archive): + return self._config("archive_toc", default) + if isinstance(view, Category): + return self._config("categories_toc", default) + if isinstance(view, Profile): + return self._config("authors_profiles_toc", default) + else: + return default + + # Retrieve configuration value for pagination + def _config_pagination(self, view: View): + default = self.config.pagination + if isinstance(view, Archive): + return self._config("archive_pagination", default) + if isinstance(view, Category): + return self._config("categories_pagination", default) + if isinstance(view, Profile): + return self._config("authors_profiles_pagination", default) + else: + return default + + # Retrieve configuration value for pagination per page + def _config_pagination_per_page(self, view: View): + default = self.config.pagination_per_page + if isinstance(view, Archive): + return self._config("archive_pagination_per_page", default) + if isinstance(view, Category): + return self._config("categories_pagination_per_page", default) + if isinstance(view, Profile): + return self._config("authors_profiles_pagination_per_page", default) + else: + return default + + # ------------------------------------------------------------------------- + + # Format path for post + def _format_path_for_post(self, post: Post, config: MkDocsConfig): + categories = post.config.categories[:self.config.post_url_max_categories] + categories = [self._slugify_category(name) for name in categories] + + # Replace placeholders in format string + date = post.config.date.created + path = self.config.post_url_format.format( + categories = "/".join(categories), + date = self._format_date_for_post_url(date, config), + file = post.file.name, + slug = post.config.slug or self._slugify_post(post) + ) + + # Normalize path and strip slashes at the beginning and end + path = posixpath.normpath(path.strip("/")) + return posixpath.join(self.config.blog_dir, f"{path}.md") + + # Format path for archive + def _format_path_for_archive(self, post: Post, config: MkDocsConfig): + date = post.config.date.created + path = self.config.archive_url_format.format( + date = self._format_date_for_archive_url(date, config) + ) + + # Normalize path and strip slashes at the beginning and end + path = posixpath.normpath(path.strip("/")) + return posixpath.join(self.config.blog_dir, f"{path}.md") + + # Format path for category + def _format_path_for_category(self, name: str): + path = self.config.categories_url_format.format( + slug = self._slugify_category(name) + ) + + # Normalize path and strip slashes at the beginning and end + path = posixpath.normpath(path.strip("/")) + return posixpath.join(self.config.blog_dir, f"{path}.md") + + # Format path for profile + def _format_path_for_profile(self, id: str, author: Author): + path = self.config.authors_profiles_url_format.format( + slug = author.slug or id, + name = author.name + ) + + # Normalize path and strip slashes at the beginning and end + path = posixpath.normpath(path.strip("/")) + return posixpath.join(self.config.blog_dir, f"{path}.md") + + # Format path for pagination + def _format_path_for_pagination(self, view: View, page: int): + path = self.config.pagination_url_format.format( + page = page + ) + + # Compute base path for pagination - if the given view is an index file, + # we need to pop the file name from the base so it's not part of the URL + # and we need to append `index` to the path, so the paginated view is + # also an index page - see https://t.ly/71MKF + base, _ = posixpath.splitext(view.file.src_uri) + if view.is_index: + base = posixpath.dirname(base) + path = posixpath.join(path, "index") + + # Normalize path and strip slashes at the beginning and end + path = posixpath.normpath(path.strip("/")) + return posixpath.join(base, f"{path}.md") + + # ------------------------------------------------------------------------- + + # Format date - if the given format string refers to a predefined format, + # we format the date without a time component in order to keep sane default + # behavior, since authors will not expect time to be relevant for most posts + # as by our assumptions - see https://t.ly/Yi7ZC + def _format_date(self, date: datetime, format: str, config: MkDocsConfig): + locale: str = config.theme["language"].replace("-", "_") + if format in ["full", "long", "medium", "short"]: + return format_date(date, format = format, locale = locale) + else: + return format_datetime(date, format = format, locale = locale) + + # Format date for post + def _format_date_for_post(self, date: datetime, config: MkDocsConfig): + format = self.config.post_date_format + return self._format_date(date, format, config) + + # Format date for post URL + def _format_date_for_post_url(self, date: datetime, config: MkDocsConfig): + format = self.config.post_url_date_format + return self._format_date(date, format, config) + + # Format date for archive + def _format_date_for_archive(self, date: datetime, config: MkDocsConfig): + format = self.config.archive_date_format + return self._format_date(date, format, config) + + # Format date for archive URL + def _format_date_for_archive_url(self, date: datetime, config: MkDocsConfig): + format = self.config.archive_url_date_format + return self._format_date(date, format, config) + + # ------------------------------------------------------------------------- + + # Slugify post title + def _slugify_post(self, post: Post): + separator = self.config.post_slugify_separator + return self.config.post_slugify(post.title, separator) + + # Slugify category + def _slugify_category(self, name: str): + separator = self.config.categories_slugify_separator + return self.config.categories_slugify(name, separator) + + # ------------------------------------------------------------------------- + + # Create a file for the given path, which must point to a valid source file, + # either inside the temporary directory or the docs directory + def _path_to_file(self, path: str, config: MkDocsConfig, *, temp = True): + assert path.endswith(".md") + file = File( + path, + config.docs_dir if not temp else self.temp_dir, + config.site_dir, + config.use_directory_urls + ) + + # Hack: mark file as generated, so other plugins don't think it's part + # of the file system. This is more or less a new quasi-standard that + # still needs to be adopted by MkDocs, and was introduced by the + # git-revision-date-localized-plugin - see https://bit.ly/3ZUmdBx + if temp: + file.generated_by = "material/blog" + + # Return file + return file + + # Create a file with the given content on disk + def _save_to_file(self, path: str, content: str): + os.makedirs(os.path.dirname(path), exist_ok = True) + with open(path, "w", encoding = "utf-8") as f: + f.write(content) + + # ------------------------------------------------------------------------- + + # Translate the placeholder referenced by the given key + def _translate(self, key: str, config: MkDocsConfig) -> str: + env = config.theme.get_env() + template = env.get_template( + "partials/language.html", globals = { "config": config } + ) + + # Translate placeholder + return template.module.t(key) + +# ----------------------------------------------------------------------------- +# Helper functions +# ----------------------------------------------------------------------------- + +# Find all links in the given list of items +def _find_links(items: list[StructureItem]): + for item in items: + + # Resolve link + if isinstance(item, Link): + yield item + + # Resolve sections recursively + if isinstance(item, Section): + for item in _find_links(item.children): + assert isinstance(item, Link) + yield item + +# Find anchor in table of contents for the given id +def _find_anchor(toc: TableOfContents, id: str): + for anchor in toc: + if anchor.id == id: + return anchor + + # Resolve anchors recursively + anchor = _find_anchor(anchor.children, id) + if isinstance(anchor, AnchorLink): + return anchor + +# ----------------------------------------------------------------------------- +# Data +# ----------------------------------------------------------------------------- + +# Set up logging +log = logging.getLogger("mkdocs.material.blog") diff --git a/micromamba_root/Lib/site-packages/material/plugins/group/__init__.py b/micromamba_root/Lib/site-packages/material/plugins/group/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cf4e7db9044997b74516388ceb984ec8f63ae6d6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/group/__init__.py @@ -0,0 +1,19 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. diff --git a/micromamba_root/Lib/site-packages/material/plugins/group/config.py b/micromamba_root/Lib/site-packages/material/plugins/group/config.py new file mode 100644 index 0000000000000000000000000000000000000000..ce7156e4e41d63c8f8091fc2b2d4adf2aac96d79 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/group/config.py @@ -0,0 +1,31 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from mkdocs.config.config_options import Type +from mkdocs.config.base import Config + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Group plugin configuration +class GroupConfig(Config): + enabled = Type(bool, default = False) + plugins = Type((list, dict)) diff --git a/micromamba_root/Lib/site-packages/material/plugins/group/plugin.py b/micromamba_root/Lib/site-packages/material/plugins/group/plugin.py new file mode 100644 index 0000000000000000000000000000000000000000..bba795827c9090473a4ca7373cb8e9508a5330d6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/group/plugin.py @@ -0,0 +1,161 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from __future__ import annotations + +import logging + +from collections.abc import Callable +from mkdocs.config.config_options import Plugins +from mkdocs.config.defaults import MkDocsConfig +from mkdocs.exceptions import PluginError +from mkdocs.plugins import BasePlugin, event_priority + +from .config import GroupConfig + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Group plugin +class GroupPlugin(BasePlugin[GroupConfig]): + supports_multiple_instances = True + + # Initialize plugin + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + # Initialize object attributes + self.is_serve = False + self.is_dirty = False + + # Determine whether we're serving the site + def on_startup(self, *, command, dirty): + self.is_serve = command == "serve" + self.is_dirty = dirty + + # If the group is enabled, conditionally load plugins - at first, this might + # sound easier than it actually is, as we need to jump through some hoops to + # ensure correct ordering among plugins. We're effectively initializing the + # plugins that are part of the group after all MkDocs finished initializing + # all other plugins, so we need to patch the order of the methods. Moreover, + # we must use MkDocs existing plugin collection, or we might have collisions + # with other plugins that are not part of the group. As so often, this is a + # little hacky, but has huge potential making plugin configuration easier. + # There's one little caveat: the `__init__` and `on_startup` methods of the + # plugins that are part of the group are called after all other plugins, so + # the `event_priority` decorator for `on_startup` methods is effectively + # useless. However, the `on_startup` method is only intended to set up the + # plugin and doesn't receive anything else than the invoked command and + # whether we're running a dirty build, so there should be no problems. + @event_priority(150) + def on_config(self, config): + if not self.config.enabled: + return + + # Retrieve plugin collection from configuration + option: Plugins = dict(config._schema)["plugins"] + assert isinstance(option, Plugins) + + # Load all plugins in group + self.plugins: dict[str, BasePlugin] = {} + try: + for name, plugin in self._load(option): + self.plugins[name] = plugin + + # The plugin could not be loaded, likely because it's not installed or + # misconfigured, so we raise a plugin error for a nicer error message + except Exception as e: + raise PluginError(str(e)) + + # Patch order of plugin methods + for events in option.plugins.events.values(): + self._patch(events, config) + + # Invoke `on_startup` event for plugins in group + command = "serve" if self.is_serve else "build" + for method in option.plugins.events["startup"]: + plugin = self._get_plugin(method) + + # Ensure that we have a method bound to a plugin (and not a hook) + if plugin and plugin in self.plugins.values(): + method(command = command, dirty = self.is_dirty) + + # ------------------------------------------------------------------------- + + # Retrieve plugin instance for bound method or nothing + def _get_plugin(self, method: Callable): + return getattr(method, "__self__", None) + + # Retrieve priority of plugin method + def _get_priority(self, method: Callable): + return getattr(method, "mkdocs_priority", 0) + + # Retrieve position of plugin + def _get_position(self, plugin: BasePlugin, config: MkDocsConfig) -> int: + for at, (_, candidate) in enumerate(config.plugins.items()): + if plugin == candidate: + return at + + # ------------------------------------------------------------------------- + + # Load plugins that are part of the group + def _load(self, option: Plugins): + for name, data in option._parse_configs(self.config.plugins): + yield option.load_plugin_with_namespace(name, data) + + # ------------------------------------------------------------------------- + + # Patch order of plugin methods - all other plugin methods are already in + # the right order, so we only need to check those that are part of the group + # and bubble them up into the right location. Some plugin methods may define + # priorities, so we need to make sure to order correctly within those. + def _patch(self, methods: list[Callable], config: MkDocsConfig): + position = self._get_position(self, config) + for at in reversed(range(1, len(methods))): + tail = methods[at - 1] + head = methods[at] + + # Skip if the plugin is not part of the group + plugin = self._get_plugin(head) + if not plugin or plugin not in self.plugins.values(): + continue + + # Skip if the previous method has a higher priority than the current + # one, because we know we can't swap them anyway + if self._get_priority(tail) > self._get_priority(head): + continue + + # Ensure that we have a method bound to a plugin (and not a hook) + plugin = self._get_plugin(tail) + if not plugin: + continue + + # Both methods have the same priority, so we check if the ordering + # of both methods is violated, and if it is, swap them + if (position < self._get_position(plugin, config)): + methods[at], methods[at - 1] = tail, head + +# ----------------------------------------------------------------------------- +# Data +# ----------------------------------------------------------------------------- + +# Set up logging +log = logging.getLogger("mkdocs.material.group") diff --git a/micromamba_root/Lib/site-packages/material/plugins/info/__init__.py b/micromamba_root/Lib/site-packages/material/plugins/info/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cf4e7db9044997b74516388ceb984ec8f63ae6d6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/info/__init__.py @@ -0,0 +1,19 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. diff --git a/micromamba_root/Lib/site-packages/material/plugins/info/config.py b/micromamba_root/Lib/site-packages/material/plugins/info/config.py new file mode 100644 index 0000000000000000000000000000000000000000..2d4301c276f2d1b2833debe0e7397757922b340e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/info/config.py @@ -0,0 +1,35 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from mkdocs.config.config_options import Type +from mkdocs.config.base import Config + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Info plugin configuration +class InfoConfig(Config): + enabled = Type(bool, default = True) + enabled_on_serve = Type(bool, default = False) + + # Settings for archive + archive = Type(bool, default = True) + archive_stop_on_violation = Type(bool, default = True) diff --git a/micromamba_root/Lib/site-packages/material/plugins/info/patterns.py b/micromamba_root/Lib/site-packages/material/plugins/info/patterns.py new file mode 100644 index 0000000000000000000000000000000000000000..5770f08e5682cf208d983ff9aafdc30f38a809eb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/info/patterns.py @@ -0,0 +1,27 @@ +def get_exclusion_patterns(): + """ + Regex patterns, which will be compared against directory and file names + case-sensitively. https://docs.python.org/3/library/re.html#re.search is the + matching function and scans the whole string to find any pattern match. Used + with the https://pypi.org/project/regex/ module. + + Additional remarks for pattern creation: + - The compared paths will be always in POSIX format. + - Each directory path will have a / at the end to allow to distinguish them + from files. + - Patterns for dynamic or custom paths like Virtual Environments (venv) or + build site directories are created during plugin runtime. + """ + return [ + r"/__pycache__/", # Python cache directory + + r"/\.DS_Store$", # macOS + + r"/[^/]+\.zip$", # Generated files and folders + + r"/[^/]*\.cache($|/)", # .cache files and folders + + r"/\.vscode/", # Common autogenerated IDE directories + r"/\.vs/", + r"/\.idea/", + ] diff --git a/micromamba_root/Lib/site-packages/material/plugins/info/plugin.py b/micromamba_root/Lib/site-packages/material/plugins/info/plugin.py new file mode 100644 index 0000000000000000000000000000000000000000..9de7af6cd487fdd4cafb7b57f7a47ece5df605cb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/info/plugin.py @@ -0,0 +1,563 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +import getpass +import glob +import json +import logging +import os +import platform +import re +import requests +import site +import sys +import yaml + +from colorama import Fore, Style +from importlib.metadata import distributions, version +from io import BytesIO +from markdown.extensions.toc import slugify +from mkdocs.config.defaults import MkDocsConfig +from mkdocs.plugins import BasePlugin, event_priority +from mkdocs.utils.yaml import get_yaml_loader +from zipfile import ZipFile, ZIP_DEFLATED + +from .config import InfoConfig +from .patterns import get_exclusion_patterns + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Info plugin +class InfoPlugin(BasePlugin[InfoConfig]): + + # Initialize plugin + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + # Initialize incremental builds + self.is_serve = False + + # Initialize empty members + self.exclusion_patterns = [] + self.excluded_entries = [] + + # Determine whether we're serving the site + def on_startup(self, *, command, dirty): + self.is_serve = command == "serve" + + # Create a self-contained example (run earliest) - determine all files that + # are visible to MkDocs and are used to build the site, create an archive + # that contains all of them, and print a summary of the archive contents. + # The author must attach this archive to the bug report. + @event_priority(100) + def on_config(self, config): + if not self.config.enabled: + return + + # By default, the plugin is disabled when the documentation is served, + # but not when it is built. This should nicely align with the expected + # user experience when creating reproductions. + if not self.config.enabled_on_serve and self.is_serve: + return + + # Resolve latest version + url = "https://github.com/squidfunk/mkdocs-material/releases/latest" + res = requests.get(url, allow_redirects = False) + + # Check if we're running the latest version + _, current = res.headers.get("location").rsplit("/", 1) + present = version("mkdocs-material") + if not present.startswith(current): + log.error("Please upgrade to the latest version.") + self._help_on_versions_and_exit(present, current) + + # Exit if archive creation is disabled + if not self.config.archive: + sys.exit(1) + + # Print message that we're creating a bug report + log.info("Started archive creation for bug report") + + # Check that there are no overrides in place - we need to use a little + # hack to detect whether the custom_dir setting was used without parsing + # mkdocs.yml again - we check at which position the directory provided + # by the theme resides, and if it's not the first one, abort. + if config.theme.custom_dir: + log.error("Please remove 'custom_dir' setting.") + self._help_on_customizations_and_exit() + + # Check that there are no hooks in place - hooks can alter the behavior + # of MkDocs in unpredictable ways, which is why they must be considered + # being customizations. Thus, we can't offer support for debugging and + # must abort here. + if config.hooks: + log.error("Please remove 'hooks' setting.") + self._help_on_customizations_and_exit() + + # Assure all paths that will be validated are absolute. Convert possible + # relative config_file_path to absolute. Its absolute directory path is + # being later used to resolve other paths. + config.config_file_path = _convert_to_abs(config.config_file_path) + config_file_parent = os.path.dirname(config.config_file_path) + + # Convert relative custom_dir path to absolute. The Theme.custom_dir + # property cannot be set, therefore a helper variable is used. + if config.theme.custom_dir: + abs_custom_dir = _convert_to_abs( + config.theme.custom_dir, + abs_prefix = config_file_parent + ) + else: + abs_custom_dir = "" + + # Extract the absolute path to projects plugin's directory to explicitly + # support path validation and dynamic exclusion for the plugin + projects_plugin = config.plugins.get("material/projects") + if projects_plugin: + abs_projects_dir = _convert_to_abs( + projects_plugin.config.projects_dir, + abs_prefix = config_file_parent + ) + else: + abs_projects_dir = "" + + # MkDocs removes the INHERIT configuration key during load, and doesn't + # expose the information in any way, as the parent configuration is + # merged into one. To validate that the INHERIT config file will be + # included in the ZIP file the current config file must be loaded again + # without parsing. Each file can have their own INHERIT key, so a list + # of configurations is supported. The INHERIT path is converted during + # load to absolute. + loaded_configs = _load_yaml(config.config_file_path) + if not isinstance(loaded_configs, list): + loaded_configs = [loaded_configs] + + # It can happen that the drive letter case is inconsistent on Windows. + # Therefore, assure first character to be uppercase for the following + # checks. See: https://t.ly/9t1SU + site_prefixes = list(map(capitalize, site.PREFIXES)) + cwd = capitalize(os.getcwd()) + + # We need to make sure the user put every file in the current working + # directory. To assure the reproduction inside the ZIP file can be run, + # validate that the MkDocs paths are children of the current root. + paths_to_validate = list(map(capitalize, [ + config.config_file_path, + config.docs_dir, + abs_custom_dir, + abs_projects_dir, + *[cfg.get("INHERIT", "") for cfg in loaded_configs] + ])) + + # Convert relative hook paths to absolute path + for hook in config.hooks: + path = _convert_to_abs(hook, abs_prefix = config_file_parent) + paths_to_validate.append(path) + + # Remove valid paths from the list + for path in list(paths_to_validate): + if not path or path.startswith(cwd): + paths_to_validate.remove(path) + + # Report the invalid paths to the user + if paths_to_validate: + log.error("One or more paths aren't children of root") + self._help_on_not_in_cwd(paths_to_validate) + + # Create in-memory archive and prompt author for a short descriptive + # name for the archive, which is also used as the directory name. Note + # that the name is slugified for better readability and stripped of any + # file extension that the author might have entered. + archive = BytesIO() + example = input("\nPlease name your bug report (2-4 words): ") + example, _ = os.path.splitext(example) + example = "-".join([present, slugify(example, "-")]) + + # Get local copy of the exclusion patterns + self.exclusion_patterns = get_exclusion_patterns() + self.excluded_entries = [] + + # Exclude the site_dir at project root + if capitalize(config.site_dir).startswith(cwd): + self.exclusion_patterns.append(_resolve_pattern(config.site_dir)) + + # Exclude the Virtual Environment directory. site.getsitepackages() has + # inconsistent results across operating systems, and relies on the + # PREFIXES that will contain the absolute path to the activated venv. + for path in site_prefixes: + if path.startswith(cwd): + self.exclusion_patterns.append(_resolve_pattern(path)) + + # Guess other Virtual Environment paths in case we forget to activate + # them or in case we have multiple. Making sure which venv is activated + # is not necessary, as it is an optional step in the guidelines. + for abs_root, dirnames, filenames in os.walk(os.getcwd()): + for filename in filenames: + if filename.lower() != "pyvenv.cfg": + continue + + path = capitalize(abs_root) + + if path not in site_prefixes: + print(f"Possible inactive venv: {path}") + self.exclusion_patterns.append(_resolve_pattern(path)) + + # Exclude site_dir for projects + if projects_plugin: + for path in glob.iglob( + pathname = projects_plugin.config.projects_config_files, + root_dir = abs_projects_dir, + recursive = True + ): + current_config_file = os.path.join(abs_projects_dir, path) + project_config = _get_project_config(current_config_file) + pattern = _resolve_pattern(project_config.site_dir) + self.exclusion_patterns.append(pattern) + + # Track dotpath inclusion to inform about it later + contains_dotpath: bool = False + + # Create self-contained example from project + files: list[str] = [] + with ZipFile(archive, "a", ZIP_DEFLATED, False) as f: + for abs_root, dirnames, filenames in os.walk(os.getcwd()): + # Set and print progress indicator + indicator = f"Processing: {abs_root}" + print(indicator, end="\r", flush=True) + + # Prune the folders in-place to prevent their processing + for name in list(dirnames): + # Resolve the absolute directory path + path = os.path.join(abs_root, name) + + # Exclude the directory and all subdirectories + if self._is_excluded(path): + dirnames.remove(name) + continue + + # Warn about .dotdirectories + if _is_dotpath(path, log_warning = True): + contains_dotpath = True + + # Write files to the in-memory archive + for name in filenames: + # Resolve the absolute file path + path = os.path.join(abs_root, name) + + # Exclude the file + if self._is_excluded(path): + continue + + # Warn about .dotfiles + if _is_dotpath(path, log_warning = True): + contains_dotpath = True + + # Resolve the relative path to create a matching structure + path = os.path.relpath(path, os.path.curdir) + f.write(path, os.path.join(example, path)) + + # Clear the line for the next indicator + print(" " * len(indicator), end="\r", flush=True) + + # Add information on installed packages + f.writestr( + os.path.join(example, "requirements.lock.txt"), + "\n".join(sorted([ + "==".join([package.name, package.version]) + for package in distributions() + ])) + ) + + # Try to get login to replace it with USERNAME placeholder + try: + username = getpass.getuser() + except Exception: + username = "USERNAME" + + # Add information on platform + f.writestr( + os.path.join(example, "platform.json"), + json.dumps( + { + "system": platform.platform(), + "architecture": platform.architecture(), + "python": platform.python_version(), + "cwd": os.getcwd(), + "command": " ".join([ + sys.argv[0].rsplit(os.sep, 1)[-1], + *sys.argv[1:] + ]), + "env:$PYTHONPATH": os.getenv("PYTHONPATH", ""), + "env:$VIRTUAL_ENV": os.getenv("VIRTUAL_ENV", ""), + "sys.path": sys.path, + "excluded_entries": self.excluded_entries + }, + default = str, + indent = 2 + ).replace(username, "USERNAME") + ) + + # Retrieve list of processed files + for a in f.filelist: + # Highlight .dotpaths in a more explicit manner + color = (Fore.LIGHTYELLOW_EX if "/." in a.filename + else Fore.LIGHTBLACK_EX) + files.append("".join([ + color, a.filename, " ", + _size(a.compress_size) + ])) + + # Finally, write archive to disk + buffer = archive.getbuffer() + with open(f"{example}.zip", "wb") as f: + f.write(archive.getvalue()) + + # Print summary + log.info("Archive successfully created:") + print(Style.NORMAL) + + # Print archive file names + files.sort() + for file in files: + print(f" {file}") + + # Print archive name + print(Style.RESET_ALL) + print("".join([ + " ", f.name, " ", + _size(buffer.nbytes, 10) + ])) + + # Print warning when file size is excessively large + print(Style.RESET_ALL) + if buffer.nbytes > 1000000: + log.warning("Archive exceeds recommended maximum size of 1 MB") + + # Print warning when file contains hidden .dotpaths + if contains_dotpath: + log.warning( + "Archive contains dotpaths, which could contain sensitive " + "information.\nPlease review them at the bottom of the list " + "and share only necessary data to reproduce the issue." + ) + + # Aaaaaand done + sys.exit(1) + + # ------------------------------------------------------------------------- + + # Print help on versions and exit + def _help_on_versions_and_exit(self, have, need): + print(Fore.RED) + print(" When reporting issues, please first upgrade to the latest") + print(" version of Material for MkDocs, as the problem might already") + print(" be fixed in the latest version. This helps reduce duplicate") + print(" efforts and saves us maintainers time.") + print(Style.NORMAL) + print(f" Please update from {have} to {need}.") + print(Style.RESET_ALL) + print(f" pip install --upgrade --force-reinstall mkdocs-material") + print(Style.NORMAL) + + # Exit, unless explicitly told not to + if self.config.archive_stop_on_violation: + sys.exit(1) + + # Print help on customizations and exit + def _help_on_customizations_and_exit(self): + print(Fore.RED) + print(" When reporting issues, you must remove all customizations") + print(" and check if the problem persists. If not, the problem is") + print(" caused by your overrides. Please understand that we can't") + print(" help you debug your customizations. Please remove:") + print(Style.NORMAL) + print(" - theme.custom_dir") + print(" - hooks") + print(Fore.YELLOW) + print(" Additionally, please remove all third-party JavaScript or") + print(" CSS not explicitly mentioned in our documentation:") + print(Style.NORMAL) + print(" - extra_css") + print(" - extra_javascript") + print(Fore.YELLOW) + print(" If you're using customizations from the theme's documentation") + print(" and you want to report a bug specific to those customizations") + print(" then set the 'archive_stop_on_violation: false' option in the") + print(" info plugin config.") + print(Style.RESET_ALL) + + # Exit, unless explicitly told not to + if self.config.archive_stop_on_violation: + sys.exit(1) + + # Print help on not in current working directory and exit + def _help_on_not_in_cwd(self, outside_root): + print(Fore.RED) + print(" The current working (root) directory:\n") + print(f" {os.getcwd()}\n") + print(" is not a parent of the following paths:") + print(Style.NORMAL) + for path in outside_root: + print(f" {path}") + print("\n To assure that all project files are found please adjust") + print(" your config or file structure and put everything within the") + print(" root directory of the project.") + print("\n Please also make sure `mkdocs build` is run in the actual") + print(" root directory of the project.") + print(Style.RESET_ALL) + + # Exit, unless explicitly told not to + if self.config.archive_stop_on_violation: + sys.exit(1) + + # Check if path is excluded and should be omitted from the zip. Use pattern + # matching for files and folders, and lookahead specific files in folders to + # skip them. Side effect: Save excluded paths to save them in the zip file. + def _is_excluded(self, abspath: str) -> bool: + + # Resolve the path into POSIX format to match the patterns + pattern_path = _resolve_pattern(abspath, return_path = True) + for pattern in self.exclusion_patterns: + if re.search(pattern, pattern_path): + log.debug(f"Excluded pattern '{pattern}': {abspath}") + self.excluded_entries.append(f"{pattern} - {pattern_path}") + return True + + # File exclusion should be limited to pattern matching + if os.path.isfile(abspath): + return False + + # Projects, which don't use the projects plugin for multi-language + # support could have separate build folders for each config file or + # language. Therefore, we exclude them with the assumption a site_dir + # contains the sitemap file. Example of such a setup: https://t.ly/DLQcy + sitemap_gz = os.path.join(abspath, "sitemap.xml.gz") + if os.path.exists(sitemap_gz): + log.debug(f"Excluded site_dir: {abspath}") + self.excluded_entries.append(f"sitemap.xml.gz - {pattern_path}") + return True + + return False + +# ----------------------------------------------------------------------------- +# Helper functions +# ----------------------------------------------------------------------------- + +# Print human-readable size +def _size(value, factor = 1): + color = Fore.GREEN + if value > 100000 * factor: color = Fore.RED + elif value > 25000 * factor: color = Fore.YELLOW + for unit in ["B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB"]: + if abs(value) < 1000.0: + return f"{color}{value:3.1f} {unit}" + value /= 1000.0 + +# Get the absolute path with set prefix. To validate if a file is inside the +# current working directory it needs to be absolute, so that it is possible to +# check the prefix. +def _convert_to_abs(path: str, abs_prefix: str = None) -> str: + if os.path.isabs(path): return path + if abs_prefix is None: abs_prefix = os.getcwd() + return os.path.normpath(os.path.join(abs_prefix, path)) + +# Get the loaded config, or a list with all loaded configs. MkDocs removes the +# INHERIT configuration key during load, and doesn't expose the information in +# any way, as the parent configuration is merged into one. The INHERIT path is +# needed for validation. This custom YAML loader replicates MkDocs' loading +# logic. Side effect: It converts the INHERIT path to absolute. +def _load_yaml(abs_src_path: str): + + with open(abs_src_path, encoding ="utf-8-sig") as file: + source = file.read() + + try: + result = yaml.load(source, Loader = get_yaml_loader()) or {} + except yaml.YAMLError: + result = {} + + if "INHERIT" in result: + relpath = result.get('INHERIT') + parent_path = os.path.dirname(abs_src_path) + abspath = _convert_to_abs(relpath, abs_prefix = parent_path) + if os.path.exists(abspath): + result["INHERIT"] = abspath + log.debug(f"Loading inherited configuration file: {abspath}") + parent = _load_yaml(abspath) + if isinstance(parent, list): + result = [result, *parent] + elif isinstance(parent, dict): + result = [result, parent] + + return result + +# Get a normalized POSIX path for the pattern matching with removed current +# working directory prefix. Directory paths end with a '/' to allow more control +# in the pattern creation for files and directories. The patterns are matched +# using the search function, so they are prefixed with ^ for specificity. +def _resolve_pattern(abspath: str, return_path: bool = False): + path = capitalize(abspath).replace(capitalize(os.getcwd()), "", 1) + path = path.replace(os.sep, "/").rstrip("/") + + if not path: + return "/" + + # Check abspath, as the file needs to exist + if not os.path.isfile(abspath): + path = path + "/" + + return path if return_path else f"^{path}" + +# Get project configuration with resolved absolute paths for validation +def _get_project_config(project_config_file: str): + with open(project_config_file, encoding="utf-8-sig") as file: + config = MkDocsConfig(config_file_path = project_config_file) + config.load_file(file) + + # MkDocs transforms site_dir to absolute path during validation + config.validate() + + return config + +# Check if the path is a .dotpath. A warning can also be issued when the param +# is set. The function also returns a boolean to track results outside it. +def _is_dotpath(path: str, log_warning: bool = False) -> bool: + posix_path = _resolve_pattern(path, return_path = True) + name = posix_path.rstrip("/").rsplit("/", 1)[-1] + if name.startswith("."): + if log_warning: + log.warning(f"The following .dotpath will be included: {path}") + return True + return False + +# It can happen that the drive letter case is inconsistent on Windows. +# Capitalize the first character keeping the rest the same for comparison. +# See: https://t.ly/9t1SU +def capitalize(path: str): + return path[0].upper() + path[1:] if path else path + +# ----------------------------------------------------------------------------- +# Data +# ----------------------------------------------------------------------------- + +# Set up logging +log = logging.getLogger("mkdocs.material.info") diff --git a/micromamba_root/Lib/site-packages/material/plugins/meta/__init__.py b/micromamba_root/Lib/site-packages/material/plugins/meta/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cf4e7db9044997b74516388ceb984ec8f63ae6d6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/meta/__init__.py @@ -0,0 +1,19 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. diff --git a/micromamba_root/Lib/site-packages/material/plugins/meta/config.py b/micromamba_root/Lib/site-packages/material/plugins/meta/config.py new file mode 100644 index 0000000000000000000000000000000000000000..b74df7c8ca2ea033415be7e38b215bfa0a5edd0a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/meta/config.py @@ -0,0 +1,33 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from mkdocs.config.config_options import Type +from mkdocs.config.base import Config + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Meta plugin configuration +class MetaConfig(Config): + enabled = Type(bool, default = True) + + # Settings for meta files + meta_file = Type(str, default = ".meta.yml") diff --git a/micromamba_root/Lib/site-packages/material/plugins/meta/plugin.py b/micromamba_root/Lib/site-packages/material/plugins/meta/plugin.py new file mode 100644 index 0000000000000000000000000000000000000000..bfaed47fabfeb190000a6907c80c7aa83b72a14d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/meta/plugin.py @@ -0,0 +1,122 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +import logging +import os +import posixpath + +from mergedeep import Strategy, merge +from mkdocs.exceptions import PluginError +from mkdocs.structure.files import InclusionLevel +from mkdocs.plugins import BasePlugin, event_priority +from yaml import SafeLoader, load + +from .config import MetaConfig + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Meta plugin +class MetaPlugin(BasePlugin[MetaConfig]): + + # Construct metadata mapping + def on_files(self, files, *, config): + if not self.config.enabled: + return + + # Initialize mapping + self.meta = {} + + # Resolve and load meta files in docs directory + docs = os.path.relpath(config.docs_dir) + for file in files: + name = posixpath.basename(file.src_uri) + if not name == self.config.meta_file: + continue + + # Exclude meta file from site directory - explicitly excluding the + # meta file allows the author to use a file name without '.' prefix + file.inclusion = InclusionLevel.EXCLUDED + + # Open file and parse as YAML + with open(file.abs_src_path, encoding = "utf-8-sig") as f: + path = file.src_path + try: + self.meta[path] = load(f, SafeLoader) + + # The meta file could not be loaded because of a syntax error, + # which we display to the author with a nice error message + except Exception as e: + raise PluginError( + f"Error reading meta file '{path}' in '{docs}':\n" + f"{e}" + ) + + # Set metadata for page, if applicable (run earlier) + @event_priority(50) + def on_page_markdown(self, markdown, *, page, config, files): + if not self.config.enabled: + return + + # Start with a clean state, as we first need to apply all meta files + # that are relevant to the current page, and then merge the page meta + # on top of that to ensure that the page meta always takes precedence + # over meta files - see https://t.ly/kvCRn + meta = {} + + # Merge matching meta files in level-order + strategy = Strategy.TYPESAFE_ADDITIVE + for path, defaults in self.meta.items(): + if not page.file.src_path.startswith(os.path.dirname(path)): + continue + + # Skip if meta file was already merged - this happens in case of + # blog posts, as they need to be merged when posts are constructed, + # which is why we need to keep track of which meta files are applied + # to what pages using the `__extends` key. + page.meta.setdefault("__extends", []) + if path in page.meta["__extends"]: + continue + + # Try to merge metadata + try: + merge(meta, defaults, strategy = strategy) + page.meta["__extends"].append(path) + + # Merging the metadata with the given strategy resulted in an error, + # which we display to the author with a nice error message + except Exception as e: + docs = os.path.relpath(config.docs_dir) + raise PluginError( + f"Error merging meta file '{path}' in '{docs}':\n" + f"{e}" + ) + + # Ensure page metadata is merged last, so the author can override any + # defaults from the meta files, or even remove them entirely + page.meta = merge(meta, page.meta, strategy = strategy) + +# ----------------------------------------------------------------------------- +# Data +# ----------------------------------------------------------------------------- + +# Set up logging +log = logging.getLogger("mkdocs.material.meta") diff --git a/micromamba_root/Lib/site-packages/material/plugins/offline/__init__.py b/micromamba_root/Lib/site-packages/material/plugins/offline/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cf4e7db9044997b74516388ceb984ec8f63ae6d6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/offline/__init__.py @@ -0,0 +1,19 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. diff --git a/micromamba_root/Lib/site-packages/material/plugins/offline/config.py b/micromamba_root/Lib/site-packages/material/plugins/offline/config.py new file mode 100644 index 0000000000000000000000000000000000000000..6f493f6fbeaa946656a591c78b605b2f40f38154 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/offline/config.py @@ -0,0 +1,30 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +from mkdocs.config.config_options import Type +from mkdocs.config.base import Config + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Offline plugin configuration +class OfflineConfig(Config): + enabled = Type(bool, default = True) diff --git a/micromamba_root/Lib/site-packages/material/plugins/offline/plugin.py b/micromamba_root/Lib/site-packages/material/plugins/offline/plugin.py new file mode 100644 index 0000000000000000000000000000000000000000..d7e99aded8fa7ff4a2f3f65fab0aef41f709d1ce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/offline/plugin.py @@ -0,0 +1,69 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +import os + +from mkdocs.plugins import BasePlugin, event_priority + +from .config import OfflineConfig + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Offline plugin +class OfflinePlugin(BasePlugin[OfflineConfig]): + + # Set configuration for offline build + def on_config(self, config): + if not self.config.enabled: + return + + # Ensure correct resolution of links when viewing the site from the + # file system by disabling directory URLs + config.use_directory_urls = False + + # Append iframe-worker to polyfills/shims + config.extra["polyfills"] = config.extra.get("polyfills", []) + if not any("iframe-worker" in url for url in config.extra["polyfills"]): + script = "https://unpkg.com/iframe-worker/shim" + config.extra["polyfills"].append(script) + + # Add support for offline search (run latest) - the search index is copied + # and inlined into a script, so that it can be used without a server + @event_priority(-100) + def on_post_build(self, *, config): + if not self.config.enabled: + return + + # Ensure presence of search index + path = os.path.join(config.site_dir, "search") + file = os.path.join(path, "search_index.json") + if not os.path.isfile(file): + return + + # Obtain search index contents + with open(file, encoding = "utf-8") as f: + data = f.read() + + # Inline search index contents into script + file = os.path.join(path, "search_index.js") + with open(file, "w", encoding = "utf-8") as f: + f.write(f"var __index = {data}") diff --git a/micromamba_root/Lib/site-packages/material/plugins/optimize/config.py b/micromamba_root/Lib/site-packages/material/plugins/optimize/config.py new file mode 100644 index 0000000000000000000000000000000000000000..bf042a62e188ad8a559274d8d13334e2752f5899 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/plugins/optimize/config.py @@ -0,0 +1,52 @@ +# Copyright (c) 2016-2025 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +import os + +from mkdocs.config.base import Config +from mkdocs.config.config_options import ListOfItems, Type + +# ----------------------------------------------------------------------------- +# Classes +# ----------------------------------------------------------------------------- + +# Optimize plugin configuration +class OptimizeConfig(Config): + enabled = Type(bool, default = True) + concurrency = Type(int, default = max(1, os.cpu_count() - 1)) + + # Settings for caching + cache = Type(bool, default = True) + cache_dir = Type(str, default = ".cache/plugin/optimize") + + # Settings for optimization + optimize = Type(bool, default = True) + optimize_png = Type(bool, default = True) + optimize_png_speed = Type(int, default = 3) + optimize_png_strip = Type(bool, default = True) + optimize_jpg = Type(bool, default = True) + optimize_jpg_quality = Type(int, default = 60) + optimize_jpg_progressive = Type(bool, default = True) + optimize_include = ListOfItems(Type(str), default = []) + optimize_exclude = ListOfItems(Type(str), default = []) + + # Settings for reporting + print_gain = Type(bool, default = True) + print_gain_summary = Type(bool, default = True) diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/journal-whills.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/journal-whills.svg new file mode 100644 index 0000000000000000000000000000000000000000..5bdebb03e7b6e0b0735d799640b67c24982ce73f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/journal-whills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/jpy.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/jpy.svg new file mode 100644 index 0000000000000000000000000000000000000000..eef5ca484c6cd33eeab7a4f74bcc4e351dc9e8af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/jpy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/jug-detergent.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/jug-detergent.svg new file mode 100644 index 0000000000000000000000000000000000000000..c77d713210adfa8f1ea556482b4f949fa502a90d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/jug-detergent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/k.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/k.svg new file mode 100644 index 0000000000000000000000000000000000000000..80f3d4096e1dd082f4a4c4c5e9264c949e12d5fb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kaaba.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kaaba.svg new file mode 100644 index 0000000000000000000000000000000000000000..40daa621304ac339053b89c158aafbe09e581a15 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kaaba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/key.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/key.svg new file mode 100644 index 0000000000000000000000000000000000000000..7eb51cea98a53cb9129c97ecec592cdccd25a215 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/keyboard.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/keyboard.svg new file mode 100644 index 0000000000000000000000000000000000000000..6b5c0c010b35181761725747b19965e079541872 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/khanda.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/khanda.svg new file mode 100644 index 0000000000000000000000000000000000000000..7408830b819f8335df810ca6221e1fecfbfab654 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/khanda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kip-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kip-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..359e85ba5fa6b8c823799672cd40c583a6bed936 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kip-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss-beam.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss-beam.svg new file mode 100644 index 0000000000000000000000000000000000000000..0ce98f1c8b33e6efa390b70349805fd8b51b737c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg new file mode 100644 index 0000000000000000000000000000000000000000..a7c38d9da06ed3d358431f7e5e1829581b72273f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss.svg new file mode 100644 index 0000000000000000000000000000000000000000..8d8cb163a214890103f14cf1d4d2718bf723cb0b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kit-medical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kit-medical.svg new file mode 100644 index 0000000000000000000000000000000000000000..e0dd8db9c261813cc8457d2bd27cc291c01d303d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kit-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kitchen-set.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kitchen-set.svg new file mode 100644 index 0000000000000000000000000000000000000000..60c2795df2dd7e69cfc1b0c276442ef4d46357a5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kitchen-set.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiwi-bird.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiwi-bird.svg new file mode 100644 index 0000000000000000000000000000000000000000..22feb6ce7811ea2c591bd118734ef055417abb16 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/kiwi-bird.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/krw.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/krw.svg new file mode 100644 index 0000000000000000000000000000000000000000..919bc7f9127f07de55c66c7e33c4bfd9cd972dd9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/krw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/l.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/l.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a615ce4e71d0b2636515a05f23f493f860b067e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/l.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ladder-water.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ladder-water.svg new file mode 100644 index 0000000000000000000000000000000000000000..dbd2503a9b9daa67d511fdf0e2bd1b9f9ddab80a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ladder-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/land-mine-on.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/land-mine-on.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd0056f527a7c4b2ccd53207c53ff35e6a706293 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/land-mine-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..b48e19a3e839ca4b50e9c150e08fb7c9049483ef --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-dome.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-dome.svg new file mode 100644 index 0000000000000000000000000000000000000000..b48e19a3e839ca4b50e9c150e08fb7c9049483ef --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-dome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-flag.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-flag.svg new file mode 100644 index 0000000000000000000000000000000000000000..896325c4dbb5405b709846ec2e047da942e80613 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..e3fd90de5e63a20f4df73acf00b481f6a53ae8a0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/landmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/language.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/language.svg new file mode 100644 index 0000000000000000000000000000000000000000..2212ed43d7a901670e325c9617daec1287db61ad --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-code.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-code.svg new file mode 100644 index 0000000000000000000000000000000000000000..a3305b4c681bea3536704c0760577ced16c0ab20 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-file.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-file.svg new file mode 100644 index 0000000000000000000000000000000000000000..e8d4275d75e8a3847af3f5ade8b8e1b83fc31135 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-house.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-house.svg new file mode 100644 index 0000000000000000000000000000000000000000..8a996530f6fb81fe60db9ff52f9ebe78eb9f2020 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-medical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-medical.svg new file mode 100644 index 0000000000000000000000000000000000000000..93f8eb1c6161c1459ab5e7551c8493ca19641141 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop.svg new file mode 100644 index 0000000000000000000000000000000000000000..c59e33192e349733c893551583b64cdd24bf0ab7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lari-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lari-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..1c6e9d958737e9e9bb4c89ce7b68a8b9dd547c92 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lari-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-beam.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-beam.svg new file mode 100644 index 0000000000000000000000000000000000000000..2bf6be775f4663bd73ba84168a228dbf84fd1566 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-squint.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-squint.svg new file mode 100644 index 0000000000000000000000000000000000000000..07d9cc29e433e4a5ffe3abb9902eeb1860d8b726 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-wink.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-wink.svg new file mode 100644 index 0000000000000000000000000000000000000000..a6c02b59955267cd2278469d67e986e0f577d98f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh.svg new file mode 100644 index 0000000000000000000000000000000000000000..c8f7500413a11b24f29a53b38af3fd539e131d5e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/layer-group.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/layer-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..0be44242b5c3b0152392ca25cb6f75907bc9a169 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/leaf.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/leaf.svg new file mode 100644 index 0000000000000000000000000000000000000000..c34723370ddf199da86fa8c340acc8e61c305528 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/left-long.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/left-long.svg new file mode 100644 index 0000000000000000000000000000000000000000..c66c0e89d1ef2bd4e180e7080150a061f542d3f5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/left-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/left-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/left-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..3fdb5a9b95bd08a85859e9ada2cec7e71d83d697 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/legal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/legal.svg new file mode 100644 index 0000000000000000000000000000000000000000..61d3e8209e70513db26207d1bfbeb9d065fd7131 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/legal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lemon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lemon.svg new file mode 100644 index 0000000000000000000000000000000000000000..1a65c4923aaa316ca1bc934a2c84169d125ec1ed --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/less-than-equal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/less-than-equal.svg new file mode 100644 index 0000000000000000000000000000000000000000..f9e4a058ceacc15317cb89788698b24c617d0c80 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/less-than-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/less-than.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/less-than.svg new file mode 100644 index 0000000000000000000000000000000000000000..620d0488284bf4186957bd9dde8154e5c349a06c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/less-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-down-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-down-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..7550c948522ddae2f8dbb6dcace3c07a816e11af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..bc68f30910b9a85be48d12bc75a8fe643050ab5e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-up-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-up-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..f67dcb21c2a6c6ac09311d85924252b4db5588b2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..65f6f906ff4deb420a8ce4d547ae5994fa5ae20c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/level-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/life-ring.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/life-ring.svg new file mode 100644 index 0000000000000000000000000000000000000000..154139e5a13d9d9556b585132e627c17297e9b3a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lightbulb.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lightbulb.svg new file mode 100644 index 0000000000000000000000000000000000000000..e9fa3d27d68ae3014e7960a6cedb902fb03924f3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/line-chart.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/line-chart.svg new file mode 100644 index 0000000000000000000000000000000000000000..38cdb72ab931aacd86d4caec0326c0ee24fb31fd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/line-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lines-leaning.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lines-leaning.svg new file mode 100644 index 0000000000000000000000000000000000000000..e446fc484152cdf9df1a09ff675589e65f5aa2e8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lines-leaning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/link-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/link-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..78249895869b3e544f01bd51609f9bbfbfe73f3a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/link-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/link.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/link.svg new file mode 100644 index 0000000000000000000000000000000000000000..3b4cc96658aeecf853f249fd4374a79f5cfda8d1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lira-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lira-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..26c65a68c1f822b96f5a7d01fa02bd3f57b6065d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-1-2.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-1-2.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8f97c9c615b47aab11bb252be6264f25c90b2c2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-1-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..27934ae06c38677af23535fa7c01a2bf0e782a65 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..6325d41503111b9002bd66fa2bc189fc0faea29a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-dots.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-dots.svg new file mode 100644 index 0000000000000000000000000000000000000000..c12ca9075f381a0623568270f0e00d4d3d07c635 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-numeric.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-numeric.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8f97c9c615b47aab11bb252be6264f25c90b2c2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-numeric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-ol.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-ol.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8f97c9c615b47aab11bb252be6264f25c90b2c2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-ol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-squares.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-squares.svg new file mode 100644 index 0000000000000000000000000000000000000000..43d8e66192553a77ec5d27303d20cb0f66d40da0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-squares.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-ul.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-ul.svg new file mode 100644 index 0000000000000000000000000000000000000000..c12ca9075f381a0623568270f0e00d4d3d07c635 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list.svg new file mode 100644 index 0000000000000000000000000000000000000000..43d8e66192553a77ec5d27303d20cb0f66d40da0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/litecoin-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/litecoin-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..8f85326a50ee2c21a261c2bcec73b4c2c4e345ef --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/litecoin-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-arrow.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-arrow.svg new file mode 100644 index 0000000000000000000000000000000000000000..07ab1a129004ab7a1e78da2624c6d2bbd7e47281 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-crosshairs.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-crosshairs.svg new file mode 100644 index 0000000000000000000000000000000000000000..722f01425a44d2c11e868c2fc775d71e86cad6eb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-dot.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-dot.svg new file mode 100644 index 0000000000000000000000000000000000000000..1eef5c6ab4b5738707a8a17bc9ba9e38231c8f48 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-pin-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-pin-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb8b6686369fb4c1952cf207c1ced8446ebffcae --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-pin-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-pin.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-pin.svg new file mode 100644 index 0000000000000000000000000000000000000000..6006b340a7e0aa2a237900eef28146a2865ae3e3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location.svg new file mode 100644 index 0000000000000000000000000000000000000000..722f01425a44d2c11e868c2fc775d71e86cad6eb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lock-open.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lock-open.svg new file mode 100644 index 0000000000000000000000000000000000000000..a871f721dd10b70317439b369fed1e24b336c015 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..300d8acf6b30ed9885c61eeaf3b4015b4bdd9930 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/locust.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/locust.svg new file mode 100644 index 0000000000000000000000000000000000000000..5baa552ec524348f64ea894e50f01ebcc5be0351 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/locust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..395d6e13e6845971f4fb0f2d1b41933f5b1695f1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..c66c0e89d1ef2bd4e180e7080150a061f542d3f5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..0cb380b80f2fd235875c279a66e28eddebcefe0c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..144e67de6372ec9cb8f967f0038897ef6d646448 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..d435aa298a5bdce810c80ba1688c28828420d26e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..3a369421290e608330cacdd03e88bbdefb4e4e9f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..c2f03ae8ff7b1f62f510e17a86743592afb617b3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..34664a44c55d20b08d074a5572d385c926772b72 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/long-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/low-vision.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/low-vision.svg new file mode 100644 index 0000000000000000000000000000000000000000..167521693a597c5204eac0a05f2f2cde65954b39 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/low-vision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/luggage-cart.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/luggage-cart.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa603717eaf6016ff8123781e0426bdb59767ed3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/luggage-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lungs-virus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lungs-virus.svg new file mode 100644 index 0000000000000000000000000000000000000000..1fc13df0dc9d64ea06827150c4a21c7eb730a0ab --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lungs-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lungs.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lungs.svg new file mode 100644 index 0000000000000000000000000000000000000000..a92425cc669df13d8ab9d2c96a923405e2d1cd10 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/lungs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/m.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/m.svg new file mode 100644 index 0000000000000000000000000000000000000000..533785100e83aa1516d1996e8b29afff2608e9b2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg new file mode 100644 index 0000000000000000000000000000000000000000..c89f7b55191dd7ed41c2dbe2f6de5c5a15340052 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magic.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magic.svg new file mode 100644 index 0000000000000000000000000000000000000000..51ad896aeb8db38746fb5aeede3c4bf8f489dcfb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnet.svg new file mode 100644 index 0000000000000000000000000000000000000000..f031b15021cd010701d049210ce0953b1a46c62a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..71a2f2d11507f8387789ff8e1aad42094ab2596e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg new file mode 100644 index 0000000000000000000000000000000000000000..e3a92f94d91e5b948391afd48fb88600ae72e821 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg new file mode 100644 index 0000000000000000000000000000000000000000..c1370cb1fb7cc973701b3f42cd450390a54d555f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg new file mode 100644 index 0000000000000000000000000000000000000000..43f1d95837c05da9cbad408c9db4f7c8620ab207 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..ca3e4a030b337632a70769e65c8f4ad4bfdb42ff --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg new file mode 100644 index 0000000000000000000000000000000000000000..cae70769b6503ddc4e822546c5c67a75bf823db0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass.svg new file mode 100644 index 0000000000000000000000000000000000000000..0e14877c0acb673a20d3c46d31ec061fb8cb5103 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/magnifying-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-bulk.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-bulk.svg new file mode 100644 index 0000000000000000000000000000000000000000..d5fde81aa9c15eaff91ebf56bdc65e9aabacc966 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-bulk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-forward.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-forward.svg new file mode 100644 index 0000000000000000000000000000000000000000..d13b82a749106d20d60d54dae2b91c6c5e786d3d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-reply-all.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-reply-all.svg new file mode 100644 index 0000000000000000000000000000000000000000..e2c106528f93126d9adf376c469e84b843faac9c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-reply-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-reply.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-reply.svg new file mode 100644 index 0000000000000000000000000000000000000000..a63aaae6649e8f8f78e5b5f1637f6ac14038b4a9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mail-reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/male.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/male.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ec1f3fdd736884c5ab0853f9096804690af7675 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/manat-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/manat-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..5423fedc4304faf45dc8321f05112aae43a7d08c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/manat-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-location-dot.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-location-dot.svg new file mode 100644 index 0000000000000000000000000000000000000000..86e172fc87433d98ebebbd53aced9d336f2eca64 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-location-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-location.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-location.svg new file mode 100644 index 0000000000000000000000000000000000000000..73aec028527c9b920012f6fceafc14665ce2b3d5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marked-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marked-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..86e172fc87433d98ebebbd53aced9d336f2eca64 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marked-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marked.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marked.svg new file mode 100644 index 0000000000000000000000000000000000000000..73aec028527c9b920012f6fceafc14665ce2b3d5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marker-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marker-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..1eef5c6ab4b5738707a8a17bc9ba9e38231c8f48 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marker-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marker.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marker.svg new file mode 100644 index 0000000000000000000000000000000000000000..6006b340a7e0aa2a237900eef28146a2865ae3e3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-pin.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-pin.svg new file mode 100644 index 0000000000000000000000000000000000000000..bcd06c20304e7b511d9954c7b21bf68c8c54a8a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-signs.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-signs.svg new file mode 100644 index 0000000000000000000000000000000000000000..31108e2eb4cd5d9774a57e0c6f21b45f834b0bae --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map-signs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map.svg new file mode 100644 index 0000000000000000000000000000000000000000..cdd92e7f278ba16454e115dccc78c105798d4271 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/marker.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/marker.svg new file mode 100644 index 0000000000000000000000000000000000000000..286685dcaebf485883daa799799f28b844c33485 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg new file mode 100644 index 0000000000000000000000000000000000000000..797769de9d8af4788a1fceb0b7c05888f6ebb812 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-and-venus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-and-venus.svg new file mode 100644 index 0000000000000000000000000000000000000000..81a9d7318e17245b5bc7a291bafd4e62a659b8e0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-and-venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-double.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-double.svg new file mode 100644 index 0000000000000000000000000000000000000000..90d53c0376d538123794132bb00b8e785d03af8a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg new file mode 100644 index 0000000000000000000000000000000000000000..4547e206024c8c72e64074ca3bbc2994637d8ce5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..4547e206024c8c72e64074ca3bbc2994637d8ce5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..c57dbd584199c68cd636459ed567ab6c400768fc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg new file mode 100644 index 0000000000000000000000000000000000000000..c57dbd584199c68cd636459ed567ab6c400768fc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke.svg new file mode 100644 index 0000000000000000000000000000000000000000..99646f8b8b5c538eac8bd56f6e4f23a56c53e9b9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars.svg new file mode 100644 index 0000000000000000000000000000000000000000..f9b8bd706d0b719a4b545a8f8cd43a9a059c8bda --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg new file mode 100644 index 0000000000000000000000000000000000000000..f22af8a7473f5ceec0b244bd03cf606bda23c6c3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg new file mode 100644 index 0000000000000000000000000000000000000000..edbc62f9a08edda806defa2e79c12ad785c39baf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass.svg new file mode 100644 index 0000000000000000000000000000000000000000..0af2d8781c139e58b715009568db74363c3d7dbb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/martini-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask-face.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask-face.svg new file mode 100644 index 0000000000000000000000000000000000000000..008b5fdea67a1cdd8a31486a449f2ca5c26cea1f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask-face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask-ventilator.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask-ventilator.svg new file mode 100644 index 0000000000000000000000000000000000000000..076f9d580b7ea0b6576a7491664935f981a08024 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask-ventilator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask.svg new file mode 100644 index 0000000000000000000000000000000000000000..856dad730a5f3b471455f21832daa7b7c7f96e3a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/masks-theater.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/masks-theater.svg new file mode 100644 index 0000000000000000000000000000000000000000..9941d31e8ad7e1b5e57c8e9ab4b5bff8d26d5849 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/masks-theater.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mattress-pillow.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mattress-pillow.svg new file mode 100644 index 0000000000000000000000000000000000000000..00763166879c603bb74535e37564609aa3de3779 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mattress-pillow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/maximize.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/maximize.svg new file mode 100644 index 0000000000000000000000000000000000000000..3088d4b4646e0bba4ee9f715d27c9133229ecebd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/medal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/medal.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8252c7ce6ea740f4b383bddcb0a5d69c451b1c3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/medkit.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/medkit.svg new file mode 100644 index 0000000000000000000000000000000000000000..4cd8521239f26b3f5935ab324a617f1f28289c38 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh-blank.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh-blank.svg new file mode 100644 index 0000000000000000000000000000000000000000..388f79efdd719f4e5dabf744b828f4ca97cf0de7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg new file mode 100644 index 0000000000000000000000000000000000000000..79870ebf86151d694f2624db575c5e75f1282308 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh.svg new file mode 100644 index 0000000000000000000000000000000000000000..2c68fba6c4edeced3cbb541e0e5b9a814821ffc1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/memory.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/memory.svg new file mode 100644 index 0000000000000000000000000000000000000000..64da949cde28c904f5e5f11989dacde560ace922 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/memory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/menorah.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/menorah.svg new file mode 100644 index 0000000000000000000000000000000000000000..0e6d492e11795c13afb5f18a54ad0253fa57d04a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/menorah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mercury.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mercury.svg new file mode 100644 index 0000000000000000000000000000000000000000..1e8aaf65a55b1bcdf0f5619c00626187ecad723f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mercury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/message.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/message.svg new file mode 100644 index 0000000000000000000000000000000000000000..645e204a9596f99ae88268f9051db6fbdfb4b2cb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meteor.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meteor.svg new file mode 100644 index 0000000000000000000000000000000000000000..7de9806245e2bffbaa1353fe7f7607623b00e3ca --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/meteor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microchip.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microchip.svg new file mode 100644 index 0000000000000000000000000000000000000000..b1a9fa53729d814a0133d7bede2eab1188e9c14d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microchip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..2e24ba6b6415a610ae3be91d9eb873f985d0e597 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..df734009653e7573fad5832c98096a7b89cd39f2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..2e24ba6b6415a610ae3be91d9eb873f985d0e597 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-lines.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-lines.svg new file mode 100644 index 0000000000000000000000000000000000000000..df734009653e7573fad5832c98096a7b89cd39f2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..e41db5c845fee7f7d5d31dd078327a350f961b6e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone.svg new file mode 100644 index 0000000000000000000000000000000000000000..6eafabb52c6d461b91f20ddc85c5899405489fd6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microscope.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microscope.svg new file mode 100644 index 0000000000000000000000000000000000000000..8be9e450dd7c989db9e9c79c6e46c9a0c877e374 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mill-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mill-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..70027423de167fc8c4f081e4be59d9c844d7b780 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mill-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minimize.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minimize.svg new file mode 100644 index 0000000000000000000000000000000000000000..418786e00e7ef22f8e7cbf5a85f54ce4af4ba3e7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..0256c848a42e870648c1afb813d1e6fecbc21ffd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..a1aa8815abbbfb01e54e1376f03f76d2e287163d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..3a438cd205e7d1d266eaf3a52517635995f181a0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mitten.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mitten.svg new file mode 100644 index 0000000000000000000000000000000000000000..5bd85250c07e80289a5db078e62a885c901b1f4b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mitten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..11f7eab29660f1724f724591317a6c0f2da3448b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..52f4e1efa2fa892c5630785cef2e6c5602012b0e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-android.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-android.svg new file mode 100644 index 0000000000000000000000000000000000000000..7bb518e8aef69946da5a6c8314afb55d090bb78e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-button.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-button.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0cc06737e2d3716e72eec331e4f2d3a48c4d013 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-phone.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-phone.svg new file mode 100644 index 0000000000000000000000000000000000000000..7bb518e8aef69946da5a6c8314afb55d090bb78e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-retro.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-retro.svg new file mode 100644 index 0000000000000000000000000000000000000000..da4d6665e8e418e27ebab4222fa0287431755625 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg new file mode 100644 index 0000000000000000000000000000000000000000..11f7eab29660f1724f724591317a6c0f2da3448b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-screen.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-screen.svg new file mode 100644 index 0000000000000000000000000000000000000000..52f4e1efa2fa892c5630785cef2e6c5602012b0e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-screen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg new file mode 100644 index 0000000000000000000000000000000000000000..095a6c9011f22f70e3224f33ec7816368d4d92d3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile.svg new file mode 100644 index 0000000000000000000000000000000000000000..7bb518e8aef69946da5a6c8314afb55d090bb78e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a61c5d5b260fdcfa643e84a5b59c5f57f2bdbbc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-1.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-1.svg new file mode 100644 index 0000000000000000000000000000000000000000..41474656f6d233c4ba3d9600d1c2c0be0182344a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..41474656f6d233c4ba3d9600d1c2c0be0182344a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg new file mode 100644 index 0000000000000000000000000000000000000000..0a3c50502a670017b2d8b28bd7e847c852e19b24 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..1af788d573d83029c7a8c81d3341893d6b8dd603 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a61c5d5b260fdcfa643e84a5b59c5f57f2bdbbc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wave.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wave.svg new file mode 100644 index 0000000000000000000000000000000000000000..a07b8d978c485803ffa58b1c4ca599f1dcb72a4a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg new file mode 100644 index 0000000000000000000000000000000000000000..9e7b3146bd3dff65d0ed4c049d9eac4973d69937 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill.svg new file mode 100644 index 0000000000000000000000000000000000000000..e1e21cedac0d0e5acac39d7256e7ca13d7c27fd7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bills.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bills.svg new file mode 100644 index 0000000000000000000000000000000000000000..1038cc7fe554a682c54892461ecaf5a2202c97ce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-bills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ecd0efd7a3dcb5c978d5ed308f8d88f68188c32 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check-dollar.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check-dollar.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ecd0efd7a3dcb5c978d5ed308f8d88f68188c32 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..4dd5f79a572da70e4f3388dcc3f01f17e231be33 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/money-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/monument.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/monument.svg new file mode 100644 index 0000000000000000000000000000000000000000..4b3aa12a8d73ac53f82173e4978e610b5b6bedfd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/monument.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/moon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/moon.svg new file mode 100644 index 0000000000000000000000000000000000000000..8e0088e2cf165d833b4fc70c68922b57b2ef3e83 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mortar-board.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mortar-board.svg new file mode 100644 index 0000000000000000000000000000000000000000..125c10cdb15be21ead059bf1fa3e98b63a329cb4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mortar-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mortar-pestle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mortar-pestle.svg new file mode 100644 index 0000000000000000000000000000000000000000..0218dd512cd02af399b8a3ce54197aaa29ffe9a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mortar-pestle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosque.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosque.svg new file mode 100644 index 0000000000000000000000000000000000000000..3466e5e8444f93f61b26a6892fe097f0decaaa21 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosque.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosquito-net.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosquito-net.svg new file mode 100644 index 0000000000000000000000000000000000000000..fa0ba584b348be139c610f72b5a554495b3a1883 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosquito-net.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosquito.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosquito.svg new file mode 100644 index 0000000000000000000000000000000000000000..8cfc1797daf4c1642eb358ba1fe2c49b17189963 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mosquito.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/motorcycle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/motorcycle.svg new file mode 100644 index 0000000000000000000000000000000000000000..1458d59885c66c52c11e044a35d2b547278b3c59 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/motorcycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mound.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mound.svg new file mode 100644 index 0000000000000000000000000000000000000000..15c7a64123b8b0ebfa9f4f9dd6bd7214dd837564 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain-city.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain-city.svg new file mode 100644 index 0000000000000000000000000000000000000000..feb0f492ed1d6d72c8cfef2365e2b463df837db4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain-city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain-sun.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain-sun.svg new file mode 100644 index 0000000000000000000000000000000000000000..9b830030287252730623095f9d66c617f55b120c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain.svg new file mode 100644 index 0000000000000000000000000000000000000000..adb08c8cce1fa685f45ff242a6bb782c973adc39 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mountain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mouse-pointer.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mouse-pointer.svg new file mode 100644 index 0000000000000000000000000000000000000000..6e38305b9b143eb655e996cfdbcd735504790741 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mouse-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mouse.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mouse.svg new file mode 100644 index 0000000000000000000000000000000000000000..eabe01dee6190ac553aa873261a5b95e4635c5b0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mug-hot.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mug-hot.svg new file mode 100644 index 0000000000000000000000000000000000000000..2b90040e7c4f21dd1ca461390afbe2d68d4bd055 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mug-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mug-saucer.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mug-saucer.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd51978a465c2967b6dc5baa91484d01705144ed --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/mug-saucer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/multiply.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/multiply.svg new file mode 100644 index 0000000000000000000000000000000000000000..7b28292913266d18cbcf38774c9fe5f05cfadfc1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/multiply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/museum.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/museum.svg new file mode 100644 index 0000000000000000000000000000000000000000..3691511d9c67c2a7244b54a067618d4db87cd606 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/museum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/music.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/music.svg new file mode 100644 index 0000000000000000000000000000000000000000..e52c0e42866f4118019e022ff9a2916e924ab36e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/n.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/n.svg new file mode 100644 index 0000000000000000000000000000000000000000..c722f3f04c88ce8e2f23e271d8a73bac9b4f05a7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/n.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/naira-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/naira-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..99443ffba5c2d48488baeb9543c9a94424caad2a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/naira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/navicon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/navicon.svg new file mode 100644 index 0000000000000000000000000000000000000000..175f0699419fadb4b45e75b77fd5e42547fd48b5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/navicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/network-wired.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/network-wired.svg new file mode 100644 index 0000000000000000000000000000000000000000..b2d67e9434fccc239fb16e0fbf7610f88acd5735 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/network-wired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/neuter.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/neuter.svg new file mode 100644 index 0000000000000000000000000000000000000000..cfef68ef9fe89fc9ee433cd3bbf81cd9946ad05e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/neuter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/newspaper.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/newspaper.svg new file mode 100644 index 0000000000000000000000000000000000000000..9923fcea29b7d5f0a95e3bfd119512283d099eed --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/non-binary.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/non-binary.svg new file mode 100644 index 0000000000000000000000000000000000000000..2b84f7ac562112472d85e272ddd3fd41921bd7a7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/non-binary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/not-equal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/not-equal.svg new file mode 100644 index 0000000000000000000000000000000000000000..7100cd349965836fb41400e4b30aacea395f39d8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/not-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/notdef.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/notdef.svg new file mode 100644 index 0000000000000000000000000000000000000000..8dec5d967eec2608effcd0538562131e116c6113 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/notdef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/note-sticky.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/note-sticky.svg new file mode 100644 index 0000000000000000000000000000000000000000..2936eec3c6e2c9eb31135af0749b91022d5183db --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/note-sticky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/notes-medical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/notes-medical.svg new file mode 100644 index 0000000000000000000000000000000000000000..8243ea3bce1d567295a6b0580a36f9a3936a00da --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/notes-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/o.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/o.svg new file mode 100644 index 0000000000000000000000000000000000000000..c66706db684d4638295965c38a8fdc549157d765 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/o.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/object-group.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/object-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..d1c1fb9687dd6504780f31ead30b8da31f55c112 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/object-ungroup.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/object-ungroup.svg new file mode 100644 index 0000000000000000000000000000000000000000..e07fd0bdd01fa960a35898769ab39c3b24781474 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/octagon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/octagon.svg new file mode 100644 index 0000000000000000000000000000000000000000..29fe6c13dfcbec9bf7df90478875a377ed4e6229 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/oil-can.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/oil-can.svg new file mode 100644 index 0000000000000000000000000000000000000000..1862bb5f427030ee0262e7c21a197f9554db27f5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/oil-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/oil-well.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/oil-well.svg new file mode 100644 index 0000000000000000000000000000000000000000..f1db74a76ece9dd3eec8ef470215efaf7c5208ce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/oil-well.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/om.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/om.svg new file mode 100644 index 0000000000000000000000000000000000000000..b66f083bae742d8dbeb46b6a9dd8794d70618374 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/om.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/otter.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/otter.svg new file mode 100644 index 0000000000000000000000000000000000000000..1a26121bb8fd0a61e743dd07541df33cbd522070 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/otter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/outdent.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/outdent.svg new file mode 100644 index 0000000000000000000000000000000000000000..d4e9503dfa6b4ebb9c12cd8c7897006a52e071a4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/outdent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/p.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/p.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee3abdf85c42b4a5b1a3c88f8dc87e4459c78372 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pager.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pager.svg new file mode 100644 index 0000000000000000000000000000000000000000..f089c52bdd31099caacc3d97eb236a6de01281b7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pager.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paint-brush.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paint-brush.svg new file mode 100644 index 0000000000000000000000000000000000000000..12dd512f262c3aa1836606b3739a21436fece5a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paint-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paint-roller.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paint-roller.svg new file mode 100644 index 0000000000000000000000000000000000000000..570e2f1cc1bdc8e70afdb0650812698b16e7dfbb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paint-roller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paintbrush.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paintbrush.svg new file mode 100644 index 0000000000000000000000000000000000000000..12dd512f262c3aa1836606b3739a21436fece5a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paintbrush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/palette.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/palette.svg new file mode 100644 index 0000000000000000000000000000000000000000..8230f423927dd249f6e18c59271a95eeb7260777 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pallet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pallet.svg new file mode 100644 index 0000000000000000000000000000000000000000..914b26d63a162954f2ba1a7d05c416d041b26f4e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/panorama.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/panorama.svg new file mode 100644 index 0000000000000000000000000000000000000000..5665823120719100573f6b05ae53c6feee10a616 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/panorama.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paper-plane.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paper-plane.svg new file mode 100644 index 0000000000000000000000000000000000000000..7e46bf7829102ed0e23b41ea3c07786227820d1f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paperclip.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paperclip.svg new file mode 100644 index 0000000000000000000000000000000000000000..da567404d6f01236596aa6d37b08b1920d3a3a15 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/parachute-box.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/parachute-box.svg new file mode 100644 index 0000000000000000000000000000000000000000..0d2757cf9561004dd3bf5e9b1cce7f4896ab7a00 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/parachute-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paragraph.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paragraph.svg new file mode 100644 index 0000000000000000000000000000000000000000..2be61edff9eb8a66350e90f6dc4a6739bd2c1a77 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/parking.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/parking.svg new file mode 100644 index 0000000000000000000000000000000000000000..3cc125ad1157183936977204e182200ef661c958 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/parking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/passport.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/passport.svg new file mode 100644 index 0000000000000000000000000000000000000000..d2adef680613200685c28ae2a4ead086e307e10a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/passport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pastafarianism.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pastafarianism.svg new file mode 100644 index 0000000000000000000000000000000000000000..62898e532cbda383af9b65711aede8f9f0bbda54 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pastafarianism.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paste.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paste.svg new file mode 100644 index 0000000000000000000000000000000000000000..886e806edaa32fdb0dc51f57a70965c12e126192 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paste.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pause-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pause-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..20321f51f1bdce714433dc6825eed676ac490ea3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pause.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pause.svg new file mode 100644 index 0000000000000000000000000000000000000000..b050c1a03ac5889bcc7e846d76388ea9ed260201 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paw.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paw.svg new file mode 100644 index 0000000000000000000000000000000000000000..25554539122bd1a1121546b0d86bcd706cfe502b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peace.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peace.svg new file mode 100644 index 0000000000000000000000000000000000000000..b2616c9bebf0561dab41d608ee8b5332560773bd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee15d8752889ca6e141dd19febd482b74365b2d3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-clip.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-clip.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee15d8752889ca6e141dd19febd482b74365b2d3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-clip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-fancy.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-fancy.svg new file mode 100644 index 0000000000000000000000000000000000000000..6681744b45f7e0b5ca7efd0d9e1615259c9df09e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-fancy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-nib.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-nib.svg new file mode 100644 index 0000000000000000000000000000000000000000..9ed770c172e18867c416f142659b3bfece33678d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-nib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-ruler.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-ruler.svg new file mode 100644 index 0000000000000000000000000000000000000000..62c88a7e70b665e4b2a25dc4655c8b16f99222b2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0349a19ed1bb14a7c8001581035561cc83dcf42 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-to-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-to-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..3fad94f331ed198316d9da258a0d271f2baf9909 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen-to-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen.svg new file mode 100644 index 0000000000000000000000000000000000000000..556d2f27f213e9e8817dd3c8cbc781106869fb4e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..55f78bd1fb520e8a75c385dd10eeb4e299660f3e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-ruler.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-ruler.svg new file mode 100644 index 0000000000000000000000000000000000000000..62c88a7e70b665e4b2a25dc4655c8b16f99222b2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0349a19ed1bb14a7c8001581035561cc83dcf42 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil.svg new file mode 100644 index 0000000000000000000000000000000000000000..55f78bd1fb520e8a75c385dd10eeb4e299660f3e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pentagon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pentagon.svg new file mode 100644 index 0000000000000000000000000000000000000000..92eae06bfa8bd3fb982ec3b46dbebaaf5c6e9330 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..24fa73a995c22822b3dbe05782ac1897f517c11c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-arrows.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-arrows.svg new file mode 100644 index 0000000000000000000000000000000000000000..24fa73a995c22822b3dbe05782ac1897f517c11c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-carry-box.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-carry-box.svg new file mode 100644 index 0000000000000000000000000000000000000000..8e3864aceb424cbc4164ffbd19c7aa44e0f348e6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-carry-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-carry.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-carry.svg new file mode 100644 index 0000000000000000000000000000000000000000..8e3864aceb424cbc4164ffbd19c7aa44e0f348e6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-carry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-group.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..0b73297900547c9d37039366eb1ccb1f2ffe7f34 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-line.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-line.svg new file mode 100644 index 0000000000000000000000000000000000000000..13506ada7691e1b48f63424c725af1be805f485e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-pulling.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-pulling.svg new file mode 100644 index 0000000000000000000000000000000000000000..7ea237c295a43981e43f1b21c46844d669e8f266 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-pulling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-robbery.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-robbery.svg new file mode 100644 index 0000000000000000000000000000000000000000..f22bd917d1325b8ed6e382fd73a0dd67a34622bc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-robbery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-roof.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-roof.svg new file mode 100644 index 0000000000000000000000000000000000000000..8cb634af8dbb7200a69a3d1eb2b4bd804ad271d0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/people-roof.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pepper-hot.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pepper-hot.svg new file mode 100644 index 0000000000000000000000000000000000000000..a02f0e001af74aca93253f7ebdb40c6ad522f45c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pepper-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/percent.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/percent.svg new file mode 100644 index 0000000000000000000000000000000000000000..78b399f5a55203d6ffefefb229f401b1f5ed265f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/percentage.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/percentage.svg new file mode 100644 index 0000000000000000000000000000000000000000..78b399f5a55203d6ffefefb229f401b1f5ed265f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/percentage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg new file mode 100644 index 0000000000000000000000000000000000000000..f2374ad61616daa2085d812e978eb1f00b5e66e8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg new file mode 100644 index 0000000000000000000000000000000000000000..3febf8a97061161b0f7717539c9d3fc8d9125b7a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-biking.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-biking.svg new file mode 100644 index 0000000000000000000000000000000000000000..62cad8e397911172f17c72230c16726666760100 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-biking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-booth.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-booth.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a0ecb9bf4273dacacc888dca6620c65ba0c255b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-booth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg new file mode 100644 index 0000000000000000000000000000000000000000..32f5402efb771c6d52b2f23e6b3fd6f1877dea21 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-burst.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-burst.svg new file mode 100644 index 0000000000000000000000000000000000000000..04e67add503cb6fb85bb522411842969624e778b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-cane.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-cane.svg new file mode 100644 index 0000000000000000000000000000000000000000..c841d435d80c85ab29074d205b79d5d67c19c262 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-cane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-chalkboard.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-chalkboard.svg new file mode 100644 index 0000000000000000000000000000000000000000..a55be62d85fc03fa079b36101c6bb90ce034614b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-chalkboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8c7ad58963e285e00e3f28b5043c5c36fb817e8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg new file mode 100644 index 0000000000000000000000000000000000000000..05bf37346fb0498256c471d93288ead69033f8c0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..da6ee830a99ce469ef8139b1b87814ae3219dbc9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-plus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-plus.svg new file mode 100644 index 0000000000000000000000000000000000000000..3573c808f7d26a3d0f8708ebc2ab8935ee2d75fb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-question.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-question.svg new file mode 100644 index 0000000000000000000000000000000000000000..63ad385588de8bab6f6940beceade82938748537 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..d87efe60c61839dfc10cecce5d0fd10681a10bf8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-digging.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-digging.svg new file mode 100644 index 0000000000000000000000000000000000000000..1d28e06584b4b8ca95ea0698e5a323f21f1d9afe --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-digging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg new file mode 100644 index 0000000000000000000000000000000000000000..ecc55c992c0ce7ffd8f6a3cde2a4468442a5866f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dress-burst.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dress-burst.svg new file mode 100644 index 0000000000000000000000000000000000000000..15feffb960307084c68995ea86742f9f7faca6e5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dress-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dress.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dress.svg new file mode 100644 index 0000000000000000000000000000000000000000..71b1e3dd9d64b23959a9b914d0788f77bba667a0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-dress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-drowning.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-drowning.svg new file mode 100644 index 0000000000000000000000000000000000000000..afedb9fddf6a5e278aee138d75eab34e837b7c47 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-drowning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-falling-burst.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-falling-burst.svg new file mode 100644 index 0000000000000000000000000000000000000000..d9b862b8d1f24338b346b6033f4c01a5f4aab12a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-falling-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-falling.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-falling.svg new file mode 100644 index 0000000000000000000000000000000000000000..a58404ce695d26ed788a9de4ab2e523a6d15f69c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-falling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-half-dress.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-half-dress.svg new file mode 100644 index 0000000000000000000000000000000000000000..54c26b1fa30366f217217a9308d2a8fc38fb21dc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-half-dress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-harassing.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-harassing.svg new file mode 100644 index 0000000000000000000000000000000000000000..32c3997edc0aa4ae68ea6015799892def3e223de --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-harassing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-hiking.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-hiking.svg new file mode 100644 index 0000000000000000000000000000000000000000..7d533f170f22594244c16ea2bd14da77824074bc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-hiking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-pointing.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-pointing.svg new file mode 100644 index 0000000000000000000000000000000000000000..b8c71cf4365de57836d3b9883f0e514fd9ff509a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-pointing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-rifle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-rifle.svg new file mode 100644 index 0000000000000000000000000000000000000000..c843322ff39d7932056e3a0a784d81e0732dd355 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-rifle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-to-person.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-to-person.svg new file mode 100644 index 0000000000000000000000000000000000000000..5634250b8183a4b5a7efade444e3473ed545a42a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-military-to-person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-praying.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-praying.svg new file mode 100644 index 0000000000000000000000000000000000000000..6588f4f81bb0d0161ea5d9747125fe80ba6ab867 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-praying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-pregnant.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-pregnant.svg new file mode 100644 index 0000000000000000000000000000000000000000..136c71a67fe24a04b148cdec8c19e21411d4e48c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-pregnant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-rays.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-rays.svg new file mode 100644 index 0000000000000000000000000000000000000000..770140ae8dadb67338e3f91152d4eb5a631cc6a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-rays.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-rifle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-rifle.svg new file mode 100644 index 0000000000000000000000000000000000000000..dded9802c631bd280ee486dea8a5e04da9124c13 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-rifle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-running.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-running.svg new file mode 100644 index 0000000000000000000000000000000000000000..1f4632910f1540d3776b00cb0531e33e8cdd68dc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-running.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-shelter.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-shelter.svg new file mode 100644 index 0000000000000000000000000000000000000000..84ad60e6428f3b62c6fac68c423e6a411808ab85 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-shelter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skating.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skating.svg new file mode 100644 index 0000000000000000000000000000000000000000..9feb23698473d3e3b7cd278f1eb121914204c9ee --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skating.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg new file mode 100644 index 0000000000000000000000000000000000000000..6d8059661e34635b841e68fa68b9935bad5a3a51 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skiing.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skiing.svg new file mode 100644 index 0000000000000000000000000000000000000000..11382ed32f8aa15648ab18f423cb00b9eb8dcc6c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-skiing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-snowboarding.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-snowboarding.svg new file mode 100644 index 0000000000000000000000000000000000000000..138637f661d1ac9a20e73c254199db4373c92237 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-snowboarding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-swimming.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-swimming.svg new file mode 100644 index 0000000000000000000000000000000000000000..7736adf99ea4a38372af9cc97a152b9fc152fe74 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-swimming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-through-window.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-through-window.svg new file mode 100644 index 0000000000000000000000000000000000000000..273b0546179f5ed41e2fdd9f7a98fdd090e0ab52 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-through-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..af62e8da621f9753e5359466367224f08d8d1146 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa54a91939583082cc7ee3d0417c67bc08e3603d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd2c9fe8880a2bb5b9a3f708259701f95bc31447 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg new file mode 100644 index 0000000000000000000000000000000000000000..65f9d5d5bdcf1e55d9203b4db8ff75afc3999a67 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8cf6d587e7f8fed5200ee3af511b46493b6025e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking.svg new file mode 100644 index 0000000000000000000000000000000000000000..47de22f57a44cf0fdfbc3626b24a5b022366f05c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person-walking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ec1f3fdd736884c5ab0853f9096804690af7675 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peseta-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peseta-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..4ce834d8a5e059044c87176334bf16077cafd705 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peseta-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peso-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peso-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0ad4834757120bbc1036769b88c52c9a77ade1f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/peso-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef52eead6ce6ff07269a99a4701badb1848d10ce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-flip.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-flip.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef52eead6ce6ff07269a99a4701badb1848d10ce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-flip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..d9037a58c71bb06d1d7e5e1c928e2702fe3cb7f6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-square-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-square-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..a28d61f5c00bec65742cff28c8f2a0879ec192f8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..2934dd1f4cf91d7aca1467c585ab21b0477bd34a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-volume.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-volume.svg new file mode 100644 index 0000000000000000000000000000000000000000..26824874bf4f780a2578595732c57655efc5a078 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone-volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone.svg new file mode 100644 index 0000000000000000000000000000000000000000..5121bfc115c3242bd69f461b68e16b60f1fd5a72 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/photo-film.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/photo-film.svg new file mode 100644 index 0000000000000000000000000000000000000000..3a3e5f844fd7f1725ee8b1d87465de5425daa7ff --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/photo-film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/photo-video.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/photo-video.svg new file mode 100644 index 0000000000000000000000000000000000000000..3a3e5f844fd7f1725ee8b1d87465de5425daa7ff --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/photo-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pie-chart.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pie-chart.svg new file mode 100644 index 0000000000000000000000000000000000000000..1c82eb28b89f996a4e7fa95d1608db4195c48333 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pie-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/piggy-bank.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/piggy-bank.svg new file mode 100644 index 0000000000000000000000000000000000000000..5ef7425e630588d4f63d32c32e045326b3714e7d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/piggy-bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pills.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pills.svg new file mode 100644 index 0000000000000000000000000000000000000000..78563da52939be72a3eeb39a6aa3460623c52d38 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg new file mode 100644 index 0000000000000000000000000000000000000000..63656437ff828c2baec14e09c4f5cfcfd1dba302 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pizza-slice.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pizza-slice.svg new file mode 100644 index 0000000000000000000000000000000000000000..cdee9ef3a9ac38e4e8e9772b9aa581ad7e12cb1f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pizza-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/place-of-worship.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/place-of-worship.svg new file mode 100644 index 0000000000000000000000000000000000000000..417155c95dee7a1ae0eed53448534c7bd8465844 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/place-of-worship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-arrival.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-arrival.svg new file mode 100644 index 0000000000000000000000000000000000000000..478ed72c6d0dee90c6f8940113313b750bdb303b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-arrival.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..607907b10a362ebb86cc09bcac74799b9d7be3db --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg new file mode 100644 index 0000000000000000000000000000000000000000..bf220a7efd8ee8aa1c2e614cb8d8d94320103fe3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..464e8122addc3efc46448ad05428ca11556c06f6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-departure.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-departure.svg new file mode 100644 index 0000000000000000000000000000000000000000..1ed664c5ffead7cb2f800c06c849f3fb43f6a900 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-departure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..39d49e3a721344e2b9a9ce140a990912c5c30cc7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..bdfda04958131a896cbbb91aec586e5e6ec28058 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..3d45289e7dd260974d309f95a4e22937d44f43b8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane.svg new file mode 100644 index 0000000000000000000000000000000000000000..630c73f6daca4dbc37280511defe9426598cc27a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plant-wilt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plant-wilt.svg new file mode 100644 index 0000000000000000000000000000000000000000..438ff81e6338902a4acee47cb95aa137a72b091d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plant-wilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plate-wheat.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plate-wheat.svg new file mode 100644 index 0000000000000000000000000000000000000000..77f6c6d81ceffdef3310224b6b04786dac0ce0f4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plate-wheat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/play-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/play-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..8cc9d5d0000080a3a8dc827e6980ebc0f979af60 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/play.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/play.svg new file mode 100644 index 0000000000000000000000000000000000000000..25d847b378c2d048762344f6864079af001d23ac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg new file mode 100644 index 0000000000000000000000000000000000000000..0006c63d7316027a17e6e0f240511410aad4fef1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..58276a3d707bfdcda6816bf890f89f6786d35ce7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg new file mode 100644 index 0000000000000000000000000000000000000000..f20b7994a9385e0e60204c10715e4f29302007eb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..1fc78ce92dbfe8c21e9c559cbc3f9915fec5c4f5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg new file mode 100644 index 0000000000000000000000000000000000000000..143ad763908a7fd30fb9c2c3968f040e91a59dba --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..b96926e4678b658634bd366134b7dc937f77df25 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug.svg new file mode 100644 index 0000000000000000000000000000000000000000..18a18f1ab1e32ac3f631a98f76f9bc4fb101c301 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8ee68298918466d372cc31de6b51c0a62f3f432 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..a5bd2d23caebbf3cca661e093a9d8b2d8987dd19 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..82e55c79c085dd9a5544a67beff9c9cd2ddc4edf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus.svg new file mode 100644 index 0000000000000000000000000000000000000000..385557746ff2cf24c60ab473f5a2d3510add7069 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/podcast.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/podcast.svg new file mode 100644 index 0000000000000000000000000000000000000000..e236d882ece4969f05c81f66c8b17305a1bd1f09 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/podcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poll-h.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poll-h.svg new file mode 100644 index 0000000000000000000000000000000000000000..5c02d10a4e86b80c09685e7cf2f37102cfc9e526 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poll-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poll.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poll.svg new file mode 100644 index 0000000000000000000000000000000000000000..01870d49c96ac9a59a3df7485e833ad6ba878d9a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo-bolt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo-bolt.svg new file mode 100644 index 0000000000000000000000000000000000000000..21519eeb422b8a9cdb902f13db99fd5e9a46b091 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo-storm.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo-storm.svg new file mode 100644 index 0000000000000000000000000000000000000000..21519eeb422b8a9cdb902f13db99fd5e9a46b091 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo-storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo.svg new file mode 100644 index 0000000000000000000000000000000000000000..58d5d4cda67cb6d52d2202b20a196cacd682f48a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poop.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poop.svg new file mode 100644 index 0000000000000000000000000000000000000000..29613b86420354e7959d72bbd18461a5d79876b9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/poop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/portrait.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/portrait.svg new file mode 100644 index 0000000000000000000000000000000000000000..42d686b030d27242a2ae7b521f6c010881e662cb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pound-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pound-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..17e2936ab0c268c98ef90ecb417ad881af62c399 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pound-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/power-off.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/power-off.svg new file mode 100644 index 0000000000000000000000000000000000000000..6efb680a4a3ea82448d456e42758679774fc2412 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/power-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pray.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pray.svg new file mode 100644 index 0000000000000000000000000000000000000000..6588f4f81bb0d0161ea5d9747125fe80ba6ab867 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/praying-hands.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/praying-hands.svg new file mode 100644 index 0000000000000000000000000000000000000000..b05b270b5ec018ffbfd3df6b6e547328725bb678 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/praying-hands.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..fd6ab52eb0346818f554d044b717eec99dd52eec --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg new file mode 100644 index 0000000000000000000000000000000000000000..fd6ab52eb0346818f554d044b717eec99dd52eec --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle.svg new file mode 100644 index 0000000000000000000000000000000000000000..6e64295a30ef5785f2c4cf890dea4ef7f2d84df3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription.svg new file mode 100644 index 0000000000000000000000000000000000000000..33ad2545e41b1b80818e83944a380bd97ee35bd3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/print.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/print.svg new file mode 100644 index 0000000000000000000000000000000000000000..6ef849b9c1bf9122056127ad45c2bb26e867ffb5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/procedures.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/procedures.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee7d49e9441c56b5c844df59b92791cdf4e2e74d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/procedures.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/project-diagram.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/project-diagram.svg new file mode 100644 index 0000000000000000000000000000000000000000..05d6e53c96136f3059c3f3317741f607e3488a6b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/project-diagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pump-medical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pump-medical.svg new file mode 100644 index 0000000000000000000000000000000000000000..9a6a4f5f0c72dc307e9e18fcd3ed2fb9b25ef3e4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pump-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pump-soap.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pump-soap.svg new file mode 100644 index 0000000000000000000000000000000000000000..543818d053edebe2502c298d266cca69119d0600 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/pump-soap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/puzzle-piece.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/puzzle-piece.svg new file mode 100644 index 0000000000000000000000000000000000000000..f29b70c1868e24fc7303bb99188f65894401d8cd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/puzzle-piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/q.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/q.svg new file mode 100644 index 0000000000000000000000000000000000000000..a80fcef9a097a9549b6d06b2099b08e1102f6aeb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/q.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/qrcode.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/qrcode.svg new file mode 100644 index 0000000000000000000000000000000000000000..fcaa25aa9180f7e0cb623c2ec3772b5542b0dc72 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/qrcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/question-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/question-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..c8d8d752485e498a9af17e9db3f39c92772e8b8c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/question.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/question.svg new file mode 100644 index 0000000000000000000000000000000000000000..e3b7e44401d0473140897527921621b03cdf0bf2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg new file mode 100644 index 0000000000000000000000000000000000000000..a624e3893c2f35a8ee423111f4b65f2944f1f9ed --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quidditch.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quidditch.svg new file mode 100644 index 0000000000000000000000000000000000000000..a624e3893c2f35a8ee423111f4b65f2944f1f9ed --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quidditch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-left-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-left-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..c41bb9982d42cf725bc903a5e488d7032990c817 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-left-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..c41bb9982d42cf725bc903a5e488d7032990c817 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-right-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-right-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb1e786fe24245176ed5d4d0681f12b201298053 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-right-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb1e786fe24245176ed5d4d0681f12b201298053 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quote-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quran.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quran.svg new file mode 100644 index 0000000000000000000000000000000000000000..eda3f1b54182536dc6a47a3a6532ea57e6354a4d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/quran.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/r.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/r.svg new file mode 100644 index 0000000000000000000000000000000000000000..3d63996f94ce7f1be582561777e68401c201ea06 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radiation-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radiation-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..963b2e42c21ba2f1c453bf7ed1c90926c75cb66e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radiation-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radiation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radiation.svg new file mode 100644 index 0000000000000000000000000000000000000000..e2c72170c80a3632332025b1b81d10d255e9a567 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radiation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radio.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radio.svg new file mode 100644 index 0000000000000000000000000000000000000000..19c5e17e28a1626f12aaf251ef4d4e83a36b28c8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rainbow.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rainbow.svg new file mode 100644 index 0000000000000000000000000000000000000000..33f96a19582eb443c1ca25e17efbfdd90ecb4659 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rainbow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/random.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/random.svg new file mode 100644 index 0000000000000000000000000000000000000000..3f63d75041d2ea0a0f80c536aedec4e21b9e78c0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/random.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ranking-star.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ranking-star.svg new file mode 100644 index 0000000000000000000000000000000000000000..718a83462c32dad8b372358187633dbd7594d3b5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ranking-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/receipt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/receipt.svg new file mode 100644 index 0000000000000000000000000000000000000000..f6d0a6fce8d0aaaa77a2bbd4e5a46403ae255a2d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/record-vinyl.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/record-vinyl.svg new file mode 100644 index 0000000000000000000000000000000000000000..e15c29f099daf01d6c0394cfba4d78e1bea4c94e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/record-vinyl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-ad.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-ad.svg new file mode 100644 index 0000000000000000000000000000000000000000..ffce232871a6a36acd6dfdda25da996a784806ac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-list.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-list.svg new file mode 100644 index 0000000000000000000000000000000000000000..27934ae06c38677af23535fa7c01a2bf0e782a65 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-times.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-times.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a2d3b9acc46f3b73f7648858a8057b2fb5b50b1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a2d3b9acc46f3b73f7648858a8057b2fb5b50b1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/recycle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/recycle.svg new file mode 100644 index 0000000000000000000000000000000000000000..811a97f38a30c7dc00235378dc6c759952f4cd02 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/recycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/redo-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/redo-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..9e8cf1552d903662ea376685f9e22b0525880955 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/redo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/redo.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/redo.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab39acf90796d971e5cb36bfaf7b3146abb19773 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/refresh.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/refresh.svg new file mode 100644 index 0000000000000000000000000000000000000000..30224af7da8a5078115bf5f4772c399ed3521bee --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/registered.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/registered.svg new file mode 100644 index 0000000000000000000000000000000000000000..a10e00de0756bd6be28e12e8eefd1c2911a30bcd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/remove-format.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/remove-format.svg new file mode 100644 index 0000000000000000000000000000000000000000..f9d0221f0e048a4a5c613352968c88eb2549b3af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/remove-format.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/remove.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/remove.svg new file mode 100644 index 0000000000000000000000000000000000000000..7b28292913266d18cbcf38774c9fe5f05cfadfc1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reorder.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reorder.svg new file mode 100644 index 0000000000000000000000000000000000000000..7d9dc023534c77839c2432090fed38936f05669b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reorder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/repeat.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/repeat.svg new file mode 100644 index 0000000000000000000000000000000000000000..1f00285efdf294f2bafbd34a5498bb27bc0bc497 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reply-all.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reply-all.svg new file mode 100644 index 0000000000000000000000000000000000000000..e2c106528f93126d9adf376c469e84b843faac9c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reply-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reply.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reply.svg new file mode 100644 index 0000000000000000000000000000000000000000..a63aaae6649e8f8f78e5b5f1637f6ac14038b4a9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/republican.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/republican.svg new file mode 100644 index 0000000000000000000000000000000000000000..778b7b48d2e4f7eedaa866a4dfe288403438166b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/republican.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/restroom.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/restroom.svg new file mode 100644 index 0000000000000000000000000000000000000000..728db16e6dd16111571151bfdeebb2c05f5d8e9d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/restroom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/retweet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/retweet.svg new file mode 100644 index 0000000000000000000000000000000000000000..a62c35e1001f6e437d2d7da34262eba0e31b9dbd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/retweet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ribbon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ribbon.svg new file mode 100644 index 0000000000000000000000000000000000000000..5d4435cb5f88fbad71d6e91f5cfe60b2f8537afb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-from-bracket.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-from-bracket.svg new file mode 100644 index 0000000000000000000000000000000000000000..fe0c8f8f52cad76b71f633a3a6808eafde2adcb0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-from-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..1738a9519390384e3a403e25020f82dee90048fe --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-long.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-long.svg new file mode 100644 index 0000000000000000000000000000000000000000..0cb380b80f2fd235875c279a66e28eddebcefe0c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-to-bracket.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-to-bracket.svg new file mode 100644 index 0000000000000000000000000000000000000000..f42cc183021b6d0117740bd06ee8545ee78c760f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/right-to-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ring.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ring.svg new file mode 100644 index 0000000000000000000000000000000000000000..0974253adc8ccdfda0ac4d5f9d6c07af20ac3d3b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rmb.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rmb.svg new file mode 100644 index 0000000000000000000000000000000000000000..eef5ca484c6cd33eeab7a4f74bcc4e351dc9e8af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rmb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-barrier.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-barrier.svg new file mode 100644 index 0000000000000000000000000000000000000000..363f1d46535c93fb19b547787f3cf10261133d17 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-barrier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-bridge.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-bridge.svg new file mode 100644 index 0000000000000000000000000000000000000000..e83281fe992d507f0a120639dfb10bc279ef2a08 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-bridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..a72f1ee5c6dcb53711277e0b5ab78a291ad91917 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg new file mode 100644 index 0000000000000000000000000000000000000000..6d0dc03882b5f27594d09d55f7236685237d10f9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..a382fd510dfa95ff0fc8a40e465027304f2bc989 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..295b6b3839403a1464f14abd9fde38cdc5bb36cb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-spikes.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-spikes.svg new file mode 100644 index 0000000000000000000000000000000000000000..ff6ac3bf9fd549b780a7fa18567713925e405ef0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road-spikes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road.svg new file mode 100644 index 0000000000000000000000000000000000000000..5f594769be17b516f0971456bb5b02882ba3a58f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/road.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/robot.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/robot.svg new file mode 100644 index 0000000000000000000000000000000000000000..dcaad2df624f006d9181bc092dfd235e819a3127 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rocket.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rocket.svg new file mode 100644 index 0000000000000000000000000000000000000000..a00c1e8a5c1324d9d2ff77ee15ebc54844f93fc3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rod-asclepius.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rod-asclepius.svg new file mode 100644 index 0000000000000000000000000000000000000000..6190728c052a22fb0fe267c24e8e244d51c0bde8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rod-asclepius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rod-snake.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rod-snake.svg new file mode 100644 index 0000000000000000000000000000000000000000..6190728c052a22fb0fe267c24e8e244d51c0bde8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rod-snake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-back.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-back.svg new file mode 100644 index 0000000000000000000000000000000000000000..33204a3867a053bf8b98c16b58645778ecc4dd8a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-backward.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-backward.svg new file mode 100644 index 0000000000000000000000000000000000000000..33204a3867a053bf8b98c16b58645778ecc4dd8a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-forward.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-forward.svg new file mode 100644 index 0000000000000000000000000000000000000000..9e8cf1552d903662ea376685f9e22b0525880955 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..33204a3867a053bf8b98c16b58645778ecc4dd8a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..9e8cf1552d903662ea376685f9e22b0525880955 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate.svg new file mode 100644 index 0000000000000000000000000000000000000000..40cc5dcc204caec5de0067a16a89af79bb76796f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rouble.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rouble.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4e39643a5c257f7cb6799d1e42b4e16d45b5cba --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/route.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/route.svg new file mode 100644 index 0000000000000000000000000000000000000000..b2c68b3a4a698e9c6f74693d56b0e267f5bdca1c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/route.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rss-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rss-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..dffbe6c5c0cb71d22cfb03e82d5cbcf722b5c4e1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rss-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rss.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rss.svg new file mode 100644 index 0000000000000000000000000000000000000000..4063478c8713e833baf5817754a000220a530b1c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rub.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rub.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4e39643a5c257f7cb6799d1e42b4e16d45b5cba --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruble-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruble-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4e39643a5c257f7cb6799d1e42b4e16d45b5cba --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruble-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruble.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruble.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4e39643a5c257f7cb6799d1e42b4e16d45b5cba --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rug.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rug.svg new file mode 100644 index 0000000000000000000000000000000000000000..ae60a4d3d19267e9351b2e7122f6d316fa7487c5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-combined.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-combined.svg new file mode 100644 index 0000000000000000000000000000000000000000..236451b0a90429865750577eebe44a21ea511951 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg new file mode 100644 index 0000000000000000000000000000000000000000..bded9d3a084e5c0efa70023125a10f2d8f804685 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-vertical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-vertical.svg new file mode 100644 index 0000000000000000000000000000000000000000..36bd9948dbe82de1fa64f1d40788a95d1f304db9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler.svg new file mode 100644 index 0000000000000000000000000000000000000000..e8ef308d1e0e0418b29ca508321e6c5a6d38b270 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/running.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/running.svg new file mode 100644 index 0000000000000000000000000000000000000000..1f4632910f1540d3776b00cb0531e33e8cdd68dc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/running.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupee-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupee-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..202104feca06d9c08391172f673479555073fe70 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupee-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupee.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupee.svg new file mode 100644 index 0000000000000000000000000000000000000000..202104feca06d9c08391172f673479555073fe70 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupiah-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupiah-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..f38c4c9132f3144a9230175af6ba50e0ec93b187 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/rupiah-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/s.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/s.svg new file mode 100644 index 0000000000000000000000000000000000000000..cdc47da65564fc33ce89d4039083639a841bb858 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sack-dollar.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sack-dollar.svg new file mode 100644 index 0000000000000000000000000000000000000000..84886055e04552076743dc8139ef40772d8c3b79 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sack-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sack-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sack-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..f7c362d9d9052b2233a07b87cc3dd61f4b1333f5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sack-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sad-cry.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sad-cry.svg new file mode 100644 index 0000000000000000000000000000000000000000..2799245325788e540a6882744fa393b6b53bc822 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sad-tear.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sad-tear.svg new file mode 100644 index 0000000000000000000000000000000000000000..05e84a04b5d9b2ea20acd8a9f806a417bb88ce1f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sailboat.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sailboat.svg new file mode 100644 index 0000000000000000000000000000000000000000..20a55f2337ae68f8f0295d3421ccadbc9c3de0ba --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sailboat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/satellite-dish.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/satellite-dish.svg new file mode 100644 index 0000000000000000000000000000000000000000..7e4d34d90a9ca5064c9026342e6d3091d5ba4eb1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/satellite-dish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/satellite.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/satellite.svg new file mode 100644 index 0000000000000000000000000000000000000000..74064c2bfeae19380a8475339dd76bbeb296fe42 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/satellite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/save.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/save.svg new file mode 100644 index 0000000000000000000000000000000000000000..3c6d4a5ea1d0eb3c75053b1cbf40510b62154a47 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-balanced.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-balanced.svg new file mode 100644 index 0000000000000000000000000000000000000000..a2197e2ce66b1771ac2917f1a3ccb24f2a079622 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-balanced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg new file mode 100644 index 0000000000000000000000000000000000000000..b1a82637db9c84f8b87c958e27e3e835c45edd84 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg new file mode 100644 index 0000000000000000000000000000000000000000..6e9b34ea23fe40c971802faaf10dbf0927b894df --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..17c15792936d6925d1ff6a90ff45abdc16e61342 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg new file mode 100644 index 0000000000000000000000000000000000000000..5d9ab7c6b26e23b024c7c3032fff6379b571110e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..5dad4995f04a56700428b118e5e44de593294fe3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-flag.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-flag.svg new file mode 100644 index 0000000000000000000000000000000000000000..d5be68c777738e0b82e09364996fc66de0df5b0e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..5c14eadc5f9ab5012b4239d0131cd3c4c85b772d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school.svg new file mode 100644 index 0000000000000000000000000000000000000000..191da4ccddfa3f85f13295fa3c4e764eaa3c8d4b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scissors.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scissors.svg new file mode 100644 index 0000000000000000000000000000000000000000..37527ab0ce455dc1ce9e5ab28c857ea0af595fe3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg new file mode 100644 index 0000000000000000000000000000000000000000..2f8e2b57843e616d1a543e138257c5d11cb3e3da --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/screwdriver.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/screwdriver.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab77470a97ab28536fbefeac8734482ddf2bd9f6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scroll-torah.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scroll-torah.svg new file mode 100644 index 0000000000000000000000000000000000000000..5828495ce4f3588c333bf8ac171fb5871efd98e0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scroll-torah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scroll.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scroll.svg new file mode 100644 index 0000000000000000000000000000000000000000..faff7f0c629adc07f3a1c74ff511f5777c9c111e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sd-card.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sd-card.svg new file mode 100644 index 0000000000000000000000000000000000000000..8e41ecad95cb748cb21df02a2110ec7cfcd45f80 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sd-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-dollar.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-dollar.svg new file mode 100644 index 0000000000000000000000000000000000000000..c1370cb1fb7cc973701b3f42cd450390a54d555f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-location.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-location.svg new file mode 100644 index 0000000000000000000000000000000000000000..43f1d95837c05da9cbad408c9db4f7c8620ab207 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..ca3e4a030b337632a70769e65c8f4ad4bfdb42ff --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-plus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-plus.svg new file mode 100644 index 0000000000000000000000000000000000000000..cae70769b6503ddc4e822546c5c67a75bf823db0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search.svg new file mode 100644 index 0000000000000000000000000000000000000000..0e14877c0acb673a20d3c46d31ec061fb8cb5103 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/section.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/section.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd980f13a02c695010affaf7692b29dde0217a78 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/seedling.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/seedling.svg new file mode 100644 index 0000000000000000000000000000000000000000..5a37fb084a7b7bace84caf2982dd7cd7e8a92c71 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/seedling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/septagon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/septagon.svg new file mode 100644 index 0000000000000000000000000000000000000000..fb3e3e63acd9ce94989e24c511f541bf8ea6b987 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/septagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/server.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/server.svg new file mode 100644 index 0000000000000000000000000000000000000000..45be812d1b16b38f13addbde445897c6d58b6f39 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shapes.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shapes.svg new file mode 100644 index 0000000000000000000000000000000000000000..35825c307cb996cbf5d106541a6931d0a5b68040 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-alt-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-alt-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0660ceeb846c331ba55454f6b52d98534c3f875 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-alt-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..90e8fcdf1291c6a3f4508b3b151966c1b2d6d719 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-from-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-from-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..ba05c763c5af030e86908aec2a0121228d5cb90e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-from-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-nodes.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-nodes.svg new file mode 100644 index 0000000000000000000000000000000000000000..90e8fcdf1291c6a3f4508b3b151966c1b2d6d719 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-nodes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..ba05c763c5af030e86908aec2a0121228d5cb90e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share.svg new file mode 100644 index 0000000000000000000000000000000000000000..d13b82a749106d20d60d54dae2b91c6c5e786d3d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheet-plastic.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheet-plastic.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8f1c11eb22dcaac1f90cdf2d6726013ca0d14db --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheet-plastic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shekel-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shekel-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..e1a24287fe844e70cced9b588b39499d3eae0615 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shekel-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shekel.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shekel.svg new file mode 100644 index 0000000000000000000000000000000000000000..e1a24287fe844e70cced9b588b39499d3eae0615 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shekel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheqel-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheqel-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..e1a24287fe844e70cced9b588b39499d3eae0615 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheqel-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheqel.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheqel.svg new file mode 100644 index 0000000000000000000000000000000000000000..e1a24287fe844e70cced9b588b39499d3eae0615 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sheqel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..e613e3d9202f3945148e6f835efe0cc1f2cce057 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-blank.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-blank.svg new file mode 100644 index 0000000000000000000000000000000000000000..3410575860ce35c06b00ab5083cbc8a8369aaa57 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-cat.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-cat.svg new file mode 100644 index 0000000000000000000000000000000000000000..0b3ef93c0f845b3eb72793829ddd2be3d364a021 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-dog.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-dog.svg new file mode 100644 index 0000000000000000000000000000000000000000..2b7e9a93e04015e3a84d7684d2adce6937d99611 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-dog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-halved.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-halved.svg new file mode 100644 index 0000000000000000000000000000000000000000..e613e3d9202f3945148e6f835efe0cc1f2cce057 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-halved.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-heart.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-heart.svg new file mode 100644 index 0000000000000000000000000000000000000000..7d2353b1490fcbdb33da7af21660467f3c7feba8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-virus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-virus.svg new file mode 100644 index 0000000000000000000000000000000000000000..b01042faf415bb5eafdff229c80220e463554c35 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield.svg new file mode 100644 index 0000000000000000000000000000000000000000..3410575860ce35c06b00ab5083cbc8a8369aaa57 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ship.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ship.svg new file mode 100644 index 0000000000000000000000000000000000000000..6fc977b6680a7caa4ad37b55311c25e448821ba3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shipping-fast.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shipping-fast.svg new file mode 100644 index 0000000000000000000000000000000000000000..641decb29f16f6fbca5f73af9ebdf6004e0205e9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shipping-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shirt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shirt.svg new file mode 100644 index 0000000000000000000000000000000000000000..69c580cf91aa4467bfa41fb348bbd6d744389898 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shoe-prints.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shoe-prints.svg new file mode 100644 index 0000000000000000000000000000000000000000..7aba21162853f960ccb0261c099fb437860d0d55 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shoe-prints.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..4c319ff625abc288e87163a9cdb5c2fd62ffc931 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..74b459133235fda3ba4ad9cfab75feaa1564d0ea --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop.svg new file mode 100644 index 0000000000000000000000000000000000000000..8c0a512eda2b95da860139f826367d8bf15b3baf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-bag.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-bag.svg new file mode 100644 index 0000000000000000000000000000000000000000..07cf8234a8b39fd7d22aa8226d54bfe9e811e0b9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-basket.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-basket.svg new file mode 100644 index 0000000000000000000000000000000000000000..37a7fe111396403d3c411c139645988d6de4f116 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-cart.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-cart.svg new file mode 100644 index 0000000000000000000000000000000000000000..c932b17a07b95bb7692e2a70c551c5f0c78277d7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shower.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shower.svg new file mode 100644 index 0000000000000000000000000000000000000000..82133111cdeda86eb7dfa7e4dc2a822ecbd1cda0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shrimp.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shrimp.svg new file mode 100644 index 0000000000000000000000000000000000000000..6f3a5173519e3fac8535704aa5dab647d5de0c7b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shrimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuffle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuffle.svg new file mode 100644 index 0000000000000000000000000000000000000000..3f63d75041d2ea0a0f80c536aedec4e21b9e78c0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuttle-space.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuttle-space.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab202d127d45f13426e0a809cbe8f928d97f514c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuttle-space.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuttle-van.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuttle-van.svg new file mode 100644 index 0000000000000000000000000000000000000000..8e0f6a077b6ec83af03703f25b4e4f58b6284cf9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/shuttle-van.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-hanging.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-hanging.svg new file mode 100644 index 0000000000000000000000000000000000000000..68b39d1a6d1c18ccd084546a426eedd64a4d3a1c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-hanging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-in-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-in-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..f42cc183021b6d0117740bd06ee8545ee78c760f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-in-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-in.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-in.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef3c359112529c0a05d284332d9fb92cbe8f722a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-language.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-language.svg new file mode 100644 index 0000000000000000000000000000000000000000..25c74db4d714267ce21caa9badaae2a2a82e66c9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-out-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-out-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..fe0c8f8f52cad76b71f633a3a6808eafde2adcb0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-out-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-out.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-out.svg new file mode 100644 index 0000000000000000000000000000000000000000..dded0b21d3ff0da9b03d4f444b4ac4502a81a29c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..68b39d1a6d1c18ccd084546a426eedd64a4d3a1c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal-5.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal-5.svg new file mode 100644 index 0000000000000000000000000000000000000000..c0d94ca75dac9ad33c6a7b1d5230d3f5e91e6e5a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal-perfect.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal-perfect.svg new file mode 100644 index 0000000000000000000000000000000000000000..c0d94ca75dac9ad33c6a7b1d5230d3f5e91e6e5a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal-perfect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal.svg new file mode 100644 index 0000000000000000000000000000000000000000..c0d94ca75dac9ad33c6a7b1d5230d3f5e91e6e5a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signature.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signature.svg new file mode 100644 index 0000000000000000000000000000000000000000..5c8e1a4789fb0b8a46ee0e825dfbc4c4aca90884 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signing.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signing.svg new file mode 100644 index 0000000000000000000000000000000000000000..25c74db4d714267ce21caa9badaae2a2a82e66c9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signs-post.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signs-post.svg new file mode 100644 index 0000000000000000000000000000000000000000..31108e2eb4cd5d9774a57e0c6f21b45f834b0bae --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/signs-post.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sim-card.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sim-card.svg new file mode 100644 index 0000000000000000000000000000000000000000..9a2ff541848411450610f1cba19a21ad47177226 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sim-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/single-quote-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/single-quote-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..f330450ae92fb0c17bf3a9aa96920531c00790c9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/single-quote-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/single-quote-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/single-quote-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..97a99c4040c829f915eee4f62f1c390da71c0843 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/single-quote-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sink.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sink.svg new file mode 100644 index 0000000000000000000000000000000000000000..7cba39d0c117b01a48cdc2bb345b422da3354c40 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sitemap.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sitemap.svg new file mode 100644 index 0000000000000000000000000000000000000000..38b66720763a414030c831e3043c591a8d40a5a4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sitemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skating.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skating.svg new file mode 100644 index 0000000000000000000000000000000000000000..9feb23698473d3e3b7cd278f1eb121914204c9ee --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skating.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skiing-nordic.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skiing-nordic.svg new file mode 100644 index 0000000000000000000000000000000000000000..6d8059661e34635b841e68fa68b9935bad5a3a51 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skiing-nordic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skiing.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skiing.svg new file mode 100644 index 0000000000000000000000000000000000000000..11382ed32f8aa15648ab18f423cb00b9eb8dcc6c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skiing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skull-crossbones.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skull-crossbones.svg new file mode 100644 index 0000000000000000000000000000000000000000..ce9e1f685cf17ed526495ce7ffd53658da989e3e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skull-crossbones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skull.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skull.svg new file mode 100644 index 0000000000000000000000000000000000000000..4c575cb99e182aa566d34aa95751c5e0e05a9d9d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..4e9b6550110921b1f62e86cfd47fc9f245faad5c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sleigh.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sleigh.svg new file mode 100644 index 0000000000000000000000000000000000000000..f542f00746d4f98b99ab5b1313f0f3ca2643970a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sleigh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sliders-h.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sliders-h.svg new file mode 100644 index 0000000000000000000000000000000000000000..4a24bc5ed0a37171ae0fdb96fbfedb80639a4ff1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sliders-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sliders.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sliders.svg new file mode 100644 index 0000000000000000000000000000000000000000..4a24bc5ed0a37171ae0fdb96fbfedb80639a4ff1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile-beam.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile-beam.svg new file mode 100644 index 0000000000000000000000000000000000000000..04e5087aed61f267f6fd6a592e9e58214c08ec2b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile-wink.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile-wink.svg new file mode 100644 index 0000000000000000000000000000000000000000..b26acc0913835bb9b5ea769ee47d07e24db9f3a1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile.svg new file mode 100644 index 0000000000000000000000000000000000000000..364cf742c4341cdd8dca8f2cdd7f667f73faf441 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smog.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smog.svg new file mode 100644 index 0000000000000000000000000000000000000000..83a477f9fd7c811d39f069f7c8ffc6639ed7cf3d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smoking-ban.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smoking-ban.svg new file mode 100644 index 0000000000000000000000000000000000000000..751a268431c49041e7dfd46bf32495189e32028a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smoking-ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smoking.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smoking.svg new file mode 100644 index 0000000000000000000000000000000000000000..9df16f265dbc9ceb5cccfe130c0b349584764f56 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sms.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sms.svg new file mode 100644 index 0000000000000000000000000000000000000000..9f4e6f029634fc3263c8ca05321e3fc91921aa75 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowboarding.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowboarding.svg new file mode 100644 index 0000000000000000000000000000000000000000..138637f661d1ac9a20e73c254199db4373c92237 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowboarding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowflake.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowflake.svg new file mode 100644 index 0000000000000000000000000000000000000000..bd3b7bd212b9f07a5f18f66a416939428fafe129 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowman.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowman.svg new file mode 100644 index 0000000000000000000000000000000000000000..91d6960f098640cdf0a387df74f18600881b7b79 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowplow.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowplow.svg new file mode 100644 index 0000000000000000000000000000000000000000..76f41d1fd5ec9c9c67d5054335b37084d839cf08 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/snowplow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/soap.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/soap.svg new file mode 100644 index 0000000000000000000000000000000000000000..a453a3d8a5c70b0b24893d381f78e50d9b10b8ca --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/soap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/soccer-ball.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/soccer-ball.svg new file mode 100644 index 0000000000000000000000000000000000000000..d2f200ae48f04d5ee62a886ca331b6a82ab611ac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/soccer-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/socks.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/socks.svg new file mode 100644 index 0000000000000000000000000000000000000000..4910e7c91fcc5024d30b2bb59a5b082af90bc8fc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/socks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/solar-panel.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/solar-panel.svg new file mode 100644 index 0000000000000000000000000000000000000000..eba9ae149b10311ef82c50273778c63a9e843041 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/solar-panel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg new file mode 100644 index 0000000000000000000000000000000000000000..612e0326b0f11d84673de97c9db9b759718a0c58 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg new file mode 100644 index 0000000000000000000000000000000000000000..1b48edc4d5147be2c69b17bb162e773acb8855b7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..1b48edc4d5147be2c69b17bb162e773acb8855b7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..612e0326b0f11d84673de97c9db9b759718a0c58 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..3064c50443f84296fd6d978dcb88f84994021451 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..885b28dd4546949ba38af8b9e76ed2e789210047 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg new file mode 100644 index 0000000000000000000000000000000000000000..d4bb353ae27b06ed02e61bdae8e81ab642ae7967 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg new file mode 100644 index 0000000000000000000000000000000000000000..92f123ff32d8cc3c6f9faa219ec6c7097337ed5c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..92f123ff32d8cc3c6f9faa219ec6c7097337ed5c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..d4bb353ae27b06ed02e61bdae8e81ab642ae7967 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..9961dc15f504d6f0fe72c4bdd0978b6b6c3919db --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..e726f88df514b1b83e6b93289197dbd84b0cc2f6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-amount-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-asc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-asc.svg new file mode 100644 index 0000000000000000000000000000000000000000..d9dba63050c738c00108b5f8a8112a990b0f628e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-asc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-desc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-desc.svg new file mode 100644 index 0000000000000000000000000000000000000000..22904c51ff2b920a53d7cf427ec9fc114216dda8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-desc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..22904c51ff2b920a53d7cf427ec9fc114216dda8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg new file mode 100644 index 0000000000000000000000000000000000000000..2e048026202087875d673a957169e85b57eddae8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg new file mode 100644 index 0000000000000000000000000000000000000000..2d93c826a384a4f07f1965b2fafaa5f9874bef8c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..2d93c826a384a4f07f1965b2fafaa5f9874bef8c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..2e048026202087875d673a957169e85b57eddae8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..f16aafd7cb6af9058c5d8102ed13671070850a7b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..0bb96dc3d09f20fa5a5375cce3c1ea6de3933cd5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..d9dba63050c738c00108b5f8a8112a990b0f628e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ff2146ed9ef631a6f17ea2fe77ce2b6e4dd4110 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spa.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spa.svg new file mode 100644 index 0000000000000000000000000000000000000000..ff2ed7c7ef6fb1bc81dcca6b006a2f1fcbf5515f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/space-shuttle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/space-shuttle.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab202d127d45f13426e0a809cbe8f928d97f514c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/space-shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg new file mode 100644 index 0000000000000000000000000000000000000000..62898e532cbda383af9b65711aede8f9f0bbda54 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spell-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spell-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..74be02072465373d983eb1a038bce2ceaf9d9807 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spell-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spider.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spider.svg new file mode 100644 index 0000000000000000000000000000000000000000..59c53b58a6d7f3e1a14c8853d6da9ec74e37a675 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spider.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spinner.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spinner.svg new file mode 100644 index 0000000000000000000000000000000000000000..407241ffc8ee44d4db15bd8edc4cd9204d5b0bbf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spiral.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spiral.svg new file mode 100644 index 0000000000000000000000000000000000000000..04e2515da09531fde2af5eb35134ad46aa1d3cca --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spiral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/splotch.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/splotch.svg new file mode 100644 index 0000000000000000000000000000000000000000..c095c2fce337944cf5e375d2f911b564f771b58e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/splotch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spoon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spoon.svg new file mode 100644 index 0000000000000000000000000000000000000000..86fa68f96445fb6e1e871707c0002681ed020935 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg new file mode 100644 index 0000000000000000000000000000000000000000..c14bd283a8d9e1e7063854d51051d95a92e5916b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spray-can.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spray-can.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ef438d02f7b49126fab5b23407676c32df00d5f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/spray-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sprout.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sprout.svg new file mode 100644 index 0000000000000000000000000000000000000000..5a37fb084a7b7bace84caf2982dd7cd7e8a92c71 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sprout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..dd1690fc72677fb6138ce679c9babdaf13173d25 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-binary.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-binary.svg new file mode 100644 index 0000000000000000000000000000000000000000..92d375d1f00cc110aa5abf16d65001e403d45dd3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-binary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..2bbc9cf845f75dea3ff4375f6089f6689a7dc57b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8ad854c21a1ff5b67e0e9d745350072b0405948 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..d85e7137d606f416c9cff8e56e31b9bad49da537 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..dc6c8de881a248c7e92dfcd627f622546ee3fcac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..c53f23e889e12d0513ef316d0e74141bcc636686 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-envelope.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-envelope.svg new file mode 100644 index 0000000000000000000000000000000000000000..ac6e386c32a4a5923f0a83069718fdf06cf5b7d3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-full.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-full.svg new file mode 100644 index 0000000000000000000000000000000000000000..a5c322c648514a9d9359b5284dd8dc35a390e266 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-h.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-h.svg new file mode 100644 index 0000000000000000000000000000000000000000..c73a1259df362d6640d2fe5c24ab1afec876b7e1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..a1aa8815abbbfb01e54e1376f03f76d2e287163d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-nfi.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-nfi.svg new file mode 100644 index 0000000000000000000000000000000000000000..3e493c2e1c51575693ced46a59fda88668d4a473 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-nfi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-parking.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-parking.svg new file mode 100644 index 0000000000000000000000000000000000000000..3cc125ad1157183936977204e182200ef661c958 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-parking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-pen.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-pen.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0349a19ed1bb14a7c8001581035561cc83dcf42 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-person-confined.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-person-confined.svg new file mode 100644 index 0000000000000000000000000000000000000000..773be779163d540dda2b972ffdc048b5ba738c83 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-person-confined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-phone-flip.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-phone-flip.svg new file mode 100644 index 0000000000000000000000000000000000000000..a28d61f5c00bec65742cff28c8f2a0879ec192f8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-phone-flip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-phone.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-phone.svg new file mode 100644 index 0000000000000000000000000000000000000000..2934dd1f4cf91d7aca1467c585ab21b0477bd34a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-plus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-plus.svg new file mode 100644 index 0000000000000000000000000000000000000000..82e55c79c085dd9a5544a67beff9c9cd2ddc4edf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg new file mode 100644 index 0000000000000000000000000000000000000000..5c02d10a4e86b80c09685e7cf2f37102cfc9e526 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg new file mode 100644 index 0000000000000000000000000000000000000000..01870d49c96ac9a59a3df7485e833ad6ba878d9a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-root-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-root-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..b08ae3699e4c090ac1a8b4281b4c202bd5e9c430 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-root-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-root-variable.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-root-variable.svg new file mode 100644 index 0000000000000000000000000000000000000000..b08ae3699e4c090ac1a8b4281b4c202bd5e9c430 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-root-variable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-rss.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-rss.svg new file mode 100644 index 0000000000000000000000000000000000000000..dffbe6c5c0cb71d22cfb03e82d5cbcf722b5c4e1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-share-nodes.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-share-nodes.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0660ceeb846c331ba55454f6b52d98534c3f875 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-share-nodes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-up-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-up-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..ebcc82cd387665bb3fbc202ef2f6dfafca7c49d9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-virus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-virus.svg new file mode 100644 index 0000000000000000000000000000000000000000..289e511c14592c0373ccfb5da0cd92998fa03577 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..fad11195b1f59342aae1a6af0cb753809896ef52 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square.svg new file mode 100644 index 0000000000000000000000000000000000000000..ac8ee96a9261b0cec140ce20aa695dc4260d11b0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg new file mode 100644 index 0000000000000000000000000000000000000000..6190728c052a22fb0fe267c24e8e244d51c0bde8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/staff-snake.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/staff-snake.svg new file mode 100644 index 0000000000000000000000000000000000000000..6190728c052a22fb0fe267c24e8e244d51c0bde8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/staff-snake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stairs.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stairs.svg new file mode 100644 index 0000000000000000000000000000000000000000..4736d2af44516811bb4009ac990cb2bb1045fc07 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stamp.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stamp.svg new file mode 100644 index 0000000000000000000000000000000000000000..7258446561bb882f289154aa82c38472f57d7826 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stapler.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stapler.svg new file mode 100644 index 0000000000000000000000000000000000000000..58d8e2bd2e48c66c6df85e358b1ae87fa039a608 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stapler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-and-crescent.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-and-crescent.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab4ac2f6b4f319840f7f1c4d9078a92f45274087 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-and-crescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..4a80ad7f3da6062e6080264da265a0b0392ce6b4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half-stroke.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half-stroke.svg new file mode 100644 index 0000000000000000000000000000000000000000..4a80ad7f3da6062e6080264da265a0b0392ce6b4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half.svg new file mode 100644 index 0000000000000000000000000000000000000000..e2f7ddc6affccdf6a882288982a20eab556b3d86 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-of-david.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-of-david.svg new file mode 100644 index 0000000000000000000000000000000000000000..0027ba76065dd6dc910c1a81b9269e3e19bbce87 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-of-david.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-of-life.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-of-life.svg new file mode 100644 index 0000000000000000000000000000000000000000..a24615fc2ebd6983e838359b1a6ff42e311831c6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star-of-life.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star.svg new file mode 100644 index 0000000000000000000000000000000000000000..e443da54829483b074e7c7283596a7ea88126aad --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/step-backward.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/step-backward.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a3deb32577625ffd28b1be7ed629cb4ad1c82ff --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/step-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/step-forward.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/step-forward.svg new file mode 100644 index 0000000000000000000000000000000000000000..6972e3f497b0b4f167590282872ea561eb6d7c02 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sterling-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sterling-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..17e2936ab0c268c98ef90ecb417ad881af62c399 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sterling-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stethoscope.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stethoscope.svg new file mode 100644 index 0000000000000000000000000000000000000000..364ffd38e288c59c624f71ffc25b24b8a490e836 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sticky-note.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sticky-note.svg new file mode 100644 index 0000000000000000000000000000000000000000..2936eec3c6e2c9eb31135af0749b91022d5183db --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sticky-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stop-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stop-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..c042d7dfc07ba3cf74a8e4f559956ddefff1c70a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stop.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stop.svg new file mode 100644 index 0000000000000000000000000000000000000000..ac8ee96a9261b0cec140ce20aa695dc4260d11b0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stopwatch-20.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stopwatch-20.svg new file mode 100644 index 0000000000000000000000000000000000000000..af951af2030f3b96f859bbdaa881e9f84ea4da81 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stopwatch-20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stopwatch.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stopwatch.svg new file mode 100644 index 0000000000000000000000000000000000000000..cffb0e929d37e5a687a4960fa24d3e283a22e923 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-alt-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-alt-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..74b459133235fda3ba4ad9cfab75feaa1564d0ea --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..8c0a512eda2b95da860139f826367d8bf15b3baf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..3e3fc567afe764d247b472092dda00195de6809c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store.svg new file mode 100644 index 0000000000000000000000000000000000000000..31e28950eb9ba38e15736faa0131c9f403f630ac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stream.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stream.svg new file mode 100644 index 0000000000000000000000000000000000000000..7d9dc023534c77839c2432090fed38936f05669b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/street-view.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/street-view.svg new file mode 100644 index 0000000000000000000000000000000000000000..a56a5957a1ce03dd1e3e951ee010e9d8c0488ea7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/street-view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/strikethrough.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/strikethrough.svg new file mode 100644 index 0000000000000000000000000000000000000000..558d372f4cca7a16af6d49d81870e750581270ec --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stroopwafel.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stroopwafel.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8079b5eedf7ad2fd7a7039553beb1ec90ca8704 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/stroopwafel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subscript.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subscript.svg new file mode 100644 index 0000000000000000000000000000000000000000..91160d7f05c58e9c7250f5d124fedfa5db4ce201 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subtract.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subtract.svg new file mode 100644 index 0000000000000000000000000000000000000000..3a438cd205e7d1d266eaf3a52517635995f181a0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subtract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subway.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subway.svg new file mode 100644 index 0000000000000000000000000000000000000000..41913fad27c5204c3847c4ef5ab07715c285b1e2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase-medical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase-medical.svg new file mode 100644 index 0000000000000000000000000000000000000000..4cd8521239f26b3f5935ab324a617f1f28289c38 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg new file mode 100644 index 0000000000000000000000000000000000000000..6e86505900be43dd5a2cffd8e771b7ee14da3f2e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase.svg new file mode 100644 index 0000000000000000000000000000000000000000..0071ad1f3462fa929fc8fe44221491607637c30f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg new file mode 100644 index 0000000000000000000000000000000000000000..04ebb0ba0486c5087e7076f86df9563882b04243 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sun.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sun.svg new file mode 100644 index 0000000000000000000000000000000000000000..4d88417850cfc7e2c4e01c7c1700bb9dbd652ecf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/superscript.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/superscript.svg new file mode 100644 index 0000000000000000000000000000000000000000..88bca3a788234389fd48a53ff0a44f304343cc32 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/surprise.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/surprise.svg new file mode 100644 index 0000000000000000000000000000000000000000..52a523ef6336f65afbc6cc747d06ee61c21b927d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swatchbook.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swatchbook.svg new file mode 100644 index 0000000000000000000000000000000000000000..a3ace2e0bdc04ba9f8e8b573b64ecf766de126ab --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swatchbook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swimmer.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swimmer.svg new file mode 100644 index 0000000000000000000000000000000000000000..7736adf99ea4a38372af9cc97a152b9fc152fe74 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swimmer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swimming-pool.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swimming-pool.svg new file mode 100644 index 0000000000000000000000000000000000000000..dbd2503a9b9daa67d511fdf0e2bd1b9f9ddab80a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/swimming-pool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/synagogue.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/synagogue.svg new file mode 100644 index 0000000000000000000000000000000000000000..24b153737cda3ed9dc4dc4d71ddeebad63e5921a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/synagogue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sync-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sync-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..40cc5dcc204caec5de0067a16a89af79bb76796f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sync-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sync.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sync.svg new file mode 100644 index 0000000000000000000000000000000000000000..30224af7da8a5078115bf5f4772c399ed3521bee --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/syringe.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/syringe.svg new file mode 100644 index 0000000000000000000000000000000000000000..afaf9b7757fc7235e8f07fc90fa35211af5ab836 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/t-shirt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/t-shirt.svg new file mode 100644 index 0000000000000000000000000000000000000000..69c580cf91aa4467bfa41fb348bbd6d744389898 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/t-shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/t.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/t.svg new file mode 100644 index 0000000000000000000000000000000000000000..32d88ab8c45053e5acdfe313ed40c5038e08bde6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/t.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..05d5af2c89a52bd56745f5bee784b63dd19c13f6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-large.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-large.svg new file mode 100644 index 0000000000000000000000000000000000000000..1db0c7d7fd6a184507f0344d1abd545bb81eada2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..51807a1bf0de58963adf9d29ac6372d5ce68158a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg new file mode 100644 index 0000000000000000000000000000000000000000..57c001058c92aacedb442aa1838d728f73ce31bb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells.svg new file mode 100644 index 0000000000000000000000000000000000000000..cc48dd8601cf4ef2e08985c52bc2de7f92740596 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-cells.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-columns.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-columns.svg new file mode 100644 index 0000000000000000000000000000000000000000..d5227709fe3e18ef51946cb31d56b552a5737110 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-list.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-list.svg new file mode 100644 index 0000000000000000000000000000000000000000..e3d4a89660c8cd832e016080a3215a22338039df --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg new file mode 100644 index 0000000000000000000000000000000000000000..63656437ff828c2baec14e09c4f5cfcfd1dba302 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-tennis.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-tennis.svg new file mode 100644 index 0000000000000000000000000000000000000000..63656437ff828c2baec14e09c4f5cfcfd1dba302 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table-tennis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table.svg new file mode 100644 index 0000000000000000000000000000000000000000..f771c36fb464580b54065eccee47be4f8e2aa177 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..dbb82dd69f02ed65a20ddc46be2fa849ff4efeef --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-android.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-android.svg new file mode 100644 index 0000000000000000000000000000000000000000..ce178ab69eff123721fe7df271405e5140aa20b7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-button.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-button.svg new file mode 100644 index 0000000000000000000000000000000000000000..6c4c06f6f019a04715cbbceddf2805fb075dc449 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg new file mode 100644 index 0000000000000000000000000000000000000000..dbb82dd69f02ed65a20ddc46be2fa849ff4efeef --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet.svg new file mode 100644 index 0000000000000000000000000000000000000000..ce178ab69eff123721fe7df271405e5140aa20b7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablets.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablets.svg new file mode 100644 index 0000000000000000000000000000000000000000..41179463cde0d3e5f4fe2c32f3740d9961ea26bc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tablets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachograph-digital.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachograph-digital.svg new file mode 100644 index 0000000000000000000000000000000000000000..b3efa5103e3061c62ec07da2d7d44c931d9584a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachograph-digital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0e3748892d8084822fc5bf73156d6c97e12dad1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg new file mode 100644 index 0000000000000000000000000000000000000000..8091998730ddab91c1f94016b41ebc2c3b7ff270 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..8091998730ddab91c1f94016b41ebc2c3b7ff270 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-average.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-average.svg new file mode 100644 index 0000000000000000000000000000000000000000..b8d41fd81e40eeedcdbc2ae660aa5813403f7df9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-average.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-fast.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-fast.svg new file mode 100644 index 0000000000000000000000000000000000000000..028c2d42643cf1d6e00aaccf55ffae46f7ddbace --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer.svg new file mode 100644 index 0000000000000000000000000000000000000000..028c2d42643cf1d6e00aaccf55ffae46f7ddbace --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tachometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tag.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tag.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab19036f911d5707ae093cf05eb7a62f7a4ea67b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tags.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tags.svg new file mode 100644 index 0000000000000000000000000000000000000000..70a96c3582951059ec793f61718adf11196ed850 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tanakh.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tanakh.svg new file mode 100644 index 0000000000000000000000000000000000000000..b5f711f1b5af0f3abe013f253ba1443403409ef9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tanakh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tape.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tape.svg new file mode 100644 index 0000000000000000000000000000000000000000..f02c8f36e234075357faa33da6fb734fedab812e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tarp-droplet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tarp-droplet.svg new file mode 100644 index 0000000000000000000000000000000000000000..c27b0515a3f88de979e426bee53789b0aea1fb14 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tarp-droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tarp.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tarp.svg new file mode 100644 index 0000000000000000000000000000000000000000..54889cbfc8b2574cc85637eb9fe2fced27ec983d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tarp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tasks-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tasks-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..1b684ad96b60c0d4e2a3791de264379d8403a9bc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tasks-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tasks.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tasks.svg new file mode 100644 index 0000000000000000000000000000000000000000..6325d41503111b9002bd66fa2bc189fc0faea29a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tasks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/taxi.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/taxi.svg new file mode 100644 index 0000000000000000000000000000000000000000..5a3ae237feba47108153c4d11c737715243af4cb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teeth-open.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teeth-open.svg new file mode 100644 index 0000000000000000000000000000000000000000..4a612069a86dcce927f433b650f336a03be8957a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teeth-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teeth.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teeth.svg new file mode 100644 index 0000000000000000000000000000000000000000..be0fd6f03862a4b7defb681da80eead7743268b0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teeth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teletype.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teletype.svg new file mode 100644 index 0000000000000000000000000000000000000000..6e7a257cf296e72fd036d298be6b68041aa2572d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/teletype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/television.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/television.svg new file mode 100644 index 0000000000000000000000000000000000000000..9bea37594e59e40d0d6c81e32f38860e3023eba6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/television.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-0.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-0.svg new file mode 100644 index 0000000000000000000000000000000000000000..8a672916aff49dbeb21fa653e767c5648d37d532 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-1.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-1.svg new file mode 100644 index 0000000000000000000000000000000000000000..78442ea691d7c2ff1113d232737dc5321267dd28 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-2.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-2.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ec4986f9b1da4e5a11ef5d2165ec8c1aaf2c987 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-3.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-3.svg new file mode 100644 index 0000000000000000000000000000000000000000..85510fb12dc7c0df4ec914f5312553b1f9d33f7b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-4.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-4.svg new file mode 100644 index 0000000000000000000000000000000000000000..bd431c46cf0d23fc91933ed8ec882009ea26ae40 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..d776a3b44437624856313c31d81c670498b2cadf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..defb59ab78a71a907a00cf5ed4e453787024426c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..d776a3b44437624856313c31d81c670498b2cadf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-empty.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-empty.svg new file mode 100644 index 0000000000000000000000000000000000000000..8a672916aff49dbeb21fa653e767c5648d37d532 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-full.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-full.svg new file mode 100644 index 0000000000000000000000000000000000000000..bd431c46cf0d23fc91933ed8ec882009ea26ae40 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-half.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-half.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ec4986f9b1da4e5a11ef5d2165ec8c1aaf2c987 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-high.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-high.svg new file mode 100644 index 0000000000000000000000000000000000000000..68bad688a65a82c18bc01d2d7aa09c572fa18990 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-low.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-low.svg new file mode 100644 index 0000000000000000000000000000000000000000..4a96e9846cf7e7d0b21e9ea233ea1d576812733d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-quarter.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-quarter.svg new file mode 100644 index 0000000000000000000000000000000000000000..78442ea691d7c2ff1113d232737dc5321267dd28 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg new file mode 100644 index 0000000000000000000000000000000000000000..85510fb12dc7c0df4ec914f5312553b1f9d33f7b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..defb59ab78a71a907a00cf5ed4e453787024426c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/temperature-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tenge-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tenge-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..174abaa22d3021d8451cd8e7f6a00a9c72f91fac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tenge-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tenge.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tenge.svg new file mode 100644 index 0000000000000000000000000000000000000000..174abaa22d3021d8451cd8e7f6a00a9c72f91fac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tenge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg new file mode 100644 index 0000000000000000000000000000000000000000..aeb93cd44f0124d914191fdfbfaa1b2c30e6f7ca --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..567529b5851178db11aba40157413d014889852e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg new file mode 100644 index 0000000000000000000000000000000000000000..16bf26516a7bd58bb71c0b6ffc233fe866135ba4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..14635b74f252d9259f448a3b5a3f92e40129b895 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent.svg new file mode 100644 index 0000000000000000000000000000000000000000..80687fe3642f5fb3500953a5e0be6d2668607df3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tents.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tents.svg new file mode 100644 index 0000000000000000000000000000000000000000..78d7b789ce5693516e4589f9350e9c3cdcf3269f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tents.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/terminal.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/terminal.svg new file mode 100644 index 0000000000000000000000000000000000000000..e88727474eebe81eab4badb04f73505ab7bfd61c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-height.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-height.svg new file mode 100644 index 0000000000000000000000000000000000000000..b452bffe33d0cb6675d2e3a493861296aca5623b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-height.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..f9d0221f0e048a4a5c613352968c88eb2549b3af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-width.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-width.svg new file mode 100644 index 0000000000000000000000000000000000000000..2c709e8a8634278bc3b72d54ae251ba0e62a7ec9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/text-width.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th-large.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th-large.svg new file mode 100644 index 0000000000000000000000000000000000000000..1db0c7d7fd6a184507f0344d1abd545bb81eada2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th-list.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th-list.svg new file mode 100644 index 0000000000000000000000000000000000000000..e3d4a89660c8cd832e016080a3215a22338039df --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th.svg new file mode 100644 index 0000000000000000000000000000000000000000..cc48dd8601cf4ef2e08985c52bc2de7f92740596 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/th.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/theater-masks.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/theater-masks.svg new file mode 100644 index 0000000000000000000000000000000000000000..9941d31e8ad7e1b5e57c8e9ab4b5bff8d26d5849 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/theater-masks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-0.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-0.svg new file mode 100644 index 0000000000000000000000000000000000000000..8a672916aff49dbeb21fa653e767c5648d37d532 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-1.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-1.svg new file mode 100644 index 0000000000000000000000000000000000000000..78442ea691d7c2ff1113d232737dc5321267dd28 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-2.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-2.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ec4986f9b1da4e5a11ef5d2165ec8c1aaf2c987 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-3.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-3.svg new file mode 100644 index 0000000000000000000000000000000000000000..85510fb12dc7c0df4ec914f5312553b1f9d33f7b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-4.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-4.svg new file mode 100644 index 0000000000000000000000000000000000000000..bd431c46cf0d23fc91933ed8ec882009ea26ae40 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-empty.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-empty.svg new file mode 100644 index 0000000000000000000000000000000000000000..8a672916aff49dbeb21fa653e767c5648d37d532 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-full.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-full.svg new file mode 100644 index 0000000000000000000000000000000000000000..bd431c46cf0d23fc91933ed8ec882009ea26ae40 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-half.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-half.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ec4986f9b1da4e5a11ef5d2165ec8c1aaf2c987 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg new file mode 100644 index 0000000000000000000000000000000000000000..78442ea691d7c2ff1113d232737dc5321267dd28 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg new file mode 100644 index 0000000000000000000000000000000000000000..85510fb12dc7c0df4ec914f5312553b1f9d33f7b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer.svg new file mode 100644 index 0000000000000000000000000000000000000000..2068a1e06306c4f73abbd24023f5bff484cd67dd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..3c14019832becf82bd7bd1d6844ac92d3a6b256b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumb-tack.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumb-tack.svg new file mode 100644 index 0000000000000000000000000000000000000000..4f430029dbe503f27acf8b0a23d8d950b17fb57d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumb-tack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbs-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbs-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..81d1030e33992b534d1a496aaaafedea616613bc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbs-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbs-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..9271feb1239673c33c96acb466a301569cf07b49 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..3c14019832becf82bd7bd1d6844ac92d3a6b256b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbtack.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbtack.svg new file mode 100644 index 0000000000000000000000000000000000000000..4f430029dbe503f27acf8b0a23d8d950b17fb57d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thumbtack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thunderstorm.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thunderstorm.svg new file mode 100644 index 0000000000000000000000000000000000000000..a3e291ee716eae6af1d988a4fe953d8de40d4466 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..df6303a9199ba9b3e199901f25aa35b03151f2cb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket-simple.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket-simple.svg new file mode 100644 index 0000000000000000000000000000000000000000..df6303a9199ba9b3e199901f25aa35b03151f2cb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a4fa70ef1a0a1ba339c3f7ba9b83dec7b8b1f97 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/ticket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/timeline.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/timeline.svg new file mode 100644 index 0000000000000000000000000000000000000000..cdc42c93e6d8b9eee796c55ee14167985a3d6297 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/timeline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..768113157a337af4cb7275940ebcc16e270a8dfd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-rectangle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-rectangle.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a2d3b9acc46f3b73f7648858a8057b2fb5b50b1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..fad11195b1f59342aae1a6af0cb753809896ef52 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times.svg new file mode 100644 index 0000000000000000000000000000000000000000..7b28292913266d18cbcf38774c9fe5f05cfadfc1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tint-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tint-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..84c8ea6fe5ab936a21a878ef789e57b6846afe0c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tint-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tint.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tint.svg new file mode 100644 index 0000000000000000000000000000000000000000..fe0fb5bf1323d4054a40ddf51007f6682ea5a0f9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tired.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tired.svg new file mode 100644 index 0000000000000000000000000000000000000000..60881ff315505f4a9464e58228fbe0740527dfa8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toggle-off.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toggle-off.svg new file mode 100644 index 0000000000000000000000000000000000000000..25647941f1cb327bb5a07c894d47cdd1eb735e05 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toggle-on.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toggle-on.svg new file mode 100644 index 0000000000000000000000000000000000000000..d8e902aeab50ac05672027e0a10e37bd80036aae --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..d5b5c27e8a50728219ab083c0d364eddceecccce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg new file mode 100644 index 0000000000000000000000000000000000000000..d5b5c27e8a50728219ab083c0d364eddceecccce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..6c07153cd61faa4f2b8a74291a63e48e8b292a6a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper.svg new file mode 100644 index 0000000000000000000000000000000000000000..d5b5c27e8a50728219ab083c0d364eddceecccce --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-portable.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-portable.svg new file mode 100644 index 0000000000000000000000000000000000000000..ead2f46a93c161af145201ddcacfbe230ce61678 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet-portable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet.svg new file mode 100644 index 0000000000000000000000000000000000000000..333005d697c4a0aff6cf8971bec8303c2ba33323 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilets-portable.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilets-portable.svg new file mode 100644 index 0000000000000000000000000000000000000000..52e2ad23dcc29e0c1fad90629b9b38b2d6aff154 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toilets-portable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toolbox.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toolbox.svg new file mode 100644 index 0000000000000000000000000000000000000000..78e773bd5896988bd97bb569fe0fc262eac8b987 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/toolbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tools.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tools.svg new file mode 100644 index 0000000000000000000000000000000000000000..2f8e2b57843e616d1a543e138257c5d11cb3e3da --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tools.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tooth.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tooth.svg new file mode 100644 index 0000000000000000000000000000000000000000..b375dbadf20a3c76e404a02cfef6100a6f85a3cc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/torah.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/torah.svg new file mode 100644 index 0000000000000000000000000000000000000000..5828495ce4f3588c333bf8ac171fb5871efd98e0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/torah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/torii-gate.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/torii-gate.svg new file mode 100644 index 0000000000000000000000000000000000000000..a22ae423f6813f880e703b75cae6f81d4966b646 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/torii-gate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tornado.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tornado.svg new file mode 100644 index 0000000000000000000000000000000000000000..d8fba3493aaf8ffe74e3b1354c61facd973cecaa --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tornado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-broadcast.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-broadcast.svg new file mode 100644 index 0000000000000000000000000000000000000000..2c0dd4b0649198639b6b24969bb77e686da10420 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-broadcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-cell.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-cell.svg new file mode 100644 index 0000000000000000000000000000000000000000..e654782522bda723d3ffb3b4a0867321438c6130 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-cell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-observation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-observation.svg new file mode 100644 index 0000000000000000000000000000000000000000..04f02a0d2e9327a2f9c6b9ef0470fc7cca2a2778 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tower-observation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tractor.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tractor.svg new file mode 100644 index 0000000000000000000000000000000000000000..7fee4c59af108dd98450ac7c751d69c6c4153fe6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tractor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trademark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trademark.svg new file mode 100644 index 0000000000000000000000000000000000000000..83e402db70755f802ccbedbcc941954e0a306745 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/traffic-light.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/traffic-light.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee4907010ccfef6678ae43fe95cb64e473d64af3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/traffic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trailer.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trailer.svg new file mode 100644 index 0000000000000000000000000000000000000000..df868ea454645543d1d8773fa9884bac854ba80e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trailer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train-subway.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train-subway.svg new file mode 100644 index 0000000000000000000000000000000000000000..41913fad27c5204c3847c4ef5ab07715c285b1e2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train-subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train-tram.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train-tram.svg new file mode 100644 index 0000000000000000000000000000000000000000..4eb1dc68204a1a9ecafb7c10f476df71503a0741 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train-tram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train.svg new file mode 100644 index 0000000000000000000000000000000000000000..e6fc72994d729c5f088877fb517319da6497d602 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tram.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tram.svg new file mode 100644 index 0000000000000000000000000000000000000000..f82a34a44787b580e7d256d644e3a7d8edb533c2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/transgender-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/transgender-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..867229b6942560a01743676430e2b6e987d992fa --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/transgender-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/transgender.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/transgender.svg new file mode 100644 index 0000000000000000000000000000000000000000..867229b6942560a01743676430e2b6e987d992fa --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..43efc079bec1db65cad95db38a907ccb8597ad76 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..d2d281e751d8532b285f130976e436f784add546 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..afcc8c4fa714d96ea6279aab027e26c22e1b0084 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-can.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-can.svg new file mode 100644 index 0000000000000000000000000000000000000000..43efc079bec1db65cad95db38a907ccb8597ad76 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..afcc8c4fa714d96ea6279aab027e26c22e1b0084 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-restore.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-restore.svg new file mode 100644 index 0000000000000000000000000000000000000000..d2d281e751d8532b285f130976e436f784add546 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash.svg new file mode 100644 index 0000000000000000000000000000000000000000..9a1e90e8f967a99bf4fb25cdf23a0bdceae45969 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tree-city.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tree-city.svg new file mode 100644 index 0000000000000000000000000000000000000000..d7f3a6942e90fffe78456942fa23663ab19f6da8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tree-city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tree.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tree.svg new file mode 100644 index 0000000000000000000000000000000000000000..14ad8d22892e10310825b505035db6f7616f771c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..35825c307cb996cbf5d106541a6931d0a5b68040 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef7c9258a962449de76c4ee37441654db47e47c5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trophy.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trophy.svg new file mode 100644 index 0000000000000000000000000000000000000000..49716e57ba1f2454a76252e8a2da1ff758d59176 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trowel-bricks.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trowel-bricks.svg new file mode 100644 index 0000000000000000000000000000000000000000..8bfb47798ded4779f888d0bb0467389165ef7a04 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trowel-bricks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trowel.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trowel.svg new file mode 100644 index 0000000000000000000000000000000000000000..a02b9464513bf48ddb36260ebbe15a5f2f88550b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/trowel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..438a239056dc605991aa42fb0e84a245802a97e1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-droplet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-droplet.svg new file mode 100644 index 0000000000000000000000000000000000000000..7dc7b6d48803ed05eadd617f5f3f923174cff7cf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-fast.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-fast.svg new file mode 100644 index 0000000000000000000000000000000000000000..641decb29f16f6fbca5f73af9ebdf6004e0205e9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-field-un.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-field-un.svg new file mode 100644 index 0000000000000000000000000000000000000000..333fcdf05630a1cb3602b0bac495c0a6d5da8b32 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-field-un.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-field.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-field.svg new file mode 100644 index 0000000000000000000000000000000000000000..8fac3a71c18adf51be7d2fad9f736afa913c613d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-field.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-front.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-front.svg new file mode 100644 index 0000000000000000000000000000000000000000..c3f0d76e26ef85b5a16780dfa8dc5583bc686572 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-loading.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-loading.svg new file mode 100644 index 0000000000000000000000000000000000000000..2a34e3d8364eff3ce6e4ce0ab0da7ec71403feac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-medical.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-medical.svg new file mode 100644 index 0000000000000000000000000000000000000000..14b2349022c65f03411016edbd37dfcf945199f2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-monster.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-monster.svg new file mode 100644 index 0000000000000000000000000000000000000000..ec5086096bc0365aeb57a5f9ebf707157de8492f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-monster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-moving.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-moving.svg new file mode 100644 index 0000000000000000000000000000000000000000..45faacfc76ba79e5585fd19293deed3eec4e9e3a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-moving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-pickup.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-pickup.svg new file mode 100644 index 0000000000000000000000000000000000000000..446f0f02d3fdbfa826b8ab5600a2c02232c32c75 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-pickup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-plane.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-plane.svg new file mode 100644 index 0000000000000000000000000000000000000000..3891b18e42c5592f290f459978da98caa80d4d80 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg new file mode 100644 index 0000000000000000000000000000000000000000..2a34e3d8364eff3ce6e4ce0ab0da7ec71403feac --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck.svg new file mode 100644 index 0000000000000000000000000000000000000000..0bb8c64d0ffd63adbabc6558dafea50e2c4d2dc3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/try.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/try.svg new file mode 100644 index 0000000000000000000000000000000000000000..84d2bd11cc10b7875322faff135f87ed3e853368 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/try.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tshirt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tshirt.svg new file mode 100644 index 0000000000000000000000000000000000000000..69c580cf91aa4467bfa41fb348bbd6d744389898 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tshirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tty.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tty.svg new file mode 100644 index 0000000000000000000000000000000000000000..6e7a257cf296e72fd036d298be6b68041aa2572d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..84d2bd11cc10b7875322faff135f87ed3e853368 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turkish-lira.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turkish-lira.svg new file mode 100644 index 0000000000000000000000000000000000000000..84d2bd11cc10b7875322faff135f87ed3e853368 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turkish-lira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turn-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turn-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..7550c948522ddae2f8dbb6dcace3c07a816e11af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turn-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turn-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turn-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..f67dcb21c2a6c6ac09311d85924252b4db5588b2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/turn-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tv-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tv-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..9bea37594e59e40d0d6c81e32f38860e3023eba6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tv-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tv.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tv.svg new file mode 100644 index 0000000000000000000000000000000000000000..9bea37594e59e40d0d6c81e32f38860e3023eba6 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/u.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/u.svg new file mode 100644 index 0000000000000000000000000000000000000000..7779893eda1d1e6aac361e411068e002eb6994fe --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/u.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/umbrella-beach.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/umbrella-beach.svg new file mode 100644 index 0000000000000000000000000000000000000000..5669c8ca5742c1046c470a69ebb6fabd5f27e82d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/umbrella-beach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/umbrella.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/umbrella.svg new file mode 100644 index 0000000000000000000000000000000000000000..c24603244caef2625ba6b52138ac340d79e2ff3b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/underline.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/underline.svg new file mode 100644 index 0000000000000000000000000000000000000000..34afddcbb74ee0e103d534fa36c626cd6df0e44f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/undo-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/undo-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..33204a3867a053bf8b98c16b58645778ecc4dd8a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/undo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/undo.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/undo.svg new file mode 100644 index 0000000000000000000000000000000000000000..d16a9bbe161edfb3d04ceb86def1ab1f1093aacd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/universal-access.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/universal-access.svg new file mode 100644 index 0000000000000000000000000000000000000000..e05dcf936f4031eb295cda90905bb404c61070d0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/universal-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/university.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/university.svg new file mode 100644 index 0000000000000000000000000000000000000000..3691511d9c67c2a7244b54a067618d4db87cd606 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/university.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlink.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlink.svg new file mode 100644 index 0000000000000000000000000000000000000000..78249895869b3e544f01bd51609f9bbfbfe73f3a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..be927602abea997f249a63a317eac9a8e567a33f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg new file mode 100644 index 0000000000000000000000000000000000000000..be927602abea997f249a63a317eac9a8e567a33f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a87dfe761c4e605b8961925be04a039e6478122 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unsorted.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unsorted.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ff2146ed9ef631a6f17ea2fe77ce2b6e4dd4110 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/unsorted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-down-left-right.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-down-left-right.svg new file mode 100644 index 0000000000000000000000000000000000000000..2322b4e0e07fef91ae150ae7a08fe2272942243e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-down-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb75f03986ba99321036b97af570184ea12c6c8b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-long.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-long.svg new file mode 100644 index 0000000000000000000000000000000000000000..144e67de6372ec9cb8f967f0038897ef6d646448 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg new file mode 100644 index 0000000000000000000000000000000000000000..0896e4557416d647d3a8ab5a83c973394fe1f3bf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-right-from-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-right-from-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..8d8369cb46bb6188c3e9675402f4c1d7aa52d0a9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/up-right-from-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/upload.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/upload.svg new file mode 100644 index 0000000000000000000000000000000000000000..80971f3c1c0489c5fa5a3a7c374798c231eccc13 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/usd.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/usd.svg new file mode 100644 index 0000000000000000000000000000000000000000..2511126a9858fd22d46a4b76f5d43f579077ea73 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-alt-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-alt-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..d12758a4c93d9f3635a50134f52f0383555223a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..887b3b687409900723d78e65329c0239cbe04609 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-astronaut.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-astronaut.svg new file mode 100644 index 0000000000000000000000000000000000000000..6fe4651e0e1aedbdd66c13f7fb41eadcb58b4948 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-astronaut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..7ff3a92975a13e80bfbf05aa099ce6a78e5e9738 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..c281dddeb437676a34bea19480d0d827194b620c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-clock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-clock.svg new file mode 100644 index 0000000000000000000000000000000000000000..71653e30eb7718778733f54c5a18b02869f746d2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-cog.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-cog.svg new file mode 100644 index 0000000000000000000000000000000000000000..f25e5352d19f408d5284987bebd7ee6e299fbab8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-doctor.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-doctor.svg new file mode 100644 index 0000000000000000000000000000000000000000..00cd95c79f66785fe0efe9b17475d63e59a7be21 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-doctor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-edit.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-edit.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa9c883c03531b8ec4ada8c8b2512631673cf6b5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-friends.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-friends.svg new file mode 100644 index 0000000000000000000000000000000000000000..6da1791756b2643a4f0de5573fab4a88800b7c29 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-friends.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-gear.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-gear.svg new file mode 100644 index 0000000000000000000000000000000000000000..f25e5352d19f408d5284987bebd7ee6e299fbab8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-graduate.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-graduate.svg new file mode 100644 index 0000000000000000000000000000000000000000..0cf14910d8b6f6b0c3611b85454991c5680484fc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-graduate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-group.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..6da1791756b2643a4f0de5573fab4a88800b7c29 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-injured.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-injured.svg new file mode 100644 index 0000000000000000000000000000000000000000..083ee99e01db18a909f01ec2ffebdb7bc1125d88 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-injured.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-large-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-large-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..d12758a4c93d9f3635a50134f52f0383555223a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-large-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-large.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-large.svg new file mode 100644 index 0000000000000000000000000000000000000000..887b3b687409900723d78e65329c0239cbe04609 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-lock.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-lock.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ca2964b18843b7ac1a1943e7a794b12ffdc439a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-md.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-md.svg new file mode 100644 index 0000000000000000000000000000000000000000..00cd95c79f66785fe0efe9b17475d63e59a7be21 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-minus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-minus.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8c67b70677d8bb83ab2193f4f4c3b9b9522f64c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-ninja.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-ninja.svg new file mode 100644 index 0000000000000000000000000000000000000000..0d921b306e03f21c59856ec92705303ad31fffd4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-ninja.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-nurse.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-nurse.svg new file mode 100644 index 0000000000000000000000000000000000000000..83d4ba462b2e74470dc5ca2df93f7e4253a88e49 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-pen.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-pen.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa9c883c03531b8ec4ada8c8b2512631673cf6b5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-plus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-plus.svg new file mode 100644 index 0000000000000000000000000000000000000000..8f1e01ed2b72c5220cc3190532c117e9de10c8c8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-secret.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-secret.svg new file mode 100644 index 0000000000000000000000000000000000000000..24675c2c14fb9362e0a39d0f2f13c6b88aa095d9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-secret.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-shield.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-shield.svg new file mode 100644 index 0000000000000000000000000000000000000000..c374d5de887c128e78def613f8bac049a50cf79a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..d12758a4c93d9f3635a50134f52f0383555223a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-tag.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-tag.svg new file mode 100644 index 0000000000000000000000000000000000000000..04d3500768fa9617f91b2ea840e9fd0369f3ff5d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-tie.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-tie.svg new file mode 100644 index 0000000000000000000000000000000000000000..42169fa364952595f400d84f2d30709b6e5572f4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-times.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-times.svg new file mode 100644 index 0000000000000000000000000000000000000000..84ec6ad2b1d8f53a6067755e0958b8d47a3b83e1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..84ec6ad2b1d8f53a6067755e0958b8d47a3b83e1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user.svg new file mode 100644 index 0000000000000000000000000000000000000000..887b3b687409900723d78e65329c0239cbe04609 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-between-lines.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-between-lines.svg new file mode 100644 index 0000000000000000000000000000000000000000..f17e3583a55bdbbd13c78a38f9a259a96173868e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-between-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-cog.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-cog.svg new file mode 100644 index 0000000000000000000000000000000000000000..b491df14f014f3d7061a11f00a81824d4092ca8a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-gear.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-gear.svg new file mode 100644 index 0000000000000000000000000000000000000000..b491df14f014f3d7061a11f00a81824d4092ca8a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-line.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-line.svg new file mode 100644 index 0000000000000000000000000000000000000000..aff4ab326a9137b3ad521ec3881a4ba731a8dd9b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-rays.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-rays.svg new file mode 100644 index 0000000000000000000000000000000000000000..a23ab1b60c131c5b96b2498a49a72985cbf47c97 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-rays.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-rectangle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-rectangle.svg new file mode 100644 index 0000000000000000000000000000000000000000..543229a92e7cbe562289dea5b2840b1e88f47771 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..4c3cb638e7a6fe247016aa09f1c6d32104af5986 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-viewfinder.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-viewfinder.svg new file mode 100644 index 0000000000000000000000000000000000000000..665359f28f4a15492b2a105e74a1b96c26be13d4 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users-viewfinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users.svg new file mode 100644 index 0000000000000000000000000000000000000000..eeee75281afca775a19433d79f39248ce47a893f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/utensil-spoon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/utensil-spoon.svg new file mode 100644 index 0000000000000000000000000000000000000000..86fa68f96445fb6e1e871707c0002681ed020935 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/utensil-spoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/utensils.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/utensils.svg new file mode 100644 index 0000000000000000000000000000000000000000..e77f5551ba821efba740ead3417422a5789fd8ad --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/utensils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/v.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/v.svg new file mode 100644 index 0000000000000000000000000000000000000000..a67b2c93b2931ef1538a5abddbb20897ed45d7f1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/van-shuttle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/van-shuttle.svg new file mode 100644 index 0000000000000000000000000000000000000000..8e0f6a077b6ec83af03703f25b4e4f58b6284cf9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/van-shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vault.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vault.svg new file mode 100644 index 0000000000000000000000000000000000000000..50a8e9c1212ab829a897a97537d433d1e48baa7b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vault.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vcard.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vcard.svg new file mode 100644 index 0000000000000000000000000000000000000000..9f4d6838995b5cae95155fc281981e048eb55efc --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vcard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vector-polygon.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vector-polygon.svg new file mode 100644 index 0000000000000000000000000000000000000000..eebae8f5e68580fdd72d57f00c73cbf728d65cbb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vector-polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus-double.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus-double.svg new file mode 100644 index 0000000000000000000000000000000000000000..606f6731c161d37ce312f8207a3807172f6a8566 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus-mars.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus-mars.svg new file mode 100644 index 0000000000000000000000000000000000000000..ddb586c45ae8b9dc4bbb88cf950720facb383131 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus-mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus.svg new file mode 100644 index 0000000000000000000000000000000000000000..0a417a6b76a047860f32c98c4c0bf4f9dcba5879 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vest-patches.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vest-patches.svg new file mode 100644 index 0000000000000000000000000000000000000000..dc3c42e9ee0a036164d92a4a3e6d5acf39da91e7 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vest-patches.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vest.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vest.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb6a848142cb7b08aa85bbf5df2e045a70a1d8e2 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial-circle-check.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial-circle-check.svg new file mode 100644 index 0000000000000000000000000000000000000000..630ba70a845c0bc4772d9dbe129760069c38c1cf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial-virus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial-virus.svg new file mode 100644 index 0000000000000000000000000000000000000000..389ace8c1f2c4381ca1d1e833ac94791fb06da51 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial.svg new file mode 100644 index 0000000000000000000000000000000000000000..ae8e051070c43ab02dce34926589f540baddd0c0 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vials.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vials.svg new file mode 100644 index 0000000000000000000000000000000000000000..f3276db3d4da00465e0d4675f776812148464dbf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vials.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video-camera.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video-camera.svg new file mode 100644 index 0000000000000000000000000000000000000000..8895bb942a43601b96ed463fa496f6216615055f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..30e191667c283c72466e8bdb579a980da89a4ae1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video.svg new file mode 100644 index 0000000000000000000000000000000000000000..8895bb942a43601b96ed463fa496f6216615055f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vihara.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vihara.svg new file mode 100644 index 0000000000000000000000000000000000000000..b2276c3ddf13fd4f6cd310091dcad9d83f92f258 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vihara.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..8349c09037647d471d8c0fe90207d94ba3896dfa --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-covid.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-covid.svg new file mode 100644 index 0000000000000000000000000000000000000000..a93959591da3c8799898185e6edaad5815ade39e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-covid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-slash.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-slash.svg new file mode 100644 index 0000000000000000000000000000000000000000..371f2e8a4edf909a278d1f50db51193181a646bb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus.svg new file mode 100644 index 0000000000000000000000000000000000000000..4000e787072e456c62a61b761497d72875244962 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/viruses.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/viruses.svg new file mode 100644 index 0000000000000000000000000000000000000000..c100302eec6120fee274c3ca22e266819a05bb4d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/viruses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/voicemail.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/voicemail.svg new file mode 100644 index 0000000000000000000000000000000000000000..35f59daf3059e63faee3cc20dc55ed7df4fd9d36 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volcano.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volcano.svg new file mode 100644 index 0000000000000000000000000000000000000000..473f9b3b7ac0013e98007201ad66d94cfc6a2507 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volcano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volleyball-ball.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volleyball-ball.svg new file mode 100644 index 0000000000000000000000000000000000000000..28f98ff8cc2ee7f3de9936e6a7501b7ae29d5d89 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volleyball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volleyball.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volleyball.svg new file mode 100644 index 0000000000000000000000000000000000000000..28f98ff8cc2ee7f3de9936e6a7501b7ae29d5d89 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volleyball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-control-phone.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-control-phone.svg new file mode 100644 index 0000000000000000000000000000000000000000..26824874bf4f780a2578595732c57655efc5a078 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-control-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-down.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-down.svg new file mode 100644 index 0000000000000000000000000000000000000000..c3c807288d658b76c024079787f30aadd823a49d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-high.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-high.svg new file mode 100644 index 0000000000000000000000000000000000000000..439e75221ef83e3bc4a4b2e39bd983d233059cca --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-low.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-low.svg new file mode 100644 index 0000000000000000000000000000000000000000..c3c807288d658b76c024079787f30aadd823a49d --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-mute.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-mute.svg new file mode 100644 index 0000000000000000000000000000000000000000..447fa60867e0e603574a3df5c1a16c35854e9401 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-off.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-off.svg new file mode 100644 index 0000000000000000000000000000000000000000..e9d8fcc75825d74b502469056da52bffb86f508f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-times.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-times.svg new file mode 100644 index 0000000000000000000000000000000000000000..447fa60867e0e603574a3df5c1a16c35854e9401 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-up.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-up.svg new file mode 100644 index 0000000000000000000000000000000000000000..439e75221ef83e3bc4a4b2e39bd983d233059cca --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..447fa60867e0e603574a3df5c1a16c35854e9401 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/volume-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vote-yea.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vote-yea.svg new file mode 100644 index 0000000000000000000000000000000000000000..fac86b6b83d4cc69a9c405e0cac5850f97b10e63 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vote-yea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vr-cardboard.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vr-cardboard.svg new file mode 100644 index 0000000000000000000000000000000000000000..eff08fe23440db4026942a9bc38c66736fce71cf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/vr-cardboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/w.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/w.svg new file mode 100644 index 0000000000000000000000000000000000000000..12dc2722fb7c596ef788ca991741fcc8eee63900 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/walkie-talkie.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/walkie-talkie.svg new file mode 100644 index 0000000000000000000000000000000000000000..f219440e44b549235e57f4c217d1c24707d64456 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/walkie-talkie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/walking.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/walking.svg new file mode 100644 index 0000000000000000000000000000000000000000..47de22f57a44cf0fdfbc3626b24a5b022366f05c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/walking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wallet.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wallet.svg new file mode 100644 index 0000000000000000000000000000000000000000..ed45bd9816467decc38e557020ecbb72efb52f26 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg new file mode 100644 index 0000000000000000000000000000000000000000..c89f7b55191dd7ed41c2dbe2f6de5c5a15340052 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-magic.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-magic.svg new file mode 100644 index 0000000000000000000000000000000000000000..51ad896aeb8db38746fb5aeede3c4bf8f489dcfb --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-magic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-sparkles.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-sparkles.svg new file mode 100644 index 0000000000000000000000000000000000000000..ec5223d4b6369d81dd2d3f4b5d93cfa74ec68c9a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wand-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/warehouse.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/warehouse.svg new file mode 100644 index 0000000000000000000000000000000000000000..cbedc53021d9c564ffb6b52960bf3de6941cf807 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/warehouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/warning.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/warning.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef7c9258a962449de76c4ee37441654db47e47c5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/water-ladder.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/water-ladder.svg new file mode 100644 index 0000000000000000000000000000000000000000..dbd2503a9b9daa67d511fdf0e2bd1b9f9ddab80a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/water-ladder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/water.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/water.svg new file mode 100644 index 0000000000000000000000000000000000000000..3de92205a721dda4a8af5bd21b7274b057f59f25 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wave-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wave-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..174d6d76302914e408d246e5434c4d5c02ed895a --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wave-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/web-awesome.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/web-awesome.svg new file mode 100644 index 0000000000000000000000000000000000000000..3cefbe131ad1746c3cdf20a9f04a28a4fe3ebc94 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/web-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight-hanging.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight-hanging.svg new file mode 100644 index 0000000000000000000000000000000000000000..9658e205e14a3930d44f3e8c270241e9cdbfd650 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight-hanging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight-scale.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight-scale.svg new file mode 100644 index 0000000000000000000000000000000000000000..5da7a0d7db6d65f6d6b694735d94f613277ba77c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight-scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight.svg new file mode 100644 index 0000000000000000000000000000000000000000..5da7a0d7db6d65f6d6b694735d94f613277ba77c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb5d103305c24c315d4a943695947bb8bf62c8cf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg new file mode 100644 index 0000000000000000000000000000000000000000..cae5da72154d44534a7f5f735d7205741351f98b --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-awn.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-awn.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb5d103305c24c315d4a943695947bb8bf62c8cf --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheat-awn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..ce2a507a6a31db941229ca70d42006157f186c73 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair-move.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair-move.svg new file mode 100644 index 0000000000000000000000000000000000000000..ce2a507a6a31db941229ca70d42006157f186c73 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair.svg new file mode 100644 index 0000000000000000000000000000000000000000..737d2732365a604161460a04d318ed3ebc635d64 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/whiskey-glass.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/whiskey-glass.svg new file mode 100644 index 0000000000000000000000000000000000000000..cba9cff29ea21a9b125ce66132d5eb1f956c64e8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/whiskey-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi-3.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi-3.svg new file mode 100644 index 0000000000000000000000000000000000000000..aec4a9df282847f26e06a5a809a0103d534baf3f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi-strong.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi-strong.svg new file mode 100644 index 0000000000000000000000000000000000000000..aec4a9df282847f26e06a5a809a0103d534baf3f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi-strong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi.svg new file mode 100644 index 0000000000000000000000000000000000000000..aec4a9df282847f26e06a5a809a0103d534baf3f --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wind.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wind.svg new file mode 100644 index 0000000000000000000000000000000000000000..4367c545d3da8e177d76ee51cd11e193618ecd98 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-close.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-close.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a2d3b9acc46f3b73f7648858a8057b2fb5b50b1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-maximize.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-maximize.svg new file mode 100644 index 0000000000000000000000000000000000000000..8a2b20fbcc4d72de58b8e9b2fed508da4ee02cb5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-minimize.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-minimize.svg new file mode 100644 index 0000000000000000000000000000000000000000..a06c99d636db23446564e48fa07c41ff399ba82c --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-restore.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-restore.svg new file mode 100644 index 0000000000000000000000000000000000000000..a058d6e231d18519525fd7c6657e7c82a8fcbc58 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-bottle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-bottle.svg new file mode 100644 index 0000000000000000000000000000000000000000..e0bac6588965a9699438c1088159609c4b43e208 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg new file mode 100644 index 0000000000000000000000000000000000000000..ed6239a802cb80e776bbe04f64dfb39cca1ba0b8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg new file mode 100644 index 0000000000000000000000000000000000000000..ed6239a802cb80e776bbe04f64dfb39cca1ba0b8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass.svg new file mode 100644 index 0000000000000000000000000000000000000000..49077d90b35a50c272ebdcd8040e644bd4f12bc5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wine-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/won-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/won-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..919bc7f9127f07de55c66c7e33c4bfd9cd972dd9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/won-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/won.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/won.svg new file mode 100644 index 0000000000000000000000000000000000000000..919bc7f9127f07de55c66c7e33c4bfd9cd972dd9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/won.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/worm.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/worm.svg new file mode 100644 index 0000000000000000000000000000000000000000..e1a29f110e39c768f5a0e54607cf4832db3c43c8 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/worm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wrench.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wrench.svg new file mode 100644 index 0000000000000000000000000000000000000000..819bd4c0c735e3d4d85e79e59e1d0f51ddf875b5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/x-ray.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/x-ray.svg new file mode 100644 index 0000000000000000000000000000000000000000..5606f03b7ff7e9efb362df41d6089e49a135bfe9 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/x-ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/x.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/x.svg new file mode 100644 index 0000000000000000000000000000000000000000..d1f84e16cced774bb4a3c49bf15f44cd32b49e6e --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark-circle.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark-circle.svg new file mode 100644 index 0000000000000000000000000000000000000000..768113157a337af4cb7275940ebcc16e270a8dfd --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark-square.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark-square.svg new file mode 100644 index 0000000000000000000000000000000000000000..fad11195b1f59342aae1a6af0cb753809896ef52 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark.svg new file mode 100644 index 0000000000000000000000000000000000000000..7b28292913266d18cbcf38774c9fe5f05cfadfc1 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmarks-lines.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmarks-lines.svg new file mode 100644 index 0000000000000000000000000000000000000000..a1b20ab607976a528cf610692aeeb95898690110 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/xmarks-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/y.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/y.svg new file mode 100644 index 0000000000000000000000000000000000000000..0d35e3655ced29741f8182e0c794e9920ce13ae5 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/y.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yen-sign.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yen-sign.svg new file mode 100644 index 0000000000000000000000000000000000000000..eef5ca484c6cd33eeab7a4f74bcc4e351dc9e8af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yen-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yen.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yen.svg new file mode 100644 index 0000000000000000000000000000000000000000..eef5ca484c6cd33eeab7a4f74bcc4e351dc9e8af --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yin-yang.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yin-yang.svg new file mode 100644 index 0000000000000000000000000000000000000000..7edeada7a0f15dc5aa72e87b0c606779ecce61ae --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/yin-yang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/z.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/z.svg new file mode 100644 index 0000000000000000000000000000000000000000..4f795bb0372a584687b977233e72ea4c6a9211fa --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/zap.svg b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/zap.svg new file mode 100644 index 0000000000000000000000000000000000000000..78b617dd814d6a9ff555999d28122acc9d0517a3 --- /dev/null +++ b/micromamba_root/Lib/site-packages/material/templates/.icons/fontawesome/solid/zap.svg @@ -0,0 +1 @@ + \ No newline at end of file