novelWriter 2.6.2__py3-none-any.whl → 2.7b1__py3-none-any.whl

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.
Files changed (334) hide show
  1. novelwriter/__init__.py +84 -74
  2. novelwriter/assets/i18n/nw_cs_CZ.qm +0 -0
  3. novelwriter/assets/i18n/nw_de_DE.qm +0 -0
  4. novelwriter/assets/i18n/nw_en_US.qm +0 -0
  5. novelwriter/assets/i18n/nw_es_419.qm +0 -0
  6. novelwriter/assets/i18n/nw_fr_FR.qm +0 -0
  7. novelwriter/assets/i18n/nw_it_IT.qm +0 -0
  8. novelwriter/assets/i18n/nw_ja_JP.qm +0 -0
  9. novelwriter/assets/i18n/nw_nb_NO.qm +0 -0
  10. novelwriter/assets/i18n/nw_nl_NL.qm +0 -0
  11. novelwriter/assets/i18n/nw_pl_PL.qm +0 -0
  12. novelwriter/assets/i18n/nw_pt_BR.qm +0 -0
  13. novelwriter/assets/i18n/nw_ru_RU.qm +0 -0
  14. novelwriter/assets/i18n/nw_zh_CN.qm +0 -0
  15. novelwriter/assets/i18n/project_en_GB.json +1 -0
  16. novelwriter/assets/icons/font_awesome.icons +109 -0
  17. novelwriter/assets/icons/material_filled_bold.icons +109 -0
  18. novelwriter/assets/icons/material_filled_normal.icons +109 -0
  19. novelwriter/assets/icons/material_filled_thin.icons +109 -0
  20. novelwriter/assets/icons/material_rounded_bold.icons +109 -0
  21. novelwriter/assets/icons/material_rounded_normal.icons +109 -0
  22. novelwriter/assets/icons/material_rounded_thin.icons +109 -0
  23. novelwriter/assets/icons/remix_filled.icons +108 -0
  24. novelwriter/assets/icons/remix_outline.icons +108 -0
  25. novelwriter/assets/manual.pdf +0 -0
  26. novelwriter/assets/{manual_fr_FR.pdf → manual_fr.pdf} +0 -0
  27. novelwriter/assets/sample.zip +0 -0
  28. novelwriter/assets/syntax/cyberpunk_night.conf +1 -1
  29. novelwriter/assets/text/credits_en.htm +6 -6
  30. novelwriter/assets/themes/cyberpunk_night.conf +23 -7
  31. novelwriter/assets/themes/default_dark.conf +20 -4
  32. novelwriter/assets/themes/default_light.conf +21 -5
  33. novelwriter/assets/themes/dracula.conf +20 -4
  34. novelwriter/assets/themes/solarized_dark.conf +24 -8
  35. novelwriter/assets/themes/solarized_light.conf +22 -6
  36. novelwriter/common.py +33 -26
  37. novelwriter/config.py +118 -127
  38. novelwriter/constants.py +75 -56
  39. novelwriter/core/buildsettings.py +23 -16
  40. novelwriter/core/coretools.py +11 -7
  41. novelwriter/core/docbuild.py +19 -13
  42. novelwriter/core/document.py +2 -2
  43. novelwriter/core/index.py +142 -432
  44. novelwriter/core/indexdata.py +403 -0
  45. novelwriter/core/item.py +35 -28
  46. novelwriter/core/itemmodel.py +27 -26
  47. novelwriter/core/novelmodel.py +223 -0
  48. novelwriter/core/options.py +1 -1
  49. novelwriter/core/project.py +10 -11
  50. novelwriter/core/projectdata.py +5 -5
  51. novelwriter/core/projectxml.py +1 -1
  52. novelwriter/core/sessions.py +3 -2
  53. novelwriter/core/spellcheck.py +4 -3
  54. novelwriter/core/status.py +12 -15
  55. novelwriter/core/storage.py +1 -1
  56. novelwriter/core/tree.py +46 -8
  57. novelwriter/dialogs/about.py +19 -22
  58. novelwriter/dialogs/docmerge.py +21 -23
  59. novelwriter/dialogs/docsplit.py +20 -23
  60. novelwriter/dialogs/editlabel.py +9 -13
  61. novelwriter/dialogs/preferences.py +111 -48
  62. novelwriter/dialogs/projectsettings.py +48 -54
  63. novelwriter/dialogs/quotes.py +14 -19
  64. novelwriter/dialogs/wordlist.py +25 -30
  65. novelwriter/enum.py +8 -0
  66. novelwriter/error.py +16 -16
  67. novelwriter/extensions/configlayout.py +18 -18
  68. novelwriter/extensions/eventfilters.py +9 -5
  69. novelwriter/extensions/modified.py +34 -15
  70. novelwriter/extensions/novelselector.py +18 -5
  71. novelwriter/extensions/pagedsidebar.py +39 -49
  72. novelwriter/extensions/progressbars.py +10 -8
  73. novelwriter/extensions/statusled.py +6 -13
  74. novelwriter/extensions/switch.py +19 -30
  75. novelwriter/extensions/switchbox.py +7 -3
  76. novelwriter/extensions/versioninfo.py +4 -4
  77. novelwriter/formats/shared.py +1 -1
  78. novelwriter/formats/todocx.py +14 -10
  79. novelwriter/formats/tohtml.py +7 -5
  80. novelwriter/formats/tokenizer.py +36 -33
  81. novelwriter/formats/tomarkdown.py +6 -2
  82. novelwriter/formats/toodt.py +27 -22
  83. novelwriter/formats/toqdoc.py +19 -14
  84. novelwriter/formats/toraw.py +6 -2
  85. novelwriter/gui/doceditor.py +216 -265
  86. novelwriter/gui/dochighlight.py +46 -45
  87. novelwriter/gui/docviewer.py +102 -104
  88. novelwriter/gui/docviewerpanel.py +47 -51
  89. novelwriter/gui/editordocument.py +8 -5
  90. novelwriter/gui/itemdetails.py +15 -18
  91. novelwriter/gui/mainmenu.py +147 -146
  92. novelwriter/gui/noveltree.py +239 -405
  93. novelwriter/gui/outline.py +137 -76
  94. novelwriter/gui/projtree.py +138 -132
  95. novelwriter/gui/search.py +33 -31
  96. novelwriter/gui/sidebar.py +13 -18
  97. novelwriter/gui/statusbar.py +13 -15
  98. novelwriter/gui/theme.py +533 -430
  99. novelwriter/guimain.py +27 -29
  100. novelwriter/shared.py +32 -23
  101. novelwriter/text/comments.py +70 -0
  102. novelwriter/text/patterns.py +4 -4
  103. novelwriter/tools/dictionaries.py +20 -29
  104. novelwriter/tools/lipsum.py +16 -17
  105. novelwriter/tools/manusbuild.py +39 -42
  106. novelwriter/tools/manuscript.py +113 -126
  107. novelwriter/tools/manussettings.py +78 -83
  108. novelwriter/tools/noveldetails.py +51 -64
  109. novelwriter/tools/welcome.py +56 -75
  110. novelwriter/tools/writingstats.py +44 -57
  111. novelwriter/types.py +5 -7
  112. {novelWriter-2.6.2.dist-info → novelwriter-2.7b1.dist-info}/METADATA +6 -6
  113. novelwriter-2.7b1.dist-info/RECORD +159 -0
  114. {novelWriter-2.6.2.dist-info → novelwriter-2.7b1.dist-info}/WHEEL +1 -1
  115. novelWriter-2.6.2.dist-info/RECORD +0 -363
  116. novelwriter/assets/icons/typicons_dark/README.md +0 -29
  117. novelwriter/assets/icons/typicons_dark/icons.conf +0 -134
  118. novelwriter/assets/icons/typicons_dark/mixed_copy.svg +0 -4
  119. novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -12
  120. novelwriter/assets/icons/typicons_dark/mixed_document-new.svg +0 -6
  121. novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -12
  122. novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -12
  123. novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -12
  124. novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -12
  125. novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -4
  126. novelwriter/assets/icons/typicons_dark/mixed_import.svg +0 -5
  127. novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -5
  128. novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -5
  129. novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -5
  130. novelwriter/assets/icons/typicons_dark/mixed_margin-bottom.svg +0 -6
  131. novelwriter/assets/icons/typicons_dark/mixed_margin-left.svg +0 -6
  132. novelwriter/assets/icons/typicons_dark/mixed_margin-right.svg +0 -6
  133. novelwriter/assets/icons/typicons_dark/mixed_margin-top.svg +0 -6
  134. novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -6
  135. novelwriter/assets/icons/typicons_dark/mixed_size-height.svg +0 -6
  136. novelwriter/assets/icons/typicons_dark/mixed_size-width.svg +0 -6
  137. novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -4
  138. novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -4
  139. novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +0 -4
  140. novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -4
  141. novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +0 -4
  142. novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -4
  143. novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +0 -4
  144. novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -4
  145. novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +0 -4
  146. novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -4
  147. novelwriter/assets/icons/typicons_dark/nw_font.svg +0 -4
  148. novelwriter/assets/icons/typicons_dark/nw_panel.svg +0 -4
  149. novelwriter/assets/icons/typicons_dark/nw_quote.svg +0 -4
  150. novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -4
  151. novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -4
  152. novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -4
  153. novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -4
  154. novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +0 -4
  155. novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -6
  156. novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +0 -4
  157. novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +0 -6
  158. novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg +0 -7
  159. novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +0 -4
  160. novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -6
  161. novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -7
  162. novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -7
  163. novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -7
  164. novelwriter/assets/icons/typicons_dark/nw_toolbar.svg +0 -5
  165. novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -4
  166. novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -4
  167. novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -4
  168. novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -4
  169. novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -4
  170. novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -4
  171. novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -6
  172. novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -4
  173. novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -4
  174. novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -4
  175. novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -4
  176. novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -4
  177. novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -4
  178. novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -4
  179. novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -4
  180. novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -4
  181. novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -4
  182. novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -4
  183. novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -4
  184. novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -4
  185. novelwriter/assets/icons/typicons_dark/typ_document-add.svg +0 -4
  186. novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -8
  187. novelwriter/assets/icons/typicons_dark/typ_document.svg +0 -4
  188. novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -4
  189. novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -4
  190. novelwriter/assets/icons/typicons_dark/typ_eye.svg +0 -4
  191. novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -4
  192. novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -4
  193. novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -5
  194. novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -4
  195. novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -4
  196. novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -4
  197. novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -4
  198. novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -4
  199. novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -4
  200. novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -4
  201. novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -4
  202. novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -5
  203. novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -4
  204. novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -4
  205. novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -4
  206. novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -4
  207. novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -4
  208. novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -4
  209. novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -4
  210. novelwriter/assets/icons/typicons_dark/typ_search-grey.svg +0 -4
  211. novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -4
  212. novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -4
  213. novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -4
  214. novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -4
  215. novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg +0 -4
  216. novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -4
  217. novelwriter/assets/icons/typicons_dark/typ_th-list.svg +0 -9
  218. novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -4
  219. novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -5
  220. novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg +0 -4
  221. novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg +0 -4
  222. novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -5
  223. novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -4
  224. novelwriter/assets/icons/typicons_light/README.md +0 -29
  225. novelwriter/assets/icons/typicons_light/icons.conf +0 -134
  226. novelwriter/assets/icons/typicons_light/mixed_copy.svg +0 -4
  227. novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -12
  228. novelwriter/assets/icons/typicons_light/mixed_document-new.svg +0 -6
  229. novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -12
  230. novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -12
  231. novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -12
  232. novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -12
  233. novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -4
  234. novelwriter/assets/icons/typicons_light/mixed_import.svg +0 -5
  235. novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -5
  236. novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -5
  237. novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -5
  238. novelwriter/assets/icons/typicons_light/mixed_margin-bottom.svg +0 -6
  239. novelwriter/assets/icons/typicons_light/mixed_margin-left.svg +0 -6
  240. novelwriter/assets/icons/typicons_light/mixed_margin-right.svg +0 -6
  241. novelwriter/assets/icons/typicons_light/mixed_margin-top.svg +0 -6
  242. novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -6
  243. novelwriter/assets/icons/typicons_light/mixed_size-height.svg +0 -6
  244. novelwriter/assets/icons/typicons_light/mixed_size-width.svg +0 -6
  245. novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -4
  246. novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -4
  247. novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +0 -4
  248. novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -4
  249. novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +0 -4
  250. novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -4
  251. novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +0 -4
  252. novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -4
  253. novelwriter/assets/icons/typicons_light/nw_deco-note.svg +0 -4
  254. novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -4
  255. novelwriter/assets/icons/typicons_light/nw_font.svg +0 -4
  256. novelwriter/assets/icons/typicons_light/nw_panel.svg +0 -4
  257. novelwriter/assets/icons/typicons_light/nw_quote.svg +0 -4
  258. novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -4
  259. novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -4
  260. novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -4
  261. novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -4
  262. novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +0 -4
  263. novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -6
  264. novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +0 -4
  265. novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +0 -6
  266. novelwriter/assets/icons/typicons_light/nw_tb-mark.svg +0 -7
  267. novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +0 -4
  268. novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -6
  269. novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -7
  270. novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -7
  271. novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -7
  272. novelwriter/assets/icons/typicons_light/nw_toolbar.svg +0 -5
  273. novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -4
  274. novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -4
  275. novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -4
  276. novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -4
  277. novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -4
  278. novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -4
  279. novelwriter/assets/icons/typicons_light/typ_book.svg +0 -6
  280. novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -4
  281. novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -4
  282. novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -4
  283. novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -4
  284. novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -4
  285. novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -4
  286. novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -4
  287. novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -4
  288. novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -4
  289. novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -4
  290. novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -4
  291. novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -4
  292. novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -4
  293. novelwriter/assets/icons/typicons_light/typ_document-add.svg +0 -4
  294. novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -5
  295. novelwriter/assets/icons/typicons_light/typ_document.svg +0 -4
  296. novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -4
  297. novelwriter/assets/icons/typicons_light/typ_export.svg +0 -4
  298. novelwriter/assets/icons/typicons_light/typ_eye.svg +0 -4
  299. novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -4
  300. novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -4
  301. novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -5
  302. novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -4
  303. novelwriter/assets/icons/typicons_light/typ_key.svg +0 -4
  304. novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -4
  305. novelwriter/assets/icons/typicons_light/typ_location.svg +0 -4
  306. novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -4
  307. novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -4
  308. novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -4
  309. novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -4
  310. novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -5
  311. novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -4
  312. novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -4
  313. novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -4
  314. novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -4
  315. novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -4
  316. novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -4
  317. novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -4
  318. novelwriter/assets/icons/typicons_light/typ_search-grey.svg +0 -4
  319. novelwriter/assets/icons/typicons_light/typ_search.svg +0 -4
  320. novelwriter/assets/icons/typicons_light/typ_star.svg +0 -4
  321. novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -4
  322. novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -4
  323. novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg +0 -4
  324. novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -4
  325. novelwriter/assets/icons/typicons_light/typ_th-list.svg +0 -9
  326. novelwriter/assets/icons/typicons_light/typ_times.svg +0 -4
  327. novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -5
  328. novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg +0 -4
  329. novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg +0 -4
  330. novelwriter/assets/icons/typicons_light/typ_user.svg +0 -5
  331. novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -4
  332. {novelWriter-2.6.2.dist-info → novelwriter-2.7b1.dist-info}/entry_points.txt +0 -0
  333. {novelWriter-2.6.2.dist-info → novelwriter-2.7b1.dist-info/licenses}/LICENSE.md +0 -0
  334. {novelWriter-2.6.2.dist-info → novelwriter-2.7b1.dist-info}/top_level.txt +0 -0
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.861 3.6198c-0.46061-0.1909-0.99019-0.084979-1.3424 0.26725-1.5567 1.5555-4.0901 1.5567-5.648 0-2.5186-2.5161-6.6136-2.5161-9.131 0-0.23154 0.23031-0.36085 0.54436-0.36085 0.87073v16.011c0 0.67983 0.55052 1.2316 1.2316 1.2316 0.68107 0 1.2316-0.55175 1.2316-1.2316v-5.6074c1.5653-1.2279 3.8438-1.122 5.2872 0.32021 2.5186 2.5161 6.6148 2.5161 9.131 0 0.23154-0.23154 0.36086-0.54436 0.36086-0.87073v-9.8527c0-0.49879-0.30051-0.94709-0.75989-1.138z" fill="#f99157" stroke-width="1.2316"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m21.316 8.1937h-2.2836c-0.38061-1.1418-1.4273-1.903-2.6643-1.903h-5.7091c0-1.0466-0.85636-1.903-1.903-1.903h-3.9012c-1.6175 0-2.8545 1.237-2.8545 2.8545v9.5154c0 1.6175 1.237 2.8545 2.8545 2.8545h11.418c1.6175 0 3.2352-1.237 3.6157-2.8545l2.0934-7.6121c0.09515-0.57091-0.1903-0.95154-0.66605-0.95154zm-17.413 0.95154v-1.903c0-0.57091 0.38061-0.95154 0.95154-0.95154h3.8061c0 1.0466 0.85636 1.903 1.903 1.903h5.7091c0.57091 0 0.95154 0.38061 0.95154 0.95154h-10.562c-0.57091 0-1.0466 0.38061-1.237 0.95154l-1.5225 5.9945zm14.177 7.1363c-0.1903 0.76121-1.0466 1.4273-1.8079 1.4273h-11.418s-0.38061-0.1903-0.1903-0.76121l1.8079-6.6605c0-0.09515 0.1903-0.1903 0.28545-0.1903h13.035z" fill="#aeaeae" stroke-width=".95154"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m5.334 5.25c-0.61333 0-1.1113 0.504-1.1113 1.125v2.25h15.555c0-0.621-0.498-1.125-1.1113-1.125h-6.666c-1.2267 0-2.2227-1.008-2.2227-2.25h-4.4434zm-1.1113 4.5v7.875c1e-7 0.621 0.49799 1.125 1.1113 1.125h13.332c0.61333 0 1.1113-0.504 1.1113-1.125v-7.875h-15.555z" fill="#ffffc0"/>
4
- <path d="m18.667 5.25h-6.6667c0-1.242-0.99556-2.25-2.2222-2.25h-4.4444c-1.8378 0-3.3333 1.5142-3.3333 3.375v11.25c0 1.8608 1.4956 3.375 3.3333 3.375h13.333c1.8378 0 3.3333-1.5142 3.3333-3.375v-9c0-1.8608-1.4956-3.375-3.3333-3.375zm-13.333 0h4.4444c0 1.242 0.99556 2.25 2.2222 2.25h6.6667c0.61333 0 1.1111 0.504 1.1111 1.125h-15.556v-2.25c0-0.621 0.49778-1.125 1.1111-1.125zm13.333 13.5h-13.333c-0.61333 0-1.1111-0.504-1.1111-1.125v-7.875h15.556v7.875c0 0.621-0.49778 1.125-1.1111 1.125z" fill="#ffff84" stroke-width="1.118"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m10.594 21.6h-4.8c-0.6636 0-1.2 0.5364-1.2 1.2s0.5364 1.2 1.2 1.2h12c0.6636 0 1.2-0.5364 1.2-1.2s-0.5364-1.2-1.2-1.2h-4.8v-1.476c1.968-0.4452 3.7752-1.4256 5.2356-2.8872 2.04-2.04 3.1644-4.752 3.1644-7.6368 0-2.4804-0.8304-4.8348-2.3616-6.7428l0.81-0.8076c0.4692-0.4692 0.4692-1.2276 0.0012-1.698-0.4692-0.4692-1.2288-0.468-1.698-0.0012l-2.4624 2.4588 0.8496 0.8496c1.5864 1.5864 2.4612 3.6972 2.4612 5.9412s-0.8748 4.3524-2.4612 5.9388-3.6948 2.4612-5.9388 2.4612-4.3524-0.8748-5.9388-2.4612c-0.4692-0.4692-1.2276-0.4692-1.6968 0-0.4692 0.468-0.4692 1.2276 0 1.6968 2.0388 2.04 4.7508 3.1644 7.6356 3.1644zm0-19.2c1.9884 0 3.7884 0.8064 5.0916 2.1084 1.302 1.3032 2.1084 3.1032 2.1084 5.0916 0 1.9872-0.8064 3.7872-2.1084 5.0904-1.3032 1.3032-3.1032 2.1096-5.0916 2.1096-1.9896 0-3.7884-0.8064-5.0904-2.1084-1.302-1.3032-2.1072-3.1032-2.1072-5.0916s0.8052-3.7884 2.1072-5.0916c1.302-1.302 3.1008-2.1084 5.0904-2.1084z" fill="#aeaeae" stroke-width="1.2"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m7.3571 9.1429c0 1.0457 0.23714 2.0343 0.64143 2.93l-5.6414 5.6414v2.1429s1.28 2.1429 2.8571 2.1429h2.8571v-2.8571h2.8571v-2.8571h3.5714c3.9457 0 7.1429-3.1971 7.1429-7.1429 0-3.9457-3.1971-7.1429-7.1429-7.1429s-7.1429 3.1971-7.1429 7.1429zm7.1429 2.8571c-1.5771 0-2.8571-1.28-2.8571-2.8571 0-1.5786 1.28-2.86 2.8571-2.86 1.5786 0 2.8571 1.28 2.8571 2.86 0 1.5771-1.2786 2.8571-2.8571 2.8571z" fill="#cda66f" stroke-width="1.4286"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 5.1429c-0.31543 0-0.57143 0.256-0.57143 0.57143s0.256 0.57143 0.57143 0.57143c1.2377 0 2.2446 1.0069 2.2446 2.2446 0 0.31543 0.256 0.57143 0.57143 0.57143s0.57143-0.256 0.57143-0.57143c0-1.8674-1.52-3.3874-3.3874-3.3874zm0-5.1429c-4.7269 0-8.5714 3.8446-8.5714 8.5714 0 1.6983 0.50286 3.3394 1.456 4.76l0.091429 0.15428c2.0857 2.9783 2.4526 3.92 2.4526 4.8v3.4286c0 0.63086 0.512 1.1429 1.1429 1.1429h2.2857c0 0.29714 0.12572 0.59429 0.33143 0.81143 0.21714 0.20572 0.51429 0.33143 0.81143 0.33143s0.59428-0.12571 0.81143-0.33143c0.20571-0.21714 0.33143-0.51428 0.33143-0.81143h2.2857c0.63086 0 1.1429-0.512 1.1429-1.1429v-3.4286c0-0.89371 0.36457-1.84 2.4366-4.7989 1.0229-1.4571 1.5634-3.1566 1.5634-4.9154 0-4.7269-3.8446-8.5714-8.5714-8.5714zm2.2857 20.571h-4.5714v-1.1429h4.5714zm2.8514-8.3966c-1.6754 2.392-2.4491 3.7589-2.7257 4.968h-1.2686v-2.2857c0-0.63086-0.512-1.1429-1.1429-1.1429-0.63086 0-1.1429 0.512-1.1429 1.1429v2.2857h-1.272c-0.27428-1.1771-1.0263-2.5143-2.6354-4.8229l-0.088-0.14743c-0.75086-1.0674-1.1474-2.3131-1.1474-3.6011 0-3.4663 2.8194-6.2857 6.2857-6.2857s6.2857 2.8194 6.2857 6.2857c0 1.2869-0.39657 2.5326-1.1486 3.6034z" fill="#69c" stroke-width="1.1429"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m17.954 4.4261c-3.2885-3.2348-8.6201-3.2348-11.909 0-3.2885 3.2358-3.2885 8.4812 0 11.716l5.9538 5.858 5.9548-5.858c3.2885-3.2348 3.2885-8.4801 0-11.716zm-5.9548 8.6264c-0.70317 0-1.3632-0.27369-1.8611-0.77054-1.0263-1.0263-1.0263-2.6958 0-3.7222 0.49685-0.49685 1.1579-0.77054 1.8611-0.77054s1.3642 0.27369 1.8611 0.77054c1.0263 1.0263 1.0263 2.6969 0 3.7222-0.49685 0.49685-1.1579 0.77054-1.8611 0.77054z" fill="#69c" stroke-width="1.0526"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.75 3c-1.656 0-3 1.344-3 3v12c0 1.656 1.344 3 3 3 1.656 0 3-1.344 3-3v-12c0-1.656-1.344-3-3-3zm10.5 0c-1.656 0-3 1.344-3 3v12c0 1.656 1.344 3 3 3s3-1.344 3-3v-12c0-1.656-1.344-3-3-3z" fill="#aeaeae" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 6c3.3075 0 6 2.691 6 6s-2.6925 6-6 6-6-2.691-6-6 2.6925-6 6-6m0-3c-4.971 0-9 4.029-9 9 0 4.968 4.029 9 9 9 4.968 0 9-4.032 9-9 0-4.971-4.032-9-9-9z" fill="#69c" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M 21,12 C 21,9.5145 19.992,7.2645 18.3645,5.6355 16.7355,4.008 14.4855,3 12,3 9.516,3 7.266,4.008 5.637,5.6355 4.008,7.2645 3,9.5145 3,12 3,14.484 4.008,16.734 5.637,18.363 7.266,19.992 9.516,21 12,21 14.4855,21 16.7355,19.992 18.3645,18.363 19.992,16.734 21,14.484 21,12 Z" fill="#69c" stroke-width="1.5"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.5 9.5h-15c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h15c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" fill="#d64848" stroke-width="1.25"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M21 6.879l-3.879-3.879c-.293-.293-.678-.439-1.061-.439-.384 0-.767.146-1.06.439l-10.939 10.939c-.293.293-.558.727-.75 1.188-.192.463-.311.959-.311 1.373v4.5h4.5c.414 0 .908-.119 1.371-.311.463-.192.896-.457 1.189-.75l10.94-10.939c.293-.293.439-.678.439-1.061 0-.384-.146-.767-.439-1.06zm-15.232 8.182l8.293-8.293 1.232 1.232-8.293 8.293-1.232-1.232zm1.732 3.939h-1.5l-1-1v-1.5c0-.077.033-.305.158-.605.01-.02 2.967 2.938 2.967 2.938-.322.134-.548.167-.625.167zm1.439-.768l-1.232-1.232 8.293-8.293 1.232 1.232-8.293 8.293zm9-9l-3.172-3.172 1.293-1.293 3.17 3.172-1.291 1.293z" fill="#9c9"/>
4
- <path d="m3 18.414v2.5859h2.5605z" fill="#0a0a0a" opacity=".95"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m21.322 7.3994-4.7022-4.7281c-0.88446-0.88916-2.4264-0.89857-3.3285-0.0070569-0.23052 0.23052-0.41165 0.5128-0.49163 0.73979-0.76802 1.6019-1.5925 2.6052-2.651 3.2073l-0.25522 0.12349c-1.1385 0.57043-2.6875 1.1514-5.5502 1.1514-0.31285 0-0.61277 0.061159-0.90092 0.17877-0.56925 0.23758-1.0338 0.6998-1.2726 1.2749-0.23405 0.56925-0.23405 1.2244 0 1.7936 0.12232 0.29286 0.29404 0.55396 0.51162 0.76567l3.8048 3.8048-4.4952 6.2959 6.2947-4.4952 3.7954 3.7954c0.21876 0.22229 0.47751 0.39871 0.77155 0.51868 0.29051 0.12114 0.5916 0.18113 0.90092 0.18113s0.61042-0.06116 0.89975-0.18113c0.58572-0.24111 1.0385-0.69628 1.2702-1.2679 0.12114-0.28463 0.1823-0.5963 0.1823-0.90328 0-2.8651 0.58101-4.4129 1.1503-5.5526 0.58337-1.1667 1.6101-2.0559 3.2391-2.8392 0.31873-0.12232 0.59983-0.30109 0.83624-0.5375 0.90798-0.91974 0.90328-2.4123-0.0094-3.3191zm-6.1724 5.6467c-0.96326 1.9324-1.3973 3.9636-1.4055 6.5911l-9.4009-9.3985c2.5158 0 4.4858-0.39401 6.3465-1.2749l0.27639-0.12349c1.6454-0.82212 2.9027-2.2264 3.9848-4.5093l4.6152 4.7645c-2.1912 1.0503-3.5943 2.3052-4.4164 3.9507z" fill="#69c" stroke-width="1.1761"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m16.642 2.3676c-0.48554-0.48803-1.2744-0.49053-1.7649-0.00499-0.12981 0.12981-0.21968 0.28333-0.28084 0.4431-1.0385 2.1668-2.1818 3.3888-3.6247 4.1102-1.6189 0.79883-3.4774 1.3543-6.473 1.3543-0.16226 0-0.32452 0.0312-0.4768 0.09486-0.3058 0.12731-0.54794 0.3707-0.67526 0.67526-0.12606 0.30455-0.12606 0.64905 0 0.9536 0.063657 0.15352 0.15477 0.29207 0.27085 0.4069l4.0478 4.0478-5.6629 7.5514 7.5514-5.6629 4.0466 4.0466c0.11483 0.11733 0.25338 0.2072 0.4069 0.27085 0.15228 0.06366 0.31454 0.09736 0.4768 0.09736 0.16226 0 0.32452-0.0337 0.4768-0.09736 0.3058-0.12731 0.54919-0.36821 0.67526-0.67526 0.06366-0.15103 0.09611-0.31454 0.09611-0.47555 0-2.9956 0.55419-4.8541 1.3518-6.448 0.72019-1.4429 1.9421-2.5862 4.1102-3.6247 0.16101-0.06115 0.31329-0.15103 0.44185-0.28084 0.48554-0.49053 0.48304-1.2794-5e-3 -1.7649z" fill="#69c" stroke-width="1.2482"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.5 9.5h-5v-5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5l0.08875 5h-5.0888c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5l5.0888-0.08875-0.08875 5.0888c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5v-5.0888l5 0.08875c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" fill="#9c9" stroke-width="1.25"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m22.462 10.769v-2.1538c0-2.3754-1.9323-4.3077-4.3077-4.3077h-0.93415c-0.17354-2.4394-2.4037-4.3077-5.2197-4.3077-2.816 0-5.0462 1.8683-5.2197 4.3077h-0.93415c-2.3754 0-4.3077 1.9323-4.3077 4.3077v2.1538c0 1.2455 0.63262 2.2732 1.5938 2.7643-0.44062 0.23138-0.82215 0.57723-1.1003 1.0154-0.32246 0.50954-0.49354 1.1175-0.49354 1.7588v3.3846c0 2.3754 1.9323 4.3077 4.3077 4.3077h3.3846c1.2012 0 2.2535-0.61169 2.7594-1.5988l0.04431 0.08123c0.53538 0.95015 1.5582 1.5175 2.7348 1.5175h3.3846c2.3754 0 4.3077-1.9323 4.3077-4.3077v-3.3846c0-1.2468-0.63384-2.2757-1.5963-2.7655 0.95508-0.50585 1.5963-1.5458 1.5963-2.7729zm-2.4615 8.9231c0 1.0154-0.83077 1.8462-1.8462 1.8462h-3.3846c-0.43815 0-0.89108-0.26585-0.48123-0.94277 0.30277-0.34462 0.48123-0.76185 0.48123-1.2111 0-1.1902-1.2394-2.1538-2.7692-2.1538-1.5298 0-2.7692 0.96369-2.7692 2.1538 0 0.36923 0.11692 0.70892 0.31385 1.0129 0.624 0.82831 0.16738 1.1409-0.31385 1.1409h-3.3846c-1.0154 0-1.8462-0.83077-1.8462-1.8462v-3.3846c0-0.31754 0.13908-0.64123 0.47262-0.64123 0.128 0 0.28185 0.048 0.47015 0.16 0.34462 0.30277 0.76308 0.48123 1.2111 0.48123 1.1889 0 2.1538-1.2406 2.1538-2.7692 0-1.5286-0.96492-2.7692-2.1538-2.7692-0.36923 0-0.70892 0.11692-1.0117 0.31385-0.29169 0.21046-0.51938 0.29908-0.69169 0.29908-0.32 0-0.45046-0.30154-0.45046-0.61292v-2.1538c0-1.0154 0.83077-1.8462 1.8462-1.8462h3.3846c0.48123 0 0.93785-0.31262 0.29908-1.1409-0.18215-0.304-0.29908-0.64369-0.29908-1.0129 0-1.1902 1.2394-2.1538 2.7692-2.1538s2.7692 0.96369 2.7692 2.1538c0 0.44923-0.17846 0.86646-0.48123 1.2111-0.40985 0.67692 0.04308 0.94277 0.48123 0.94277h3.3846c1.0154 0 1.8462 0.83077 1.8462 1.8462v2.1538c0 0.31754-0.13908 0.64123-0.47262 0.64123-0.128 0-0.28185-0.048-0.47015-0.16-0.34462-0.30277-0.76308-0.48123-1.2111-0.48123-1.1889 0-2.1538 1.2406-2.1538 2.7692 0 1.5286 0.96492 2.7692 2.1538 2.7692 0.36923 0 0.70892-0.11692 1.0117-0.31385 0.29169-0.21046 0.51938-0.30031 0.69169-0.29908 0.31877 0 0.44923 0.30154 0.44923 0.61292v3.3846zm-16-7.1458c0.14277 0.03938 0.29046 0.06646 0.44923 0.06646 0.42092 0 0.84062-0.14646 1.2775-0.448l0.084923-0.05046c0.11938-0.077539 0.23138-0.11446 0.34215-0.11446 0.43569 0 0.92308 0.65846 0.92308 1.5385s-0.48738 1.5385-0.92308 1.5385c-0.13292 0-0.26708-0.05908-0.39877-0.17477l-0.176-0.128c-0.37046-0.22523-0.74338-0.33846-1.1065-0.33846-0.16492 0-0.32123 0.02831-0.47262 0.07262zm15.551 1.9175c-0.42092 0-0.84062 0.14646-1.2775 0.448l-0.08492 0.05046c-0.11938 0.07754-0.23138 0.11446-0.34092 0.11446-0.43569 0-0.92308-0.65846-0.92308-1.5385s0.48738-1.5385 0.92308-1.5385c0.13292 0 0.26708 0.05908 0.39877 0.17477l0.176 0.128c0.37169 0.22523 0.74338 0.33846 1.1065 0.33846 0.16738 0 0.32246-0.03077 0.47262-0.07631v1.9655c-0.144-0.03938-0.29169-0.06646-0.45046-0.06646zm-8.5452 7.0745c0.12431-0.42585 0.11446-1.0043-0.37538-1.7182l-0.05415-0.09108c-0.07631-0.12062-0.11569-0.23262-0.11569-0.34338 0-0.43569 0.65723-0.92308 1.5385-0.92308 0.88123 0 1.5385 0.48738 1.5385 0.92308 0 0.13292-0.05908 0.26708-0.176 0.4l-0.128 0.17477c-0.4 0.66092-0.38277 1.2049-0.27077 1.5803h-1.9569z" fill="#aeaeae" stroke-width="1.2308"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m18.129 10.71c0.46968 0 0.90839 0.1871 1.2697 0.50452 0.70839 0.42839 0.98839-0.04387 0.98839-0.50452v-2.2581c0-1.0645-0.87097-1.9355-1.9355-1.9355h-3.5484c-0.45936 0-0.93419-0.27871-0.50452-0.98839 0.31742-0.36129 0.50452-0.79871 0.50452-1.2697 0-1.2477-1.2994-2.2581-2.9032-2.2581s-2.9032 1.0103-2.9032 2.2581c0 0.3871 0.12258 0.74323 0.32903 1.0619 0.65419 0.86839 0.17548 1.1961-0.32903 1.1961h-3.5484c-1.0645 0-1.9355 0.87097-1.9355 1.9355v2.2581c0 0.50452 0.32774 0.98323 1.1974 0.31484 0.31742-0.19226 0.67355-0.31484 1.0606-0.31484 1.2465 0 2.2581 1.3006 2.2581 2.9032 0 1.6026-1.0116 2.9032-2.2581 2.9032-0.46968 0-0.90839-0.1871-1.2697-0.50452-0.70839-0.42839-0.98839 0.043871-0.98839 0.50452v3.5484c0 1.0645 0.87097 1.9355 1.9355 1.9355h3.5484c0.50452 0 0.98323-0.32774 0.31355-1.1961-0.19097-0.31871-0.31355-0.67484-0.31355-1.0619 0-1.2477 1.2994-2.2581 2.9032-2.2581s2.9032 1.0103 2.9032 2.2581c0 0.47097-0.1871 0.90839-0.50452 1.2697-0.42968 0.70968 0.045162 0.98839 0.50452 0.98839h3.5484c1.0645 0 1.9355-0.87097 1.9355-1.9355v-3.5484c0-0.50452-0.32774-0.98323-1.1974-0.31484-0.31742 0.19226-0.67355 0.31484-1.0606 0.31484-1.2465 0-2.2581-1.3006-2.2581-2.9032 0-1.6026 1.0116-2.9032 2.2581-2.9032z" fill="#69c" stroke-width="1.2903"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m10.692 12.288h-7.692v-7.689c0.012-1.7022 1.0065-2.1116 2.2095-0.90734l1.731 1.7367c1.5225-1.1923 3.3855-1.8447 5.349-1.8447 2.325 0 4.5135 0.90583 6.156 2.5511 1.6485 1.6377 2.5545 3.8288 2.5545 6.1533 0 2.3291-0.906 4.5172-2.5515 6.1594-1.6455 1.6452-3.8325 2.5525-6.159 2.5525-2.325 0-4.5135-0.90734-6.159-2.554-0.444-0.44542-0.837-0.93132-1.17-1.4472-0.5205-0.81135-0.285-1.8897 0.525-2.4071 0.8085-0.51891 1.887-0.28344 2.406 0.5249 0.1995 0.31044 0.438 0.59988 0.702 0.86984 0.9885 0.98682 2.301 1.5297 3.696 1.5297 1.395 0 2.7075-0.5414 3.696-1.5297 0.9855-0.98682 1.53-2.2991 1.53-3.6969 0-1.3948-0.543-2.707-1.53-3.6908-0.9885-0.98682-2.301-1.5312-3.696-1.5312-1.032 0-2.019 0.30144-2.8635 0.85784l2.172 2.1761c1.2045 1.2027 0.795 2.1866-0.906 2.1866z" fill="#9c9" stroke-width="1.3332"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m13.308 12.288h7.692v-7.689c-0.012-1.7022-1.0065-2.1116-2.2095-0.90734l-1.731 1.7367c-1.5225-1.1923-3.3855-1.8447-5.349-1.8447-2.325 0-4.5135 0.90583-6.156 2.5511-1.6485 1.6377-2.5545 3.8288-2.5545 6.1533 0 2.3291 0.906 4.5172 2.5515 6.1594 1.6455 1.6452 3.8325 2.5525 6.159 2.5525 2.325 0 4.5135-0.90734 6.159-2.554 0.444-0.44542 0.837-0.93132 1.17-1.4472 0.5205-0.81135 0.285-1.8897-0.525-2.4071-0.8085-0.51891-1.887-0.28344-2.406 0.5249-0.1995 0.31044-0.438 0.59988-0.702 0.86984-0.9885 0.98682-2.301 1.5297-3.696 1.5297-1.395 0-2.7075-0.5414-3.696-1.5297-0.9855-0.98682-1.53-2.2991-1.53-3.6969 0-1.3948 0.543-2.707 1.53-3.6908 0.9885-0.98682 2.301-1.5312 3.696-1.5312 1.032 0 2.019 0.30144 2.8635 0.85784l-2.172 2.1761c-1.2045 1.2027-0.795 2.1866 0.906 2.1866z" fill="#9c9" stroke-width="1.3332"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m20.547 14.707-0.7017-0.703-0.98054-0.98185c0.29717-0.90068 0.46343-1.859 0.46343-2.8578 0-5.0519-4.112-9.1639-9.1639-9.1639s-9.1639 4.112-9.1639 9.1639c0 5.0519 4.112 9.1639 9.1639 9.1639 0.99887 0 1.9585-0.16626 2.8591-0.46343l0.98185 0.98054 1.9794 1.9768 0.07986 0.07986 0.08378 0.072c0.78679 0.66242 1.7647 1.0264 2.7544 1.0264 2.2596 0 4.0976-1.838 4.0976-4.0989 0-1.0997-0.4294-2.1313-1.2096-2.9037zm-16.93-4.5427c0-3.6093 2.9364-6.5457 6.5457-6.5457s6.5457 2.9364 6.5457 6.5457-2.9364 6.5457-6.5457 6.5457-6.5457-2.9364-6.5457-6.5457z" fill="#aeaeae" stroke-width="1.3091"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.77 14.461-0.63791-0.6391-0.8914-0.89259c0.27016-0.8188 0.4213-1.69 0.4213-2.598 0-4.5927-3.7382-8.3309-8.3309-8.3309-4.5927 0-8.3309 3.7382-8.3309 8.3309 0 4.5927 3.7382 8.3309 8.3309 8.3309 0.90806 0 1.7804-0.15115 2.5992-0.4213l0.89259 0.8914 1.7995 1.7971 0.07259 0.0726 0.07617 0.06545c0.71526 0.60221 1.6043 0.93306 2.504 0.93306 2.0542 0 3.7251-1.6709 3.7251-3.7263 0-0.9997-0.39036-1.9375-1.0997-2.6397zm-15.391-4.1297c0-3.2812 2.6694-5.9506 5.9506-5.9506 3.2812 0 5.9506 2.6694 5.9506 5.9506 0 3.2812-2.6694 5.9506-5.9506 5.9506-3.2812 0-5.9506-2.6694-5.9506-5.9506z" fill="#69c" stroke-width="1.1901"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m8.8419 8.5973-6.3084 0.69934c-0.22752 0.027548-0.4287 0.17962-0.50415 0.41074-0.075443 0.23112 0 0.47181 0.16765 0.6239 1.8753 1.7112 4.693 4.2739 4.693 4.2739-0.00239 0-0.77358 3.7278-1.2861 6.215-0.043109 0.22513 0.03832 0.46343 0.23471 0.60594 0.19519 0.1425 0.44667 0.1449 0.64425 0.03354 2.2082-1.255 5.5157-3.1422 5.5157-3.1422l5.5133 3.1434c0.20118 0.11017 0.45265 0.10778 0.64785-0.03473 0.19639-0.1425 0.27782-0.3808 0.23351-0.60474l-1.2825-6.2162 4.693-4.2703c0.16765-0.15687 0.2419-0.39757 0.16765-0.62749-0.074239-0.22992-0.27542-0.382-0.50295-0.40835-2.5243-0.28261-6.3096-0.70173-6.3096-0.70173l-2.6141-5.7839c-0.0982-0.20717-0.30416-0.35206-0.54606-0.35206s-0.44906 0.14609-0.54247 0.35206z" fill="#ffff84" stroke-width="1.1975"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m20.473 7.888c0.11886-0.054857 0.23543-0.12343 0.33486-0.22286l0.57143-0.57143c0.44686-0.44686 0.44686-1.1691 0-1.616-0.44686-0.44686-1.1691-0.44686-1.616 0l-0.57143 0.57143-0.13143 0.19771c-1.5851-1.4994-3.6434-2.5029-5.9303-2.7543l0.01257-0.064v-1.1429h1.1429c0.62857 0 1.1429-0.51429 1.1429-1.1429 3e-6 -0.62857-0.51428-1.1429-1.1429-1.1429h-4.5714c-0.62857 0-1.1429 0.51429-1.1429 1.1429 0 0.62857 0.51429 1.1429 1.1429 1.1429h1.1429v1.1429l0.01371 0.065143c-5.1497 0.56229-9.1566 4.9223-9.1566 10.221 0 5.6811 4.6046 10.286 10.286 10.286 5.6811 0 10.286-4.6046 10.286-10.286 0-2.1646-0.672-4.1691-1.8126-5.8263zm-8.4731 13.826c-4.4103 0-8-3.5886-8-8 0-4.4114 3.5897-8 8-8 4.4103 0 8 3.5886 8 8 0 4.4114-3.5897 8-8 8zm1.1429-9.1429v-2.2857c0-0.62857-0.51428-1.1429-1.1429-1.1429-0.62857 0-1.1429 0.51429-1.1429 1.1429v3.4286c0 0.62857 0.51429 1.1429 1.1429 1.1429h3.4286c0.62857 0 1.1429-0.51429 1.1429-1.1429 0-0.62857-0.51429-1.1429-1.1429-1.1429zm-1.1429-5.7143c-3.7851 0-6.8571 3.072-6.8571 6.8571s3.072 6.8571 6.8571 6.8571c3.7851 0 6.8571-3.072 6.8571-6.8571s-3.072-6.8571-6.8571-6.8571zm0 12.571c-3.1509 0-5.7143-2.5634-5.7143-5.7143s2.5634-5.7143 5.7143-5.7143c3.1509 0 5.7143 2.5634 5.7143 5.7143s-2.5634 5.7143-5.7143 5.7143z" fill="#aeaeae" stroke-width="1.1429"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m12 2a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314zm0 7.3686a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314zm0 7.3686a2.6315 2.6315 0 0 0-2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314 2.6314 2.6315 2.6315 0 0 0 2.6314-2.6314 2.6315 2.6315 0 0 0-2.6314-2.6314z" fill="#aeaeae" stroke-width=".90909"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M 22,12 A 2.6315,2.6315 0 0 0 19.3686,9.3686 2.6315,2.6315 0 0 0 16.7372,12 2.6315,2.6315 0 0 0 19.3686,14.6314 2.6315,2.6315 0 0 0 22,12 Z m -7.3686,0 A 2.6315,2.6315 0 0 0 12,9.3686 2.6315,2.6315 0 0 0 9.3686,12 2.6315,2.6315 0 0 0 12,14.6314 2.6315,2.6315 0 0 0 14.6314,12 Z M 7.2628,12 A 2.6315,2.6315 0 0 0 4.6314,9.3686 2.6315,2.6315 0 0 0 2,12 2.6315,2.6315 0 0 0 4.6314,14.6314 2.6315,2.6315 0 0 0 7.2628,12 Z" fill="#aeaeae" stroke-width=".90909"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m7.0789 3.8947a2.8947 2.8947 0 0 1-2.8947 2.8947 2.8947 2.8947 0 0 1-2.8947-2.8947 2.8947 2.8947 0 0 1 2.8947-2.8947 2.8947 2.8947 0 0 1 2.8947 2.8947zm0 8.1053a2.8947 2.8947 0 0 1-2.8947 2.8947 2.8947 2.8947 0 0 1-2.8947-2.8947 2.8947 2.8947 0 0 1 2.8947-2.8947 2.8947 2.8947 0 0 1 2.8947 2.8947zm0 8.1053a2.8947 2.8947 0 0 1-2.8947 2.8947 2.8947 2.8947 0 0 1-2.8947-2.8947 2.8947 2.8947 0 0 1 2.8947-2.8947 2.8947 2.8947 0 0 1 2.8947 2.8947zm13.316-2.3158h-8.1053c-1.2772 0-2.3158 1.0386-2.3158 2.3158s1.0386 2.3158 2.3158 2.3158h8.1053c1.2772 0 2.3158-1.0386 2.3158-2.3158s-1.0386-2.3158-2.3158-2.3158zm0-8.1053h-8.1053c-1.2772 0-2.3158 1.0386-2.3158 2.3158s1.0386 2.3158 2.3158 2.3158h8.1053c1.2772 0 2.3158-1.0386 2.3158-2.3158s-1.0386-2.3158-2.3158-2.3158zm0-8.1053h-8.1053c-1.2772 0-2.3158 1.0386-2.3158 2.3158s1.0386 2.3158 2.3158 2.3158h8.1053c1.2772 0 2.3158-1.0386 2.3158-2.3158s-1.0386-2.3158-2.3158-2.3158z" fill="#aeaeae" stroke-width="1.1579"/>
4
- </svg>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <g fill="#69c" stroke-width="1.0526">
4
- <path d="m19.632 17.263h-7.3684c-1.1611 0-2.1053 0.94421-2.1053 2.1053s0.94421 2.1053 2.1053 2.1053h7.3684c1.1611 0 2.1053-0.94421 2.1053-2.1053s-0.94421-2.1053-2.1053-2.1053zm0-7.3684h-7.3684c-1.1611 0-2.1053 0.94421-2.1053 2.1053s0.94421 2.1053 2.1053 2.1053h7.3684c1.1611 0 2.1053-0.94421 2.1053-2.1053s-0.94421-2.1053-2.1053-2.1053zm0-7.3684h-7.3684c-1.1611 0-2.1053 0.94421-2.1053 2.1053 0 1.1611 0.94421 2.1053 2.1053 2.1053h7.3684c1.1611 0 2.1053-0.94421 2.1053-2.1053 0-1.1611-0.94421-2.1053-2.1053-2.1053z"/>
5
- <circle cx="4.8947" cy="19.368" r="2.6316"/>
6
- <circle cx="4.8947" cy="12" r="2.6316"/>
7
- <circle cx="4.8947" cy="4.6316" r="2.6316"/>
8
- </g>
9
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m20.121 3.8786c-1.17-1.1715-3.072-1.1715-4.2421 0l-3.879 3.8791-3.879-3.8791c-1.17-1.1715-3.072-1.1715-4.2421 0-1.1715 1.1715-1.1715 3.0705 0 4.2421l3.8776 3.879-3.8776 3.879c-1.1715 1.1715-1.1715 3.0705 0 4.2421 0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902l3.879-3.879 3.879 3.879c0.58502 0.58652 1.353 0.87902 2.1211 0.87902 0.76801 0 1.5361-0.29251 2.1211-0.87902 1.1715-1.1715 1.1715-3.0705 0-4.2421l-3.8776-3.879 3.8776-3.879c1.1715-1.1715 1.1715-3.0705 0-4.2421z" fill="#d64848" stroke-width="1.5001"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.7051 7.8828v9.4121c0 1.2988 1.0547 2.3516 2.3535 2.3516h5.8828c1.2988 0 2.3535-1.0527 2.3535-2.3516v-9.4121h-10.59zm1.7656 1.7637c0.32353 0 0.58789 0.26436 0.58789 0.58789v7.0605c0 0.32353-0.26436 0.58789-0.58789 0.58789-0.32353 1e-6 -0.58789-0.26436-0.58789-0.58789v-7.0605c0-0.32353 0.26436-0.58789 0.58789-0.58789zm2.3535 0c0.32353 0 0.58789 0.26436 0.58789 0.58789v7.0605c0 0.32353-0.26436 0.58789-0.58789 0.58789-0.32353 1e-6 -0.58984-0.26436-0.58984-0.58789v-7.0605c0-0.32353 0.26631-0.58789 0.58984-0.58789zm2.3516 0c0.32353 0 0.58984 0.26436 0.58984 0.58789v7.0605c0 0.32353-0.26632 0.58789-0.58984 0.58789-0.32353 1e-6 -0.58789-0.26436-0.58789-0.58789v-7.0605c0-0.32353 0.26436-0.58789 0.58789-0.58789zm2.3535 0c0.32353 0 0.58789 0.26436 0.58789 0.58789v7.0605c-1e-6 0.32353-0.26436 0.58789-0.58789 0.58789-0.32353 1e-6 -0.58789-0.26436-0.58789-0.58789v-7.0605c0-0.32353 0.26436-0.58789 0.58789-0.58789z" fill="#ededed" opacity=".95"/>
4
- <path d="m19.647 5.5294h-1.1765v-1.1765c0-1.2988-1.0541-2.3529-2.3529-2.3529h-8.2353c-1.2988 0-2.3529 1.0541-2.3529 2.3529v1.1765h-1.1765c-0.64941 0-1.1765 0.52706-1.1765 1.1765 0 0.64941 0.52706 1.1765 1.1765 1.1765v9.4118c0 2.5953 2.1106 4.7059 4.7059 4.7059h5.8824c2.5953 0 4.7059-2.1106 4.7059-4.7059v-9.4118c0.64941 0 1.1765-0.52706 1.1765-1.1765 0-0.64941-0.52706-1.1765-1.1765-1.1765zm-11.765-1.1765h8.2353v1.1765h-8.2353zm9.4118 12.941c0 1.2988-1.0541 2.3529-2.3529 2.3529h-5.8824c-1.2988 0-2.3529-1.0541-2.3529-2.3529v-9.4118h10.588zm-8.8235-7.6471c-0.32353 0-0.58824 0.26471-0.58824 0.58824v7.0588c0 0.32353 0.26471 0.58824 0.58824 0.58824 0.32353 0 0.58824-0.26471 0.58824-0.58824v-7.0588c0-0.32353-0.26471-0.58824-0.58824-0.58824zm2.3529 0c-0.32353 0-0.58824 0.26471-0.58824 0.58824v7.0588c0 0.32353 0.2647 0.58824 0.58824 0.58824 0.32353 0 0.58824-0.26471 0.58824-0.58824v-7.0588c0-0.32353-0.26471-0.58824-0.58824-0.58824zm2.3529 0c-0.32353 0-0.58824 0.26471-0.58824 0.58824v7.0588c0 0.32353 0.26471 0.58824 0.58824 0.58824s0.58824-0.26471 0.58824-0.58824v-7.0588c0-0.32353-0.26471-0.58824-0.58824-0.58824zm2.3529 0c-0.32353 0-0.58824 0.26471-0.58824 0.58824v7.0588c0 0.32353 0.26471 0.58824 0.58824 0.58824 0.32353 0 0.58824-0.26471 0.58824-0.58824v-7.0588c0-0.32353-0.2647-0.58824-0.58824-0.58824z" fill="#aeaeae" stroke-width="1.1765"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m9.8767 17.723 5.8157-5.723-5.8157-5.723c-0.18462-0.18462-0.46155-0.27693-0.64616-0.27693-0.18462 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.36924-0.27693 0.64616v10.154c0 0.27693 0.092309 0.46154 0.27693 0.64616 0.18462 0.18462 0.46155 0.27693 0.64616 0.27693 0.18462 0 0.46155-0.09231 0.64616-0.27693z" fill="#aeaeae" stroke-width=".92309"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.277 9.8767 5.723 5.8157 5.723-5.8157c0.18462-0.18462 0.27693-0.46155 0.27693-0.64616 0-0.18462-0.092309-0.46155-0.27693-0.64616-0.18462-0.18462-0.36924-0.27693-0.64616-0.27693h-10.154c-0.27693 0-0.46155 0.092309-0.64616 0.27693-0.18462 0.18462-0.27693 0.46155-0.27693 0.64616 0 0.18462 0.092309 0.46155 0.27693 0.64616z" fill="#aeaeae" stroke-width=".92309"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m4.9412 19.647c0 1.1765 2.6471 2.3529 7.0588 2.3529 4.1388 0 7.0588-1.1765 7.0588-2.3529 0-2.3529-2.7694-4.7059-7.0588-4.7059-4.4118 0-7.0588 2.3529-7.0588 4.7059z" fill="#9c9" stroke-width="1.1765"/>
4
- <path d="m17.882 7.8824c0-1.6247-0.65882-3.0953-1.7224-4.1588-1.0647-1.0647-2.5353-1.7235-4.16-1.7235-1.6247 0-3.0953 0.65882-4.16 1.7235-1.0635 1.0635-1.7224 2.5341-1.7224 4.1588 0 1.6247 0.65882 3.0953 1.7224 4.1588 1.0647 1.0647 2.5353 1.7235 4.16 1.7235 1.6247 0 3.0953-0.65882 4.16-1.7235 1.0635-1.0635 1.7224-2.5341 1.7224-4.1588z" fill="#e5d49e" stroke-width="1.1765"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m23.197 15.837-7.2179-12.031c-0.94741-1.5786-2.3966-2.4821-3.9789-2.4821s-3.0315 0.90347-3.9789 2.4796l-7.2179 12.033c-0.95962 1.5981-1.0646 3.3025-0.28691 4.6761 0.77648 1.3747 2.2928 2.1634 4.1583 2.1634h14.651c1.8655 0 3.3819-0.7887 4.1583-2.1622 0.7777-1.3735 0.67271-3.0778-0.28691-4.6772zm-11.197 2.6262c-1.0426 0-1.8924-0.84852-1.8924-1.8912 0-1.0439 0.84852-1.8936 1.8924-1.8936 1.0439 0 1.8924 0.84975 1.8924 1.8936 0 1.0426-0.84974 1.8912-1.8924 1.8912zm1.9937-9.064c-0.01343 0.037847-1.7105 4.2341-1.7105 4.2341-0.04639 0.11477-0.15872 0.19046-0.28203 0.19046s-0.23563-0.0757-0.28202-0.19046l-1.6983-4.1974c-0.10988-0.28447-0.15749-0.54085-0.15749-0.79969 0-1.1782 0.9584-2.1366 2.1366-2.1366s2.1366 0.95836 2.1366 2.1366c0 0.25883-0.04762 0.51522-0.14284 0.76306z" fill="#f99157" stroke-width="1.2209"/>
4
- </svg>
@@ -1,29 +0,0 @@
1
- # Typicons for Light Backgrounds
2
-
3
- This theme is based on Typicons. All files are prefixed, depending on whether they are based
4
- directly on original Typicons, redesigned, or designed from scratch.
5
-
6
- ## Typicons Icons
7
-
8
- The files have a `typ_` prefix. These are colourised and rescaled Typicons, but with no other
9
- modifications.
10
-
11
- Copyright: Stephen Hutchings
12
- Source: https://github.com/stephenhutchings/typicons.font
13
- License: [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
14
-
15
- ## Original Icons
16
-
17
- The files have a `nw_` prefix. These are made completely from scratch for novelWriter and are not
18
- using any design elements from Typicons.
19
-
20
- Copyright: Veronica Berglyd Olsen
21
- License: [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
22
-
23
- ## Mixed Icons
24
-
25
- The files have a `mixed_` prefix. These are redesigned from Typicons components, modified from
26
- Typicons, or consist of a mix of Typicons and new elements.
27
-
28
- Copyright: Stephen Hutchings, Veronica Berglyd Olsen
29
- License: [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
@@ -1,134 +0,0 @@
1
- ##
2
- # Icons: Typicons Light
3
- # Source: https://github.com/stephenhutchings/typicons.font
4
- # Credit: Stephen Hutchings
5
- # Modified: Veronica Berglyd Olsen
6
- # Additions: hash.svg
7
- ##
8
-
9
- [Main]
10
- name = Typicons Light
11
- description = Colourised icons for light GUI theme based on Typicons.
12
- author = Veronica Berglyd Olsen (adaptation)
13
- credit = Stephen Hutchings (icon design)
14
- url = https://github.com/stephenhutchings/typicons.font
15
- license = CC BY-SA 4.0
16
- licenseurl = https://creativecommons.org/licenses/by-sa/4.0/
17
-
18
- [Map]
19
- add = typ_plus.svg
20
- add_document = typ_document-add.svg
21
- alert_error = typ_delete-full.svg
22
- alert_info = typ_lightbulb-full.svg
23
- alert_question = typ_directions-full.svg
24
- alert_warn = typ_warning-full.svg
25
- backward = typ_chevron-left.svg
26
- bookmark = typ_bookmark.svg
27
- browse = typ_folder-open.svg
28
- build_excluded = typ_cancel.svg
29
- build_filtered = typ_arrow-forward.svg
30
- build_included = typ_pin.svg
31
- bullet-off = typ_media-record-outline.svg
32
- bullet-on = typ_media-record.svg
33
- checked = mixed_input-checked.svg
34
- close = typ_times.svg
35
- cls_archive = typ_delete.svg
36
- cls_character = typ_user.svg
37
- cls_custom = typ_star.svg
38
- cls_entity = typ_flag.svg
39
- cls_none = typ_cancel.svg
40
- cls_novel = typ_book.svg
41
- cls_object = typ_key.svg
42
- cls_plot = typ_puzzle.svg
43
- cls_template = mixed_document-new.svg
44
- cls_timeline = typ_calendar.svg
45
- cls_trash = typ_trash.svg
46
- cls_world = typ_location.svg
47
- copy = mixed_copy.svg
48
- cross = typ_times.svg
49
- document = typ_document.svg
50
- down = typ_chevron-down.svg
51
- edit = typ_pencil.svg
52
- export = typ_export.svg
53
- fmt_bold = nw_tb-bold.svg
54
- fmt_bold-md = nw_tb-bold-md.svg
55
- fmt_italic = nw_tb-italic.svg
56
- fmt_italic-md = nw_tb-italic-md.svg
57
- fmt_mark = nw_tb-mark.svg
58
- fmt_strike = nw_tb-strike.svg
59
- fmt_strike-md = nw_tb-strike-md.svg
60
- fmt_subscript = nw_tb-subscript.svg
61
- fmt_superscript = nw_tb-superscript.svg
62
- fmt_underline = nw_tb-underline.svg
63
- font = nw_font.svg
64
- forward = typ_chevron-right.svg
65
- import = mixed_import.svg
66
- list = typ_th-list.svg
67
- margin_bottom = mixed_margin-bottom.svg
68
- margin_left = mixed_margin-left.svg
69
- margin_right = mixed_margin-right.svg
70
- margin_top = mixed_margin-top.svg
71
- maximise = typ_arrow-maximise.svg
72
- menu = typ_th-dot-menu.svg
73
- minimise = typ_arrow-minimise.svg
74
- more = typ_th-dot-more.svg
75
- noncheckable = mixed_input-none.svg
76
- open = typ_folder.svg
77
- panel = nw_panel.svg
78
- proj_chapter = mixed_document-chapter.svg
79
- proj_details = typ_th-list-grey.svg
80
- proj_document = typ_document-text.svg
81
- proj_folder = typ_folder.svg
82
- proj_note = mixed_document-note.svg
83
- proj_scene = mixed_document-scene.svg
84
- proj_section = mixed_document-section.svg
85
- proj_stats = typ_chart-bar-grey.svg
86
- proj_title = mixed_document-title.svg
87
- quote = nw_quote.svg
88
- refresh = typ_refresh.svg
89
- remove = typ_minus.svg
90
- revert = typ_refresh-flipped.svg
91
- search = typ_search.svg
92
- search_cancel = typ_cancel-grey.svg
93
- search_case = nw_search-case.svg
94
- search_loop = typ_arrow-repeat-grey.svg
95
- search_preserve = nw_search-preserve.svg
96
- search_project = typ_arrow-down-thick-grey.svg
97
- search_regex = nw_search-regex.svg
98
- search_replace = mixed_search-replace.svg
99
- search_word = nw_search-word.svg
100
- settings = typ_cog.svg
101
- size_height = mixed_size-height.svg
102
- size_width = mixed_size-width.svg
103
- star = typ_star.svg
104
- status_idle = typ_media-pause-grey.svg
105
- status_lang = typ_globe-grey.svg
106
- status_lines = typ_th-list-grey.svg
107
- status_stats = typ_chart-bar-grey.svg
108
- status_time = typ_stopwatch-grey.svg
109
- sticky-off = typ_pin-outline.svg
110
- sticky-on = typ_pin.svg
111
- toolbar = nw_toolbar.svg
112
- unchecked = mixed_input-unchecked.svg
113
- unfold-hide = typ_unfold-hidden.svg
114
- unfold-show = typ_unfold-visible.svg
115
- up = typ_chevron-up.svg
116
- view = typ_eye.svg
117
- view_build = typ_export-grey.svg
118
- view_editor = mixed_edit.svg
119
- view_novel = typ_book-grey.svg
120
- view_outline = typ_puzzle-outline.svg
121
- view_search = typ_search-grey.svg
122
-
123
- deco_doc_h0 = nw_deco-h0.svg
124
- deco_doc_h0_n = nw_deco-h0.svg
125
- deco_doc_h1 = nw_deco-h1.svg
126
- deco_doc_h1_n = nw_deco-h1.svg
127
- deco_doc_h2 = nw_deco-h2.svg
128
- deco_doc_h2_n = nw_deco-h2-narrow.svg
129
- deco_doc_h3 = nw_deco-h3.svg
130
- deco_doc_h3_n = nw_deco-h3-narrow.svg
131
- deco_doc_h4 = nw_deco-h4.svg
132
- deco_doc_h4_n = nw_deco-h4-narrow.svg
133
- deco_doc_more = nw_deco-noveltree-more.svg
134
- deco_doc_nt_n = nw_deco-note.svg
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m7.8824 2c-1.2988 0-2.3529 1.0541-2.3529 2.3529v2.3529h-1.1765c-1.2988 0-2.3529 1.0541-2.3529 2.3529v10.588c0 1.2988 1.0541 2.3529 2.3529 2.3529h10.588c1.2988 0 2.3529-1.0541 2.3529-2.3529v-1.1765h2.3529c1.2988 0 2.3529-1.0541 2.3529-2.3529v-11.765c0-1.2988-1.0541-2.3529-2.3529-2.3529zm0 2.3529h11.765v11.765h-2.3529v-7.0588c0-1.2988-1.0541-2.3529-2.3529-2.3529h-7.0588zm-3.5294 4.7059h10.588c0.32353 0 0-0.32353 0 0v10.588h-10.588v-9.8943z" fill="#4271ae" stroke-width="1.1765"/>
4
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <g>
4
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v14.668c0 0.67344 0.54921 1.2207 1.2227 1.2207h12.223c0.67345 0 1.2227-0.54726 1.2227-1.2207v-14.668c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#ededed" opacity=".95"/>
5
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v1.334 1.1895 2.8691h14.668v-2.8691-1.1895-1.334c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#c82829" stroke-width="0"/>
6
- <g stroke-width="1.2222">
7
- <path d="m7.1113 13.223c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 1e-6 0.61133-0.274 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133zm0 3.666c-0.33733 0-0.61133 0.27399-0.61133 0.61133s0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133s-0.27399-0.61133-0.61133-0.61133z" fill="#333"/>
8
- <path d="m5.8887 1c-2.0216 0-3.666 1.6445-3.666 3.666v14.668c1e-7 2.0216 1.6445 3.666 3.666 3.666h12.223c2.0216 0 3.666-1.6445 3.666-3.666v-14.668c0-2.0216-1.6445-3.666-3.666-3.666zm0 2.4453h12.223c0.67345 0 1.2227 0.54726 1.2227 1.2207v14.668c0 0.67344-0.54921 1.2207-1.2227 1.2207h-12.223c-0.67344-1e-6 -1.2227-0.54726-1.2227-1.2207v-14.668c0-0.67344 0.54921-1.2207 1.2227-1.2207z" fill="#333"/>
9
- <path d="m7.1113 5.8887c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133h-9.7773z" fill="#ededed"/>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m5.8898 3.4449c-0.67467 1e-7 -1.2225 0.5478-1.2225 1.2225v14.665c0 0.67466 0.5478 1.2225 1.2225 1.2225h12.22c0.67466 0 1.2225-0.5478 1.2225-1.2225v-11h-1.8326c-1.6854 0-3.0551-1.3696-3.0551-3.0551v-1.8326zm9.7775 0.50488v1.3277c0 1.0108 0.82184 1.8326 1.8326 1.8326h1.3277z" fill="#e5e5e5" stroke-linecap="round" stroke-width=".55"/>
4
- <path d="m5.8898 1c-2.0216 0-3.6674 1.6458-3.6674 3.6674v14.665c0 2.0216 1.6458 3.6674 3.6674 3.6674h12.22c2.0216 0 3.6674-1.6458 3.6674-3.6674v-12.222c0-0.32511-0.12901-0.63512-0.35879-0.86367l-4.8877-4.8877c-0.22856-0.22978-0.53856-0.35879-0.86367-0.35879zm0 2.4449h8.5551v1.8326c0 1.6854 1.3696 3.0551 3.0551 3.0551h1.8326v11c0 0.67466-0.5478 1.2225-1.2225 1.2225h-12.22c-0.67467 0-1.2225-0.5478-1.2225-1.2225v-14.665c0-0.67467 0.5478-1.2225 1.2225-1.2225zm9.7775 0.50488 3.1604 3.1604h-1.3277c-1.0108 0-1.8326-0.82184-1.8326-1.8326z" fill="#333" stroke-width="1.2222"/>
5
- <path d="m10.105 9.9584-3.785 0.4196c-0.13651 0.01653-0.25722 0.10777-0.30249 0.24644-0.04526 0.13867 0 0.28308 0.10059 0.37434 1.1252 1.0267 2.8158 2.5643 2.8158 2.5643-0.0014 0-0.46415 2.2367-0.77166 3.729-0.02587 0.13508 0.02299 0.27806 0.14082 0.36356 0.11711 0.0855 0.268 0.08694 0.38655 0.02012 1.3249-0.753 3.3094-1.8853 3.3094-1.8853l3.308 1.886c0.12071 0.0661 0.27159 0.06467 0.38871-0.02084 0.11783-0.0855 0.16669-0.22848 0.1401-0.36284l-0.7695-3.7297 2.8158-2.5622c0.10059-0.09412 0.14514-0.23854 0.10059-0.37649-0.04454-0.13795-0.16525-0.2292-0.30177-0.24501-1.5146-0.16956-3.7857-0.42103-3.7857-0.42103l-1.5685-3.4703c-0.05892-0.1243-0.1825-0.21124-0.32764-0.21124-0.14514 0-0.26944 0.087654-0.32548 0.21124z" fill="#eab700" stroke-width=".7185"/>
6
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <g>
4
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v14.668c0 0.67344 0.54921 1.2207 1.2227 1.2207h12.223c0.67345 0 1.2227-0.54726 1.2227-1.2207v-14.668c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#ededed" opacity=".95"/>
5
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v1.334 1.1895 2.8691h14.668v-2.8691-1.1895-1.334c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#ad8700" stroke-width="0"/>
6
- <g stroke-width="1.2222">
7
- <path d="m7.1113 13.223c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 1e-6 0.61133-0.274 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133zm0 3.666c-0.33733 0-0.61133 0.27399-0.61133 0.61133s0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133s-0.27399-0.61133-0.61133-0.61133z" fill="#333"/>
8
- <path d="m5.8887 1c-2.0216 0-3.666 1.6445-3.666 3.666v14.668c1e-7 2.0216 1.6445 3.666 3.666 3.666h12.223c2.0216 0 3.666-1.6445 3.666-3.666v-14.668c0-2.0216-1.6445-3.666-3.666-3.666zm0 2.4453h12.223c0.67345 0 1.2227 0.54726 1.2227 1.2207v14.668c0 0.67344-0.54921 1.2207-1.2227 1.2207h-12.223c-0.67344-1e-6 -1.2227-0.54726-1.2227-1.2207v-14.668c0-0.67344 0.54921-1.2207 1.2227-1.2207z" fill="#333"/>
9
- <path d="m7.1113 5.8887c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133h-9.7773z" fill="#ededed"/>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <g>
4
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v14.668c0 0.67344 0.54921 1.2207 1.2227 1.2207h12.223c0.67345 0 1.2227-0.54726 1.2227-1.2207v-14.668c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#ededed" opacity=".95"/>
5
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v1.334 1.1895 2.8691h14.668v-2.8691-1.1895-1.334c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#4271ae" stroke-width="0"/>
6
- <g stroke-width="1.2222">
7
- <path d="m7.1113 13.223c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 1e-6 0.61133-0.274 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133zm0 3.666c-0.33733 0-0.61133 0.27399-0.61133 0.61133s0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133s-0.27399-0.61133-0.61133-0.61133z" fill="#333"/>
8
- <path d="m5.8887 1c-2.0216 0-3.666 1.6445-3.666 3.666v14.668c1e-7 2.0216 1.6445 3.666 3.666 3.666h12.223c2.0216 0 3.666-1.6445 3.666-3.666v-14.668c0-2.0216-1.6445-3.666-3.666-3.666zm0 2.4453h12.223c0.67345 0 1.2227 0.54726 1.2227 1.2207v14.668c0 0.67344-0.54921 1.2207-1.2227 1.2207h-12.223c-0.67344-1e-6 -1.2227-0.54726-1.2227-1.2207v-14.668c0-0.67344 0.54921-1.2207 1.2227-1.2207z" fill="#333"/>
9
- <path d="m7.1113 5.8887c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133h-9.7773z" fill="#ededed"/>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <g>
4
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v14.668c0 0.67344 0.54921 1.2207 1.2227 1.2207h12.223c0.67345 0 1.2227-0.54726 1.2227-1.2207v-14.668c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#ededed" opacity=".95"/>
5
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v1.334 1.1895 2.8691h14.668v-2.8691-1.1895-1.334c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#787878" stroke-width="0"/>
6
- <g stroke-width="1.2222">
7
- <path d="m7.1113 13.223c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 1e-6 0.61133-0.274 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133zm0 3.666c-0.33733 0-0.61133 0.27399-0.61133 0.61133s0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133s-0.27399-0.61133-0.61133-0.61133z" fill="#333"/>
8
- <path d="m5.8887 1c-2.0216 0-3.666 1.6445-3.666 3.666v14.668c1e-7 2.0216 1.6445 3.666 3.666 3.666h12.223c2.0216 0 3.666-1.6445 3.666-3.666v-14.668c0-2.0216-1.6445-3.666-3.666-3.666zm0 2.4453h12.223c0.67345 0 1.2227 0.54726 1.2227 1.2207v14.668c0 0.67344-0.54921 1.2207-1.2227 1.2207h-12.223c-0.67344-1e-6 -1.2227-0.54726-1.2227-1.2207v-14.668c0-0.67344 0.54921-1.2207 1.2227-1.2207z" fill="#333"/>
9
- <path d="m7.1113 5.8887c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133h-9.7773z" fill="#ededed"/>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <g>
4
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v14.668c0 0.67344 0.54921 1.2207 1.2227 1.2207h12.223c0.67345 0 1.2227-0.54726 1.2227-1.2207v-14.668c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#ededed" opacity=".95"/>
5
- <path d="m5.8887 3.4453c-0.67344 0-1.2227 0.54726-1.2227 1.2207v1.334 1.1895 2.8691h14.668v-2.8691-1.1895-1.334c0-0.67344-0.54921-1.2207-1.2227-1.2207h-12.223z" fill="#718c00" stroke-width="0"/>
6
- <g stroke-width="1.2222">
7
- <path d="m7.1113 13.223c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 1e-6 0.61133-0.274 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133zm0 3.666c-0.33733 0-0.61133 0.27399-0.61133 0.61133s0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133s-0.27399-0.61133-0.61133-0.61133z" fill="#333"/>
8
- <path d="m5.8887 1c-2.0216 0-3.666 1.6445-3.666 3.666v14.668c1e-7 2.0216 1.6445 3.666 3.666 3.666h12.223c2.0216 0 3.666-1.6445 3.666-3.666v-14.668c0-2.0216-1.6445-3.666-3.666-3.666zm0 2.4453h12.223c0.67345 0 1.2227 0.54726 1.2227 1.2207v14.668c0 0.67344-0.54921 1.2207-1.2227 1.2207h-12.223c-0.67344-1e-6 -1.2227-0.54726-1.2227-1.2207v-14.668c0-0.67344 0.54921-1.2207 1.2227-1.2207z" fill="#333"/>
9
- <path d="m7.1113 5.8887c-0.33733 0-0.61133 0.27399-0.61133 0.61133 0 0.33733 0.27399 0.61133 0.61133 0.61133h9.7773c0.33733 0 0.61133-0.27399 0.61133-0.61133 0-0.33733-0.27399-0.61133-0.61133-0.61133h-9.7773z" fill="#ededed"/>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m19.16 0c-0.42553 0-0.84803 0.16053-1.1719 0.48438l-3.9355 3.9375h-9.9473c-0.61011 0-1.1055 0.49231-1.1055 1.1035v11.512 1.3926 4.4648c0 0.61121 0.49536 1.1055 1.1055 1.1055h14.369c0.6101 0 1.1035-0.49426 1.1035-1.1055v-4.4648-1.3926-7.0898l3.9375-3.9355c0.32384-0.32384 0.48438-0.74941 0.48438-1.1738 0-0.42442-0.16053-0.84608-0.48438-1.1699l-3.1836-3.1836c-0.32384-0.32384-0.74746-0.48438-1.1719-0.48438zm0 2.4395 2.4004 2.4004-1.4297 1.4297-2.4004-2.4004 1.4297-1.4297zm-2.2109 2.2109 2.4004 2.4004-6.9551 6.9551-2.4004-2.4004 6.9551-6.9551zm-11.738 1.9805h6.6309l-3.5137 3.5156c-0.32384 0.32384-0.52842 0.89662-0.69531 1.4238-0.17684 0.55263-0.21094 1.1674-0.21094 1.625v3.3828h3.3828c0.45758 0 1.2246-0.11031 1.7363-0.32031 0.51284-0.21 0.98976-0.38319 1.3125-0.70703l3.5156-3.3926v4.8789 1.3926 3.3594h-12.158v-3.3594-1.3926-10.406zm4.3535 5.8945 1.9414 1.9102-1.875-0.066406-0.066406-1.8438z" fill-opacity=".72157" stroke-width="1.1053"/>
4
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m3.1113 3.666c-0.61332 0-1.1094 0.49689-1.1094 1.1113v15.557h-0.0019531c0 0.61443 0.498 1.1094 1.1113 1.1094h15.557c0.61332 0 1.1113-0.49494 1.1113-1.1094v-8.2578c-0.61899 0.57364-1.3634 1.0131-2.252 1.2578-0.004058 2.0524-0.007162 4.0735 0.005859 5.8887h-13.311v-13.318c1.6116-0.00848 2.8992 0 4.4648 0 0.75712-0.75269 1.5907-1.5005 2.3418-2.2383h-7.918z" fill="#718c00"/>
4
- <path d="m21.996 3.1106v-0.55556c-1.8789 2.8644-4 4.3922-6.6667 4.4444v-3.3333c0-0.61222-0.56778-1.1111-1.27-1.1111-0.40444 0-0.75 0.17556-0.98111 0.43444-2.1478 2.2544-6.6378 6.7878-6.6378 6.7878s4.49 4.5356 6.6389 6.8189c0.23111 0.22778 0.57556 0.40333 0.98 0.40333 0.70222 0 1.27-0.49667 1.27-1.1111v-3.3333c5.1778 0 6.6667-5.4122 6.6667-9.4444z" fill="#718c00" stroke-width="1.1111"/>
5
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m17.714 22h-11.429c-2.3629 0-4.2857-1.9229-4.2857-4.2857v-11.429c0-2.3629 1.9229-4.2857 4.2857-4.2857h7.1429c0.79 0 1.4286 0.64 1.4286 1.4286 0 0.78857-0.63857 1.4286-1.4286 1.4286h-7.1429c-0.78857 0-1.4286 0.64143-1.4286 1.4286v11.429c0 0.78714 0.64 1.4286 1.4286 1.4286h11.429c0.78857 0 1.4286-0.64143 1.4286-1.4286v-4.2857c0-0.78857 0.63857-1.4286 1.4286-1.4286s1.4286 0.64 1.4286 1.4286v4.2857c0 2.3629-1.9229 4.2857-4.2857 4.2857z" fill="#333" stroke-width="1.4286"/>
4
- <path d="m19.02 3.3503c-0.60933 0.010623-1.2003 0.31545-1.5586 0.86719l-5.0977 7.8477-2.3672-3.6445c-0.57329-0.88278-1.7442-1.1319-2.627-0.55859-0.88278 0.57329-1.1319 1.7461-0.55859 2.6289l3.9199 6.0391c0.38514 0.59307 1.0409 0.88965 1.6973 0.85352 0.03023-2.78e-4 0.05972-0.0041 0.08984-0.0059 0.0556-0.0057 0.11074-0.0088 0.16602-0.01953 0.52104-0.07621 1.0077-0.36147 1.3184-0.83984l6.6445-10.23c0.57329-0.88278 0.32419-2.0556-0.55859-2.6289-0.33104-0.21498-0.70276-0.31497-1.0684-0.30859z" fill="#718c00" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.111"/>
5
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m6.2852 2c-2.3555-0.068198-4.4321 2.1116-4.2852 4.4549 0.0068983 3.8501-0.013834 7.7008 0.010433 11.55 0.12976 2.169 2.0765 4.054 4.2747 3.9947 3.8833-0.0037 7.7667 0.0074 11.65-0.0056 2.3181-0.058725 4.2556-2.2597 4.065-4.5624-0.003701-3.789 0.007418-7.5782-0.005586-11.367-0.058739-2.3181-2.2597-4.2556-4.5624-4.065h-11.147zm7.1621 2.8555c1.5178 0.018193 3.0402-0.037158 4.5549 0.029088 0.8319 0.14328 1.247 1.02 1.1404 1.7966-0.0049 3.7264 0.0098 7.4533-0.0074 11.179-0.06228 0.8972-0.99018 1.4068-1.8163 1.282-3.7264-5e-3 -7.4533 0.0099-11.179-0.0075-0.88935-0.06498-1.4062-0.99121-1.2821-1.8162 0.00424-3.7207-0.00847-7.4418 0.00635-11.162 0.056947-0.86274 0.94131-1.4231 1.7608-1.2992 2.2742-0.00131 4.5487 0.00261 6.8227-0.00195z" fill="#333"/>
4
- <rect x="7" y="10.1" width="10" height="3.8" rx="1.9" ry="1.9" fill="#f5871f" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.111"/>
5
- </svg>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="m17.714 22h-11.429c-2.3629 0-4.2857-1.9229-4.2857-4.2857v-11.429c0-2.3629 1.9229-4.2857 4.2857-4.2857h7.1429c0.79 0 1.4286 0.64 1.4286 1.4286 0 0.78857-0.63857 1.4286-1.4286 1.4286h-7.1429c-0.78857 0-1.4286 0.64143-1.4286 1.4286v11.429c0 0.78714 0.64 1.4286 1.4286 1.4286h11.429c0.78857 0 1.4286-0.64143 1.4286-1.4286v-4.2857c0-0.78857 0.63857-1.4286 1.4286-1.4286s1.4286 0.64 1.4286 1.4286v4.2857c0 2.3629-1.9229 4.2857-4.2857 4.2857z" fill="#333" stroke-width="1.4286"/>
4
- <path d="m17.99 3.3379c-0.48501 0.025418-0.96034 0.23584-1.3125 0.62695l-4.6777 5.1953-1.332-1.4785c-0.70433-0.78223-1.9014-0.84495-2.6836-0.14062-0.78223 0.70433-0.84495 1.9014-0.14062 2.6836l1.5996 1.7754-1.5977 1.7754c-0.70433 0.78223-0.64161 1.9793 0.14062 2.6836 0.78223 0.70433 1.9773 0.64161 2.6816-0.14062l1.332-1.4785 1.332 1.4785c0.70433 0.78224 1.9014 0.84495 2.6836 0.14062 0.78223-0.70433 0.84495-1.9014 0.14062-2.6836l-1.5996-1.7754 4.9453-5.4922c0.70433-0.78223 0.64161-1.9793-0.14062-2.6836-0.39112-0.35216-0.88608-0.51175-1.3711-0.48633z" fill="#c82829" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.111"/>
5
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="2" y="2" width="20" height="20" rx="1" ry="1" fill="#333" fill-opacity=".15" stroke-linecap="round" stroke-width="2"/>
4
- <rect x="2" y="18" width="20" height="4" rx="1" ry="1" fill="#333" stroke-linecap="round" stroke-width="2"/>
5
- <path d="m18.414 8.5959c0.78104 0.79361 0.78104 2.0837 0 2.8773l-6.4141 6.5268-6.4141-6.5268c-0.391-0.3968-0.58601-0.91769-0.58601-1.4386 0-0.52092 0.195-1.0418 0.58601-1.4386 0.78104-0.79464 2.047-0.79464 2.8281 0l3.5861 3.6475 3.5861-3.6475c0.78104-0.79464 2.047-0.79464 2.8281 0z" fill="#4271ae" stroke-width="1.0087"/>
6
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="2" y="2" width="20" height="20" rx="1" ry="1" fill="#333" fill-opacity=".15" stroke-linecap="round" stroke-width="2"/>
4
- <rect x="2" y="2" width="4" height="20" rx="1" ry="1" fill="#333" stroke-linecap="round" stroke-width="2"/>
5
- <path d="m15.404 18.5c-0.79361 0.78104-2.0837 0.78104-2.8773 0l-6.5268-6.4141 6.5268-6.4141c0.3968-0.391 0.91769-0.58601 1.4386-0.58601 0.52092 0 1.0418 0.195 1.4386 0.58601 0.79464 0.78104 0.79464 2.047 0 2.8281l-3.6475 3.5861 3.6475 3.5861c0.79464 0.78104 0.79464 2.047 0 2.8281z" fill="#4271ae" stroke-width="1.0087"/>
6
- </svg>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24" height="24" version="1.2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="2" y="2" width="20" height="20" rx="1" ry="1" fill="#333" fill-opacity=".15" stroke-linecap="round" stroke-width="2"/>
4
- <rect x="18" y="2" width="4" height="20" rx="1" ry="1" fill="#333" stroke-linecap="round" stroke-width="2"/>
5
- <path d="m8.5959 18.5c0.79361 0.78104 2.0837 0.78104 2.8773 0l6.5268-6.4141-6.5268-6.4141c-0.3968-0.391-0.91769-0.58601-1.4386-0.58601-0.52092 0-1.0418 0.195-1.4386 0.58601-0.79464 0.78104-0.79464 2.047 0 2.8281l3.6475 3.5861-3.6475 3.5861c-0.79464 0.78104-0.79464 2.047 0 2.8281z" fill="#4271ae" stroke-width="1.0087"/>
6
- </svg>