ppt-master 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ppt_master-0.1.0/LICENSE +21 -0
- ppt_master-0.1.0/MANIFEST.in +2 -0
- ppt_master-0.1.0/PKG-INFO +406 -0
- ppt_master-0.1.0/README.md +372 -0
- ppt_master-0.1.0/cli.py +134 -0
- ppt_master-0.1.0/ppt_master.egg-info/PKG-INFO +406 -0
- ppt_master-0.1.0/ppt_master.egg-info/SOURCES.txt +11996 -0
- ppt_master-0.1.0/ppt_master.egg-info/dependency_links.txt +1 -0
- ppt_master-0.1.0/ppt_master.egg-info/entry_points.txt +2 -0
- ppt_master-0.1.0/ppt_master.egg-info/requires.txt +18 -0
- ppt_master-0.1.0/ppt_master.egg-info/top_level.txt +2 -0
- ppt_master-0.1.0/pyproject.toml +66 -0
- ppt_master-0.1.0/setup.cfg +4 -0
- ppt_master-0.1.0/skills/__init__.py +1 -0
- ppt_master-0.1.0/skills/ppt-master/__init__.py +1 -0
- ppt_master-0.1.0/skills/ppt-master/cli.py +125 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/README.md +132 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/__init__.py +1 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/analyze_images.py +584 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/animation_config.py +124 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/assets/bg_48.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/assets/bg_96.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/batch_validate.py +318 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/check_annotations.py +126 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/check_cli_sync.py +123 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/check_deps_sync.py +271 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/config.py +756 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/docs/conversion.md +164 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/docs/image.md +221 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/docs/project.md +128 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/docs/svg-pipeline.md +216 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/docs/troubleshooting.md +80 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/docs/update_spec.md +59 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/error_helper.py +446 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/finalize_svg.py +338 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/gemini_watermark_remover.py +230 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/generate_examples_index.py +245 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/__init__.py +1 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_bfl.py +179 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_common.py +249 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_fal.py +131 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_gemini.py +226 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_ideogram.py +156 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_minimax.py +210 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_modelscope.py +168 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_openai.py +453 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_openrouter.py +186 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_qwen.py +201 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_replicate.py +173 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_siliconflow.py +184 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_stability.py +147 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_volcengine.py +191 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_zhipu.py +190 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_gen.py +769 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_search.py +746 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/__init__.py +9 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_common.py +471 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_openverse.py +119 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_pexels.py +124 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_pixabay.py +129 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_wikimedia.py +196 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/latex_render.py +614 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/notes_to_audio.py +379 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_animations.py +659 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_template_import.py +151 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/__init__.py +13 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/color_resolver.py +347 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/converter.py +443 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/custgeom_to_svg.py +192 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/effect_to_svg.py +210 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/emu_units.py +223 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/fill_to_svg.py +393 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/ln_to_svg.py +234 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/ooxml_loader.py +375 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/pic_to_svg.py +354 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/prstgeom_to_svg.py +670 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/shape_walker.py +392 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/slide_to_svg.py +925 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/tbl_to_svg.py +401 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/txbody_to_svg.py +1145 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg.py +115 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/project_manager.py +906 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/project_utils.py +482 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/register_template.py +383 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/rotate_images.py +588 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/doc_to_md.py +984 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/excel_to_md.py +378 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/pdf_to_md.py +1114 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/ppt_to_md.py +646 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/web_to_md.py +806 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/__init__.py +2 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/annotations.py +338 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/server.py +939 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/static/app.js +2466 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/static/index.html +67 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/static/style.css +920 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/__init__.py +12 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/align_embed_images.py +447 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/crop_images.py +358 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/embed_icons.py +369 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/embed_images.py +265 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/fix_image_aspect.py +380 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/flatten_tspan.py +740 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/svg_rect_to_path.py +337 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_position_calculator.py +1524 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_quality_checker.py +1491 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/__init__.py +17 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/animation_config.py +275 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_context.py +162 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_converter.py +573 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_elements.py +1942 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_paths.py +429 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_styles.py +656 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_utils.py +475 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_builder.py +993 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_cli.py +603 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_dimensions.py +148 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_discovery.py +101 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_media.py +160 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_narration.py +221 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_notes.py +159 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_slide_xml.py +136 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/tspan_flattener.py +48 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/use_expander.py +127 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx.py +17 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/__init__.py +26 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/analyzer.py +228 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/applier.py +178 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/chart_fill.py +366 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/chart_read.py +99 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/checker.py +450 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/cli.py +164 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/clone.py +176 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/notes.py +114 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/ooxml.py +229 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/package.py +155 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/scaffolder.py +75 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/selectors.py +65 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/table_fill.py +59 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/text_fill.py +117 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/transitions.py +108 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx.py +26 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_import/__init__.py +1 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/template_import/manifest.py +750 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/total_md_split.py +367 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/__init__.py +2 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_common.py +70 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_cosyvoice.py +83 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_edge.py +86 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_elevenlabs.py +108 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_minimax.py +93 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_qwen.py +75 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/update_repo.py +151 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/update_spec.py +252 -0
- ppt_master-0.1.0/skills/ppt-master/scripts/visual_review.py +305 -0
- ppt_master-0.1.0/skills/ppt-master/templates/README.md +67 -0
- ppt_master-0.1.0/skills/ppt-master/templates/__init__.py +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/README.md +56 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/anthropic_claude_lockup.svg +2 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/anthropic_mark.svg +2 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/claude_wordmark.svg +2 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/design_spec.md +71 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/brands_index.json +10 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/google/design_spec.md +66 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/google/google_g_logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/brands/google/google_wordmark.svg +2 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/CHART_STYLE_GUIDE.md +643 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/README.md +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/agenda_list.svg +139 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/arc_anchored_list.svg +90 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/area_chart.svg +196 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/bar_chart.svg +135 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/basic_table.svg +78 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/box_plot_chart.svg +245 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/bubble_chart.svg +257 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/bullet_chart.svg +164 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/butterfly_chart.svg +192 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/charts_index.json +226 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/chevron_chain_with_tail.svg +221 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/chevron_process.svg +218 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/circular_stages.svg +157 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/client_server_flow.svg +183 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/comparison_columns.svg +131 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/comparison_table.svg +147 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/concentric_circles.svg +239 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/consulting_table.svg +130 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/donut_chart.svg +192 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/dual_axis_line_chart.svg +203 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/dumbbell_chart.svg +159 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/feature_matrix_table.svg +86 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/financial_statement_table.svg +103 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/fishbone_diagram.svg +148 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/funnel_chart.svg +141 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/gantt_chart.svg +197 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/gauge_chart.svg +196 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/grouped_bar_chart.svg +161 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/harvey_balls_table.svg +113 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/heatmap_chart.svg +181 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/horizontal_bar_chart.svg +129 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/hub_inward_arrows.svg +165 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/hub_spoke.svg +187 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/icon_grid.svg +168 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/isometric_stairs.svg +116 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/journey_map.svg +99 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/kpi_cards.svg +109 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/labeled_card.svg +79 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/layered_architecture.svg +201 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/line_chart.svg +141 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/matrix_2x2.svg +172 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/mind_map.svg +173 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/module_composition.svg +154 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/numbered_steps.svg +148 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/pareto_chart.svg +126 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/pie_chart.svg +112 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/pipeline_with_stages.svg +173 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/process_flow.svg +119 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/progress_bar_chart.svg +143 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/project_schedule_table.svg +112 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/pros_cons_chart.svg +118 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/pyramid_chart.svg +118 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/pyramid_isometric.svg +182 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/quadrant_bubble_scatter.svg +75 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/quadrant_text_bullets.svg +257 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/radar_chart.svg +140 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/roadmap_vertical.svg +145 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/sankey_chart.svg +136 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/scatter_chart.svg +146 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/segmented_wheel.svg +148 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/snake_flow.svg +170 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/stacked_area_chart.svg +163 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/stacked_bar_chart.svg +163 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/team_roster.svg +106 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/timeline.svg +299 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/top_down_tree.svg +174 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/treemap_chart.svg +132 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/venn_diagram.svg +106 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/vertical_list.svg +122 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/vertical_pillars.svg +110 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/waterfall_chart.svg +132 -0
- ppt_master-0.1.0/skills/ppt-master/templates/charts/word_cloud.svg +99 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks/README.md +72 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks/decks_index.json +50 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/01_cover.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/02_chapter.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/02_toc.svg +49 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/03_content.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/04_ending.svg +18 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/design_spec.md +220 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/footer_ribbon.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/header_brand.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/skyline_bg.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/slogan_red.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/top_emblem.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/01_cover.svg +100 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_chapter.svg +81 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_toc.svg +112 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/03_content.svg +57 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/04_ending.svg +92 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/design_spec.md +228 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//345/215/216/344/270/234/351/231/242logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//347/224/265/345/273/272logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/01_cover.svg +90 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_chapter.svg +61 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_toc.svg +131 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/03_content.svg +77 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/04_ending.svg +78 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/design_spec.md +196 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//345/215/216/344/270/234/351/231/242logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//347/224/265/345/273/272logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/01_cover.svg +83 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_chapter.svg +55 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_toc.svg +110 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/03_content.svg +62 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/04_ending.svg +60 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/design_spec.md +185 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/217/263/344/270/212/350/247/222 logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/244/247/345/236/213 logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/01_cover.svg +49 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_chapter.svg +47 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_toc.svg +73 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/03_content.svg +57 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/04_ending.svg +62 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/design_spec.md +233 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/217/263/344/270/212/350/247/222 logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/244/247/345/236/213 logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/01_cover.svg +89 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_chapter.svg +55 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_toc.svg +92 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/03_content.svg +56 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/04_ending.svg +64 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/design_spec.md +189 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/217/263/344/270/212/350/247/222 logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/244/247/345/236/213 logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/01_cover.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/02_chapter.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/02_toc.svg +47 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/03_content.svg +71 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/04_ending.svg +38 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/cover_bg.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/design_spec.md +238 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_crm_banner.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_dark.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_white.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/page_header_bg.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/ref_content_bg.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/01_cover.svg +74 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/02_chapter.svg +52 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/02_toc.svg +80 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/03_content.svg +56 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/04_ending.svg +62 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/design_spec.md +251 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo2.png +0 -0
- ppt_master-0.1.0/skills/ppt-master/templates/design_spec_reference.md +348 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/README.md +89 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/__init__.py +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/a.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/accessibility.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/activity.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/address-card.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/alarm-clock.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/alien.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-bottom.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-center-horizontal.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-center-vertical.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-left.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-right.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-center.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-justify.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-left.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-right.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-top.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/anchor.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-down.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-left.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-right.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-up.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/aperture.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/aquarius.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/archive-box.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/aries.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-from-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-short-wide.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-to-bracket.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-to-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-wide-short.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left-arrow-right.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left-from-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left-to-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-from-bracket.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-from-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-to-bracket.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-to-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-rotate-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-rotate-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-trend-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-trend-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-down-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-down-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-left-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-left-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-right-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-right-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-up-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-up-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-down-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-down-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-left-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-left-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-right-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-right-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-up-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-up-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-arrow-down.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-from-bracket.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-from-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-right-from-square.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-short-wide.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-to-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-wide-short.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-left-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-repeat.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-rotate-clockwise.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-rotate-counter-clockwise.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-up-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/at.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/axe.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/b.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/badge-check.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/badge.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ban.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/baseball-bat.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/baseball.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/basketball.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-charge.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-empty.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-full.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-half.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bed.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bee.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bell-slash.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bell.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bicycle.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bishop.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/block-quote.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bluetooth.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bold.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bolt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bomb.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bone.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/book-open.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/book.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bookmark-plus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bookmark.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/books.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bottle.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bow-and-arrow.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bowl.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/box.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bridge.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/british-pound.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/browser.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/brush.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bug.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/building.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bullhorn.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/burger.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/butterfly.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/c.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cake-slice.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cake.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/calculator.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/calendar.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/camera-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/camera.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cancer.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/capricorn.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/car.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/card-stack.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/castle.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cat.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chair.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chart-bar.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chart-line.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chart-pie.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/checkmark.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-3-dots-horizontal.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-3-dots-vertical.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-checkmark.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-divide.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-equals.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-exclamation.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-half.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-info.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-minus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-0.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-1.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-2.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-3.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-4.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-5.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-6.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-7.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-8.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-9.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-pause.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-play.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-plus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-question.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-stop.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-user.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-x.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/citrus-slice.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/city.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/clipboard.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/clock.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/closed-captioning.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/clothes-hanger.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-arrow-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-arrow-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-fog.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-lightning.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-rain.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-snow.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/club.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cocktail.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/code-block.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/code.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cog.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/coin.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/columns.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/command.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comment-dots.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comment.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comments-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comments.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/compact-disc.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/compass-drafting.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/compass.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/component.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/copy.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/copyright.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/credit-card.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crop.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crosshairs.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crown.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crystal-ball.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cube.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cupcake.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/curling-stone.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cursor-click.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cursor.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/d-pad.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/d.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/database.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/delete.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/desktop.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond-exclamation.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond-half.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond-shape.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dice.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-1.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-2.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-3.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-4.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-5.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-6.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/distribute-horizontal.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/distribute-vertical.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/divide.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dna.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dog.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dollar.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/door-open.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/door.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dots-horizontal.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dots-vertical.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/droplet.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/e.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ear-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ear.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eject.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/envelope.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/equals.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/euro.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/exclude.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eye-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eye.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eyedropper.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/f.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-angry.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-cry.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-id.svg +9 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-laugh.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-meh.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-melt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-no-mouth.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-open-mouth.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-sad.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-smile.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/factory.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fast-forward.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/file-plus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/file.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/files.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/film.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/filter.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fire.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fireplace.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fish.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/flag.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/floppy-disk.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/flower.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/folder-open.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/folder.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/folders.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/font-case.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/football.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/frame.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/funnel.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/g.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/game-controller.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gauge-high.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gauge-low.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gauge-medium.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gem.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gemini.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ghost.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gift.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-branch.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-commit.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-compare.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-fork.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-merge.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/glasses.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/globe.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grid-masonry.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grid.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grip-horizontal.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grip-vertical.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/group.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/h.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hammer.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hand-tap.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hand.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hashtag.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/head-side.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/headlights.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/headphones.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/heart-broken.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/heart-half.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/heart.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hexagon.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hockey.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/home-1.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/home.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hospital.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hourglass-empty.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hourglass-half-bottom.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hourglass-half-top.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/i-cursor.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/i.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ice-cream.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/image.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/images.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/inbox.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/indent.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/intersect.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/italic.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/j.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/jersey.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/joystick.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/k.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/key-skeleton.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/key.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/keyboard.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/keyhole.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/king.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/knight.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/l.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/label.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ladder.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lamp.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/language.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/laptop.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/laundry-machine.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/layers.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/leaf.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/leo.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/libra.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/life-ring.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lightbulb.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lines-magnifying-glass.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lines-plus.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lines.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/link.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/list-ordered.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/list.svg +10 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/location-arrow-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/location-arrow.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/location-target.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lock-closed.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lock-open.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/m.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/magnet.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/magnifying-glass.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mailbox.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/map-pin.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/map.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/maximize.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/meeple.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/megaphone.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/meteor.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/microchip.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/microphone-slash.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/microphone.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/minimize.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/minus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mobile.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/money.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/moon-cloud.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/moon-fog.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/moon.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mortarboard.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mountains.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mouse.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/move-down.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/move-up.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mug.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/museum.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/music.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/n.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/newspaper.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-0-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-0.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-1-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-1.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-2-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-2.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-3-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-3.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-4-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-4.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-5-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-5.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-6-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-6.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-7-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-7.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-8-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-8.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-9-alt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-9.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/nut.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/o.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/octagon-exclamation.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/octagon.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/option.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/outdent.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/outlet.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/p.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paint-bucket.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paint-roller.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/painting.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/palette.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pants.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paper-plane.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paperclip.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pause.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paw.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pawn.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pen-nib.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pencil-square.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pencil.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/percent.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/person-walking.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/person-wave.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/person.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/phone-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/phone.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pills.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pisces.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pizza.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/plane.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/planet.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/play-pause.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/play.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/playing-card.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/plug.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/plus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-down.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-up.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/poop.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/potion-empty.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/potion-full.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/potion-half.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/power.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/printer.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/q.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/queen.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/question-mark.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/quote-left.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/quote-right.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/radar.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/radioactive.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rainbow-cloud.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rainbow.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/receipt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/recycle.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/reflect-horizontal.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/reflect-vertical.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rewind.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/robot.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rocket.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rook.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/route.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rows.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rss.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ruler.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/s.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sagittarius.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scissors.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scooter.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scorpio.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/screencast.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/screw.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/screwdriver.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scribble.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/seedling.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/server.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/service-bell.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/share-nodes.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shield-check.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shield-half.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shield.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shift.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ship.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shirt.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shoe.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shop.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shopping-bag.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shopping-basket.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shopping-cart.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shuffle.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sidebar-left.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sidebar-right.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-fair.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-good.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-slash.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-weak.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signpost.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sink.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/skip-backward.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/skip-forward.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/skull.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sliders.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/smartwatch.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/snow.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/soccer.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/soda.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sort.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/spade.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sparkles.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-checkmark.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-divide.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-equals.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-minus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-plus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-user.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-x.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/squares-horizontal.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/squares-vertical.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/star-half.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/star.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sticky-note.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/stop.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/stopwatch.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/strikethrough.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/subtract.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/suitcase.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sun-cloud.svg +8 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sun-fog.svg +11 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sun.svg +11 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sunglasses.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/swatches.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sword.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/swords-crossed.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/t.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/table.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tag.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/target-arrow.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/target.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/taurus.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/temperature-high.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/temperature-low.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/temperature-medium.svg +7 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tennis-ball.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/terminal.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/text.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/thumbs-down.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/thumbs-up.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/thumbtack.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ticket.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/toggle-circle-left.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/toggle-circle-right.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/toolbox.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/traffic-cone.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/traffic-light.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/train.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/trash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tree-evergreen.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tree.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/triangle-exclamation.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/triangle.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/trophy.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/truck.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tv-retro.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tv.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/u.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ufo.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/umbrella.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/underline.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/unite.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/user.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/users.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/utensils.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/v.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-circle.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-curve.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-line.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-square.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/video-camera-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/video-camera.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/video.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/virgo.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-high.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-low.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-none.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-x.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vr.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/w.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wallet.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wand-with-sparkles.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/watch.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/water.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/waveform.svg +6 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wheelchair.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi-low.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi-medium.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi-slash.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wind.svg +4 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/window.svg +5 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wine-glass.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wrench.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/x-1.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/x.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/y.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/yen.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/z.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/zoom-in.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/zoom-out.svg +3 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/address-book.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/air-traffic-control.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-in-flight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-landing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-takeoff.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-tilt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/alarm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/alien.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-bottom-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-bottom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-horizontal-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-vertical-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-left-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-right-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-top-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-top.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/amazon-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/anchor-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/anchor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/android-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/angular-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/aperture.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/app-store-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/app-window.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/apple-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/apple-podcasts-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/archive-box.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/archive-tray.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/archive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/armchair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-arc-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-arc-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-double-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-double-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-down-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-down-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-left-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-left-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-right-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-right-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-clockwise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-counter-clockwise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-down-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-down-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-down-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-down-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-in.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-out.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-down-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-down-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-left-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-left-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-right-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-right-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-up-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-up-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-clockwise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-counter-clockwise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-down-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-cardinal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-line-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-line-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-left-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-merge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-cardinal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-line-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-line-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-split.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/article-medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/article-ny-times.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/article.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/asterisk-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/asterisk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/at.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/atom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/baby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/backpack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/backspace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bag-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/balloon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bandaids.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/barbell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/barcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/barricade.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/baseball-cap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/baseball.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/basket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/basketball.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bathtub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-charging-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-charging.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-empty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-full.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-plus-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-empty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-full.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-warning-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-warning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/beer-bottle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/beer-stein.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/behance-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-ringing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-ringing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-z.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-z.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bezier-curve.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bicycle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/binoculars.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bird.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-connected.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/boat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book-bookmark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book-open-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmark-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmarks-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmarks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/books.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/boot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bounding-box.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bowl-food.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-angle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-curly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-round.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brain.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brandy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bridge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/briefcase-metal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/briefcase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/broadcast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/broom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/browser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/browsers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bug-beetle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bug-droid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bug.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/buildings.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/butterfly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cactus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calculator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-blank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-check.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/call-bell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera-rotate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/campfire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/car-profile.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/car-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/car.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cardholder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cards.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-up-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-up-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/carrot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cassette-tape.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/castle-turret.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-full.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-none.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/certificate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chalkboard-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chalkboard-teacher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chalkboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/champagne.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/charging-station.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-bar-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-bar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-donut.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-line-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-line-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-line.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-pie-slice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-pie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-polar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-scatter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-centered-dots.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-centered-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-centered.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-circle-dots.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-circle-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-dots.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop-dots.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chats-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chats-teardrop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chats.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-fat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-square-offset.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/checks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/church.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-dashed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-half-tilt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-half.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-notch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circles-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circles-three-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circles-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circuitry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clipboard-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clipboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-afternoon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-clockwise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-countdown.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-counter-clockwise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/closed-captioning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-arrow-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-arrow-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-check.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-fog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-lightning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-moon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-rain.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-snow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-sun.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-warning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/club.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coat-hanger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coda-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/code-block.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/code-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/code.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/codepen-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/codesandbox-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coffee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coin-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coins.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/columns.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/command.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/compass-tool.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/compass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/computer-tower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/confetti.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/contactless-payment.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/control.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cookie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cooking-pot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copy-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copyleft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copyright.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/corners-in.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/corners-out.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/couch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cpu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/credit-card.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cross.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crosshair-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crosshair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crown-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crown.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cube-focus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cube-transparent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-btc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-circle-dollar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-cny.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-dollar-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-dollar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-eth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-eur.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-gbp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-inr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-jpy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-krw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-kzt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-ngn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-rub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cursor-click.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cursor-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cursor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cylinder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/database.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/desktop-tower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/desktop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/detective.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dev-to-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-mobile-camera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-mobile-speaker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-mobile.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-tablet-camera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-tablet-speaker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-tablet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/devices.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/diamond.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/diamonds-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-five.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-one.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-six.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-two.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/disc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/discord-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/divide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/door-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/door.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dot-outline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-nine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-six-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-six.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-circle-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-outline-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-outline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/download-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/download.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dribbble-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/drop-half-bottom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/drop-half.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/drop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dropbox-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ear-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/egg-crack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/egg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eject-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/elevator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/engine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope-simple-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/equalizer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/equals.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eraser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/escalator-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/escalator-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/exam.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/exclude-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/exclude.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/export.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eye-closed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eye-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eye.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eyedropper-sample.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eyedropper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eyeglasses.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/face-mask.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/facebook-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/factory.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/faders-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/faders.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fast-forward-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fast-forward.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/feather.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/figma-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-archive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-arrow-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-arrow-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-audio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-cloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-code.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-css.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-csv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-dashed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-doc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-html.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-image.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-jpg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-js.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-jsx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-lock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-magnifying-glass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-pdf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-png.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-ppt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-rs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-sql.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-svg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-text.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-ts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-tsx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-video.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-vue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-xls.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-zip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/files.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-reel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-script.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-slate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-strip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fingerprint-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fingerprint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/finn-the-human.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fire-extinguisher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fire-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/first-aid-kit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/first-aid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fish-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fish.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag-banner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag-checkered.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag-pennant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flame.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flashlight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flask.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/floppy-disk-back.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/floppy-disk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flow-arrow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flower-lotus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flower-tulip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flying-saucer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-dashed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-lock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-dashed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-lock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-star.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-user.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-star.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-user.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folders.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/football.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/footprints.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fork-knife.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/frame-corners.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/framer-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/function.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/funnel-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/funnel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/game-controller.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/garage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gas-can.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gas-pump.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gauge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gavel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gear-fine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gear-six.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-female.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-intersex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-male.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-neuter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-nonbinary.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-transgender.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ghost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gif.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gift.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-branch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-commit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-diff.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-fork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-merge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-pull-request.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/github-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gitlab-logo-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gitlab-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-hemisphere-east.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-hemisphere-west.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-stand.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/goggles.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/goodreads-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-cardboard-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-chrome-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-drive-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-photos-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-play-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-podcasts-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gradient.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/graduation-cap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grains-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grains.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/graph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grid-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grid-nine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/guitar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hamburger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hammer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-coins.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-eye.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-fist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-grabbing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-heart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-palm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-pointing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-soap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-swipe-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-swipe-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-tap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-waving.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/handbag-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/handbag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hands-clapping.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hands-praying.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/handshake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hard-drive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hard-drives.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hash-straight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/headlights.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/headphones.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/headset.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-break.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-half.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-straight-break.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-straight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heartbeat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hexagon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/high-heel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/highlighter-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hoodie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/horse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/house-line.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/house-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/house.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ice-cream.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/identification-badge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/identification-card.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/image-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/image.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/images-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/images.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/infinity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/info.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/instagram-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/intersect-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/intersect-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/intersect.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/jeep.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/kanban.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/key-return.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/key.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/keyboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/keyhole.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/knife.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ladder-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ladder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/laptop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/layout.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/leaf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lifebuoy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightbulb-filament.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightbulb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lighthouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightning-a.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightning-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/line-segment.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/line-segments.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-break.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple-break.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple-horizontal-break.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/linkedin-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/linux-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-bullets.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-checks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-dashes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-magnifying-glass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-numbers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-key-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-key.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-laminated-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-laminated.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-simple-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lockers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magic-wand.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnet-straight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/map-pin-line.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/map-pin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/map-trifold.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/marker-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/martini.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mask-happy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mask-sad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/math-operations.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/medal-military.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/medal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/medium-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/megaphone-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/megaphone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/messenger-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/meta-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/metronome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microphone-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microphone-stage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microphone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-excel-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-outlook-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-powerpoint-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-teams-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-word-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/minus-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/minus-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/money.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/monitor-play.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/monitor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moon-stars.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moped-front.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moped.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mosque.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/motorcycle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mountains.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mouse-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-note-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-note.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-notes-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-notes-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-notes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/navigation-arrow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/needle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/newspaper-clipping.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/newspaper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notches.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/note-blank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/note-pencil.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/note.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notebook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notepad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notification.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notion-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-eight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-five.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-nine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-one.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-seven.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-six.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-two.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-zero.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-eight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-five.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-nine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-one.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-seven.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-six.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-eight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-five.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-nine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-one.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-seven.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-six.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-two.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-zero.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-two.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-zero.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/nut.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ny-times-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/octagon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/office-chair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/option.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/orange-slice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/package.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-brush-broad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-brush-household.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-brush.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-bucket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-roller.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/palette.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pants.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paper-plane-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paper-plane-tilt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paper-plane.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paperclip-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paperclip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/parachute.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paragraph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/parallelogram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/park.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/password.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/path.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/patreon-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pause-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pause.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paw-print.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paypal-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/peace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pen-nib-straight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pen-nib.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-line.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple-line.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pentagram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pepper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/percent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-arms-spread.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-bike.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-run.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-throw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-walk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/perspective.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-call.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-disconnect.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-incoming.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-outgoing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phosphor-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/piano-keys.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/picture-in-picture.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/piggy-bank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pill.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pinterest-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pinwheel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pizza.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/placeholder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/planet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/play-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/play-pause.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/play.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/playlist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plug-charging.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plug.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plugs-connected.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plugs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/poker-chip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/police-car.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/polygon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/popcorn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/potted-plant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/power.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/prescription.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/presentation-chart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/presentation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/printer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/prohibit-inset.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/prohibit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/projector-screen-chart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/projector-screen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pulse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin-simple-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/puzzle-piece.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/qr-code.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/question.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/queue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/quotes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radio-button.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radioactive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rainbow-cloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rainbow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/read-cv-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/receipt-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/receipt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/record.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rectangle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/recycle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/reddit-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/repeat-once.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/repeat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rewind-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rewind.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/road-horizon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/robot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rocket-launch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rocket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rows.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rss-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rug.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ruler.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scales.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scissors.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scooter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/screencast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scribble-loop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scroll.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal-check.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal-question.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal-warning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-all.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-background.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-foreground.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-inverse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shapes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/share-fat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/share-network.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/share.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-check.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-checkered.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-chevron.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-star.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-warning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shirt-folded.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shooting-star.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-bag-open.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-bag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-cart-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-cart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shrimp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shuffle-angular.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shuffle-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shuffle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sidebar-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sidebar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sigma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sign-in.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sign-out.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/signature.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/signpost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sim-card.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/siren.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sketch-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-back-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-back.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-forward-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-forward.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skull.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/slack-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sliders-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sliders.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/slideshow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-angry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-blank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-meh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-nervous.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-sad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-sticker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-wink.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-x-eyes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/snapchat-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sneaker-move.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sneaker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/snowflake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/soccer-ball.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sort-ascending.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sort-descending.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/soundcloud-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spade.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sparkle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-hifi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-none.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-none.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spinner-gap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spinner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spiral.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/split-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/split-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spotify-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-half-bottom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-half.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-split-horizontal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-split-vertical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/squares-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stack-overflow-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stack-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stairs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-and-crescent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-half.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-of-david.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/steering-wheel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/steps.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stethoscope.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sticker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stool.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stop-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/storefront.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/strategy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stripe-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/student.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/subtitles.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/subtract-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/subtract.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/suitcase-rolling.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/suitcase-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/suitcase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sun-dim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sun-horizon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sun.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sunglasses.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/swap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/swatches.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/swimming-pool.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sword.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/synagogue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/syringe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/t-shirt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/table.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tabs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tag-chevron.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tag-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/target.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/taxi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/telegram-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/television-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/television.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tennis-ball.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/terminal-window.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/terminal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/test-tube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-a-underline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-aa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-center.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-justify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-b.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-columns.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-five.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-one.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-six.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-two.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-indent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-italic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-outdent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-strikethrough.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-t.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-underline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/textbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer-cold.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer-hot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thumbs-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thumbs-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ticket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tidal-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tiktok-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/timer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tipi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toggle-left.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toggle-right.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toilet-paper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toilet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toolbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tooth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tote-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tote.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trademark-registered.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trademark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/traffic-cone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/traffic-sign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/traffic-signal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/train-regional.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/train-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/train.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/translate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trash-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tray.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree-evergreen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree-palm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree-structure.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trend-down.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trend-up.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/triangle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trophy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/truck.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/twitch-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/twitter-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/umbrella-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/umbrella.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/unite-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/unite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/upload-simple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/upload.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/usb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle-gear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-focus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-gear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-list.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-minus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-plus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-rectangle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-switch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/users-four.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/users-three.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/users.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/van.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vault.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vibrate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/video-camera-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/video-camera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/video.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vignette.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vinyl-record.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/virtual-reality.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/virus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/voicemail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/volleyball.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wall.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wallet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warehouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning-diamond.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning-octagon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/watch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-sawtooth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-sine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-triangle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/waveform.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/waves.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/webcam-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/webcam.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/webhooks-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wechat-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/whatsapp-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wheelchair-motion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wheelchair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-high.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-low.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-none.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-slash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wind.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/windows-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wrench.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/x-circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/x-square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/yin-yang.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/youtube-logo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1001tracklists.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1and1.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1dot1dot1dot1.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1panel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1password.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/2fas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/2k.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/30secondsofcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/365datascience.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/3m.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/42.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/4chan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/4d.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/500px.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/7zip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/99designs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/9gag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abbott.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abbrobotstudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abbvie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abdownloadmanager.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aboutdotme.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abstract.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abusedotch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/academia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/accenture.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/accusoft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/accuweather.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/actigraph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/activeloop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/activision.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/activitypub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/actix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/actualbudget.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acura.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ada.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adafruit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adaway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adblock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adblockplus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/addydotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adguard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adidas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adminer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeacrobatreader.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeaftereffects.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeaudition.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobecreativecloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobedreamweaver.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobefonts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeillustrator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeindesign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobelightroom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobelightroomclassic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobephotoshop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobepremierepro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobexd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adonisjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adroll.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adventofcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adyen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aegisauthenticator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aerlingus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aeroflot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aeromexico.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aerospike.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aew.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/afdian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinitydesigner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinityphoto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinitypublisher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aframe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/afterpay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aftership.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/agora.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aib.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aidungeon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aiohttp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aiqfome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airasia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbnb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbrake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbyte.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aircall.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aircanada.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airchina.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airfrance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airindia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airplayaudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airplayvideo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airserbia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airtable.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airtel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airtransat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ajv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akamai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akasaair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akaunting.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akiflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alacritty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alamy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/albertheijn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alchemy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aldinord.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aldisud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alfaromeo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alfred.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/algolia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/algorand.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alibabacloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alibabadotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alienware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aliexpress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alipay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/allegro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alliedmodders.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/allocine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alltrails.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/almalinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alpinedotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alpinelinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alternativeto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alteryx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/altiumdesigner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alwaysdata.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonalexa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonapigateway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoncloudwatch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoncognito.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazondocumentdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazondynamodb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonec2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonecs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoneks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonelasticache.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonfiretv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazongames.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoniam.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonlumberyard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonluna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonmusic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonpay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonprime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonrds.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonredshift.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonroute53.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazons3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonsimpleemailservice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonsqs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonwebservices.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ameba.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/americanairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/americanexpress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amul.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anaconda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/analogue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/andela.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/android.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/androidauto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/androidstudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/angular.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anichart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anilist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/animalplanet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/animedotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ankermake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anki.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ansible.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/answer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ansys.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antdesign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antena3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antennapod.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anthropic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anycubic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anydesk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anytype.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aol.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apache.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheairflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheavro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecassandra.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecloudstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecordova.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecouchdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachedolphinscheduler.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachedoris.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachedruid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheecharts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheflink.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachefreemarker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachegroovy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheguacamole.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachehadoop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachehbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachehive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachejmeter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachekafka.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachekylin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachelucene.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachemaven.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachenetbeanside.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachenifi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheopenoffice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheparquet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachepdfbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachepulsar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacherocketmq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachesolr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachespark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachestorm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachesuperset.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachetomcat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aparat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apifox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apmterminals.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apollographql.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apostrophe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appgallery.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appimage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applearcade.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applemusic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applenews.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applepay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applepodcasts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appletv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appmanager.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appsignal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appsmith.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appstore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appveyor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appwrite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aqua.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aral.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arangodb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arcgis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/archicad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/archiveofourown.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/archlinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ardour.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arduino.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/argo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/argos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ariakit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arkecosystem.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arlo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/armkeil.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arstechnica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/artifacthub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/artixlinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/artstation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arxiv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asahilinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asciidoctor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asciinema.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aseprite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/askfm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/assemblyscript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asterisk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astonmartin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astra.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astral.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atandt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atari.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atlasos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atlassian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/auchan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audacity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audible.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audiobookshelf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audioboom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audiomack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audiotechnica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aurelia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autentique.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/auth0.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/authelia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/authentik.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/authy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autocad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autocannon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autodesk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autodeskmaya.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autodeskrevit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autohotkey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autoit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/automattic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autoprefixer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autozone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avajs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avaloniaui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avianca.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avira.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awesomelists.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awesomewm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awsamplify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awselasticloadbalancing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awsfargate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awslambda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awsorganizations.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awssecretsmanager.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awwwards.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/axios.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/axisbank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azureartifacts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azuredataexplorer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azuredevops.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azurefunctions.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azurepipelines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/b4x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/babel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/babelio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/babylondotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backblaze.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backbone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backbonedotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backendless.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backstage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backstage_casting.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/badoo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baidu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bakalari.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bamboo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bambulab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandcamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandlab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandrautomation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandsintown.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bankofamerica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/barclays.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baremetrics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/barmenia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/basecamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baserow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baseui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/basicattentiontoken.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bastyon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bata.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/battledotnet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bazel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beatport.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beats.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beatsbydre.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beatstars.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beekeeperstudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/behance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beijingsubway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bem.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bentley.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bento.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bentobox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bentoml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bereal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betfair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betterauth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betterdiscord.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betterstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bevy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigbasket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigbluebutton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigcartel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigcommerce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bilibili.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/billboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/binance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bioconductor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/biolink.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/biome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bisecthosting.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitbucket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcoin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcoincash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcoinsv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcomet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitdefender.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitrise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitsy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bittorrent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitwarden.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitwig.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/black.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blackberry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blackmagicdesign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blazemeter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blazor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blender.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blibli.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blockbench.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blockchaindotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blogger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bloglovin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blueprint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bluesky.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bluesound.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bluetooth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bmcsoftware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bmw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bnbchain.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boardgamegeek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boehringeringelheim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boeing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bohemiainteractive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bombardier.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookalope.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookbub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookingdotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookmeter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookmyshow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boosty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boots.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bootstrap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/borgbackup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bosch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bose.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/botblecms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boulanger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/box.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boxysvg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/braintree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/braintrust.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brandfetch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brandfolder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brave.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/breaker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brenntag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brevo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bricks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/britishairways.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/broadcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bruno.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bsd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bspwm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buddy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/budibase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buefy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buffer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bugatti.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bugcrowd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bugsnag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buhl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buildkite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/builtbybit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bukalapak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bulma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bun.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bungie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bunnydotnet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bunq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/burgerking.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/burpsuite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/burton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buymeacoffee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buysellads.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buzzfeed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bvg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/byjus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bytedance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/c.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cachet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cachyos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caddy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cadillac.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cafepress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caffeine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cairographics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cairometro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caixabank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cakephp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caldotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/calendly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/calibreweb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/campaignmonitor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/camunda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/canonical.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/canva.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/canvas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/capacitor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caprover.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cardano.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cardmarket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carlsberggroup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carrd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carrefour.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carthrottle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cashapp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/castbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/castorama.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/castro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caterpillar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cbc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cbs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ccc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ccleaner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cdprojekt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/celery.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/celestron.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/centos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ceph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cesium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chainguard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chainlink.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chakraui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/changedetection.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/channel4.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/charles.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chartdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chartmogul.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chatbot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chatwoot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/checkio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/checkmarx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/checkmk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chedraui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cheerio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chef.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chemex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chessdotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chevrolet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chianetwork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chinaeasternairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chinarailway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chinasouthernairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chocolatey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chromatic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chromecast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chromewebstore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chrysler.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chupachups.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cilium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cinema4d.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cinnamon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/circle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/circleci.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/circuitverse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cirrusci.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cisco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/citrix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/citroen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/civicrm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/civo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ckeditor4.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clarifai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/claris.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clarivate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/claude.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clerk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clevercloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clickhouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clickup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cliqz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clockify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clojure.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloud66.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudbees.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudcannon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudflare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudflarepages.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudflareworkers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudfoundry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudinary.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudnativebuild.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudron.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudsmith.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudways.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clubforce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clubhouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clyp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cmake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cncf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cnes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cnet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cnn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cobalt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cocacola.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cockpit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cockroachlabs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cocoapods.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cocos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codacy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeberg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeblocks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codecademy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeceptjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codechef.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeclimate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codecov.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codecrafters.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codefactor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeforces.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codefresh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeigniter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codemagic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codementor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codemirror.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codenewbie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codepen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeproject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coderabbit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codersrank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coderwall.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codesandbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeship.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codesignal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codestream.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codewars.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codingame.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codingninjas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coffeescript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coggle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cognizant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coil.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coinbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coinmarketcap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/collaboraonline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comicfury.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commerzbank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commitlint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commodore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commonlisp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commonworkflowlanguage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/compilerexplorer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/composer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comptia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comsol.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/conan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/concourse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/condaforge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/conekta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/confluence.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/construct3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/consul.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contabo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contactlesspayment.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/containerd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contao.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contensis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contentful.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contentstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/continente.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contributorcovenant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/conventionalcommits.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/convertio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/convex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cookiecutter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coolermaster.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coolify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/copaairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coppel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cora.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coreboot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coreldraw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coronaengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coronarenderer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/corsair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/couchbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/counterstrike.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/countingworkspro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coursera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coveralls.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coze.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cpanel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cplusplus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cplusplusbuilder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/craftcms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/craftsman.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cratedb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crayon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/creality.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/createreactapp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/creativecommons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/creativetechnology.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/credly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crehana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crewai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crewunited.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/criticalrole.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crowdin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crowdsource.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crunchbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crunchyroll.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cryengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cryptomator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cryptpad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crystal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/csdn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/csharp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/css.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/css3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cssdesignawards.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cssmodules.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/csswizardry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cucumber.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cultura.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/curl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/curseforge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cursor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/customink.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cyberdefenders.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cycling74.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cypress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cytoscapedotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/d.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/d3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/d3dotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dacia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dailydotdev.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dailymotion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daimler.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daisyui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dapr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/darkreader.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/darty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daserste.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dash0.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dashlane.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dask.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dassaultsystemes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/databricks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datacamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datadog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datadotai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datagrip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dataiku.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datastax.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dataverse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datefns.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datev.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datocms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/davinciresolve.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dazhongdianping.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dazn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dbeaver.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dblp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dbt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dcentertainment.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/debian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/debridlink.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/decapcms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/decentraland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dedge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepcool.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepgram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepmind.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepnote.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepseek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deezer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delicious.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deliveroo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delonghi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delphi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deluge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deno.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/denodeploy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/denon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dependabot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dependencycheck.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/depositphotos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/derspiegel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/designernews.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschebahn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschebank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschepost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschetelekom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschewelle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devdotto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/developmentcontainers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devexpress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deviantart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devpost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devrant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devuan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dgraph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dhl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/diagramsdotnet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dialogflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/diaspora.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dicebear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dictionarydotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/digg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/digikeyelectronics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/digitalocean.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dinersclub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dior.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/directus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discogs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discord.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discorddotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discourse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discover.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/disqus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/disroot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/distrobox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/distrokid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/django.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dji.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dlib.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dlna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dlthub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dmm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docsdotrs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docsify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doctrine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docusaurus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docusign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dodopayments.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dogecoin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dolby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dolibarr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dolphin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doordash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dota2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dotenv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dotnet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/douban.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doubanread.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dovecot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dovetail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/downdetector.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doxygen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dpd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dragonframe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/draugiemdotlv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dreamstime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dribbble.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drizzle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drooble.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dropbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drupal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dsautomobiles.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dtube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ducati.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duckdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duckduckgo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dungeonsanddragons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dunked.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dunzo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duolingo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duplicati.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dvc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dwavesystems.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dwm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dynamics365.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dynatrace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/e.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/e3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ea.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eac.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eagle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/easyeda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/easyjet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ebay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ebox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipseadoptium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipseche.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipseide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipsejetty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipsemosquitto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipsevertdotx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ecosia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ecovacs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edeka.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edgeimpulse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/editorconfig.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edotleclerc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/educative.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/effect.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/egghead.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/egnyte.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eightsleep.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ejs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elastic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elasticcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elasticsearch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elasticstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elavon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/electron.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/electronbuilder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/electronfiddle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elegoo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/element.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elementary.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elementor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elevenlabs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eleventy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elgato.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elixir.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eljueves.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ello.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elsevier.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/embarcadero.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/embark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emberdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emirates.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emlakjet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/empirekred.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/endeavouros.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/engadget.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/enpass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ens.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ente.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/enterprisedb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/envato.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/envoyproxy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/epel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/epicgames.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/epson.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/equinixmetal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eraser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ericsson.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/erlang.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/erpnext.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esbuild.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esea.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eslgaming.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eslint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esotericsoftware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esphome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/espressif.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esri.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/etcd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ethereum.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ethers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ethiopianairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/etihadairways.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/etsy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/europeanunion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eventbrite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eventstore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/evernote.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/everydotorg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/excalidraw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/exercism.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/exordo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/exoscale.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expedia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expensify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expertsexchange.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/express.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expressdotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expressvpn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eyeem.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/f1.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/f5.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facebook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facebookgaming.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facebooklive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/faceit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facepunch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fairphone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/faker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/falco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/falcon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fampay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fandango.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fandom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fanfou.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fantom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/farcaster.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fareharbor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/farfetch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastapi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastlane.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fathom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fauna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/favro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fcc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fdroid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/feathub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fedex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fedora.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/feedly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ferrari.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ferrarinv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ferretdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ffmpeg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fiat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fidoalliance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fifa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fig.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/figma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/figshare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fila.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filament.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filedotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/files.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filezilla.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fillout.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fineco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firebase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firefish.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fireflyiii.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firefox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firefoxbrowser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fireship.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firewalla.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/first.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fishaudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fishshell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fitbit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fivem.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fiverr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fizz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flashforge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flask.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flathub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flatpak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flickr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flightaware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flipboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flipkart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/floatplane.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flood.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/floorp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluentbit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluentd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluke.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flutter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluxer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluxus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flydotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flyway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fmod.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fnac.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/folium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/folo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fonoma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fontawesome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fontbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fontforge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foobar2000.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foodpanda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ford.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/forgejo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formbricks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formik.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formspree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fortinet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fortnite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fortran.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fossa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fossilscm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foundryvirtualtabletop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foursquare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foursquarecityguide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foxtel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fozzy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/framer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/framework.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/framework7.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/franprix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frappe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fraunhofergesellschaft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freebsd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freecad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freecodecamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freedesktopdotorg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freelancer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freelancermap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freenas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freenet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freepik.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freetube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fresh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freshrss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frigate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fritz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frontendmentor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frontify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fsecure.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fsharp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fubo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fueler.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fugacloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fujifilm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fujitsu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/funimation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/furaffinity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/furrynetwork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fusionauth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/futurelearn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fyle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/g2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/g2a.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/g2g.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/galaxus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gameandwatch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamebanana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamedeveloper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamejolt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gameloft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamemaker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamescience.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gandi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/garmin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/garudalinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gatling.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gatsby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gcore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gdal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geeksforgeeks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/generalelectric.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/generalmotors.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/genius.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gentoo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geocaching.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geopandas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gerrit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/getx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghostery.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghostfolio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghostty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gimp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/giphy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/git.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitbook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitconnected.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitea.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitextensions.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitforwindows.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/github.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubactions.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubcopilot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubpages.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubsponsors.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitignoredotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitkraken.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitlab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitlfs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitpod.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glassdoor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gldotinet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gleam.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glitch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/globus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glovo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gltf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gmail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gmx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnometerminal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnubash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnuemacs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnuicecat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnuprivacyguard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnusocial.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/go.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gocd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/godaddy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/godotengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gofundme.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gogdotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gojek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goldenline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goldmansachs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goodreads.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/google.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleadmob.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleads.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleadsense.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleanalytics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleappsscript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleassistant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleauthenticator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlebigquery.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlebigtable.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecalendar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecampaignmanager360.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecardboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlechat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlechrome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlechronicle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleclassroom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloudcomposer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloudspanner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloudstorage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecolab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecontaineroptimizedos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledataflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledataproc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledatastudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledisplayandvideo360.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledocs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledomains.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledrive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleearth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleearthengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlefit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlefonts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleforms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlegemini.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlehangouts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlehome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlejules.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlekeep.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlelens.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemaps.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemarketingplatform.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemeet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemessages.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemybusiness.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlenearby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlenews.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleoptimize.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlepay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlephotos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleplay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlepodcasts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlepubsub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlescholar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlesearchconsole.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlesheets.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleslides.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlestreetview.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlesummerofcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletagmanager.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletasks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletranslate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gotomeeting.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gplv3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gradio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gradle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gradleplaypublisher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grafana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grammarly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grandfrais.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grapheneos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graphite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graphite_editor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graphql.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grav.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gravatar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graylog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greasyfork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greatlearning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greenhouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greensock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greptimedb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/griddotai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gridsome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grocy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/groupme.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/groupon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grubhub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grunt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsmarenadotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gstreamer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gtk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/guangzhoumetro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/guilded.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/guitarpro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gulp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gumroad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gumtree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gunicorn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gurobi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gusto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gutenberg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/h2database.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/h3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/habr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackaday.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackclub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackerearth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackernoon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackerone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackerrank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackmd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackster.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackthebox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handlebarsdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handshake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handshake_protocol.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/happycow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/harbor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/harmonyos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hashcat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hashicorp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hashnode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haskell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hasura.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hatenabookmark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haveibeenpwned.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/havells.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haxe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haystack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hbo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hbomax.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hcl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hdfcbank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/headlessui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/headphonezone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/headspace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hearth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hearthisdotat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hedera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hedgedoc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hellofresh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hellyhansen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helpdesk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helpscout.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hepsiemlak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/here.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hermes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/heroicgameslauncher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/heroku.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/heroui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hetzner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hevy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hexlet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hexo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hibernate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hibob.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hilton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hiltonhotelsandresorts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hitachi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hive_blockchain.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hivemq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homarr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homeadvisor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homeassistant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homeassistantcommunitystore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homebrew.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homebridge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homepage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honeybadger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honeygain.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hono.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hootsuite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hoppscotch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hostinger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hotelsdotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hotjar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hotwire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/houdini.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/houzz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hsbc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htcvive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/html5.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htmlacademy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htmx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/httpie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/huawei.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hubspot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/huggingface.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hugo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/humblebundle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/humhub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hungryjacks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/husqvarna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyperskill.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyperx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hypothesis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyprland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyundai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/i18next.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/i3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iata.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibeacon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iberia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibmcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibmwatson.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iced.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iceland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icicibank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icinga.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icomoon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iconfinder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iconify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iconjar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icons8.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ieee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ifixit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ifood.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ifttt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/igdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iheartradio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ikea.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iledefrancemobilites.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ilovepdf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imagedotsc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imagej.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imagetoolbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imessage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imgur.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/immer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/immersivetranslate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/immich.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imou.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/improvmx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indeed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indiansuperleague.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indiehackers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indieweb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indigo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inductiveautomation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inertia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infiniti.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infinityfree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/influxdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infomaniak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infoq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/informatica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infosys.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infracost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infuse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ingress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inkdrop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inkscape.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inoreader.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inquirer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/insomnia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inspire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/insta360.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instacart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instagram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instapaper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instatus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instructables.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instructure.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intellijidea.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/interactiondesignfoundation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/interactjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/interbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intercom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intermarche.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/internetarchive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/internetcomputer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/internetexplorer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intigriti.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intuit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/invidious.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/invision.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/invoiceninja.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iobroker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ionic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ionos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ios.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iota.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ipfs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iris.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/irobot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/isc2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/isro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/issuu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/istio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/itchdotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iterm2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/itunes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/itvx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iveco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jabber.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jaeger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jaguar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jamboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jameson.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jamstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/japanairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jasmine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/javascript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jbl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jcb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jdoodle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jeep.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jekyll.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jellyfin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jenkins.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jetblue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jetbrains.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jetpackcompose.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jfrog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jfrogpipelines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jhipster.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jinja.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jira.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jirasoftware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jitpack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jitsi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/johndeere.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/joomla.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/joplin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jordan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jouav.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jovian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jpeg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jquery.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jrgroup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsdelivr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsfiddle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/json.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsonwebtokens.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/juce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/juejin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/juke.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/julia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/junipernetworks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/junit5.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jupyter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/just.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/justeat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/justgiving.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/k3s.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/k6.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaggle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kagi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kahoot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaios.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kakao.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kakaotalk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kalilinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kamailio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kando.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaniko.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/karakeep.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/karlsruherverkehrsverbund.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kasasmart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kashflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaspersky.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/katacoda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/katana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaufland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kde.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kdeneon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kdenlive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kdeplasma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kedro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keenetic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keepachangelog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keepassxc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keeper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keeweb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kenmei.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kentico.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keploy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keras.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keybase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keycdn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keycloak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keystone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kfc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/khanacademy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/khronosgroup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kibana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kicad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kick.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kickstarter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kik.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kingstontechnology.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kinopoisk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kinsta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kirby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kitsu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kiwix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/klarna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kleinanzeigen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/klm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/klook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knative.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knexdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knowledgebase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/known.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kodak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kodi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kodular.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koenigsegg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kofax.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kofi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/komoot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/konami.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kong.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kongregate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/konva.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koreader.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kotlin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koyeb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kred.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/krita.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ktm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ktor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kuaishou.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kubernetes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kubespray.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kubuntu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kucoin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kueski.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kuma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kununu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kuula.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kyocera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/labex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/labview.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lada.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lamborghini.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/landrover.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/langchain.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/langflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/langgraph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/languagetool.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lapce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laragon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laravel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laravelhorizon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laravelnova.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lastdotfm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lastpass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/latex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/launchpad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lazarus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lazyvim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lbry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leaderprice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leaflet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leagueoflegends.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leanpub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leetcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lefthook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/legacygames.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lemmy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lemonsqueezy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lenovo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lens.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leptos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lequipe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lerna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leroymerlin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leslibraires.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/less.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/letsencrypt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/letterboxd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/levelsdotfyi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/liberadotchat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/liberapay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/librariesdotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/librarything.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreoffice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficebase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficecalc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficedraw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficeimpress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficemath.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficewriter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libretranslate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libretube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/librewolf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libuv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lichess.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lidl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lifx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lightburn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lighthouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lightning.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/limesurvey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/line.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lineageos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lining.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkedin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkerd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkfire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linksys.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linktree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkvertise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linphone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lintcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxcontainers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxfoundation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxmint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxprofessionalinstitute.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxserver.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lionair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/liquibase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/listenhub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/listmonk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/litecoin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/literal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/litiengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livechat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livejournal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livekit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livewire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/llvm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lmms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lobsters.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/local.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/localsend.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/localxpose.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/locust.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lodash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logitech.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logitechg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logmein.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logseq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logstash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/longhorn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/looker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loopback.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loops.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lootcrate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lospec.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lotpolishairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lottiefiles.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ltspice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lua.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/luanti.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/luau.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lubuntu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lucia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lucid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lucide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ludwig.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lufthansa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lumen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lunacy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/luogu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lutris.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lvgl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lydia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lyft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macpaw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macports.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macys.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magasinsu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magento.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magisk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mahindra.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailchimp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maildotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maildotru.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailgun.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailtrap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mainwp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/majorleaguehacking.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/make.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/makerbot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/malt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/malwarebytes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mambaui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/man.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/manageiq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mangacollec.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mangaupdates.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/manjaro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mantine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mapbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mapillary.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maplibre.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maptiler.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mariadb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mariadbfoundation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/markdown.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marketo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marko.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marriott.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marvelapp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maserati.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mastercard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mastercomfig.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mastodon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/materialdesign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/materialdesignicons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/materialformkdocs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matillion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matomo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matrix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matterdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mattermost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matternet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mautic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/max.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maxplanckgesellschaft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maytag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mazda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maze.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mcafee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mcdonalds.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mclaren.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdblist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdbook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdnwebdocs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mealie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediafire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediamarkt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediapipe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediatek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/medibangpaint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/medium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/medusa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meetup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mega.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meilisearch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meituan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meizu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mendeley.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mentorcruise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mercadopago.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mercedes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/merck.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mercurial.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mermaid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/messenger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metabase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metacritic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metafilter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metager.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metasploit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meteor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metrodelaciudaddemexico.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metrodemadrid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metrodeparis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mewe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mezmo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microbit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microdotblog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microeditor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microgenetics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/micropython.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftacademic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftaccess.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftazure.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftbing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftedge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftexcel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftexchange.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftonedrive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftonenote.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftoutlook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftpowerpoint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftsharepoint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftsqlserver.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftstore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftteams.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsofttranslator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftvisio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftword.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microstation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microstrategy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/midi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/migadu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mihon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mihoyo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mikrotik.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/milanote.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/milvus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minds.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minecraft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minetest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mingww64.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mini.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minimax.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mintlify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minutemailer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/miraheze.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/miro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/misskey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mistralai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mitsubishi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mixcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mixpanel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mlb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mlflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mobx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mobxstatetree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mocha.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mockserviceworker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modelcontextprotocol.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modelscope.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modrinth.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mojangstudios.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mojeek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moleculer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/momenteo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monero.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moneygram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mongodb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mongoose.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mongoosedotws.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monkeytie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monkeytype.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monogame.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monoprix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monster.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monzo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moodle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moonrepo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moonshotai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moqups.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/morrisons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moscowmetro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/motorola.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/movistar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mozilla.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mpv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mqtt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/msi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/msibusiness.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mtr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mubi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mulesoft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/muller.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mullvad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/multisim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mumble.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/muo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mural.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/musescore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/musicbrainz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mxlinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myanimelist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myget.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myob.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myshows.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myspace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mysql.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/n26.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/n8n.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namebase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namecheap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namemc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namesilo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namuwiki.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nano.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nanostores.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/napster.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nasa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nationalgrid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nationalrail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nativescript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/natsdotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/naver.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nba.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nbb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nbc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ndi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ndr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/near.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nebula.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nec.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nederlandsespoorwegen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neo4j.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neovim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neptune.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nestjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netapp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netbsd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netcup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netdata.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neteasecloudmusic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netflix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netgear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netlify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nette.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neutralinojs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newbalance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newegg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newgrounds.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newjapanprowrestling.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newpipe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newrelic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newyorktimes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nexon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextbike.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextbilliondotai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextdns.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextdoor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextra.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nexusmods.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nfc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nfcore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nginx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nginxproxymanager.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ngrok.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ngrx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nhl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nhost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nicehash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/niconico.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nike.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nikon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendo3ds.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendogamecube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendoswitch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/niri.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nissan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nixos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nobaralinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodebb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodedotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodegui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodemon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodered.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nokia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nomad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/norco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nordicsemiconductor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nordvpn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/normalizedotcss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/norton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/norwegian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/note.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notebooklm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notepadplusplus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nounproject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/novu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/now.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/npm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nrwl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nsis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ntfy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nubank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nucleo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuget.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuke.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/numba.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/numpy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nunjucks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nushell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nutanix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuxt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuxtdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nvidia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nvm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nxp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nzxt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/o2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/observable.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obsidian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obsstudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obtainium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ocaml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oclc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oclif.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octanerender.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octave.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octobercms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octoprint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octopusdeploy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oculus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odido.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odnoklassniki.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odoo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odysee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ohdear.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/okcupid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/okta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/okx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ollama.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/omadacloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/omarchy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oneplus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onestream.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onlyfans.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onlyoffice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onnx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onstar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/open3d.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openaccess.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openaigym.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openapiinitiative.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbadges.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbao.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbsd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbugbounty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencollective.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencontainersinitiative.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencritic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openfaas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opengl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openhab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openjdk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openjsfoundation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openlayers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openmediavault.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openmined.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opennebula.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openproject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openrouter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openscad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensea.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensearch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensourcehardware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensourceinitiative.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openssl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openstreetmap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensuse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opentelemetry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opentext.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opentofu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openverse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openvpn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openwrt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openzeppelin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openzfs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opera.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/operagx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opnsense.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oppo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opsgenie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opslevel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/optimism.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/optuna.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oracle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/orange.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/orchardcore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/orcid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oreilly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/org.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/organicmaps.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/origin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ory.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osano.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osgeo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oshkosh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osmand.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osmc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/otto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/outline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/overcast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/overleaf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ovh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/owasp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/owncloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oxc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oxygen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oyo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/p5dotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/packagist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/packer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/packt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paddle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paddlepaddle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paddypower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/padlet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagekit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagerduty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagespeedinsights.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagseguro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/palantir.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paloaltonetworks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paloaltosoftware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/panasonic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pandas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pandoc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pandora.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pangolin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pantheon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paperlessngx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paperspace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paperswithcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paradoxinteractive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paramountplus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paritysubstrate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/parrotsecurity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/parsedotly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/passbolt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/passport.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pastebin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/patreon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payback.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paychex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payhip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payloadcms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payoneer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paypal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paysafe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paytm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pcgamingwiki.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pdm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pdq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peakdesign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pearson.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peerlist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peertube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pegasusairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pelican.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peloton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/penny.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/penpot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/percy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/perforce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/perl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/perplexity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/persistent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/personio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/petsathome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peugeot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pexels.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pfsense.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phabricator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/philipshue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phoenixframework.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phonepe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phosphoricons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photobucket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photocrowd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photopea.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/php.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phpbb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phpmyadmin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phpstorm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piaggiogroup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piapro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picardsurgeles.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picartodottv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picnic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picpay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picrew.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picsart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picxy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pihole.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pimcore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinboard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinescript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinetwork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pingdom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pino.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinterest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pioneerdj.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pipecat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piped.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pipx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pivotaltracker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piwigo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixabay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixelfed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixiv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixlr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pkgsrc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plane.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/planet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/planetscale.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plangrid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/platformdotsh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/platformio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/platzi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plausibleanalytics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playcanvas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playerdotme.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playerfm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation4.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation5.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstationportable.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstationvita.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playwright.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pleroma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plesk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plotly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plume.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pluralsight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plurk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pluscodes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pm2.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pnpm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pocket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pocketbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pocketcasts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/podcastaddict.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/podcastindex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/podman.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/poe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/poetry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pointy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pokemon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polars.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polestar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polkadot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/poly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polygon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polymerproject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polywork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pomerium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pond5.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/popos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/porkbun.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/porsche.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/portableappsdotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/portainer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/portswigger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/posit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postcss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postgresql.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/posthog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postiz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postman.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postmates.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerapps.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerautomate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerbi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerfx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerpages.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powershell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powervirtualagents.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prdotco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/preact.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/precommit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prefect.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/premid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/premierleague.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prepbytes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prestashop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/presto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prettier.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pretzel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prevention.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prezi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primefaces.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primeng.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primereact.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primevideo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primevue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/printables.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prisma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prismic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/privatedivision.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/privateinternetaccess.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/probot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/processingfoundation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/processon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/processwire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/producthunt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/progate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/progress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prometheus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pronounsdotpage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prosemirror.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prosieben.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/proteus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protocolsdotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protodotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/proton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protoncalendar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protondb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protondrive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protonmail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protonvpn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protools.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protractor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/proxmox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pterodactyl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pubg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/publons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pubmed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pug.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pulumi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/puma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/puppet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/puppeteer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/purescript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/purgecss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/purism.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pushbullet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pusher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pwa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pycharm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pycqa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pydantic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pyg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pypi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pypy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pyscaffold.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pysyft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pytest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/python.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pythonanywhere.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pytorch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pyup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qantas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qatarairways.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qbittorrent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qdrant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qemu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qgis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qiita.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qiskit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qiwi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qlik.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qlty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qmk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qnap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qodo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quad9.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qualcomm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qualtrics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qualys.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quantcast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quantconnect.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quarkus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quarto.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quasar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qubesos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quickbooks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quicklook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quicktime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quicktype.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quizlet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quora.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwik.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwiklabs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qzone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/r.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/r3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rabbitmq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/racket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radarr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radiofrance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radiopublic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radixui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radstudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/railway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rainmeter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rainyun.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rakuten.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rakutenkobo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rancher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rapid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rarible.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rasa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/raspberrypi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ratatui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ravelry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ray.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/raycast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/raylib.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/razer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/razorpay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rclone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/react.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactbootstrap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reacthookform.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactiveresume.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactivex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactquery.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactrouter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reacttable.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/readdotcv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/readme.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/readthedocs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/realm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reason.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reasonstudios.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/recoil.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/red.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redbubble.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redbull.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redcandlegames.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reddit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redhat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redhatopenshift.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redmine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redragon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redsys.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reduxsaga.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redwoodjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reebok.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/refine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/refinedgithub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reflex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rekaui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/relay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/relianceindustrieslimited.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/remark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/remedyentertainment.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/remix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/removedotbg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renault.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/render.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renovate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renovatebot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renpy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renren.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/replicate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/replit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/republicofgamers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rescript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rescuetime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/researchgate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/resend.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/resharper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/resurrectionremixos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retool.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retroachievements.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retroarch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retropie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revanced.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revealdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revenuecat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reverbnation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revoltdotchat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revolut.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revue.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rewe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rezgo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rhinoceros.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rich.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rider.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rimacautomobili.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ring.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/riotgames.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ripple.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/riscv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/riseup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ritzcarlton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roadmapdotsh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roamresearch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/robinhood.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roblox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/robloxstudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roboflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/robotframework.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rocket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rocketdotchat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rocksdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rockstargames.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rockwellautomation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rockylinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roku.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roll20.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rollbar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rolldown.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rollsroyce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rollupdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/root.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rootme.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roots.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rootsbedrock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rootssage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ros.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rossmann.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rotaryinternational.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rottentomatoes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roundcube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rsocket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rstudioide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rte.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rtl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rtlzwei.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rtm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubocop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ruby.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubygems.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubymine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubyonrails.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubysinatra.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ruff.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rumahweb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rumble.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rundeck.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/runkeeper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/runkit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/runrundotit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rust.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rustdesk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rustfs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rxdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ryanair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rye.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/s7airlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sabanci.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/safari.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sagemath.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sahibinden.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sailfishos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sailsdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/salesforce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/salla.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saltproject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/samsclub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/samsung.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/samsungpay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sandisk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sanfranciscomunicipalrailway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sanic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sanity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saopaulometro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sartorius.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sass.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sat1.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/satellite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saturn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saucelabs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saudia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scala.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scalar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scaleway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scania.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/schneiderelectric.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scikitlearn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scilab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scipy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scopus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scpfoundation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrapbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrapy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scratch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/screencastify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scribd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrimba.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrollreveal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrumalliance.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrutinizerci.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scylladb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seafile.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seagate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/searxng.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seatgeek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/securityscorecard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sefaria.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sega.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/selenium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sellfy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticrelease.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticscholar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticuireact.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticweb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semaphoreci.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semrush.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semver.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sencha.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sennheiser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sensu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sentry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sepa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sequelize.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/servbay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/serverfault.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/serverless.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/session.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sessionize.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/setapp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/setuptools.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sfml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shadcnui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shadow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shanghaimetro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sharex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sharp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shazam.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shelly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shenzhenmetro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shieldsdotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shikimori.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shopee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shopify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shopware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shortcut.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/showpad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/showtime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/showwcase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shutterstock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sidekiq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sidequest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/siemens.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sifive.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/signal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/silverairways.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/similarweb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simkl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simpleanalytics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simpleicons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplelocalize.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplelogin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplenote.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sinaweibo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/singaporeairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/singlestore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sitecore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sitepoint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/siyuan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skaffold.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skeleton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sketch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sketchfab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sketchup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skillshare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skoda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sky.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skypack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skype.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skypeforbusiness.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skyrock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slackware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slashdot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slickpic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slides.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slideshare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smartthings.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smashdotgg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smashingmagazine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smoothcomp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smrt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smugmug.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snapchat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snapcraft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snapdragon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sncf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snort.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snowflake.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snowpack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snyk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/socialblade.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/society6.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/socket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/socketdotio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/softcatala.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/softpedia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sogou.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solidity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sololearn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solveddotac.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarlint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqubecloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqubeforide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqubeserver.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonatype.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/songkick.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/songoda.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonicwall.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sony.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/soriana.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/soundcharts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/soundcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourceengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourceforge.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourcehut.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourcetree.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/southwestairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spacemacs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spaceship.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spacex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spacy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkasse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkfun.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkpost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spdx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/speakerdeck.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spectrum.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/speedtest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/speedypage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sphinx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spidermonkey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spigotmc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spinnaker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spinrilla.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/splunk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spoj.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spond.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spotify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spotlight.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spreadshirt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spreaker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spring.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spring_creators.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/springboot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/springsecurity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spyderide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sqlalchemy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sqlite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/square.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/squareenix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/squarespace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/srgssr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ssrn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sst.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackbit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackblitz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackedit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackexchange.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackhawk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackoverflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackpath.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackshare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stadia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/staffbase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stagetimer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/standardjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/standardresume.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starbucks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stardock.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starlingbank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starship.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/startdotgg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/startpage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/startrek.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statamic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statista.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statuspage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statuspal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steam.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steamdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steamdeck.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steamworks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steelseries.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steem.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steemit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steinberg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stellar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stencil.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stencyl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stimulus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stitcher.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stmicroelectronics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stockx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stopstalk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/storyblok.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/storybook.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/strapi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/strava.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/streamlabs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/streamlit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/streamrunners.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stremio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stripe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/strongswan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stryker.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stubhub.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/studio3t.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/studyverse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/styledcomponents.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stylelint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/styleshare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stylus.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/subaru.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sublimetext.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/substack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/subtitleedit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/subversion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suckless.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suitest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sumologic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suno.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sunrise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supabase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supercell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supercrease.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supermicro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/superuser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/surfshark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/surrealdb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/surveymonkey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suzuki.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svelte.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svgdotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svgo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svgtrace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swagger.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swarm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sway.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swift.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swiggy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swiper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swisscows.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symantec.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symbolab.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symfony.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symphony.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sympy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/syncthing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/synology.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/system76.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tabelog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tableau.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tablecheck.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tacobell.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tado.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taichigraphics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taichilang.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tails.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tailscale.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tailwindcss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taipy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taketwointeractivesoftware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/talend.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/talenthouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/talos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tamiya.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tampermonkey.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tanstack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taobao.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tapas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/target.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tarom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tarteaucitron.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/task.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tasmota.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tata.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tauri.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taxbuzz.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tcs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teamcity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teamspeak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teamviewer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/techcrunch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ted.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teepublic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teespring.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tekton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tele5.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telefonica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telegram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telegraph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telenor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telequebec.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/temporal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tencentqq.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tensorflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teradata.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teratail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/termius.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/terraform.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tesco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tesla.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testcafe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testinglibrary.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testrail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tether.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/textpattern.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/textual.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tga.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thangs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thanos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thealgorithms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theboringcompany.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theconversation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thefinals.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theguardian.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theirishtimes.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/themighty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/themodelsresource.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/themoviedatabase.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thenorthface.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theodinproject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theplanetarysociety.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theregister.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thesoundsresource.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thespritersresource.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thestorygraph.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thewashingtonpost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theweatherchannel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thingiverse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/things.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thinkpad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thirdweb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threadless.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threads.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threedotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threema.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thumbtack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thunderbird.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thunderstore.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thurgauerkantonalbank.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thymeleaf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ticketmaster.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ticktick.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tidal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tidb.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tiddlywiki.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tide.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tidyverse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tietoevry.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tiktok.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tildapublishing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tile.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/timescale.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tina.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tindie.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinkercad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinygrad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinyletter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tistory.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tldraw.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tmobile.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tmux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/todoist.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toggl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toggltrack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tokio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tokyometro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toll.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tomorrowland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tomtom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ton.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/topcoder.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/topdotgg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toptal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/torbrowser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/torizon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/torproject.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toshiba.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/totvs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tourbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toyota.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tplink.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tqdm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/traccar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tradingview.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/traefikmesh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/traefikproxy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trailforks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trainerroad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trakt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transifex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transmission.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transportforireland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transportforlondon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/travisci.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/treehouse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trello.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trendmicro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tresorit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/treyarch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trezor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tricentis.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trilium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/triller.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trillertv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trimble.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trino.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tripadvisor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tripdotcom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trivago.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trivy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trmnl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trove.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trpc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/truenas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trueup.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trulia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trustedshops.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trustpilot.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tryhackme.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tryitonline.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tsnode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tubi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tui.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tumblr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tunein.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turbo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turborepo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turbosquid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turkishairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turso.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tuta.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tutanota.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tuxedocomputers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tv4play.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tvtime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twenty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twilio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twinkly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twinmotion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twitch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ty.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typeform.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typeorm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typescript.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typo3.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typst.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uber.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubereats.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubiquiti.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubisoft.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ublockorigin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubuntu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubuntumate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/udacity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/udemy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/udotsdotnews.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ufc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uikit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uipath.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ukca.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ultralytics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ulule.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/umami.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/umbraco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/umbrel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unacademy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/underarmour.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/underscoredotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/undertale.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unicode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unilever.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uniqlo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uniqlo_ja.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unitedairlines.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unitednations.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unlicense.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unocss.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unpkg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unraid.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unrealengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unsplash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unstop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/untappd.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uphold.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uplabs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upptime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ups.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upstash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uptimekuma.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uptobox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upwork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uservoice.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/usps.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/utorrent.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v0.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v2ex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v8.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vaadin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vagrant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vala.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/valorant.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/valve.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vanillaextract.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vapor.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vault.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vaultwarden.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vauxhall.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vbulletin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vectary.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vectorlogozone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vectorworks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veeam.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veed.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veepee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vega.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vegas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/velocity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/velog.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vencord.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/venmo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vercel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/verdaccio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veritas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/verizon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vespa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vestel.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vexxhost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vfairs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viadeo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viaplay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viber.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viblo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/victoriametrics.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/victronenergy.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vikunja.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vimeo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vimeolivestream.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vinted.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virgin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virginatlantic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virginmedia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virtualbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virustotal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visa.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualbasic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualparadigm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualstudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualstudioappcenter.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualstudiocode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vite.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vitepress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vitess.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vitest.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivaldi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivawallet.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivino.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivint.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vlcmediaplayer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vllm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vmware.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vodafone.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/voelkner.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/voidlinux.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/voipdotms.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/volkswagen.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/volvo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vonage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vorondesign.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vowpalwabbit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vrchat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vsco.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vscodium.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vtex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vuedotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vuetify.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vueuse.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vulkan.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vultr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vyond.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/w3schools.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wacom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wagmi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wagtail.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wails.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wakatime.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/walkman.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wallabag.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/walletconnect.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/walmart.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wantedly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wappalyzer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/warnerbros.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/warp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wasabi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wasmcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wasmer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/watchtower.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wattpad.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wayland.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/waze.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wazirx.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wearos.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weasyl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/web3dotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webassembly.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webauthn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webawesome.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webcomponentsdotorg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webdotde.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webdriverio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webex.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webgl.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webgpu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weblate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webmin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webmoney.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webpack.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webrtc.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webstorm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webtoon.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webtrees.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wechat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wegame.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weightsandbiases.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/welcometothejungle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wellfound.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wellsfargo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wemo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weread.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/westerndigital.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/westernunion.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wetransfer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wezterm.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wgpu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/what3words.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/whatsapp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wheniwork.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wii.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wiiu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikibooks.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikidata.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikidotgg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikidotjs.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikimediacommons.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikimediafoundation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikipedia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikiquote.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikisource.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikiversity.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikivoyage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/winamp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows10.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows11.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows95.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windowsterminal.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windowsxp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windsurf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wipro.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wire.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wireguard.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wireshark.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wish.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wistia.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wix.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wizzair.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wolfram.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wolframlanguage.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wolframmathematica.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wondershare.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wondersharefilmora.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/woo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/woocommerce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wordpress.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/workplace.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/worldhealthorganization.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wpengine.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wpexplorer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wprocket.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/writedotas.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wwe.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wwise.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wxt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wykop.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wyze.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/x.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xamarin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xaml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xampp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xbox.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xcode.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xdadevelopers.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xdotorg.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xendit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xero.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xfce.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xiaohongshu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xiaomi.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xing.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xmpp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xrp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xsplit.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xstate.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xubuntu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xyflow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yaak.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yabai.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yale.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yamahacorporation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yamahamotorcorporation.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yaml.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yammer.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yandexcloud.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yarn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ycombinator.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yelp.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yeti.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yew.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yii.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yoast.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yolo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youhodler.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtube.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubegaming.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubekids.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubemusic.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubeshorts.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubestudio.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubetv.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yubico.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yunohost.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zabka.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zaim.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zalando.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zalo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zap.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zapier.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zara.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zazzle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zcash.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zcool.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zdf.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zebpay.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zebratechnologies.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zedindustries.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zelle.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zenbrowser.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zend.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zendesk.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zenn.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zenodo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zensar.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zerodha.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zerotier.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zerply.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zettlr.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zhihu.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zig.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zigbee.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zigbee2mqtt.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ziggo.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zilch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zillow.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zincsearch.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zingat.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zod.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zoho.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zoiper.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zola.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zomato.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zoom.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zorin.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zotero.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zsh.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zulip.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zyte.svg +1 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/accessible.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ad-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ad.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/adjustments-horizontal.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/adjustments.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/aerial-lift.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/affiliate.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/air-balloon.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm-minus.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm-plus.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm-snooze.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-hexagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-octagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-square-rounded.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-triangle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alien.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-center.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-center-middle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-left-bottom.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-left-middle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-left-top.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-right-bottom.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-right-middle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-right-top.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-top-center.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-top-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-top-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/analyze.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/app-window.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/apple.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/apps.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/archive.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-content.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-down.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-height.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-left.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-right.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-up.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-width.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-down-line.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-down-lines.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-left-line.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-left-lines.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-right-line.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-right-lines.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-up-line.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-up-lines.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-down-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-down-rhombus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-down-square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-guide.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-left-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-left-rhombus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-left-square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-up.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-right-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-right-rhombus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-right-square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-up-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-up-rhombus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-up-square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/artboard.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/article.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/aspect-ratio.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/assembly.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/asset.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/atom-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/automatic-gearbox.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/award.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/baby-carriage.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/backspace.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-3d.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-4k.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-8k.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-ad.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-ar.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-cc.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-hd.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-sd.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-tm.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-vo.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-vr.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-wc.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badges.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ball-bowling.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/balloon.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ballpen.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bandage.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/barbell.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/barrier-block.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/basket.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bath.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-automotive.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bed-flat.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bed.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/beer.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-minus.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-plus.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-ringing-2.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-ringing.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-x.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-z.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bike.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/binary-tree-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/binary-tree.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/binoculars.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/biohazard.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/blade.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/blender.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/blob.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bolt.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bomb.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bone.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bong.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/book.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bookmark.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bookmarks.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/boom.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bottle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bounce-left.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bounce-right.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bow.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bowl-chopsticks.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bowl-spoon.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bowl.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-bottom-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-bottom-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-bottom.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-top-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-top-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-top.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-multiple.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-angular.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-apple.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-bitbucket.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-discord.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-dribbble.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-facebook.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-github.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-google.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-instagram.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-kick.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-linkedin.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-messenger.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-open-source.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-opera.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-patreon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-paypal.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-pinterest.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-sketch.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-snapchat.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-spotify.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-steam.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-stripe.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tabler.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tiktok.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tinder.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tumblr.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-twitter.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-vercel.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-vimeo.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-weibo.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-whatsapp.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-windows.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-youtube.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bread.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/briefcase-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/briefcase.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness-auto.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bubble-text.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bubble.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bug.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/building-bridge-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/building-broadcast-tower.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bulb.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/butterfly.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cactus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calculator.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar-event.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar-month.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar-week.svg +18 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/camera.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/campfire.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/candle.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cannabis.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/capsule-horizontal.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/capsule.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/capture.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-4wd.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-crane.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-fan.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-suv.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/carambola.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caravan.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cardboards.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cards.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-left-right.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-up-down.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/carousel-horizontal.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/carousel-vertical.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cash-banknote.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/category.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/charging-pile.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-area-line.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-area.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-bubble.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-candle.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-donut.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-dots-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-dots-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-dots.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-funnel.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-grid-dots.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chef-hat.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cherry.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-bishop.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-king.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-knight.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-queen.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-rook.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chevron-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chevron-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/christmas-tree.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-dot.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-key.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-a.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-b.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-c.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-d.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-e.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-f.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-g.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-h.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-i.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-j.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-k.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-l.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-m.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-n.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-o.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-p.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-q.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-r.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-s.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-t.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-u.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-v.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-w.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-y.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-z.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-0.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-7.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-8.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-percentage.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-rectangle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circles.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/click.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-data.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-list.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-smile.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-text.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-typography.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-10.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-11.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-12.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-7.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-8.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cloud-computing.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cloud-data-connection.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cloud.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clover.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clubs.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/code-circle-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/code-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-bitcoin.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-euro.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-monero.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-pound.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-rupee.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-taka.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-yen.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-yuan.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/columns-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/columns-2.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/columns-3.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/compass.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cone-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cone.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/confetti.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/container.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/contrast-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/contrast.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cookie-man.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cookie.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-minus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copyleft.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copyright.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/credit-card.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-1-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-16-9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-3-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-5-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-7-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-landscape.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-portrait.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cross.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crown.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/current-location.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dashboard.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/database.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-cctv.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-desktop.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-floppy.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-gamepad-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-gamepad-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-gamepad.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-heart-monitor.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-imac.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-ipad.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-mobile.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-remote.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-speaker.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-tablet.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-tv-old.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-tv.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-unknown.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-usb.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-vision-pro.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-watch.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dialpad.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/diamond.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/diamonds.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/direction-arrows.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/direction-sign.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/directions.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/disc.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/discount.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dots-vertical.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dots.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/download.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/drop-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplet-half-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplet-half.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplet.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplets.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dual-screen.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dumpling.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ease-in-control-point.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ease-in-out-control-points.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ease-out-control-point.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/edit.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/egg-cracked.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/egg-fried.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/egg.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/elevator.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/engine.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/escalator-down.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/escalator-up.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/escalator.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/exchange.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/exclamation-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/explicit.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/exposure.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/external-link.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eye-table.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eye.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eyeglass-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eyeglass.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/face-mask.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/favicon.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/feather.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fence.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ferry.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fidget-spinner.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-analytics.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-code-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-code.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-cv.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-delta.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-description.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-diff.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-digit.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-dollar.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-dots.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-download.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-euro.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-function.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-horizontal.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-info.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-invoice.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-lambda.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-minus.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-music.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-neutral.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-pencil.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-percent.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-phone.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-power.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-rss.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-sad.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-scissors.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-settings.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-signal.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-smile.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-star.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-text.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-time.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-typography.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-unknown.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-upload.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-vector.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-x.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/files.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/filter.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/filters.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fish-bone.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flag-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flag-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flag.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flame.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flare.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flask-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flask.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flower.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/folder-open.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/folder.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/folders.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/forbid-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/forbid.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fountain.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/function.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/garden-cart.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gas-station.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gauge.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ghost-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ghost-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ghost.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gift-card.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gift.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/glass-full.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/glass.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/globe.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/golf.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gps.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/graph.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/grid-pattern.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/guitar-pick.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hanger-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/headphones.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/headset.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/heart-broken.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/heart.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/helicopter-landing.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/helicopter.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-hexagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-octagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-square-rounded.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-triangle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-a.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-b.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-c.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-d.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-e.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-f.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-g.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-h.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-i.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-j.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-k.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-l.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-m.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-n.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-o.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-p.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-q.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-r.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-s.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-t.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-u.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-v.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-w.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-y.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-z.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-minus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-0.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-7.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-8.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/home-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/home.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hospital-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hourglass.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/icons.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/id.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-hexagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-octagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-square-rounded.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-triangle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-steam.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/jetpack.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/jewish-star.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/key.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyboard.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe-align-center.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe-align-horizontal.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe-align-vertical.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframes.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/label-important.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/label.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lasso-polygon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-2.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-bottom.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-center.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-left.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-middle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-right.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-top.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-board-split.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-board.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-bottombar-collapse.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-bottombar-expand.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-bottombar.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-cards.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-dashboard.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-distribute-horizontal.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-distribute-vertical.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-grid.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-kanban.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-list.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-navbar-collapse.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-navbar-expand.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-navbar.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-left-collapse.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-left-expand.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right-collapse.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right-expand.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/leaf.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lego.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lemon-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/library-plus.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/library.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lifebuoy.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/link.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/list-check.svg +18 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/list-details.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/list.svg +18 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/live-photo.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/live-view.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/location.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lock-square-rounded.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lock.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lungs.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/macro.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/magnet.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mail-opened.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mail.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/man.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/manual-gearbox.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/map-pin.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/medical-cross.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/meeple.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/melon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/menu-2.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-chatbot.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-report.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/messages.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/meteor.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/michelin-star.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mickey.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/microphone.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/microscope.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/microwave.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/military-rank.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/milk.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-angry.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-confuzed.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-crazy-happy.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-empty.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-happy.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-kid.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-neutral.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-sad.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-smile.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-wrrr.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/moon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/motorbike.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mountain.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mouse.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mug.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mushroom.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/navigation.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/nurse.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/octagon-minus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/octagon-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/octagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/oval-vertical.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/oval.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pacman.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/paint.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/palette.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/panorama-horizontal.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/panorama-vertical.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/parking-circle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/paw.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pencil.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pennant-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pennant.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pentagon.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-call.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-calling.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-check.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-x.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/photo.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/picture-in-picture-top.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/picture-in-picture.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pig.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pill.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pin.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pinned.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pizza.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane-arrival.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane-departure.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane-tilt.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-10.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-7.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-8.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-a.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-j.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-k.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-q.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-star.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-eject.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-pause.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-play.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-record.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-skip-back.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-skip-forward.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-stop.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-track-next.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-track-prev.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/playlist.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/point.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pointer.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/polaroid.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/poo.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/presentation-analytics.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/presentation.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/puzzle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/quote.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/radar.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/radioactive.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-dollar.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-euro.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-pound.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-rupee.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-yen.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-yuan.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rectangle-vertical.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rectangle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/registered.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/relation-many-to-many.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/relation-one-to-many.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/relation-one-to-one.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/replace.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/report-analytics.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/report-money.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rollercoaster.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rosette-discount-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rosette-discount.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rosette.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/salad.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/satellite.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/scale.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/school.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/scuba-diving-tank.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/search.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/section.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/seedling.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/send.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/settings.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-checkered.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-half.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-lock.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shirt.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shopping-cart.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sign-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sign-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sitemap.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-ascending-2.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-ascending-shapes.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-descending-2.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-descending-shapes.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/soup.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/spade.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sparkles-2.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sparkles.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/speedboat.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/spider.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-asterisk.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-dot.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f0.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f7.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f8.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-a.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-b.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-c.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-d.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-e.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-f.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-g.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-h.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-i.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-j.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-k.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-l.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-m.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-n.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-o.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-p.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-q.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-r.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-s.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-t.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-u.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-v.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-w.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-y.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-z.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-minus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-0.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-7.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-8.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rotated.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-a.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-b.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-c.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-d.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-e.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-f.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-g.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-h.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-i.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-j.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-k.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-l.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-m.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-n.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-o.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-p.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-q.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-r.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-s.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-t.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-u.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-v.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-w.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-y.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-z.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-minus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-0.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-1.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-4.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-5.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-6.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-7.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-8.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-9.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/squares.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stack-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stack-3.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stack.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/star-half.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/star.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stars.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/steering-wheel.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sun-high.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sun-low.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sun.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunglasses.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunrise.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunset-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunset.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-down.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-up.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/table.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tag.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tags.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/temperature-minus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/temperature-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/template.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/test-pipe-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/thumb-down.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/thumb-up.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ticket.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tilt-shift.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/timeline-event.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/toggle-left.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/toggle-right.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tools-kitchen-2.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/train.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transform.svg +16 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-bottom.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-left.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-right.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-top.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trash-x.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trash.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/triangle-inverted.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/triangle-square-circle.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/triangle.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trolley.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trophy.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/truck.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ufo.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/umbrella.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/user.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/versions.svg +15 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/video-minus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/video-plus.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/video.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/windmill.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/windsock.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/woman.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/world.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/writing-sign.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/writing.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-a.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-b.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-x.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-y.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/yin-yang.svg +14 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zeppelin.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-cancel.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-check.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-code.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-exclamation.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-in-area.svg +18 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-in.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-money.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-out-area.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-out.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-pan.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-question.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-scan.svg +17 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom.svg +13 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/a-b-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/a-b-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/a-b.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/abacus-off.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/abacus.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/abc.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/access-point-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/access-point.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/accessible-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/accessible.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/activity-heartbeat.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/activity.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-circle-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-circle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/address-book-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/address-book.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-alt.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-bolt.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-cancel.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-check.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-code.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-cog.svg +34 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-dollar.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-down.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-exclamation.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-heart.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-horizontal.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-minus.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-off.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-pause.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-pin.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-plus.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-question.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-search.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-share.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-spark.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-star.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-up.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-x.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aerial-lift.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/affiliate.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai-agent.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai-agents.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai-gateway.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-balloon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-conditioning-disabled.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-conditioning.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-traffic-control.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-average.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-smoke.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-snooze.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/album-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/album.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-circle-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-hexagon-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-hexagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-octagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-small-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-square-rounded-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-square-rounded.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-triangle-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-triangle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alien.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-center.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-bottom.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-middle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-stretch.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-top.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-bottom.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-middle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-stretch.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-top.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-bottom.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-middle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-stretch.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-top.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-top-center.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-top-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-top-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-center.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-justified.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-left-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-right-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alpha.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-arabic.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-bangla.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-cyrillic.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-greek.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-hebrew.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-korean.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-latin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-polish.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-runes.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-thai.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alt.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ambulance.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ampersand.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/analyze-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/analyze.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/anchor-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/anchor.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/angle.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ankh.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-1.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-4.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-5.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aperture-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aperture.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-app-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-app.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-book.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/app-window.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/apple.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/apps-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/apps.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/archery-arrow.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/archive-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/archive.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair-2-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-content.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-height.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-width.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-back-up-double.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-back-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-back.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-both.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-down-dashed.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-left-dashed.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-right-dashed.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-up-dashed.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-left-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-right-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-down-line.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-down-lines.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-left-line.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-left-lines.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-right-line.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-right-lines.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-up-line.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-up-lines.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bounce.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-capsule.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-curve-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-curve-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-bar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-from-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-left-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-rhombus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-right-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-tail.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-to-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-elbow-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-elbow-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-fork.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-forward-up-double.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-forward-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-forward.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-guide.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-iteration.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-bar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-from-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-rhombus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-tail.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-to-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-left-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-right-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-alt-left.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-alt-right.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-both.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-down-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-left-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-right-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-up-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-bar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-from-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-rhombus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-tail.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-to-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-first-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-first-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-last-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-last-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-straight.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-roundabout-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-roundabout-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-sharp-turn-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-sharp-turn-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-bar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-from-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-left-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-rhombus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-right-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-tail.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-to-arc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-left-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-left-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-right-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-right-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-zig-zag.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-cross.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-minimize-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-minimize.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diff.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-ne-sw.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-nw-se.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-se-nw.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-sw-ne.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-down-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-exchange-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-exchange.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-horizontal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-join-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-join.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-left-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-left-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-maximize.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-minimize.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-move-horizontal.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-move-vertical.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-move.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-random.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-right-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-right-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-shuffle-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-shuffle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-sort.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-split-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-split.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-down.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-up-down.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-up.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/artboard-off.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/artboard.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/article-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/article.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aspect-ratio-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aspect-ratio.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/assembly-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/assembly.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/asset.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/asterisk-simple.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/asterisk.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/at-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/at.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/atom-2.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/atom-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/atom.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/augmented-reality-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/augmented-reality-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/augmented-reality.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/auth-2fa.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/automatic-gearbox.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/automation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/avocado.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/award-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/award.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/axe.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/axis-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/axis-y.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baby-bottle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baby-carriage.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/background.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backhoe.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backpack-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backpack.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backslash.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backspace.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-2k.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-3d.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-3k.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-4k.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-5k.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-8k.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-ad-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-ad.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-ar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-cc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-hd.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-sd.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-tm.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-vo.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-vr.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-wc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badges-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badges.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baguette.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-american-football-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-american-football.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-baseball.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-basketball.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-bowling.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-football-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-football.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-tennis.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-volleyball.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/balloon-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/balloon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ballpen-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ballpen.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ban.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bandage-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bandage.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barbell-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barbell.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barcode-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barcode.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrel-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrier-block-off.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrier-block.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline-density-large.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline-density-medium.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline-density-small.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-bolt.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-cancel.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-check.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-code.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-cog.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-discount.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-dollar.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-down.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-exclamation.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-heart.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-pause.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-pin.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-question.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-search.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-star.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-up.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bath-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bath.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-4.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-automotive.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-charging-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-charging.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-eco.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-spark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-4.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-charging-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-charging.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-eco.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beach-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beach.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bed-flat.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bed-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bed.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beer-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beer.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-ringing-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-ringing.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-school.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-z.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beta.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bible.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bike-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bike.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary-tree-2.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary-tree.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binoculars.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/biohazard-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/biohazard.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blade.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach-chlorine.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach-no-chlorine.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blend-mode.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blender.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blind.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blob.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blockquote.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blocks.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth-connected.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blur-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blur.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bmp.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/body-scan.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bold-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bold.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bolt-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bolt.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bomb.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bone-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bone.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bong-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bong.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-download.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-upload.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-ai.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-edit.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmarks-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmarks.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/books-off.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/books.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/boom.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-all.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-bottom-plus.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-bottom.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-ios.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-pill.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-rounded.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-square.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corners.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-horizontal.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-inner.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-left-plus.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-left.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-none.svg +39 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-outer.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-radius.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-right-plus.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-right.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-sides.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-style-2.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-style.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-top-plus.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-top.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-vertical.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bot-id.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bottle-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bottle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bounce-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bounce-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bow.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowl-chopsticks.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowl-spoon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowl.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowling.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-bottom-left.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-bottom-right.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-bottom.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-left.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-right.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-top-left.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-top-right.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-top.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-margin.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model-2-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-0.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-1.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-5.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-6.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-7.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-8.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-9.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-padding.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/braces-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/braces.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-angle-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-angle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-contain-end.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-contain-start.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-contain.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/braille.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brain.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-4chan.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-abstract.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-after-effect.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-illustrator.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-indesign.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-photoshop.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-premiere.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-xd.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adonis-js.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-airbnb.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-airtable.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-algolia.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-alipay.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-alpine-js.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amazon.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amd.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amie.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amigo.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-among-us.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-android.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-angular.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ansible.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ao3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-appgallery.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple-arcade.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple-news.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple-podcast.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-appstore.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-arc.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-asana.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-astro.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-auth0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-aws.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-azure.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-backbone.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-badoo.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-baidu.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bandcamp.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bandlab.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-beats.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bebo.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-behance.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bilibili.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-binance.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bing.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bitbucket.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-blackberry.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-blender.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-blogger.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bluesky.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-booking.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bootstrap.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bulma.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bumble.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bunpo.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-c-sharp.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cake.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cakephp.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-campaignmonitor.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-carbon.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cashapp.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-chrome.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cinema-4d.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-citymapper.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cloudflare.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-codecov.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-codepen.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-codesandbox.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cohost.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-coinbase.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-comedy-central.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-coreos.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-couchdb.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-couchsurfing.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cpp.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-craft.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-crunchbase.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-css3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ctemplar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cucumber.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cupra.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cypress.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-d3.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-databricks.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-days-counter.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dcos.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-debian.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deezer.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deliveroo.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deno.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-denodo.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deviantart.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-digg.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dingtalk.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-discord.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-disney.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-disqus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-django.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-docker.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-doctrine.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dolby-digital.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-douban.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dribbble.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dropbox.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-drops.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-drupal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-edge.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-elastic.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-electronic-arts.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ember.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-envato.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-etsy.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-evernote.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-facebook.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-feedly.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-figma.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-filezilla.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-finder.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-firebase.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-firefox.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-fiverr.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flickr.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flightradar24.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flipboard.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flutter.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-fortnite.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-foursquare.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-framer-motion.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-framer.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-funimation.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gatsby.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-git.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-github-copilot.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-github.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gitlab.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gmail.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-golang.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-analytics.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-big-query.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-drive.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-fit.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-home.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-maps.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-one.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-photos.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-play.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-podcasts.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-grammarly.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-graphql.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gravatar.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-grindr.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-guardian.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gumroad.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hackerrank.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hbo.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-headlessui.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hexo.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hipchat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-html5.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-inertia.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-infakt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-instagram.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-intercom.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-itch.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-javascript.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-jira.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-juejin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kako-talk.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kbin.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kick.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kickstarter.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kotlin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-laravel.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-lastfm.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-leetcode.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-letterboxd.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-line.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-linkedin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-linktree.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-linqpad.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-livewire.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-loom.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mailgun.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mantine.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mastercard.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mastodon.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-matrix.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mcdonalds.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-medium.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-meetup.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mercedes.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-messenger.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-meta.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-metabrainz.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-minecraft.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-miniprogram.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mixpanel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-monday.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mongodb.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-my-oppo.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mysql.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-national-geographic.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nem.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-netbeans.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-netease-music.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-netflix.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nexo.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nextcloud.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nextjs.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nodejs.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nord-vpn.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-notion.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-npm.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nuxt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nytimes.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-oauth.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-office.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ok-ru.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-onedrive.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-onlyfans.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-open-source.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-openai.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-openvpn.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-opera.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pagekit.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-parsinta.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-patreon.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-paypal.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-paypay.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-peanut.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pepsi.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-php.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-picsart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pinterest.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-planetscale.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pnpm.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pocket.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-polymer.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-powershell.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-printables.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-prisma.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-producthunt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pushbullet.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pushover.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-python.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-qq.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-radix-ui.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-react-native.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-react.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-reason.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-reddit.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-redhat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-redux.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-revolut.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-rumble.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-rust.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-safari.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-samsungpass.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sass.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sentry.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sharik.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-shazam.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-shopee.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sketch.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-skype.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-slack.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-snapchat.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-snapseed.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-snowflake.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-socket-io.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-solidjs.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-soundcloud.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-spacehey.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-speedtest.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-spotify.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stackoverflow.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stackshare.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-steam.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stocktwits.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-storj.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-storybook.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-storytel.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-strava.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stripe.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sublime-text.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sugarizer.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-supabase.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-superhuman.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-supernova.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-surfshark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-svelte.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-swift.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-symfony.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tabler.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tabnine.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tailwind.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-taobao.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-teams.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ted.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-telegram.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-terraform.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tesla.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tether.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-thingiverse.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-threads.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-threejs.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tidal.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tiktok.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tinder.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-topbuzz.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-torchain.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-toyota.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-trello.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tripadvisor.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tumblr.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-twilio.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-twitch.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-twitter.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-typescript.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-uber.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ubuntu.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-unity.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-unsplash.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-upwork.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-valorant.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vercel.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vimeo.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vinted.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-visa.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-visual-studio.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vite.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vivaldi.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vk.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vlc.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-volkswagen.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vsco.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vscode.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vue.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-walmart.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-waze.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-webflow.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wechat.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-weibo.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-whatsapp.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wikipedia.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-windows.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-windy.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wish.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wix.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wordpress.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xamarin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xbox.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xdeep.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xing.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yahoo.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yandex.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yarn.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yatse.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ycombinator.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-youtube-kids.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-youtube.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zalando.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zapier.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zeit.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zhihu.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zoom.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zulip.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zwift.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bread-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bread.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/briefcase-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/briefcase-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/briefcase.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-auto.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-down.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-half.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-up.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/broadcast-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/broadcast.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-maximize.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brush-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brush.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-tea-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-tea.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-text.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bucket-droplet.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bucket-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bucket.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bug-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bug.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-airport.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-arch.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-bank.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-bridge-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-bridge.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-broadcast-tower.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-burj-al-arab.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-carousel.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-castle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-church.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-circus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-cog.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-community.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-cottage.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-estate.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-factory-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-factory.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-fortress.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-hospital.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-lighthouse.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-minus.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-monument.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-mosque.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-pavilion.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-plus.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-skyscraper.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-stadium.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-store.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-tunnel.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-warehouse.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-wind-turbine.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/buildings.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bulb-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bulb.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bulldozer.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/burger.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bus-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bus-stop.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bus.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/businessplan.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/butterfly.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cactus-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cactus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cake-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cake-roll.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cake.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calculator-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calculator.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-bolt.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-cancel.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-check.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-clock.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-code.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-cog.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-dollar.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-dot.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-down.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-due.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-event.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-exclamation.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-heart.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-month.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-pause.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-pin.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-question.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-repeat.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-sad.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-search.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-smile.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-star.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-stats.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-time.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-up.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-user.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-week.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-ai.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-bitcoin.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-moon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-rotate.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-selfie.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-spark.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camper.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/campfire.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/canary.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cancel.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/candle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/candy-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/candy.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cane.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cannabis.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cap-projecting.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cap-rounded.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cap-straight.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capsule-horizontal.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capsule.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capture-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capture.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-4wd.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-crane.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-crash.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-1.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-3.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-auto.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-garage.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-off-road.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-suspension.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-suv.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-turbine.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carambola.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caravan.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cardboards-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cardboards.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cards.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-left-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-up-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carousel-horizontal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carousel-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carrot-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carrot.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-edit.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-move-back.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-move.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-move-back.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-move.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-register.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cast-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cast.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cat.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ce-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ce.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-1.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-4.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-5.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate-2-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chair-director.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chalkboard-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chalkboard-teacher.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chalkboard.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/charging-pile.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arcs-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arcs.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-area-line.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-area.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arrows-vertical.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arrows.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bar-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bar-popular.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bubble.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-candle.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-circles.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-cohort.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-column.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-covariate.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut-4.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-dots-2.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-dots-3.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-dots.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-funnel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-grid-dots.svg +36 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-histogram.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-infographic.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-line.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-4.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-ppf.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-radar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-sankey.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-scatter-3d.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-scatter.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-treemap.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/check.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checkbox.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checklist.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checks.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checkup-list.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cheese.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chef-hat-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chef-hat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cherry.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-bishop.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-king.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-knight.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-queen.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-rook.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-down-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-down-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-left-pipe.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-right-pipe.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-up-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-up-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-down-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-down-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-up-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-up-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chisel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/christmas-ball.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/christmas-tree-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/christmas-tree.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-asterisk.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-check.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-a.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-b.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-c.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-d.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-e.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-f.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-g.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-h.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-i.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-j.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-k.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-l.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-m.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-n.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-o.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-p.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-q.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-r.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-s.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-t.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-u.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-v.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-w.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-x.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-y.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-z.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-minus.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-0.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-1.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-2.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-3.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-4.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-5.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-6.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-7.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-8.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-9.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-percentage.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-plus.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-x.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dot.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-a.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-b.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-c.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-d.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-e.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-f.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-g.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-h.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-i.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-j.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-k.svg +33 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-l.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-m.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-n.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-o.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-p.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-q.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-r.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-s.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-t.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-u.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-v.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-w.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-x.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-y.svg +32 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-z.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-half-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-half-vertical.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-half.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-key.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-a.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-b.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-c.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-d.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-e.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-f.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-h.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-i.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-j.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-k.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-l.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-m.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-n.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-o.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-p.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-q.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-r.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-s.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-t.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-u.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-v.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-w.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-y.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-z.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-minus-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-5.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-6.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-7.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-8.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-9.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-percentage.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-plus-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-plus-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-rectangle-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-rectangle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-square.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-triangle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circles-relation.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circles.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-ammeter.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-battery.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-bulb.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-capacitor-polarized.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-capacitor.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-cell-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-cell.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-changeover.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-diode-zener.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-diode.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-ground-digital.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-ground.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-inductor.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-motor.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-pushbutton.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-resistor.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-switch-closed.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-switch-open.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-voltmeter.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clear-all.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clear-formatting.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/click.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cliff-jumping.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-copy.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-data.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-list.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-smile.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-text.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-typography.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-12.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-24.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-bitcoin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-1.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-10.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-11.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-12.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-5.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-6.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-7.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-8.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-9.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-play.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-record.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-shield.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-stop.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clothes-rack-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clothes-rack.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-bitcoin.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-computing.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-data-connection.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-download.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-fog.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-lock-open.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-lock.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-network.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-rain.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-snow.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-storm.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-upload.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clover-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clover.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clubs.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-asterisk.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-circle-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-dots.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-variable-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-variable-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-variable.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/codeblock.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coffee-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coffee.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coffin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-bitcoin.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-euro.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-monero.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-pound.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-rupee.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-taka.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-yen.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-yuan.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coins.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-filter.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-picker-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-picker.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-swatch-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-swatch.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/column-insert-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/column-insert-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/column-remove.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-1.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/comet.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/command-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/command.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/compass-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/compass.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/components-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/components.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/confetti-off.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/confetti.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/confucius.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/congruent-to.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/connection.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/container-off.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/container.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contract.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast-2-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cooker.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cookie-man.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cookie-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cookie.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyleft-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyleft.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyright-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyright.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-left-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-right-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-down-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-up-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-down-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-up-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-left-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-right-double.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cpu-2.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cpu-off.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cpu.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crane-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crane.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-by.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-nc.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-nd.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-sa.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-zero.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-hand.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-pay.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-refund.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credits.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cricket.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-1-1.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-16-9.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-3-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-5-4.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-7-5.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-landscape.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-portrait.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cross-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cross.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crosshair.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crown-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crown.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crutches-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crutches.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crystal-ball.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/csv.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-3d-sphere-off.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-3d-sphere.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-send.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-spark.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-unfolded.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cup-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cup.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/curling.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/curly-loop.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-afghani.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-bahraini.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-baht.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-bitcoin.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-cent.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dinar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dirham.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dogecoin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-australian.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-brunei.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-canadian.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-guyanese.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-singapore.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-zimbabwean.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dong.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dram.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-ethereum.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-euro-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-euro.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-florin.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-forint.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-frank.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-guarani.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-hryvnia.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-iranian-rial.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-kip.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-krone-czech.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-krone-danish.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-krone-swedish.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-lari.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-leu.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-lira.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-litecoin.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-lyd.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-manat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-monero.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-naira.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-nano.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-paanga.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-peso.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-pound-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-pound.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-quetzal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-real.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-renminbi.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-ripple.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-riyal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rubel.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rufiyaa.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rupee-nepalese.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rupee.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-shekel.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-solana.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-som.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-taka.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-tenge.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-tugrik.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-won.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-xrp.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-yen-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-yen.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-yuan.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-zloty.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/current-location-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/current-location.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cursor-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cursor-text.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cut.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cylinder-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cylinder-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cylinder.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dashboard-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dashboard.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-cog.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-dollar.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-edit.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-export.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-heart.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-import.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-leak.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-smile.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-star.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/deaf.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/decimal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/deer.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/delta.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dental-broken.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dental-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dental.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/deselect.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/desk.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/details-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/details.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-3d-camera.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-3d-lens.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-airpods-case.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-airpods.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-airtag.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-analytics.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-audio-tape.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-camera-phone.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-cctv-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-cctv.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-computer-camera-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-computer-camera.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-analytics.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-exclamation.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-floppy.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-gamepad-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-gamepad-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-gamepad.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-heart-monitor.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-bolt.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-cancel.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-check.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-code.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-cog.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-dollar.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-down.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-exclamation.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-heart.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-pause.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-pin.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-question.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-search.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-star.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-up.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-landline-phone.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-laptop-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-laptop.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-charging.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-message.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-rotated.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-vibration.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-nintendo-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-nintendo.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-projector.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-remote.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-screen.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sd-card.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-speaker-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-speaker.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tv-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tv-old.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tv.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-unknown.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-usb.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-vision-pro.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-stats-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-stats.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pc-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pc.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diabolo-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diabolo-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diabolo.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dialpad-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dialpad.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diamond-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diamond.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diamonds.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diaper.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-4.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-5.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-6.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dimensions.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-arrows.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-horizontal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-sign-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-sign.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/directions-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/directions.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disabled-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disabled-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disabled.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disc-golf.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disc-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disc.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/discount-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/discount.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/divide.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna-2-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dog-bowl.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door-enter.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door-exit.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-circle-horizontal.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-diagonal-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-diagonal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/download-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/download.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drag-drop-2.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drag-drop.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drone-off.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drone.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drop-circle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-half-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-half.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplets.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dual-screen.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dumpling.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/e-passport.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ear-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ear-scan.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ear.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in-control-point.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in-out-control-points.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in-out.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-out-control-point.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-out.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit-circle-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg-cracked.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg-fried.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eggs.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/elevator-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/elevator.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/emergency-bed.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/empathize-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/empathize.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/emphasis.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/engine-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/engine.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/equal-double.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/equal-not.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/equal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eraser-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eraser.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/error-404-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/error-404.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/escalator-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/escalator-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/escalator.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exchange-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exchange.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exclamation-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exclamation-mark-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exclamation-mark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/explicit-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/explicit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-0.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-minus-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-minus-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-plus-1.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-plus-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/external-link-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/external-link.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-bitcoin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-closed.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-discount.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-dotted.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-spark.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-table.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eyeglass-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eyeglass-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eyeglass.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-id-error.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-id.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-mask-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-mask.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fall.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/favicon.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/feather-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/feather.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fence-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fence.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ferry.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fidget-spinner.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-3d.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-ai.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-alert.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-analytics.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-arrow-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-arrow-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-barcode.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-bitcoin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-broken.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-certificate.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-chart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-code-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-cv.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-database.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-delta.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-description.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-diff.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-digit.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-dislike.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-dots.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-download.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-euro.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-excel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-export.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-function.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-horizontal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-import.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-infinity.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-info.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-invoice.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-isr.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-lambda.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-like.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-music.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-neutral.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-orientation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-pencil.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-percent.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-phone.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-power.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-report.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-rss.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-sad.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-scissors.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-settings.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-shredder.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-signal.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-smile.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-spark.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-spreadsheet.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-stack.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-symlink.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text-ai.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text-shield.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text-spark.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-time.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-bmp.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-css.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-csv.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-doc.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-docx.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-html.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-jpg.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-js.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-jsx.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-pdf.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-php.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-png.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-ppt.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-rs.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-sql.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-svg.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-ts.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-tsx.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-txt.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-vue.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-xls.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-xml.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-zip.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-typography.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-unknown.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-upload.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-vector.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-word.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-zip.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/files-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/files.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-cog.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-discount.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-down.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-edit.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-spark.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-discount.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-edit.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-spark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filters.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fingerprint-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fingerprint-scan.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fingerprint.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fire-extinguisher.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fire-hydrant-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fire-hydrant.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/firetruck.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/firewall-check.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/firewall-flame.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/first-aid-kit-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/first-aid-kit.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-bone.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-christianity.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-hook-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-hook.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-2-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-3.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-bitcoin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-discount.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-spark.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flame-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flame.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flare.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask-2-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flip-flops.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flip-horizontal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flip-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-center.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-left.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-none.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-right.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flower-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flower.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus-auto.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus-centered.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fold-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fold-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fold.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-open.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-root.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-symlink.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folders-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folders.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forbid-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forbid.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forklift.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forms.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fountain-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fountain.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frame-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frame.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/free-rights.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/freeze-column.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/freeze-row-column.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/freeze-row.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fridge-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fridge.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/friends-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/friends.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frustum-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frustum-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frustum.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/function-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/function.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/galaxy.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/garden-cart-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/garden-cart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gas-station-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gas-station.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gauge-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gauge.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gavel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-agender.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-androgyne.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-bigender.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-demiboy.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-demigirl.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-epicene.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-female.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-femme.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-genderfluid.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-genderless.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-genderqueer.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-hermaphrodite.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-intergender.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-male.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-neutrois.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-third.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-transgender.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-trasvesti.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/geometry.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gif.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gift-card.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gift-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gift.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-branch-deleted.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-branch.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-cherry-pick.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-commit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-compare.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-fork.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-merge.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-pull-request-closed.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-pull-request-draft.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-pull-request.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gizmo.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-champagne.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-cocktail.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-full.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-gin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/globe-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/globe.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/go-game.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/golf-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/golf.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gps.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gradienter.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grain.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/graph-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/graph.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grave-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grave.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-3x3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-4x4.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-dots.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-goldenratio.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-pattern.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-scan.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill-fork.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill-spatula.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grip-horizontal.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grip-vertical.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/growth.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/guitar-pick.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gymnastics.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-1.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-2.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-3.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-4.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-5.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-6.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hammer-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hammer.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-click-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-click.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-grab.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-little-finger.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-love-you.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-middle-finger.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-move.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-ring-finger.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-sanitizer.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-stop.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-three-fingers.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-two-fingers.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hanger-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hanger-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hanger.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hash.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/haze-moon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/haze.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hdr.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heading-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heading.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headphones-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headphones.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headset-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headset.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/health-recognition.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-bitcoin.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-broken.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-discount.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-handshake.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-rate-monitor.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-spark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heartbeat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hearts-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hearts.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helicopter-landing.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helicopter.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helmet-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helmet.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-hexagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-octagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-square-rounded.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-triangle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hemisphere-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hemisphere-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hemisphere.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-3d.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-asterisk.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-a.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-b.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-c.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-d.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-e.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-f.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-h.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-i.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-j.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-k.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-l.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-m.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-n.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-o.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-p.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-q.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-r.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-s.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-t.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-u.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-v.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-w.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-y.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-z.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-minus-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-5.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-6.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-7.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-8.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-9.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-plus-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagons-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagons.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy-3.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/highlight-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/highlight.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/history-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/history-toggle.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/history.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-bitcoin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-dot.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-eco.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-hand.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-infinity.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-link.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-lock.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-move.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-ribbon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-shield.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-signal.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-spark.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-stats.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/horse-toy.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/horse.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/horseshoe.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hospital-circle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hospital.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hotel-service.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-empty.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-high.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-low.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hours-12.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hours-24.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/html.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-connect-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-connect.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-delete-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-delete.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-get-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-get.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-head-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-head.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-options-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-options.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-patch-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-patch.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-post-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-post.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-put-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-put.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-que-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-que.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-trace-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-trace.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-cream-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-cream-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-cream.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-skating.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/iceberg.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/icons-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/icons.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-badge-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-badge-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-badge.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ikosaedr.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/image-generation.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/image-in-picture.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inbox-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inbox.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/indent-decrease.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/indent-increase.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/infinity-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/infinity.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-hexagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-octagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-square-rounded.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-triangle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-ai.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-spark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/invoice.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-steam-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-steam.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/italic.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jacket.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jetpack.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jetski.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jewish-star.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/join-bevel.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/join-round.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/join-straight.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/joker.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jpg.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/json.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jump-rope.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/karate.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/kayak.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/kerning.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/key-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/key.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard-hide.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard-show.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe-align-center.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe-align-horizontal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe-align-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframes.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/label-important.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/label-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/label.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ladder-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ladder.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ladle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lambda.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lamp-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lamp-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lamp.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lane.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language-hiragana.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language-katakana.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lasso-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lasso-polygon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lasso.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-1.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-2.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-3.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-difference.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-intersect-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-intersect.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-linked.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-selected-bottom.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-selected.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-subtract.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-union.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-bottom.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-center.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-middle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-top.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-board-split.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-board.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-collapse.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-expand.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-inactive.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-cards.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-collage.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-columns.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-dashboard.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-distribute-horizontal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-distribute-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-grid-add.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-grid-remove.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-grid.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-kanban.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-list.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar-collapse.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar-expand.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar-inactive.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-rows.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-inactive.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-left-collapse.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-left-expand.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-collapse.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-expand.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-inactive.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/leaf-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/leaf-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/leaf.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lego-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lego.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lemon-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lemon.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-a-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-a.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-b-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-b.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-c-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-c.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case-lower.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case-toggle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case-upper.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-d-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-d.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-e-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-e.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-f-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-f.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-g-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-g.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-h-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-h.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-i-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-i.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-j-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-j.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-k-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-k.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-l-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-l.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-m-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-m.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-n-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-n.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-o-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-o.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-p-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-p.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-q-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-q.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-r-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-r.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-s-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-s.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-spacing.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-t-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-t.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-u-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-u.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-v-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-v.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-w-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-w.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-x-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-y-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-y.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-z-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-z.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library-photo.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/license-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/license.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lifebuoy-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lifebuoy.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lighter.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-dotted.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-height.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-scan.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-check.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-details.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-letters.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-numbers.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-tree.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/live-photo-off.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/live-photo.svg +34 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/live-view.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/load-balancer.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader-quarter.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-broken.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-discount.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-access-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-access.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-bitcoin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-open-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-open-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-open.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-password.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-square-rounded.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-and.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-buffer.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-nand.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-nor.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-not.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-or.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-xnor.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-xor.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/login-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/login.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logout-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logout.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logs.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lollipop-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lollipop.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/luggage-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/luggage.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lungs-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lungs.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/macro-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/macro.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/magnet-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/magnet.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/magnetic.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-ai.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-bitcoin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-fast.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-forward.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-opened.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-spark.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mailbox-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mailbox.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/man.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/manual-gearbox.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-discount.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-east.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-lock.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-north.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pins.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-route.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-shield.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-south.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-west.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/markdown-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/markdown.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/marquee-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/marquee-off.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/marquee.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mars.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mask-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mask.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/masks-theater-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/masks-theater.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/massage.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/matchstick.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-1-divide-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-1-divide-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-avg.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-cos.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-ctg.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-equal-greater.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-equal-lower.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-function-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-function-y.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-function.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-greater.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-integral-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-integral.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-integrals.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-lower.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-max-min.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-max.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-min.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-not.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-pi-divide-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-pi.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-sec.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-sin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-symbols.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-tg.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-divide-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-divide-y-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-divide-y.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-floor-divide-y.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-minus-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-minus-y.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-plus-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-plus-y.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-xy.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-y-minus-y.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-y-plus-y.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/matrix.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/maximize-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/maximize.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meat-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meat.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medal-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medical-cross-circle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medical-cross-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medical-cross.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medicine-syrup.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meeple.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/melon.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menorah.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-4.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-deep.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-order.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mesh.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-chatbot.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-user.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-dots.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-forward.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-language.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-reply.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-report.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-user.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/messages-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/messages.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meteor-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meteor.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meter-cube.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meter-square.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/metronome.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/michelin-bib-gourmand.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/michelin-star-green.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/michelin-star.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mickey.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microfrontends.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone-2-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microscope-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microscope.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microwave-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microwave.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/middleware.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/military-award.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/military-rank.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/milk-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/milk.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/milkshake.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/minimize.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/minus-vertical.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/minus.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mist-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mist.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mobiledata-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mobiledata.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-move-back.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-move.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/monkeybar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-angry.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-annoyed-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-annoyed.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-bitcoin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-boy.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-check.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-cog.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-confuzed.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-crazy-happy.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-cry.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-dollar.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-edit.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-empty.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-happy.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-heart.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-kid.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-nerd.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-nervous.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-neutral.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-pin.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-puzzled.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad-dizzy.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad-squint.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-search.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sick.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-silence.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sing.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-smile-beam.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-smile-dizzy.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-smile.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-spark.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-surprised.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-tongue-wink-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-tongue-wink.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-tongue.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-unamused.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-up.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-wink-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-wink.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-wrrr.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-xd.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon-stars.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moped.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/motorbike.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mountain-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mountain.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mouse-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mouse-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mouse.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moustache.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/movie-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/movie.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mug-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mug.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-0-5x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-1-5x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-1x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-2x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mushroom-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mushroom.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-discount.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-discount.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-east.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-north.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-south.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-top.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-west.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/needle-thread.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/needle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/network-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/network.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/new-section.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/news-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/news.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nfc-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nfc.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/no-copyright.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/no-creative-commons.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/no-derivatives.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/north-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/note-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/note.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notebook-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notebook.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notes-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notes.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notification-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notification.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-0-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-1-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-1.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-10-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-10.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-100-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-11-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-11.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-12-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-123.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-13-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-14-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-15-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-16-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-17-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-18-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-19-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-2-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-20-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-21-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-22-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-23-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-24-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-25-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-26-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-27-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-28-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-29-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-3-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-30-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-31-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-32-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-33-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-34-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-35-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-36-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-37-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-38-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-39-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-4-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-4.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-40-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-41-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-42-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-43-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-44-small.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-45-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-46-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-47-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-48-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-49-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-5-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-5.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-50-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-51-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-52-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-53-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-54-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-55-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-56-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-57-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-58-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-59-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-6-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-6.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-60-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-61-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-62-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-63-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-64-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-65-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-66-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-67-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-68-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-69-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-7-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-7.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-70-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-71-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-72-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-73-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-74-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-75-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-76-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-77-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-78-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-79-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-8-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-8.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-80-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-81-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-82-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-83-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-84-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-85-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-86-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-87-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-88-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-89-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-9-small.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-9.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-90-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-91-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-92-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-93-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-94-small.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-95-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-96-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-97-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-98-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-99-small.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/numbers.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nurse.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nut.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/object-scan.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-minus-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-plus-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octahedron-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octahedron-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octahedron.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/old.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/olympic-torch.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/olympics-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/olympics.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/om.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/omega.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/option.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/outbound.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/outlet.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/oval-vertical.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/oval.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/overline.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package-export.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package-import.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/packages.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pacman.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/page-break.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paint-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paint.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/palette-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/palette.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-horizontal-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-horizontal.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-vertical-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-vertical.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paper-bag-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paper-bag.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paperclip.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parachute-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parachute.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parentheses-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parentheses.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking-circle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking-meter.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password-fingerprint.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password-mobile-phone.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password-user.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paw-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paw.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paywall.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pdf.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/peace.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-discount.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pennant-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pennant-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pennant.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-5.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-6.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-7.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-8.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-9.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagram.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pepper-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pepper.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-0.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-10.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-100.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-20.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-25.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-30.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-33.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-40.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-50.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-60.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-66.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-70.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-75.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-80.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-90.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/perfume.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/perspective-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/perspective.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-call.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-calling.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-done.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-end.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-incoming.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-outgoing.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-plus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-ringing.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-spark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-ai.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-bitcoin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-bolt.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-cancel.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-check.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-circle-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-circle-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-circle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-code.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-cog.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-down.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-edit.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-exclamation.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-hexagon.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-pause.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-pentagon.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-scan.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-sensor-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-sensor-3.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-sensor.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-shield.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-spark.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-square-rounded.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-up.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-video.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/physotherapist.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/piano.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pick.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picnic-table.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-on.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-top.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pig-money.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pig-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pig.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pilcrow-left.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pilcrow-right.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pilcrow.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pill-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pill.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pillow.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pills.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pin-end.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pin-invoke.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ping-pong.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pinned-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pinned.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pipeline.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pizza-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pizza.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/placeholder.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-arrival.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-departure.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-inflight.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-tilt.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/planet-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/planet.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant-2-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-basketball.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-1.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-10.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-4.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-5.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-6.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-7.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-8.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-9.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-a.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-j.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-k.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-q.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-football.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-handball.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-volleyball.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-eject.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-pause.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-play.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-record.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-skip-back.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-skip-forward.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-stop.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-track-next.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-track-prev.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist-add.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-circle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-square.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-triangle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-connected-x.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-connected.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plus-equal.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plus-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/png.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/podium-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/podium.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/point-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/point.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pokeball-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pokeball.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/poker-chip.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/polaroid.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/polygon-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/polygon.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/poo.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pool-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pool.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/power.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pray.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/premium-rights.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prescription.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/presentation-analytics.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/presentation-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/presentation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/printer-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/printer.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism-light.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prison.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-alert.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-bolt.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-check.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-down.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-help.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-x.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prompt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prong.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/propeller-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/propeller.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/protocol.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pumpkin-scary.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/puzzle-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/puzzle-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/puzzle.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pyramid-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pyramid-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pyramid.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/qrcode-off.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/qrcode.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/question-mark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/queue-pop-in.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/queue-pop-out.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quote-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quote-open.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quote.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quotes.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radar-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radar-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radio-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radio.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radioactive-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radioactive.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-bottom-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-bottom-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-top-left.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-top-right.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rainbow-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rainbow.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-12-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-14-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-16-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-18-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-21-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/razor-electric.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/razor.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-bitcoin.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-euro.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-pound.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-refund.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-rupee.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-tax.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-yen.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-yuan.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/recharging.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/record-mail-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/record-mail.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle-rounded-bottom.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle-rounded-top.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle-vertical.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangular-prism-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangular-prism-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangular-prism.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/recycle-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/recycle.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh-alert.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh-dot.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/regex-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/regex.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/registered.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/relation-many-to-many.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/relation-one-to-many.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/relation-one-to-one.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/reload.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/reorder.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/repeat-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/repeat-once.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/repeat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/replace-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/replace-user.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/replace.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-analytics.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-medical.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-money.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-search.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/reserved-line.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/resize.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/restore.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-10.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-15.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-20.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-30.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-40.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-5.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-50.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-60.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-10.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-15.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-20.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-30.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-40.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-5.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-50.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-60.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ribbon-health.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rings.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/road-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/road-sign.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/road.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/robot-face.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/robot-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/robot.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rocket-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rocket.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/roller-skating.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rollercoaster-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rollercoaster.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-asterisk.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount-check-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-5.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-6.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-7.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-8.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-9.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-360.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-3d.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-clockwise-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-clockwise.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-dot.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-rectangle.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-alt-left.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-alt-right.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-scan.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-square-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-x-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/router-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/router.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/row-insert-bottom.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/row-insert-top.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/row-remove.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rss.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rubber-stamp-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rubber-stamp.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-2-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-3.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-measure-2.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-measure.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/run.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rv-truck.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sailboat-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sailboat-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sailboat.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/salad.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/salt.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sandbox.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/satellite-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/satellite.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sausage.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale-outline-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale-outline.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-eye.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-letter-a.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-letter-t.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-position.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-traces.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/schema-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/schema.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/school-bell.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/school-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/school.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scissors-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scissors.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scooter-electric.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scooter.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scoreboard.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/screen-share-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/screen-share.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/screenshot.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scribble-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scribble.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script-x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-diving-tank.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-diving.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-mask-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-mask.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sdk.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/search-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/search.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/section-sign.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/section.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/seedling-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/seedling.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/segway.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/select-all.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/select.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/selector.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/send-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/send-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/send.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/seo.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/separator-horizontal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/separator-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/separator.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-bolt.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-cog.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-spark.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/serverless.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/servicemark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-ai.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-automation.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-spark.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shadow-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shadow.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape-2.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape-3.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share-3.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shareplay.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-bolt.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-cancel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-checkered.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-chevron.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-cog.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-dollar.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-exclamation.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-half.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-heart.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-lock.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-pause.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-pin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-question.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-search.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-share.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-star.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ship-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ship.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shirt-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shirt-sport.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shirt.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shoe-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shoe.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-discount.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-bolt.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-cancel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-check.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-code.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-cog.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-copy.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-discount.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-dollar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-exclamation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-pause.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-pin.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-question.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-search.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-star.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-up.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-x.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shovel-pitchforks.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shovel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shredder.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sign-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sign-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-2g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-3g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-4g-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-4g.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-5g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-6g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-e.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-g.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-h-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-h.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-lte.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signature-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signature.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sitemap-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sitemap.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skateboard-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skateboard.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skateboarding.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skew-x.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skew-y.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ski-jumping.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skull.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slash.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slashes.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sleigh.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slice.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slideshow.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smart-home-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smart-home.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smoking-no.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smoking.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowboarding.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowflake-off.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowflake.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowman.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/soccer-field.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/social-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/social.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sock.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sofa-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sofa.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/solar-electricity.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/solar-panel-2.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/solar-panel.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-0-9.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-9-0.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-a-z.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-letters.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-numbers.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-shapes.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-small-big.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-letters.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-numbers.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-shapes.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-small-big.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-z-a.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sos.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/soup-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/soup.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/source-code.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/space-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/space.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spaces.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spacing-horizontal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spacing-vertical.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spade.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sparkles-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sparkles.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/speakerphone.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/speedboat.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sphere-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sphere-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sphere.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spider.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spiral-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spiral.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sport-billard.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spray.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spy-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spy.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sql.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-asterisk.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-dashed.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-dot.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f0.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f1.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f4.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f5.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f6.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f7.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f8.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f9.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-forbid-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-forbid.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-half.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-key.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-a.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-b.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-c.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-d.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-e.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-f.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-h.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-i.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-j.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-k.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-l.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-m.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-n.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-o.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-p.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-q.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-r.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-s.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-t.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-u.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-v.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-w.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-y.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-z.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-minus-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-5.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-6.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-7.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-8.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-9.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-percentage.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-plus-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-root-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-root.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-asterisk.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-forbid-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-forbid.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-check.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-a.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-b.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-c.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-d.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-e.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-f.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-g.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-h.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-i.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-j.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-k.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-l.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-m.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-n.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-o.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-p.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-q.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-r.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-s.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-t.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-u.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-v.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-w.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-y.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-z.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-minus-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-0.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-4.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-5.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-6.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-7.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-8.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-9.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-percentage.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-plus-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-toggle-horizontal.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-toggle.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/squares-diagonal.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/squares-selected.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/squares.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-back.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-backward.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-forward.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-front.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-middle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-pop.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-push.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stairs-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stairs-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stairs.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/star-half.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/star-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/star.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stars-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stars.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/status-change.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/steam.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/steering-wheel-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/steering-wheel.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/step-into.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/step-out.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stereo-glasses.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stethoscope-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stethoscope.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sticker-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sticker.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stopwatch.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/storm-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/storm.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stretching-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stretching.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/strikethrough.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stroke-curved.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stroke-dynamic.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stroke-straight.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/submarine.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subscript.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtask.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles-ai.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles-edit.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sum-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sum.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-electricity.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-high.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-low.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-moon.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-wind.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunglasses.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunrise.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunset-2.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunset.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/superscript.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/svg.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swimming.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-down.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-left.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-right.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-up.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-3.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-horizontal.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-vertical.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sword-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sword.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swords.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-alias.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-column.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-dashed.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-down.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-export.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-heart.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-import.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-options.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-row.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-share.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-shortcut.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-spark.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-starred.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tags-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tags.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-1.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-4.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymarks.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tank.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/target-arrow.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/target-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/target.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tax-euro.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tax-pound.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tax.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/teapot.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/telescope-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/telescope.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-celsius.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-fahrenheit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-snow.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-sun.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/template-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/template.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tent-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tent.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/terminal-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/terminal.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/test-pipe-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/test-pipe-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/test-pipe.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tex.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-caption.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-color.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-decrease.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-direction-ltr.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-direction-rtl.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-grammar.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-increase.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-orientation.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-recognition.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-resize.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-scan-2.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-size.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-spellcheck.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-wrap-column.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-wrap-disabled.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-wrap.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/texture.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/theater.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thermometer.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-down-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-down.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-up-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-up.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tic-tac.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ticket-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ticket.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tie.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tilde.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tilt-shift-off.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tilt-shift.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-0.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-10.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-15.svg +29 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-30.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-45.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-5.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-60.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-90.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-exclamation.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-minus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-plus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-text.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-x.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timezone.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tip-jar-euro.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tip-jar-pound.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tip-jar.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tir.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toggle-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toggle-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toilet-paper-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toilet-paper.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toml.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tool.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-2-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-2.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-3.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tooltip.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-bus.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-complex.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-full-hierarchy.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-full.svg +28 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-ring-2.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-ring-3.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-ring.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-2.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-3.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-ring-2.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-ring-3.svg +37 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-ring.svg +31 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/torii.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tornado.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tournament.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tower-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tower.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/track.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tractor.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trademark.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-cone-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-cone.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-lights-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-lights.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/train.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-bitcoin.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-dollar.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-euro.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-pound.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-rupee.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-yen.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-yuan.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer-in.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer-out.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer-vertical.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-bottom-left.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-bottom-right.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-top-left.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-top-right.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-bottom.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-left.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-right.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-top.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trash-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trash-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trash.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/treadmill.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tree.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trees.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trekking.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-down-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-down-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-down.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-inverted.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-minus-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-minus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-plus-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-plus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-square-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangles.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trident.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trolley.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trophy-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trophy.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trowel.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-delivery.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-loading.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-return.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/txt.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/typeface.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/typography-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/typography.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/u-turn-left.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/u-turn-right.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ufo-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ufo.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/uhd.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-closed-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-closed.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/underline.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/universe.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/unlink.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/upload.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/urgent.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/usb.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-bitcoin.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-bolt.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-circle.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-cog.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-dollar.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-down.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-edit.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-heart.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-hexagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-key.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-pause.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-pentagon.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-pin.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-scan.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-screen.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-search.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-share.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-shield.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-square-rounded.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-square.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-star.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-up.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-x.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users-group.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users-plus.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/uv-index.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ux-circle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine-bottle-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine-bottle.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vacuum-cleaner.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable-minus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier-2.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier-arc.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier-circle.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-spline.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-triangle-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-triangle.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/venus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/versions-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/versions.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video-minus.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video-plus.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360-arrow.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360-number.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewfinder-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewfinder.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-narrow.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-short.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-tall.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-wide.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vinyl.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vip-2.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vip-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vip.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/virus-off.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/virus-search.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/virus.svg +35 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vocabulary-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vocabulary.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volcano.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-2.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-3.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-4.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vs.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/walk.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wall-off.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wall.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallet-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallet.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallpaper-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallpaper.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wand-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wand.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-1.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-3.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-a.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-dip.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-f.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-flat.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-hang.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-p.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-shade.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-w.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dryclean-off.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dryclean.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-eco.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-gentle.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-hand.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-machine.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-press.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-1.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-2.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-3.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-4.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-5.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-6.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-tumble-dry.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-tumble-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/waterpolo.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wave-saw-tool.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wave-sine.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wave-square.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/waves-electricity.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/webhook-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/webhook.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/weight.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheat-off.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheat.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheel.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheelchair-off.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheelchair.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/whirl.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/whisk.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-0.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-1.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-2.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wind-electricity.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wind-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wind.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/windmill-off.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/windmill.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window-maximize.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window-minimize.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/windsock.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wiper-wash.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wiper.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/woman.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wood.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-bolt.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-cancel.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-check.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-code.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-cog.svg +30 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-dollar.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-down.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-download.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-exclamation.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-heart.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-latitude.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-longitude.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-map.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-minus.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-off.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-pause.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-pin.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-plus.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-question.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-search.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-share.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-star.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-up.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-upload.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-www.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-x.svg +25 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wrecking-ball.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing-sign-off.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing-sign.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/x-mark.svg +19 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/x-power-y.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/x.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-a.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-b.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-x.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-y.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xd.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xxx.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/yin-yang.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/yoga.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zeppelin-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zeppelin.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zero-config.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zip.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-aquarius.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-aries.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-cancer.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-capricorn.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-gemini.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-leo.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-libra.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-pisces.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-sagittarius.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-scorpio.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-taurus.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-virgo.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-cancel.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-check.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-code.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-exclamation.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-in-area.svg +27 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-in.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-money.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-out-area.svg +26 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-out.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-pan.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-question.svg +22 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-replace.svg +23 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-reset.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-scan.svg +24 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zzz-off.svg +21 -0
- ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zzz.svg +20 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/README.md +80 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/01_cover.svg +49 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/02_chapter.svg +36 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/02_toc.svg +63 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/03_content.svg +58 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/04_ending.svg +52 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/design_spec.md +235 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/01_cover.svg +65 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/02_chapter.svg +36 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/02_toc.svg +51 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/03_content.svg +37 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/04_ending.svg +59 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/design_spec.md +324 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/reference_style.svg +154 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/01_cover.svg +93 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/02_chapter.svg +82 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/02_toc.svg +107 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/03_content.svg +78 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/04_ending.svg +81 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/design_spec.md +202 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/01_cover.svg +73 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/02_chapter.svg +66 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/02_toc.svg +88 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/03_content.svg +66 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/04_ending.svg +75 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/design_spec.md +195 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/layouts_index.json +87 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/01_cover.svg +71 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/02_chapter.svg +50 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/02_toc.svg +97 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/03_content.svg +78 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/04_ending.svg +79 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/design_spec.md +237 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/01_cover.svg +138 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/02_chapter.svg +130 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/02_toc.svg +130 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/03_content.svg +50 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/04_ending.svg +167 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/design_spec.md +266 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/01_cover.svg +78 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/02_chapter.svg +82 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/02_toc.svg +115 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/03_content.svg +41 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/04_ending.svg +100 -0
- ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/design_spec.md +341 -0
- ppt_master-0.1.0/skills/ppt-master/templates/spec_lock_reference.md +143 -0
ppt_master-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-2026 Hugo He
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,406 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ppt-master
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI-driven multi-format SVG content generation system
|
|
5
|
+
Author: elvisw
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Repository, https://github.com/elvisw/ppt-master
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: python-pptx>=0.6.21
|
|
16
|
+
Requires-Dist: edge-tts>=7.2.8
|
|
17
|
+
Requires-Dist: svglib>=1.5.0
|
|
18
|
+
Requires-Dist: reportlab>=4.0.0
|
|
19
|
+
Requires-Dist: PyMuPDF>=1.23.0
|
|
20
|
+
Requires-Dist: mammoth>=1.6.0
|
|
21
|
+
Requires-Dist: markdownify>=0.11.6
|
|
22
|
+
Requires-Dist: ebooklib>=0.18
|
|
23
|
+
Requires-Dist: nbconvert>=7.0.0
|
|
24
|
+
Requires-Dist: openpyxl>=3.1.0
|
|
25
|
+
Requires-Dist: Pillow>=9.0.0
|
|
26
|
+
Requires-Dist: numpy>=1.20.0
|
|
27
|
+
Requires-Dist: requests>=2.31.0
|
|
28
|
+
Requires-Dist: beautifulsoup4>=4.12.0
|
|
29
|
+
Requires-Dist: curl_cffi>=0.7.0
|
|
30
|
+
Requires-Dist: google-genai>=1.0.0
|
|
31
|
+
Requires-Dist: openai>=1.0.0
|
|
32
|
+
Requires-Dist: flask>=3.0.0
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
|
|
35
|
+
# PPT Master — AI generates natively editable PPTX from any document
|
|
36
|
+
|
|
37
|
+
[](https://github.com/hugohe3/ppt-master/releases)
|
|
38
|
+
[](https://opensource.org/licenses/MIT)
|
|
39
|
+
[](https://github.com/hugohe3/ppt-master/stargazers)
|
|
40
|
+
[](https://atomgit.com/hugohe3/ppt-master)
|
|
41
|
+
|
|
42
|
+
English | [中文](./README_CN.md)
|
|
43
|
+
|
|
44
|
+
<p align="center">
|
|
45
|
+
<sub>This project is kept free and open source with the support of <a href="https://www.packyapi.com/register?aff=ppt-master">PackyCode</a>, <a href="https://apikey.fun/register?aff=PPT-MASTER">APIKEY.FUN</a> and other sponsors.</sub>
|
|
46
|
+
</p>
|
|
47
|
+
|
|
48
|
+
<table>
|
|
49
|
+
<tr>
|
|
50
|
+
<td width="180"><a href="https://www.packyapi.com/register?aff=ppt-master"><img src="docs/assets/sponsors/packycode.png" alt="PackyCode" width="150"></a></td>
|
|
51
|
+
<td>Thanks to PackyCode for sponsoring this project! PackyCode is a reliable and efficient API relay service provider, offering relay services for Claude Code, Codex, Gemini, and more. PackyCode provides special discounts for our project users: register using <a href="https://www.packyapi.com/register?aff=ppt-master">this link</a> and enter the promo code <strong>ppt-master</strong> during recharge to get 10% off.</td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr>
|
|
54
|
+
<td width="180"><a href="https://apikey.fun/register?aff=PPT-MASTER"><img src="docs/assets/sponsors/apikey-fun.png" alt="APIKEY.FUN" width="150"></a></td>
|
|
55
|
+
<td>Thanks to APIKEY.FUN for sponsoring this project! APIKEY.FUN is a professional enterprise-grade AI relay service committed to stable, efficient, and low-cost AI access for businesses and developers. The platform supports mainstream models including Claude, OpenAI, and Gemini, with prices as low as <strong>7% of official rates</strong>. Register through <a href="https://apikey.fun/register?aff=PPT-MASTER">our dedicated link</a> for an exclusive perk: <strong>up to 5% off on top-ups, permanently</strong>.</td>
|
|
56
|
+
</tr>
|
|
57
|
+
</table>
|
|
58
|
+
|
|
59
|
+
> [!IMPORTANT]
|
|
60
|
+
> ### This is a tool, not a wishing well
|
|
61
|
+
> Don't expect it to hand you a finished, perfect deck in one shot. Its real value is taking most of the tedious work off your plate; the polishing that's left is yours — a natively editable deck exists precisely so you can keep working on it, not a flat image you can't touch. The cheaper the model, the more there is to do. How good the result turns out comes down to your skill with this project and with PowerPoint.
|
|
62
|
+
|
|
63
|
+
<p align="center">
|
|
64
|
+
<a href="https://hugohe3.github.io/ppt-master/"><strong>Live Demo</strong></a> ·
|
|
65
|
+
<a href="https://www.hehugo.com/"><strong>About Hugo He</strong></a> ·
|
|
66
|
+
<a href="./examples/"><strong>Examples</strong></a> ·
|
|
67
|
+
<a href="./docs/faq.md"><strong>FAQ</strong></a> ·
|
|
68
|
+
<a href="./docs/roadmap.md"><strong>Roadmap</strong></a> ·
|
|
69
|
+
<a href="mailto:heyug3@gmail.com"><strong>Contact</strong></a>
|
|
70
|
+
</p>
|
|
71
|
+
|
|
72
|
+
<h3 align="center">Download the new <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_attention_is_all_you_need/exports/attention_is_all_you_need_narrated.pptx">narrated <em>Attention Is All You Need</em> deck</a> — play it in PowerPoint and every slide reads itself out loud. That's just the tip of what PPT Master can do.</h3>
|
|
73
|
+
<h3 align="center">Of course, you can also download any of the six example decks below — opening the raw .pptx in PowerPoint is the fastest way to see this project's real capability ceiling.</h3>
|
|
74
|
+
|
|
75
|
+
<table>
|
|
76
|
+
<tr>
|
|
77
|
+
<td align="center" width="33%">
|
|
78
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_pritzker_2026"><img src="docs/assets/screenshots/preview_pritzker_2026.png" alt="Editorial magazine — Pritzker 2026 architecture review" /></a><br/>
|
|
79
|
+
<sub><b>Editorial Magazine</b> — architecture photography, calm typographic grid<br/>
|
|
80
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_pritzker_2026">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_pritzker_2026/exports/pritzker_2026.pptx">Download .pptx</a></sub>
|
|
81
|
+
</td>
|
|
82
|
+
<td align="center" width="33%">
|
|
83
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_global_ai_capital_2026"><img src="docs/assets/screenshots/preview_global_ai_capital.png" alt="Data journalism — Global AI Capital 2026" /></a><br/>
|
|
84
|
+
<sub><b>Data Journalism</b> — Bloomberg-style dark dashboard, chart-driven<br/>
|
|
85
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_global_ai_capital_2026">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_global_ai_capital_2026/exports/global_ai_capital_2026.pptx">Download .pptx</a></sub>
|
|
86
|
+
</td>
|
|
87
|
+
<td align="center" width="33%">
|
|
88
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_swiss_grid_systems"><img src="docs/assets/screenshots/preview_swiss_grid.png" alt="Swiss typographic grid — Grid Systems primer" /></a><br/>
|
|
89
|
+
<sub><b>Swiss Grid</b> — strict modular grid, restrained type, red-accent<br/>
|
|
90
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_swiss_grid_systems">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_swiss_grid_systems/exports/swiss_grid_systems.pptx">Download .pptx</a></sub>
|
|
91
|
+
</td>
|
|
92
|
+
</tr>
|
|
93
|
+
<tr>
|
|
94
|
+
<td align="center" width="33%">
|
|
95
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_glassmorphism_demo"><img src="docs/assets/screenshots/preview_glassmorphism_demo.png" alt="Glassmorphism SaaS — AI Agent engineering demo" /></a><br/>
|
|
96
|
+
<sub><b>Glassmorphism SaaS</b> — translucent layers, gradient depth, product UI<br/>
|
|
97
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_glassmorphism_demo">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_glassmorphism_demo/exports/glassmorphism_demo.pptx">Download .pptx</a></sub>
|
|
98
|
+
</td>
|
|
99
|
+
<td align="center" width="33%">
|
|
100
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_sugar_rush_memphis"><img src="docs/assets/screenshots/preview_sugar_rush_memphis.png" alt="Memphis pop — Sugar Rush festival" /></a><br/>
|
|
101
|
+
<sub><b>Memphis Pop</b> — bold primaries, geometric patterns, playful energy<br/>
|
|
102
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_sugar_rush_memphis">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_sugar_rush_memphis/exports/sugar_rush_memphis.pptx">Download .pptx</a></sub>
|
|
103
|
+
</td>
|
|
104
|
+
<td align="center" width="33%">
|
|
105
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_indie_bookstore_zine_guide"><img src="docs/assets/screenshots/preview_indie_bookstore_zine.png" alt="Risograph zine — Indie bookstore guide" /></a><br/>
|
|
106
|
+
<sub><b>Risograph Zine</b> — duotone print, hand-made bookstore-culture feel<br/>
|
|
107
|
+
<a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_indie_bookstore_zine_guide">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_indie_bookstore_zine_guide/exports/indie_bookstore_zine_guide.pptx">Download .pptx</a></sub>
|
|
108
|
+
</td>
|
|
109
|
+
</tr>
|
|
110
|
+
</table>
|
|
111
|
+
|
|
112
|
+
<p align="center">
|
|
113
|
+
<sub>Generated with Claude Opus 4.7 + <code>gpt-image-2</code>. <a href="https://hugohe3.github.io/ppt-master/">Flip through all examples online →</a> · <a href="./examples/"><code>examples/</code> directory</a> · <a href="./docs/why-ppt-master.md">Why PPT Master?</a></sub>
|
|
114
|
+
</p>
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
Drop in your source material and get back a **real PowerPoint**: directly editable, with native slide transitions and entrance animations, speaker notes you can turn into audio narration, and the option to follow your own PPT template — a complete deck you can present as-is and keep editing. How to use each capability → [Getting Started](./docs/getting-started.md).
|
|
119
|
+
|
|
120
|
+
> **⚠️ PPT Master is a harness, not a complete agent.** `harness + model = agent` — the tool owns the workflow; the model sets the ceiling. To form a genuinely high-quality agent, use **Claude with a large context window (~1M tokens) + AI image generation (`gpt-image-2`)**. Other models can run the pipeline but cannot reach the same quality ceiling. If results disappoint, upgrade the model — don't blame the harness.
|
|
121
|
+
|
|
122
|
+
> **How it works** — PPT Master is a workflow (a "skill") that works inside AI IDEs like Claude Code, Cursor, VS Code + Copilot, or Codebuddy. You chat with the AI — "make a deck from this PDF" — and it follows the workflow to produce a real editable `.pptx` on your computer. No coding on your side; the IDE is just where the conversation happens.
|
|
123
|
+
>
|
|
124
|
+
> **What you'll do**: install Python, install an AI IDE, drop in your material.
|
|
125
|
+
|
|
126
|
+
> **Why it's shaped this way** — knowing how to use Python and AI agents will matter more and more. This project is meant to show how far you can go with just those two things. There's a learning curve if you're starting cold, but it's the curve worth climbing. Making a deck is just the excuse — what I'm really pushing is Python and agents.
|
|
127
|
+
|
|
128
|
+
PPT Master is different:
|
|
129
|
+
|
|
130
|
+
- **Real PowerPoint** — if a file can't be opened and edited in PowerPoint, it shouldn't be called a PPT. Every element PPT Master outputs is directly clickable and editable
|
|
131
|
+
- **Transparent, predictable cost** — the tool is free and open source; the only cost is your AI model usage. As AI tools move to usage-based billing, you pay exactly what you consume — no separate PPT subscription added on top
|
|
132
|
+
- **Data stays local** — your files shouldn't have to be uploaded to someone else's server just to make a presentation. Apart from AI model communication, the entire pipeline runs on your machine
|
|
133
|
+
- **No platform lock-in** — your workflow shouldn't be held hostage by any single company. Works with Claude Code, Cursor, VS Code Copilot, and more; supports Claude, GPT, Gemini, Kimi, and other models
|
|
134
|
+
|
|
135
|
+
AI presentation tools roughly fall into four categories. PPT Master only does the last one:
|
|
136
|
+
|
|
137
|
+
| Category | Output | Editable element-by-element in PowerPoint? |
|
|
138
|
+
|---|---|:---:|
|
|
139
|
+
| Template fill-in | PPTX built from a fixed template | Partially — limited by the template |
|
|
140
|
+
| Image-based | One large image per slide, packed into PPTX | ❌ each slide is a picture |
|
|
141
|
+
| HTML presentation | Web-based deck | ❌ not a PPTX |
|
|
142
|
+
| **Native editable (PPT Master)** | **Real DrawingML shapes, text boxes, charts** | ✅ click any element to edit |
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## The person using it matters more
|
|
147
|
+
|
|
148
|
+
The examples above were all made in a single pass — I didn't even refine them; spend some time polishing and it's a different story entirely. With the same PowerPoint, a designer can produce something stunning while most people only ever touch a few basic features — the difference isn't the tool, it's the person using it. If you can't get there yet, it's most likely that you haven't learned the workflow — start with [Getting Started](./docs/getting-started.md) and the example projects.
|
|
149
|
+
|
|
150
|
+
The best results do need Claude. Before you call it expensive, think about what it would cost to hire someone to produce a deck at the same level. The project also supports GPT, Gemini, Kimi, and other models — the results simply differ. Expecting top-tier output while paying the lowest possible cost was never reasonable to begin with.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## Built by Hugo He
|
|
155
|
+
|
|
156
|
+
I'm a finance professional (CPA · CPV · Consulting Engineer (Investment)) who regularly reviews and edits presentation decks. I wanted AI-generated slides to remain editable in PowerPoint, not flattened into images — so I built this.
|
|
157
|
+
|
|
158
|
+
🌐 [Personal website](https://www.hehugo.com/) · 📧 [heyug3@gmail.com](mailto:heyug3@gmail.com) · 🐙 [@hugohe3](https://github.com/hugohe3)
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## Quick Start
|
|
163
|
+
|
|
164
|
+
### 1. Prerequisites
|
|
165
|
+
|
|
166
|
+
**You only need Python and uv.** uv is a Python package manager. `uv sync` installs all dependencies into an isolated virtual environment — no global pollution.
|
|
167
|
+
|
|
168
|
+
| Dependency | Required? | What it does |
|
|
169
|
+
|------------|:---------:|--------------|
|
|
170
|
+
| [Python](https://www.python.org/downloads/) 3.10+ | ✅ **Yes** | Core runtime |
|
|
171
|
+
| [uv](https://docs.astral.sh/uv/getting-started/installation/) | ✅ **Yes** | Python package manager — isolated environments, no global pollution |
|
|
172
|
+
|
|
173
|
+
> **TL;DR** — Install Python and uv, run `uv sync`, and you're ready to generate presentations.
|
|
174
|
+
|
|
175
|
+
<details open>
|
|
176
|
+
<summary><strong>Windows</strong> — see the dedicated step-by-step guide ⚠️</summary>
|
|
177
|
+
|
|
178
|
+
Windows requires a few extra steps (PATH setup, execution policy, etc.). We wrote a **step-by-step guide** specifically for Windows users:
|
|
179
|
+
|
|
180
|
+
**📖 [Windows Installation Guide](./docs/windows-installation.md)** — from zero to a working presentation in 10 minutes.
|
|
181
|
+
|
|
182
|
+
Quick version: download Python from [python.org](https://www.python.org/downloads/) → **check "Add to PATH"** during install → install [uv](https://docs.astral.sh/uv/getting-started/installation/) → `uv sync` → done.
|
|
183
|
+
</details>
|
|
184
|
+
|
|
185
|
+
<details>
|
|
186
|
+
<summary><strong>macOS / Linux</strong> — install and go</summary>
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
# macOS
|
|
190
|
+
brew install python uv
|
|
191
|
+
uv sync
|
|
192
|
+
|
|
193
|
+
# Ubuntu / Debian
|
|
194
|
+
sudo apt install python3
|
|
195
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
196
|
+
uv sync
|
|
197
|
+
```
|
|
198
|
+
</details>
|
|
199
|
+
|
|
200
|
+
<details>
|
|
201
|
+
<summary><strong>Edge-case fallback</strong> — 99% of users don't need this</summary>
|
|
202
|
+
|
|
203
|
+
**Pandoc** — only needed for legacy document formats: `.doc`, `.odt`, `.rtf`, `.tex`, `.rst`, `.org`, or `.typ`. `.docx`, `.html`, `.epub`, `.ipynb` are handled natively by Python — no pandoc required.
|
|
204
|
+
|
|
205
|
+
```bash
|
|
206
|
+
# macOS
|
|
207
|
+
brew install pandoc
|
|
208
|
+
|
|
209
|
+
# Ubuntu / Debian
|
|
210
|
+
sudo apt install pandoc
|
|
211
|
+
```
|
|
212
|
+
</details>
|
|
213
|
+
|
|
214
|
+
### 2. Pick an Agent
|
|
215
|
+
|
|
216
|
+
PPT Master runs in **any tool with agent capability** — read/write files, execute commands, and sustain multi-turn conversation.
|
|
217
|
+
|
|
218
|
+
| Type | Examples | Notes |
|
|
219
|
+
|---|---|---|
|
|
220
|
+
| **IDE-native agent** | • VS Code architecture ([VS Code](https://code.visualstudio.com/) itself, plus forks & derivatives): [Cursor](https://cursor.sh/), Trae, Codebuddy IDE, [Windsurf](https://codeium.com/windsurf), Void, etc.<br>• Other architectures: [Zed](https://zed.dev/), etc. | Editor with a built-in agent |
|
|
221
|
+
| **IDE plugin / extension** | [GitHub Copilot](https://github.com/features/copilot), [Claude Code](https://claude.ai/code) (VS Code / JetBrains extension), [Cline](https://cline.bot/), [Continue](https://continue.dev/), Roo Code, etc. | Installed inside hosts like VS Code or JetBrains |
|
|
222
|
+
| **CLI agent** | [Claude Code](https://claude.ai/code) CLI, [Codex CLI](https://github.com/openai/codex), [Aider](https://aider.chat/), Gemini CLI, etc. | Runs in the terminal; suits scripting, remote, or server use |
|
|
223
|
+
|
|
224
|
+
> **Model recommendation**: for the best results, use **Claude Opus** with `gpt-image-2`; **Gemini 3.5 Flash** currently offers great overall value for money — notably fast and well worth a try.
|
|
225
|
+
|
|
226
|
+
**🔑 Want to use Claude / GPT / Gemini but don't have access yet?** Project sponsors **[PackyCode](https://www.packyapi.com/register?aff=ppt-master)** and **[APIKEY.FUN](https://apikey.fun/register?aff=PPT-MASTER)** can help — both offer pay-as-you-go access to Claude, GPT, Gemini and more, no subscription required. **PackyCode**: 10% off with promo code **`ppt-master`** at top-up. **APIKEY.FUN**: prices as low as **7% of official rates**; register via our link for an exclusive permanent discount of up to 5% on top-ups.
|
|
227
|
+
|
|
228
|
+
### 3. Set Up
|
|
229
|
+
|
|
230
|
+
**Option A — Download ZIP** (no Git required): click **Code → Download ZIP** on the [GitHub page](https://github.com/hugohe3/ppt-master), then unzip.
|
|
231
|
+
|
|
232
|
+
**Option B — Git clone** (requires [Git](https://git-scm.com/downloads) installed):
|
|
233
|
+
|
|
234
|
+
```bash
|
|
235
|
+
git clone https://github.com/hugohe3/ppt-master.git
|
|
236
|
+
cd ppt-master
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
Then install dependencies:
|
|
240
|
+
|
|
241
|
+
```bash
|
|
242
|
+
uv sync
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
> ⚠️ **Two install options**:
|
|
246
|
+
>
|
|
247
|
+
> **Local build** (from repo root):
|
|
248
|
+
> ```bash
|
|
249
|
+
> uv build --wheel # Pre-build (~4min, one-time)
|
|
250
|
+
> mv dist/ppt_master-*.whl dist/ppt-master-latest-py3-none-any.whl
|
|
251
|
+
> uv tool install ppt-master-latest-py3-none-any.whl # Installs instantly
|
|
252
|
+
> ```
|
|
253
|
+
>
|
|
254
|
+
> **Direct download** (no repo needed):
|
|
255
|
+
> ```bash
|
|
256
|
+
> curl -LO https://github.com/elvisw/ppt-master/releases/latest/download/ppt-master-latest-py3-none-any.whl
|
|
257
|
+
> uv tool install ppt-master-latest-py3-none-any.whl
|
|
258
|
+
> ```
|
|
259
|
+
|
|
260
|
+
To update later (Option A / B): `uvx ppt-master update-repo`
|
|
261
|
+
|
|
262
|
+
> **Option C — Skill marketplace**: the repo ships `.claude-plugin/marketplace.json`, so it can be installed through the [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) ecosystem:
|
|
263
|
+
>
|
|
264
|
+
> ```bash
|
|
265
|
+
> # Cross-agent CLI (Claude Code, Cursor, Codex, etc.)
|
|
266
|
+
> npx skills add hugohe3/ppt-master
|
|
267
|
+
>
|
|
268
|
+
> # Or inside Claude Code
|
|
269
|
+
> /plugin marketplace add hugohe3/ppt-master
|
|
270
|
+
> /plugin install ppt-master@ppt-master
|
|
271
|
+
> ```
|
|
272
|
+
>
|
|
273
|
+
> Both install paths above only fetch the skill files (not the full repo); you still need to `uv sync` from the installed location for the post-processing scripts to run.
|
|
274
|
+
|
|
275
|
+
### 4. Create
|
|
276
|
+
|
|
277
|
+
**Provide source materials (recommended):** Place your PDF, DOCX, images, or other files in the `projects/` directory, then tell the AI chat panel which files to use. The quickest way to get the path: right-click the file in your file manager or IDE sidebar → **Copy Path** (or **Copy Relative Path**) and paste it directly into the chat.
|
|
278
|
+
|
|
279
|
+
```
|
|
280
|
+
You: Please create a PPT from projects/q3-report/sources/report.pdf
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
**Paste content directly:** You can also paste text content straight into the chat window and the AI will generate a PPT from it.
|
|
284
|
+
|
|
285
|
+
```
|
|
286
|
+
You: Please turn the following into a PPT: [paste your content here...]
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
Either way, the AI will first confirm the design spec:
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
AI: Sure. Let's confirm the design spec:
|
|
293
|
+
[Template] B) Free design
|
|
294
|
+
[Format] PPT 16:9
|
|
295
|
+
[Pages] 8-10 pages
|
|
296
|
+
...
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
The AI handles everything — content analysis, visual design, SVG generation, and PPTX export.
|
|
300
|
+
|
|
301
|
+
> **Output:** Native-shapes `.pptx` (directly editable) saved to `exports/<name>_<timestamp>.pptx`. A copy of `svg_output/` is always snapshotted to `backup/<timestamp>/svg_output/` for re-export / archival. Pass `--svg-snapshot` to additionally emit an SVG-image preview pptx alongside the native pptx in `exports/` (see [FAQ](./docs/faq.md)). Requires Office 2016+.
|
|
302
|
+
|
|
303
|
+
> **Already have a `.pptx` you want to reuse?** Hand the AI that deck plus your material and ask it to "fill this deck with the new content" — it fills text, table, and chart data into your existing design and exports only the pages you pick, staying natively editable. See the [FAQ](./docs/faq.md) and [template-fill workflow](./skills/ppt-master/workflows/template-fill-pptx.md).
|
|
304
|
+
|
|
305
|
+
> **AI lost context?** Ask it to read `skills/ppt-master/SKILL.md`.
|
|
306
|
+
|
|
307
|
+
> **Something went wrong?** Check the **[FAQ](./docs/faq.md)** — it covers model selection, layout issues, export problems, and more. Continuously updated from real user reports.
|
|
308
|
+
|
|
309
|
+
### 5. Image Acquisition (Optional)
|
|
310
|
+
|
|
311
|
+
Two paths for non-user images, mixable per row in the same deck:
|
|
312
|
+
|
|
313
|
+
For API-backed features, put credentials in `.env`. Clone installs can use `cp .env.example .env`; skill marketplace installs should use a persistent user config:
|
|
314
|
+
|
|
315
|
+
```bash
|
|
316
|
+
mkdir -p ~/.ppt-master
|
|
317
|
+
cp /path/to/installed/ppt-master/.env.example ~/.ppt-master/.env
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
PPT Master reads the current process environment first, then the first `.env` found in this order: current working directory, skill directory (e.g. `~/.agents/skills/ppt-master/.env`), clone repo root, `~/.ppt-master/.env`.
|
|
321
|
+
|
|
322
|
+
**A) AI generation** — `image_gen.py`. Set `IMAGE_BACKEND` plus the provider's `*_API_KEY` (`OPENAI_API_KEY`, `GEMINI_API_KEY`, etc.), and the pipeline calls it automatically. Run `uvx ppt-master image-gen --list-backends` for the full backend list. `gpt-image-2` is currently the best default.
|
|
323
|
+
|
|
324
|
+
**B) Web image search** — `image_search.py`. **Zero-config works**, but configure `PEXELS_API_KEY` / `PIXABAY_API_KEY` (both free) for higher-quality results. Without keys, search uses Openverse / Wikimedia Commons only; this is useful as a fallback, but image quality can be uneven because many results are ordinary user uploads. With keys, the default provider chain also appends Pexels / Pixabay, which materially improves modern stock photography, people, workplace, lifestyle, and illustration coverage. The default is quality-first: CC0, Public Domain, Pexels / Pixabay no-attribution licenses, CC BY, and CC BY-SA are considered together, and Executor adds a small inline credit whenever the selected image requires attribution. Use `--strict-no-attribution` only when a slide cannot tolerate any credit line. For high-impact covers, product shots, portraits, and branded scenes, prefer this order: user-provided high-resolution assets / AI generation > web search with Pexels / Pixabay keys > zero-config web search.
|
|
325
|
+
|
|
326
|
+
> Full reference: [`image-generator.md`](./skills/ppt-master/references/image-generator.md) (AI) · [`image-searcher.md`](./skills/ppt-master/references/image-searcher.md) (web).
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
330
|
+
## Documentation
|
|
331
|
+
|
|
332
|
+
| | Document | Description |
|
|
333
|
+
|---|----------|-------------|
|
|
334
|
+
| 📘 | [Getting Started](./docs/getting-started.md) | First deck in 3 steps, plus how to use templates, live preview, animations, narration, voice cloning (**new users start here**) |
|
|
335
|
+
| 🆚 | [Why PPT Master](./docs/why-ppt-master.md) | How it compares to Gamma, Copilot, and other AI tools |
|
|
336
|
+
| 🪟 | [Windows Installation](./docs/windows-installation.md) | Step-by-step setup guide for Windows users |
|
|
337
|
+
| 📖 | [SKILL.md](./skills/ppt-master/SKILL.md) | Core workflow and rules |
|
|
338
|
+
| 📐 | [Canvas Formats](./skills/ppt-master/references/canvas-formats.md) | PPT 16:9, Xiaohongshu, WeChat, and 10+ formats |
|
|
339
|
+
| 🛠️ | [Scripts & Tools](./skills/ppt-master/scripts/README.md) | All scripts and commands |
|
|
340
|
+
| 💼 | [Examples](./examples/README.md) | All example projects |
|
|
341
|
+
| 🏗️ | [Technical Design](./docs/technical-design.md) | Architecture, design philosophy, why SVG |
|
|
342
|
+
| ❓ | [FAQ](./docs/faq.md) | Model selection, cost, layout troubleshooting, custom templates |
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
## Contributing
|
|
347
|
+
|
|
348
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for how to get involved.
|
|
349
|
+
|
|
350
|
+
## License
|
|
351
|
+
|
|
352
|
+
[MIT](LICENSE)
|
|
353
|
+
|
|
354
|
+
## Acknowledgments
|
|
355
|
+
|
|
356
|
+
[SVG Repo](https://www.svgrepo.com/) · [Tabler Icons](https://github.com/tabler/tabler-icons) · [Simple Icons](https://github.com/simple-icons/simple-icons) · [Phosphor Icons](https://github.com/phosphor-icons/core) · [Robin Williams](https://en.wikipedia.org/wiki/Robin_Williams_(author)) (CRAP principles)
|
|
357
|
+
|
|
358
|
+
## Contact & Collaboration
|
|
359
|
+
|
|
360
|
+
Looking to collaborate, integrate PPT Master into your workflow, or just have questions?
|
|
361
|
+
|
|
362
|
+
- 💬 **Questions & sharing** — [GitHub Discussions](https://github.com/hugohe3/ppt-master/discussions)
|
|
363
|
+
- 🐛 **Bug reports & feature requests** — [GitHub Issues](https://github.com/hugohe3/ppt-master/issues)
|
|
364
|
+
- 🌐 **Learn more about the author** — [www.hehugo.com](https://www.hehugo.com/)
|
|
365
|
+
|
|
366
|
+
---
|
|
367
|
+
|
|
368
|
+
## Star History
|
|
369
|
+
|
|
370
|
+
<a href="https://star-history.com/#hugohe3/ppt-master&Date">
|
|
371
|
+
<picture>
|
|
372
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date&theme=dark" />
|
|
373
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date" />
|
|
374
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date" />
|
|
375
|
+
</picture>
|
|
376
|
+
</a>
|
|
377
|
+
|
|
378
|
+
---
|
|
379
|
+
|
|
380
|
+
## Sponsors & Support
|
|
381
|
+
|
|
382
|
+
PPT Master is currently built and maintained primarily by me. Every new template, bug fix, and documentation update takes ongoing resources — currently shared by the sponsors and individual supporters below.
|
|
383
|
+
|
|
384
|
+
**Corporate sponsors**
|
|
385
|
+
|
|
386
|
+
<a href="https://www.packyapi.com/register?aff=ppt-master"><img src="docs/assets/sponsors/packycode.png" alt="PackyCode" height="40" /></a>
|
|
387
|
+
|
|
388
|
+
<a href="https://apikey.fun/register?aff=PPT-MASTER"><img src="docs/assets/sponsors/apikey-fun.png" alt="APIKEY.FUN" height="40" /></a>
|
|
389
|
+
|
|
390
|
+
<a href="https://m.do.co/c/547f129aabe1"><img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_blue.svg" alt="Powered by DigitalOcean" height="40" /></a>
|
|
391
|
+
|
|
392
|
+
**Individual support**
|
|
393
|
+
|
|
394
|
+
If PPT Master has been helpful to you, individual support of any amount helps keep the project moving and free.
|
|
395
|
+
|
|
396
|
+
<a href="https://paypal.me/hugohe3"><img src="https://img.shields.io/badge/PayPal-Sponsor-00457C?style=for-the-badge&logo=paypal&logoColor=white" alt="Sponsor via PayPal" /></a>
|
|
397
|
+
|
|
398
|
+
<img src="docs/assets/alipay-qr.jpg" alt="Alipay QR Code" width="220" />
|
|
399
|
+
|
|
400
|
+
---
|
|
401
|
+
|
|
402
|
+
Made with ❤️ by [Hugo He](https://www.hehugo.com/) — if this project helps you, please give it a ⭐ and consider [sponsoring](#sponsors--support).
|
|
403
|
+
|
|
404
|
+
<sub>Official distribution: <a href="https://github.com/hugohe3/ppt-master">GitHub</a> (primary) · <a href="https://atomgit.com/hugohe3/ppt-master">AtomGit</a> (mirror). Redistributions on other platforms are unofficial. MIT licensed — attribution required.</sub>
|
|
405
|
+
|
|
406
|
+
[⬆ Back to Top](#ppt-master--ai-generates-natively-editable-pptx-from-any-document)
|