@rancher/shell 0.1.3 → 0.1.4

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 (131) hide show
  1. package/assets/brand/suse/dark/rancher-logo.svg +1 -148
  2. package/assets/brand/suse/rancher-logo.svg +1 -130
  3. package/assets/images/featured/img1.jpg +0 -0
  4. package/assets/images/featured.jpg +0 -0
  5. package/assets/images/generic-plugin.svg +7 -0
  6. package/assets/styles/themes/_dark.scss +3 -0
  7. package/assets/styles/themes/_light.scss +3 -0
  8. package/assets/styles/themes/_suse.scss +1 -1
  9. package/assets/translations/en-us.yaml +183 -45
  10. package/assets/translations/zh-hans.yaml +21 -24
  11. package/components/AsyncButton.vue +17 -2
  12. package/components/ButtonDropdown.vue +4 -0
  13. package/components/Carousel.vue +291 -0
  14. package/components/CommunityLinks.vue +69 -18
  15. package/components/CruResource.vue +11 -3
  16. package/components/Dialog.vue +102 -0
  17. package/components/ExplorerMembers.vue +2 -4
  18. package/components/ExplorerProjectsNamespaces.vue +6 -7
  19. package/components/IconMessage.vue +9 -1
  20. package/components/LocaleSelector.vue +62 -29
  21. package/components/ResourceTable.vue +7 -2
  22. package/components/SimpleBox.vue +6 -4
  23. package/components/SortableTable/index.vue +11 -21
  24. package/components/Tabbed/Tab.vue +5 -0
  25. package/components/Tabbed/index.vue +29 -2
  26. package/components/auth/Principal.vue +1 -0
  27. package/components/fleet/FleetBundles.vue +8 -3
  28. package/components/fleet/FleetSummary.vue +6 -0
  29. package/components/form/KeyValue.vue +80 -58
  30. package/components/form/NameNsDescription.vue +10 -4
  31. package/components/form/ResourceTabs/index.vue +5 -1
  32. package/components/formatter/ClusterLink.vue +3 -7
  33. package/components/nav/NamespaceFilter.vue +3 -3
  34. package/components/nav/TopLevelMenu.vue +10 -28
  35. package/config/footer.js +13 -14
  36. package/config/labels-annotations.js +2 -1
  37. package/config/product/explorer.js +5 -4
  38. package/config/product/legacy.js +0 -47
  39. package/config/product/multi-cluster-apps.js +0 -12
  40. package/config/product/settings.js +12 -1
  41. package/config/product/uiplugins.js +17 -0
  42. package/config/settings.js +21 -2
  43. package/config/types.js +5 -1
  44. package/config/uiplugins.js +60 -0
  45. package/content/docs/en-us/getting-started.md +1 -26
  46. package/core/plugins.js +12 -0
  47. package/detail/provisioning.cattle.io.cluster.vue +3 -3
  48. package/detail/workload/index.vue +2 -2
  49. package/dialog/DiagnosticTimingsDialog.vue +116 -0
  50. package/dialog/RotateCertificatesDialog.vue +9 -3
  51. package/edit/auth/azuread.vue +28 -9
  52. package/edit/networking.k8s.io.ingress/index.vue +2 -2
  53. package/edit/persistentvolume/index.vue +3 -0
  54. package/edit/pod.vue +27 -0
  55. package/edit/provisioning.cattle.io.cluster/rke2.vue +76 -5
  56. package/edit/service.vue +7 -5
  57. package/edit/workload/__tests__/Upgrading.test.ts +1 -0
  58. package/edit/workload/index.vue +13 -1
  59. package/edit/workload/mixins/workload.js +13 -13
  60. package/edit/workload/storage/ContainerMountPaths.vue +240 -0
  61. package/edit/workload/storage/Mount.vue +1 -0
  62. package/edit/workload/storage/awsElasticBlockStore.vue +20 -1
  63. package/edit/workload/storage/azureDisk.vue +22 -2
  64. package/edit/workload/storage/azureFile.vue +20 -2
  65. package/edit/workload/storage/csi/index.vue +23 -1
  66. package/edit/workload/storage/gcePersistentDisk.vue +20 -2
  67. package/edit/workload/storage/index.vue +23 -49
  68. package/edit/workload/storage/vsphereVolume.vue +11 -1
  69. package/layouts/default.vue +14 -8
  70. package/layouts/home.vue +9 -4
  71. package/layouts/plain.vue +10 -5
  72. package/list/management.cattle.io.setting.vue +3 -3
  73. package/list/provisioning.cattle.io.cluster.vue +1 -1
  74. package/machine-config/harvester.vue +5 -3
  75. package/models/catalog.cattle.io.uiplugin.js +34 -0
  76. package/models/cluster/node.js +25 -2
  77. package/models/fleet.cattle.io.bundle.js +1 -1
  78. package/models/harvesterhci.io.management.cluster.js +11 -5
  79. package/models/provisioning.cattle.io.cluster.js +12 -6
  80. package/models/workload.js +5 -3
  81. package/nuxt.config.js +69 -25
  82. package/package.json +108 -109
  83. package/pages/auth/login.vue +1 -1
  84. package/pages/c/_cluster/apps/charts/index.vue +46 -1
  85. package/pages/c/_cluster/apps/charts/install.vue +10 -9
  86. package/pages/c/_cluster/explorer/index.vue +72 -9
  87. package/pages/c/_cluster/explorer/tools/index.vue +12 -5
  88. package/pages/c/_cluster/mcapps/index.vue +1 -1
  89. package/pages/c/_cluster/settings/brand.vue +0 -40
  90. package/pages/c/_cluster/settings/links.vue +200 -0
  91. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +232 -0
  92. package/pages/c/_cluster/uiplugins/InstallDialog.vue +242 -0
  93. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +284 -0
  94. package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +130 -0
  95. package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +253 -0
  96. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +115 -0
  97. package/pages/c/_cluster/uiplugins/index.vue +694 -0
  98. package/pages/diagnostic.vue +185 -101
  99. package/pages/docs/_doc.vue +3 -1
  100. package/pages/home.vue +21 -56
  101. package/pages/prefs.vue +108 -88
  102. package/pages/safeMode.vue +17 -0
  103. package/pages/support/index.vue +23 -15
  104. package/pkg/dynamic-importer.lib.js +4 -0
  105. package/plugins/dashboard-store/resource-class.js +2 -2
  106. package/plugins/formatters.js +15 -0
  107. package/plugins/plugin.js +56 -4
  108. package/plugins/steve/mutations.js +1 -1
  109. package/plugins/steve/subscribe.js +94 -72
  110. package/plugins/steve/web-worker.steve-sub-worker.js +24 -15
  111. package/promptRemove/management.cattle.io.globalrole.vue +47 -0
  112. package/promptRemove/management.cattle.io.roletemplate.vue +47 -0
  113. package/promptRemove/mixin/roleDeletionCheck.js +97 -0
  114. package/scripts/publish-shell.sh +1 -1
  115. package/scripts/sync-shell-deps +37 -0
  116. package/store/catalog.js +9 -8
  117. package/store/i18n.js +10 -1
  118. package/store/prefs.js +16 -0
  119. package/store/type-map.js +32 -5
  120. package/store/uiplugins.ts +15 -61
  121. package/utils/__tests__/object.test.ts +0 -24
  122. package/utils/__tests__/selector.test.ts +1 -1
  123. package/utils/dynamic-importer.js +4 -0
  124. package/utils/grafana.js +2 -6
  125. package/utils/socket.js +41 -20
  126. package/utils/string.js +1 -7
  127. package/utils/validators/formRules/__tests__/index.test.ts +108 -0
  128. package/utils/validators/formRules/index.ts +9 -1
  129. package/yarn-error.log +195 -0
  130. package/pages/plugins.vue +0 -387
  131. package/server/verdaccio-middleware.js +0 -56
@@ -1,148 +1 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 359.1742859 69.2959976" style="enable-background:new 0 0 359.1742859 69.2959976;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:#FFFFFF;}
7
- .st1{fill:#30BA78;}
8
- </style>
9
- <g id="Layer_1_1_">
10
- <g>
11
- <path class="st0" d="M259.2593079,29.9640007h-13.5559998c-3.2839966,0-5.9560242-2.6730003-5.9560242-5.9589996V6.3440018
12
- c0-3.2860031,2.6720276-5.9590015,5.9560242-5.9590015h13.5559998c1.0639954,0,1.927002,0.8649998,1.927002,1.927
13
- s-0.8630066,1.9259987-1.927002,1.9259987h-13.5559998c-1.1600037,0-2.105011,0.9440002-2.105011,2.1060028v6.7399979v0.2099991
14
- h0.2099915h13.0830078c1.0069885,0,1.8250122,0.8199997,1.8250122,1.8270035c0,1.007-0.8180237,1.8259964-1.8250122,1.8259964
15
- h-13.0830078h-0.2099915v0.2090034v6.848999c0,1.1609993,0.9450073,2.1049995,2.105011,2.1049995h13.5559998
16
- c1.0639954,0,1.927002,0.8639984,1.927002,1.9280014C261.1863098,29.1010017,260.3233032,29.9640007,259.2593079,29.9640007
17
- M184.9223022,30.3530006c-3.9100037,0-6.9199982-0.993-8.9500122-2.9510002
18
- c-2.0289917-1.9560013-3.0579987-4.8959999-3.0579987-8.7410011V2.2340012C172.9142914,1.0020008,173.9152985,0,175.1463013,0
19
- c1.2319946,0,2.2350006,1.0020008,2.2350006,2.2340012v15.8390007c0,2.8759995,0.618988,5.0329971,1.8409882,6.4069977
20
- c1.2280121,1.3829994,3.1460114,2.0839996,5.7000122,2.0839996s4.470993-0.7010002,5.6999969-2.0839996
21
- c1.220993-1.3759995,1.8410034-3.5319977,1.8410034-6.4069977V2.2340012C192.4633026,1.0020008,193.4653015,0,194.6972961,0
22
- s2.2330017,1.0020008,2.2330017,2.2340012v16.4269981c0,3.8430023-1.0279999,6.7840004-3.0570068,8.7410011
23
- C191.8412933,29.3600006,188.8292999,30.3530006,184.9223022,30.3530006 M218.4472961,30.3530006
24
- c-5.0330048,0-8.8659973-1.4309998-11.3930054-4.2530022c-0.7339935-0.8159981-0.6879883-2.0749969,0.105011-2.8669968
25
- l0.0139923-0.0160027c0.3970032-0.3950005,0.9329987-0.6170006,1.5019989-0.6170006
26
- c0.6000061,0,1.1650085,0.2560005,1.5500031,0.7040024c0.7050018,0.8139992,1.5130005,1.4770012,2.397995,1.9669991
27
- c1.5460052,0.8580017,3.4900055,1.2929993,5.7799988,1.2929993c2.1730042,0,3.9080048-0.3829994,5.154007-1.1399994
28
- c1.2839966-0.7749977,1.9369965-1.894001,1.9369965-3.3250008c0-1.1579971-0.5910034-2.1009979-1.7559967-2.803997
29
- c-1.1320038-0.6810036-3.0419922-1.2680016-5.8379974-1.7910004c-2.7169952-0.5060005-4.9089966-1.1410027-6.5130005-1.8850021
30
- c-1.5870056-0.7339973-2.7519989-1.6529999-3.4649963-2.730999c-0.7140045-1.0719986-1.0750122-2.4029999-1.0750122-3.9570007
31
- c0-1.6399994,0.4600067-3.1539993,1.3680115-4.4990005c0.9079895-1.3479996,2.2419891-2.4349995,3.9649963-3.2299995
32
- C213.9062958,0.4040012,215.9552917,0,218.2693024,0c2.6989899,0,5.0329895,0.4950008,6.9389954,1.4710007
33
- c1.2819977,0.6539993,2.4420013,1.5569992,3.4470062,2.6790009c0.7729797,0.8619995,0.6999817,2.1949997-0.1620178,2.9720001
34
- c-0.3880005,0.3509979-0.8889771,0.5429993-1.4089966,0.5429993c-0.6600037,0-1.2689819-0.2989998-1.67099-0.8209991
35
- c-0.5720062-0.743-1.2160034-1.3490028-1.9179993-1.7989998c-1.2940063-0.8340034-3.0370026-1.257-5.1820068-1.257
36
- c-2.1149902,0-3.7870026,0.4319992-4.9660034,1.2839966c-1.1989899,0.868-1.8069916,1.9980011-1.8069916,3.3620033
37
- c0,1.2769966,0.5970001,2.3029976,1.7720032,3.0509987c1.144989,0.7270012,3.1230011,1.3349991,6.048996,1.8610001
38
- c2.6580048,0.4790001,4.7940063,1.0890007,6.3529968,1.8170013c1.5379944,0.7169991,2.6740112,1.6209984,3.375,2.685997
39
- c0.696991,1.0620003,1.0499878,2.401001,1.0499878,3.9799995c0,1.696003-0.4879761,3.2080002-1.4499817,4.4900017
40
- c-0.9689941,1.2900009-2.3470154,2.2960014-4.0940094,2.9850006C222.8312988,30,220.7632904,30.3530006,218.4472961,30.3530006
41
- M151.6183014,30.3610001c-5.0339966,0-8.8680115-1.4309998-11.3970032-4.2519989
42
- c-0.7310028-0.8170013-0.6849976-2.0760002,0.1069946-2.8670006l0.0149994-0.0149994
43
- c0.3960114-0.3959999,0.9309998-0.618,1.5019989-0.618c0.6010132,0,1.1660004,0.2560005,1.5500031,0.7039986
44
- c0.7030029,0.8120003,1.5090027,1.473999,2.3950043,1.9659996c1.5469971,0.8580017,3.4929962,1.2929993,5.7830048,1.2929993
45
- c2.1719971,0,3.9059906-0.3829994,5.1539917-1.1389999c1.2839966-0.7749977,1.9329987-1.8939972,1.9329987-3.3249969
46
- c0-1.1590004-0.5889893-2.1030006-1.7519989-2.8030014c-1.1179962-0.6730003-3.0820007-1.276001-5.8399963-1.7919998
47
- c-2.7160034-0.5079994-4.9060059-1.1419983-6.5130005-1.8849983c-1.5850067-0.7340012-2.7519989-1.6530037-3.4649963-2.7320023
48
- c-0.7120056-1.0740013-1.072998-2.4039993-1.072998-3.9570007c0-1.6389999,0.4589996-3.1520004,1.3659973-4.4979973
49
- c0.9089966-1.3500023,2.2440033-2.4360008,3.9649963-3.2300014c1.727005-0.7980003,3.776001-1.203001,6.0879974-1.203001
50
- c2.6999969,0,5.0359955,0.4950008,6.9420013,1.4700012c1.2819977,0.6560001,2.4400024,1.5579987,3.4470062,2.6809998
51
- c0.7719879,0.8610001,0.6989899,2.1949997-0.1620026,2.9720001c-0.3880005,0.3499985-0.8899994,0.5429993-1.4109955,0.5429993
52
- c-0.6590118,0-1.2690125-0.2999992-1.6710052-0.8219986c-0.5709991-0.7450027-1.2169952-1.3500023-1.9179993-1.7999992
53
- c-1.2949982-0.8330002-3.0380096-1.2550011-5.1809998-1.2550011c-2.1159973,0-3.7870026,0.4319992-4.9660034,1.2840004
54
- c-1.1990051,0.8699989-1.8059998,2-1.8059998,3.3610001c0,1.2779999,0.5960083,2.3040009,1.7709961,3.0509987
55
- c1.1439972,0.7260017,3.1230011,1.3370018,6.0500031,1.862999c2.654007,0.4760017,4.7910004,1.0870018,6.3509979,1.8160019
56
- c1.5400085,0.7169991,2.6760101,1.6209984,3.3760071,2.6849976c0.696991,1.0610008,1.0509949,2.4000015,1.0509949,3.9790001
57
- c0,1.6980019-0.4879913,3.2080002-1.451004,4.4910011c-0.9700012,1.2919998-2.3470001,2.295002-4.0950012,2.9850006
58
- C156.001297,30.0089989,153.9333038,30.3610001,151.6183014,30.3610001 M292.9972839,68.8450012h-0.0449829
59
- c-1.2139893,0-2.2009888-0.987999-2.2009888-2.2020035V56.0660019v-0.211998h-0.210022h-14.7059937h-0.2099915v0.211998
60
- v10.5769958c0,1.2140045-0.9869995,2.2020035-2.2000122,2.2020035c-1.2139893,0-2.2009888-0.987999-2.2009888-2.2020035
61
- V41.6989975c0-1.2139969,0.9869995-2.2019958,2.2009888-2.2019958c1.2130127,0,2.2000122,0.987999,2.2000122,2.2019958v10.2180023
62
- v0.2099991h0.2099915h14.7059937h0.210022v-0.2099991V41.6989975c0-1.2139969,0.9869995-2.2019958,2.2009888-2.2019958h0.0449829
63
- c1.2150269,0,2.2030029,0.987999,2.2030029,2.2019958v24.9440002
64
- C295.2002869,67.8570023,294.2123108,68.8450012,292.9972839,68.8450012 M146.8143005,43.1819992
65
- c-1.1630096,0-2.1080017,0.9449997-2.1080017,2.1080017v7.8450012v0.2099991h0.2099915h6.9460144
66
- c1.993988,0,3.5099945-0.4189987,4.5089874-1.2450027c1.0080109-0.8349991,1.5190125-2.125,1.5190125-3.836998
67
- c0-1.715004-0.5110016-3.0049973-1.5200043-3.836998c-0.9929962-0.826004-2.5110016-1.2440033-4.5079956-1.2440033H146.8143005z
68
- M142.5942993,68.8460007h-0.1380005c-1.1640015,0-2.1119995-0.9469986-2.1119995-2.1100006V45.5390015
69
- c0-3.3320007,2.7109985-6.0419998,6.0429993-6.0419998h5.8820038c3.1519928,0,5.67099,0.7799988,7.4879913,2.3170013
70
- c1.8050079,1.5279999,2.7220001,3.6809998,2.7220001,6.3999939c0,2.0770035-0.5399933,3.8320007-1.6009979,5.2190018
71
- c-1.0639954,1.3850021-2.6000061,2.3840027-4.5639954,2.9700012l-0.2689972,0.0800018l0.1529999,0.2360001l5.7480011,8.8639984
72
- c0.4279938,0.6600037,0.4589996,1.4670029,0.0829926,2.1569977c-0.3739929,0.6910019-1.0690002,1.1050034-1.8549957,1.1050034
73
- c-0.727005,0-1.3939972-0.3659973-1.7839966-0.9800034l-6.8920135-10.8289948l-0.0629883-0.0970001h-0.1150055h-6.404007
74
- h-0.2099915v0.2099991v9.586998C144.7062988,67.8990021,143.7583008,68.8460007,142.5942993,68.8460007 M182.3322906,44.1750031
75
- c-0.2839966,0-0.5279999,0.1729965-0.6199951,0.4430008l-4.3710022,12.6429977l-0.0970001,0.2779999h0.2949982h9.6940002
76
- h0.2980042l-0.0999908-0.2789993l-4.4810028-12.6460037C182.8582916,44.3470001,182.6143036,44.1750031,182.3322906,44.1750031
77
- M193.3652954,68.8460007h-0.3450012c-0.8410034,0-1.5979919-0.5319977-1.8820038-1.3249969l-2.2619934-6.3370056
78
- l-0.0500031-0.1389999h-0.147995h-12.5390015h-0.1470032l-0.0509949,0.1380005l-2.3139954,6.3479996
79
- c-0.2860107,0.7870026-1.0420074,1.3150024-1.8800049,1.3150024h-0.2190094c-0.6669922,0-1.2669983-0.314003-1.6469879-0.862999
80
- c-0.3789978-0.5470047-0.4600067-1.2200012-0.2250061-1.8430023l9.0810089-24.0800018
81
- c0.5769958-1.5339966,2.0679932-2.5629959,3.7109985-2.5629959c1.6399994,0,3.1299896,1.0289993,3.7079926,2.5629959
82
- l9.0830078,24.0800018c0.2350006,0.625,0.1519928,1.2959976-0.2260132,1.8430023
83
- C194.6342926,68.5319977,194.0332947,68.8460007,193.3652954,68.8460007 M224.0032959,68.8460007h-0.0460052
84
- c-1.1989899,0-2.322998-0.6399994-2.9319916-1.6709976l-12.5400085-21.0740051
85
- c-0.1209869-0.2029953-0.3299866-0.3219986-0.5599976-0.3219986c-0.1790009,0-0.3529968,0.0719986-0.4749908,0.1969986
86
- c-0.1210022,0.1220016-0.1880035,0.288002-0.1860046,0.4660034l0.1640015,20.4059982
87
- c0,1.1009979-0.8959961,1.9980011-1.9990082,1.9980011c-1.1029968,0-2.0009918-0.8970032-2.0009918-1.9990005V42.9100037
88
- c0-1.8820038,1.5310059-3.413002,3.4149933-3.413002c1.197998,0,2.3220062,0.6399994,2.9320068,1.6709976l12.496994,21.0770035
89
- c0.1220093,0.2070007,0.3249969,0.322998,0.5590057,0.322998c0.3269958,0,0.6640015-0.2460022,0.6640015-0.6600037
90
- l-0.1090088-20.3839951c-0.0049896-0.5390015,0.2020111-1.0490036,0.5810089-1.4329987
91
- c0.3820038-0.3830032,0.8889923-0.5940018,1.4299927-0.5940018c1.1120148,0,2.0160065,0.9029999,2.0160065,2.0139999v23.923996
92
- C227.4132996,67.3160019,225.8843079,68.8460007,224.0032959,68.8460007 M343.5102844,43.1819992
93
- c-1.1619873,0-2.1080017,0.9449997-2.1080017,2.1080017v7.8450012v0.2099991h0.2090149h6.946991
94
- c1.9940186,0,3.5110168-0.4189987,4.5100098-1.2450027c1.0079956-0.8349991,1.5190125-2.125,1.5190125-3.836998
95
- c0-1.715004-0.5110168-3.0049973-1.5190125-3.836998c-0.9960022-0.826004-2.5130005-1.2440033-4.5100098-1.2440033H343.5102844z
96
- M339.2893066,68.8460007h-0.1370239c-1.164978,0-2.1129761-0.9469986-2.1129761-2.1100006V45.5390015
97
- c0-3.3320007,2.7120056-6.0419998,6.0429993-6.0419998h5.8829956c3.151001,0,5.67099,0.7799988,7.4869995,2.3170013
98
- c1.8070068,1.5279999,2.7219849,3.6809998,2.7219849,6.3999939c0,2.0750046-0.5390015,3.8310013-1.5999756,5.2190018
99
- c-1.0630188,1.3840027-2.598999,2.3830032-4.5640259,2.9700012l-0.2679749,0.0800018l0.1529846,0.2360001l5.7460022,8.8639984
100
- c0.4290161,0.6600037,0.4599915,1.4660034,0.0849915,2.1569977c-0.375,0.6910019-1.0679932,1.1050034-1.8569946,1.1050034
101
- c-0.7269897,0-1.3939819-0.3659973-1.7829895-0.9800034l-6.8930054-10.8289948l-0.0610046-0.0970001h-0.1170044h-6.4039917
102
- h-0.2090149v0.2099991v9.586998C341.4022827,67.8990021,340.4542847,68.8460007,339.2893066,68.8460007 M325.9032898,68.965004
103
- H312.34729c-3.2850037,0-5.9589844-2.6740036-5.9589844-5.9600067v-17.659996
104
- c0-3.2870026,2.6739807-5.9609985,5.9589844-5.9609985h13.5559998c1.0639954,0,1.928009,0.8639984,1.928009,1.9269943
105
- c0,1.0600052-0.8640137,1.9240036-1.928009,1.9240036H312.34729c-1.1600037,0-2.1040039,0.9449997-2.1040039,2.1080017v6.737999
106
- v0.2099991h0.210022h13.0809937c1.0069885,0,1.8249817,0.8209991,1.8249817,1.8290024
107
- c0,1.0059967-0.8179932,1.8239975-1.8249817,1.8239975h-13.0809937h-0.210022v0.211998v6.8470001
108
- c0,1.1610031,0.9440002,2.1060028,2.1040039,2.1060028h13.5559998c1.0639954,0,1.928009,0.8659973,1.928009,1.9300003
109
- C327.8312988,68.1009979,326.9672852,68.965004,325.9032898,68.965004 M250.9122925,69.2959976
110
- c-2.8070068,0-5.276001-0.6139984-7.3370056-1.8219986c-2.0589905-1.2050018-3.6699829-2.9659958-4.789978-5.2360001
111
- c-1.1220093-2.276001-1.6920166-4.9909973-1.6920166-8.0709991c0-3.0780029,0.5700073-5.7939987,1.6920166-8.0719986
112
- c1.117981-2.2649994,2.7289734-4.026001,4.789978-5.2350006c2.0610046-1.2080002,4.5150146-1.8209991,7.2940063-1.8209991
113
- c2.9230042,0,5.4129944,0.6119995,7.401001,1.8190002c1.2250061,0.7439957,2.2529907,1.7190018,3.0580139,2.9049988
114
- c0.3589783,0.5279999,0.4639893,1.1849976,0.2890015,1.802002c-0.178009,0.6240005-0.6170044,1.1319962-1.2080078,1.3969955
115
- l-0.0820007,0.0340042c-0.2950134,0.1309967-0.6040039,0.197998-0.9219971,0.197998
116
- c-0.7690125,0-1.480011-0.3970032-1.855011-1.0370026c-0.5079956-0.862999-1.1210022-1.5559998-1.8209839-2.0629959
117
- c-1.1719971-0.8499985-2.7160034-1.2809982-4.5890198-1.2809982c-2.8450012,0-5.1529846,1.0199966-6.8589783,3.0270004
118
- c-1.6950073,1.9989929-2.553009,4.8009949-2.553009,8.3249969c0,3.5510025,0.8190002,6.3590012,2.4349976,8.3430023
119
- c1.6289978,1.9949951,3.9159851,3.0079956,6.7940063,3.0079956c1.96698,0,3.6399841-0.5,4.9729919-1.4850006
120
- c0.8559875-0.6279984,1.5700073-1.4599991,2.1220093-2.4700012c0.3849792-0.7109985,1.118988-1.1520004,1.9169922-1.1520004
121
- c0.2319946,0,0.4609985,0.0370026,0.6820068,0.1110001c0.6359863,0.2130051,1.1340027,0.6980057,1.3649902,1.3280029
122
- c0.2229919,0.6080017,0.1629944,1.2700043-0.1659851,1.8120041c-0.855011,1.4160004-1.9880066,2.5970001-3.3619995,3.5079956
123
- C256.3552856,68.5800018,253.807312,69.2959976,250.9122925,69.2959976"/>
124
- <path class="st1" d="M118.7422943,27.8510017c1.1890106,0,2.2299957-0.4589996,2.9360046-1.2930031
125
- c0.7019958-0.829998,0.9790039-1.9269981,0.7819977-3.086998l-1.3450012-8.0110016
126
- c-0.4589996-2.7479973-1.4909973-4.5019989-1.996994-4.5019989c-0.5169983,0-1.2400055,1.7210007-1.2400055,4.5229988v2.0940018
127
- c0,2.6800003-2.2639923,4.9430008-4.9429932,4.9430008h-2.0960083h-0.220993v5.3330002h0.220993H118.7422943z
128
- M94.6532974,68.2919998H79.0562973c-1.4830017,0-2.689003-1.2109985-2.689003-2.6949997V53.8740005
129
- c0-1.7170029-1.3969955-3.112999-3.1149979-3.112999h-38.932003c-1.7169991,0-3.1150017,1.3959961-3.1150017,3.112999v11.7229996
130
- c0,1.512001-1.1849976,2.6949997-2.6939964,2.6949997H12.918294c-1.4840012,0-2.6920013-1.2109985-2.6920013-2.6949997V31.9360008
131
- v-0.4329987l-0.3379974,0.2669983l-7.0480003,5.5379982c-0.0979996,0.0660019-0.2249985,0.1070023-0.3450012,0.1070023
132
- c-0.1069984,0-0.2579994-0.0329971-0.3849983-0.1839981l-1.9900016-2.3650055
133
- C-0.0267059,34.6849976-0.0397064,34.4589996,0.0852936,34.25l10.3180008-15.7490005
134
- C10.8942957,17.473999,11.8102961,16.875,12.8632936,16.875h54.958004c0.7689972,0,1.4980011,0.3390007,2.0049973,0.9290009
135
- c0.5270004,0.6100006,0.7570038,1.4179993,0.6360016,2.2200012l-1.1289978,6.7169991
136
- c-0.1399994,0.9220009,0.1269989,1.8509979,0.7289963,2.5540009c0.5890045,0.6829987,1.4370041,1.0749969,2.3320007,1.0749969
137
- h11.0210037c1.5009995,0,2.7569962-1.0419998,3.0540009-2.5349998l0.0690002-0.3449974l-0.3359985,0.1029968
138
- c-0.6800003,0.2110023-1.4170074,0.3150024-2.1950073,0.3150024h-7.8519974c-1.211998,0-2.2719955-0.4630013-2.9809952-1.2999992
139
- c-0.7080002-0.8360023-0.9910049-1.9510002-0.7920074-3.137001l1.3460007-8.0110016
140
- c0.4400024-2.6520004,1.4050064-4.5,1.9970016-4.5c0.5179977,0,1.2389984,1.7210007,1.2389984,4.5209999v1.2350006v0.3430023
141
- l0.3059998-0.1550026c0.0610046-0.0329971,0.2130051-0.0329971,0.3360062-0.0329971h26.1849899
142
- c2.4940033,0,4.5279999,2.0139999,4.6320038,4.5859985V46.072998c0,2.4530029-2.071991,4.5240021-4.5209961,4.5240021H91.1552963
143
- c-2.4489975,0-4.5169983-2.0709991-4.5169983-4.5240021v-9.6780014v-0.4229965l-0.3379974,0.2570038
144
- c-1.2509995,0.9549942-1.9670029,2.3869934-1.9670029,3.9309998v8.121994c0,2.6780014,2.2630005,4.9420013,4.9410019,4.9420013
145
- h8.0719986v12.3730011C97.3462982,67.0810013,96.138298,68.2919998,94.6532974,68.2919998"/>
146
- </g>
147
- </g>
148
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2_copy" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 129 33"><defs><style>.cls-1{fill:none;}.cls-2{fill:#fff;}.cls-3{fill:#2354ff;}</style></defs><path class="cls-2" d="M41.31476,9.48438h.8479c.82684,0,1.4519,1.8739,1.89752,2.94592,1.04962,2.38812,2.07568,3.07922,3.86102,3.07922,.26868,0,.5528-.03033,.80145-.06726h3.23517l.91644-2.85632h5.04419l.93616,2.85632h3.77148L57.53851,.37762h-3.77142l-4.13702,12.3017c-.10089,.03265-.29407,.08466-.526,.08466-1.3161,0-1.74066-1.4057-2.36578-2.677-.2674-.53662-.60242-1.04956-1.04834-1.4281,1.49432-.46942,3.03448-1.83032,3.03448-4.08521,0-2.76672-1.98615-4.19604-4.93201-4.19604h-6.20447V15.44226h3.72681v-5.95789Zm13.50067-2.85754c.33502-1.02594,.5578-2.56622,.5578-2.56622h.08862s.1568,1.51782,.51416,2.58862l1.02606,3.16882h-3.23499l1.04834-3.19122Zm-13.50067-3.54858h1.78534c1.02734,0,1.87518,.44696,1.87518,1.76312,0,1.60742-1.25012,1.94238-2.3208,1.94238h-1.33972V3.07825Z"/><path class="cls-2" d="M74.85559,.37762h-3.0578V7.60919c0,.87036,.11188,2.07562,.15558,2.92358h-.08862c-.3573-.89276-.8042-2.03082-1.13922-2.67828l-3.94934-7.47687h-3.99585V15.44226h3.05811v-7.23041c0-.8255-.11188-1.83032-.17914-2.67822h.08954c.31238,.8031,.71466,1.78546,1.09467,2.4541l4.10608,7.45453h3.90601V.37762Z"/><path class="cls-2" d="M88.35522,10.39825l-3.25854-.33368c.26776,1.96356-.98114,2.92352-2.5213,2.92352-1.62976,0-3.05811-1.04962-3.05811-5.15601,0-3.88354,1.31738-5.08875,2.94586-5.08875,1.69739,0,2.63354,.95996,2.25519,3.34808l3.48138-.31256c.49054-3.25842-1.27277-5.66895-5.66925-5.66895-4.1734,0-6.87421,2.25488-6.87421,7.69977,0,5.49097,2.63348,7.90027,6.71863,7.90027,4.01691,0,6.22552-2.25366,5.98035-5.31171Z"/><polygon class="cls-2" points="97.41473 6.06903 92.84009 6.06903 92.84009 .37762 89.1123 .37762 89.1123 15.44226 92.84009 15.44226 92.84009 9.05975 97.41473 9.05975 97.41473 15.44226 101.1413 15.44226 101.1413 .37762 97.41473 .37762 97.41473 6.06903"/><polygon class="cls-2" points="106.36212 9.14941 111.60651 9.14941 111.60651 6.38153 106.36212 6.38153 106.36212 3.14545 112.61151 3.14545 112.61151 .37762 102.63428 .37762 102.63428 15.44226 112.83429 15.44226 112.83429 12.6756 106.36212 12.6756 106.36212 9.14941"/><path class="cls-2" d="M122.69806,10.08698c-.26782-.53662-.60278-1.04956-1.04968-1.4281,1.49524-.46942,3.03546-1.83032,3.03546-4.08521,0-2.76672-1.98578-4.19604-4.9317-4.19604h-6.20575V15.44226h3.72778v-5.95789h.84821c.82526,0,1.45032,1.8739,1.89624,2.94592,1.04962,2.38812,2.07666,3.07922,3.86102,3.07922,.69232,0,1.49652-.2005,1.49652-.2005l.28912-2.65582s-.26776,.11078-.6015,.11078c-1.31738,0-1.742-1.4057-2.36572-2.677Zm-4.08386-3.30322h-1.34003V3.07825h1.78564c1.02606,0,1.8739,.44696,1.8739,1.76312,0,1.60742-1.25012,1.94238-2.31952,1.94238Z"/><path class="cls-2" d="M127.73077,1.091c0-.3075-.21899-.37097-.43829-.37097h-.42712V1.89911h.23431v-.47437h.10449l.26526,.47437h.26135l-.28754-.4906c.16797-.03113,.28754-.13568,.28754-.3175Zm-.41724,.16565h-.21387v-.32745h.21387c.08856,0,.18805,.03107,.18805,.15686,0,.10834-.0896,.17059-.18805,.17059Z"/><path class="cls-2" d="M127.26636,.10992c-.58392,0-1.21509,.37097-1.21509,1.22021,0,.83545,.63116,1.20026,1.21509,1.20026,.58521,0,1.21631-.36481,1.21631-1.20026,0-.85547-.6311-1.22021-1.21631-1.22021Zm0,2.16522c-.48547,0-.93268-.28766-.93268-.95001,0-.66736,.4472-.96002,.93268-.96002,.49054,0,.92279,.29266,.92279,.96002,0,.66235-.43225,.95001-.92279,.95001Z"/><path class="cls-2" d="M43.60791,18.68408h-5.90723v14.08984h3.48535v-5.03076h2.42188c2.83887,0,4.78027-1.77393,4.78027-4.84277,0-2.81787-2.00391-4.21631-4.78027-4.21631Zm-.79297,6.5332h-1.62891v-4.00781h1.62891c1.08496,0,2.06641,.45947,2.06641,1.8999,0,1.52393-.98145,2.10791-2.06641,2.10791Z"/><path class="cls-2" d="M58.53564,27.76416c-.25098-.50098-.56445-.98096-.98145-1.33594,1.39844-.43848,2.83887-1.71191,2.83887-3.81982,0-2.58838-1.85742-3.92432-4.61328-3.92432h-5.80273v14.08984h3.48633v-5.57324h.79297c.77246,0,1.35645,1.75342,1.77441,2.75537,.98047,2.2334,1.94043,2.88037,3.61035,2.88037,.64746,0,1.39941-.1875,1.39941-.1875l.27051-2.48438s-.25,.10449-.56348,.10449c-1.23145,0-1.62793-1.31494-2.21191-2.50488Zm-3.82031-3.08936h-1.25195v-3.46533h1.66992c.95996,0,1.75293,.41797,1.75293,1.64941,0,1.50293-1.16895,1.81592-2.1709,1.81592Z"/><polygon class="cls-2" points="62.14795 21.14697 64.02588 21.14697 64.02588 30.31104 62.14795 30.31104 62.14795 32.77393 69.41162 32.77393 69.41162 30.31104 67.51221 30.31104 67.51221 21.14697 69.41162 21.14697 69.41162 18.68408 62.14795 18.68408 62.14795 21.14697"/><path class="cls-2" d="M79.2251,24.96729c-.35449,.95996-.60547,2.02441-.60547,2.02441h-.08301s-.25098-1.02246-.60547-2.02441l-2.2959-6.2832h-4.32129v14.08984h2.85938v-7.11816c0-.83496-.14551-2.67188-.14551-2.67188h.08301s.35449,1.81641,.64746,2.56738l2.73438,7.22266h1.56543l2.71387-7.22266c.27148-.70947,.68848-2.69238,.68848-2.69238h.08398s-.22949,1.96191-.22949,2.79688v7.11816h3.25586v-14.08984h-4.1123l-2.2334,6.2832Z"/><polygon class="cls-2" points="91.60596 26.88721 96.51172 26.88721 96.51172 24.29932 91.60596 24.29932 91.60596 21.27246 97.45117 21.27246 97.45117 18.68408 88.12061 18.68408 88.12061 32.77393 97.65918 32.77393 97.65918 30.18555 91.60596 30.18555 91.60596 26.88721"/><rect class="cls-1" x=".27188" y=".35766" width="32.51248" height="32.51251"/><rect class="cls-1" x="3.45938" y="5.13891" width="20.39999" height="23.58746"/><rect class="cls-2" x=".32416" y=".37762" width="32.45648" height="32.45886"/><path class="cls-3" d="M30.65515,6.41766l-4.19604,5.20831c-.2215,.27515-.5553,.43451-.90747,.43451h-1.77576v7.46204c0,1.06079-.86761,1.92993-1.92975,1.92993h-5.20483c-1.06079,0-1.92969-.86914-1.92969-1.92993v-3.9433c-.46826,.35114-.7746,.91144-.7746,1.54144v3.30328c0,1.06085,.86798,1.92993,1.92877,1.92993h3.37903v5.13739c0,.65118-.52783,1.17908-1.17902,1.17908h-6.36005c-.65118,0-1.17902-.52789-1.17902-1.17908v-4.77258c0-.65118-.52661-1.17908-1.1778-1.17908h-3.01825c-1.49176,0-2.70074-1.20898-2.70074-2.69946V7.55817h3.5285c.72742,0,1.28271,.65491,1.16187,1.37207l-.45453,2.73309c-.12079,.71967,.43475,1.37207,1.16187,1.37207h4.49982c.5766,0,1.05695-.41333,1.15924-.96118-.27411,.09088-.58649,.14191-.9151,.14191h-3.21014c-1.06079,0-1.7879-.85663-1.61353-1.90375l.54285-3.26099c.17566-1.04718,.58392-1.90503,.90778-1.90503,.32355,0,.58875,.86908,.58875,1.92993v.49805c.05994-.00873,.12207-.01617,.1842-.01617h5.34296c.04108-.0025,.0835-.005,.12683-.005h5.20483c1.06213,0,1.92975,.86786,1.92975,1.92871v2.57861l3.0705-5.92798c.26392-.50928,.78955-.82922,1.36237-.82922h1.91345c.57532,0,.8941,.66614,.53296,1.11438Z"/><rect class="cls-1" x="23.54062" y="5.13891" width="7.33127" height="7.01251"/></svg>
@@ -1,130 +1 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 359.587616 69.7170029" style="enable-background:new 0 0 359.587616 69.7170029;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:#0C322C;}
7
- .st1{fill:#30BA78;}
8
- </style>
9
- <g id="Layer_1_1_">
10
- <g>
11
- <path class="st0" d="M293.1996155,39.4970016h-0.0429993c-1.3309937,0-2.4119873,1.0790024-2.4119873,2.4120026v10.2179947
12
- h-14.7050171V41.9090042c0-1.3310013-1.0769958-2.4120026-2.4100037-2.4120026
13
- c-1.3320007,0-2.4119873,1.0790024-2.4119873,2.4120026v24.9440002c0,1.3299942,1.0780029,2.4119949,2.4119873,2.4119949
14
- c1.3310242,0,2.4100037-1.0799942,2.4100037-2.4119949V56.276001h14.7050171v10.5770035
15
- c0,1.3299942,1.0759888,2.4119949,2.4119873,2.4119949h0.0429993c1.3320007,0,2.4140015-1.0799942,2.4140015-2.4119949V41.9090042
16
- C295.6136169,40.5780029,294.5316162,39.4970016,293.1996155,39.4970016 M262.2336121,63.9810028
17
- c0.7789917-1.288002,0.1170044-2.9710007-1.3119812-3.4489975c-1.1010132-0.3680038-2.2970276,0.1179962-2.8500061,1.1379929
18
- c-0.5360107,0.9850006-1.2210083,1.7860031-2.0620117,2.4029999c-1.3049774,0.9640045-2.9249725,1.4430008-4.8489838,1.4430008
19
- c-2.8280029,0-5.0360107-0.9779968-6.6300049-2.9309998c-1.59198-1.9539948-2.3889771-4.6919937-2.3889771-8.2099991
20
- c0-3.4909973,0.8339844-6.2179947,2.5029907-8.1879959c1.67099-1.9670029,3.9039917-2.9530029,6.6990051-2.9530029
21
- c1.8359985,0,3.322998,0.4120026,4.46698,1.2409973c0.6829987,0.4940033,1.2700043,1.1620026,1.7620087,1.9990005
22
- c0.6109924,1.0410004,1.9359741,1.4190063,3.039978,0.927002l0.0859985-0.0360031
23
- c1.348999-0.6049957,1.8370056-2.2869949,1.0079956-3.510994c-0.8249817-1.2120056-1.8659973-2.2020035-3.1239929-2.965004
24
- c-2.0299988-1.2330017-4.5329742-1.8499985-7.5089874-1.8499985c-2.8299866,0-5.2989807,0.6169968-7.401001,1.8499985
25
- c-2.1049805,1.2360001-3.7279968,3.0080032-4.8719788,5.3240051c-1.1410217,2.3159943-1.7130127,5.0369949-1.7130127,8.1649933
26
- c0,3.128006,0.571991,5.8490067,1.7130127,8.163002c1.1439819,2.3180008,2.7669983,4.0930023,4.8719788,5.3250046
27
- c2.1070251,1.2360001,4.5859985,1.8509979,7.4440002,1.8509979c2.9470215,0,5.5110016-0.7200012,7.6920013-2.163002
28
- C260.2156067,66.6200027,261.3556213,65.4319992,262.2336121,63.9810028 M224.2076263,69.2669983
29
- c1.9980164,0,3.6190186-1.6189957,3.6190186-3.621994V41.7210007c0-1.2279968-0.9950256-2.223999-2.2250061-2.223999
30
- c-1.2350006,0-2.2320099,1.0049973-2.2230072,2.2399979l0.1110077,20.3820038
31
- c0,0.4550018-0.6000061,0.6230011-0.8330078,0.2309952l-12.4980011-21.0779953
32
- c-0.6499939-1.1009979-1.8359985-1.7750015-3.1119995-1.7750015c-2.0039978,0-3.625,1.6230011-3.625,3.6230011v23.9369965
33
- c0,1.2229996,0.9909973,2.2099991,2.2120056,2.2099991c1.2200012,0,2.2099915-0.9869995,2.2099915-2.2099991
34
- l-0.1649933-20.4059982c-0.0059967-0.4580002,0.5970001-0.6230011,0.8309937-0.2330017l12.5390015,21.0740051
35
- c0.651001,1.1009979,1.8359985,1.7749939,3.1130066,1.7749939H224.2076263 M187.4366302,57.5400009l-4.4799957-12.6449966
36
- c-0.1410065-0.4000015-0.7050018-0.3970032-0.8419952,0.0019989l-4.3710022,12.6429977H187.4366302z M188.8826294,61.465004
37
- h-12.5399933l-2.3140106,6.3479996c-0.3169861,0.8740005-1.1499939,1.4539948-2.0769958,1.4539948h-0.2200012
38
- c-1.5449982,0-2.6149902-1.5439987-2.0690002-2.9899979l9.0820007-24.0800018
39
- c0.6119995-1.6240005,2.1690063-2.6999969,3.9069977-2.6999969c1.7369995,0,3.2920074,1.0759964,3.9049988,2.6999969
40
- l9.0820007,24.0800018c0.5460052,1.4459991-0.522995,2.9899979-2.0690002,2.9899979h-0.344986
41
- c-0.9320068,0-1.7650146-0.5859985-2.0810089-1.4649963L188.8826294,61.465004z M341.8166199,53.3460007h6.9450073
42
- c1.9559937,0,3.4129944-0.4000015,4.3759766-1.1969986c0.9630127-0.7969971,1.4440002-2.0220032,1.4440002-3.6760025
43
- c0-1.6529999-0.4809875-2.8799973-1.4440002-3.6749954c-0.9629822-0.7990036-2.4199829-1.1949997-4.3759766-1.1949997h-5.0480042
44
- c-1.0480042,0-1.8970032,0.8499985-1.8970032,1.8969955V53.3460007z M348.2196045,57.3600006h-6.4029846v9.5859985
45
- c0,1.2830048-1.0400085,2.3209991-2.322998,2.3209991h-0.1390076c-1.2819824,0-2.3209839-1.0379944-2.3209839-2.3209991
46
- V45.7490005c0-3.4519958,2.7999878-6.2519989,6.2529907-6.2519989h5.8819885c3.2189941,0,5.7590027,0.7890015,7.6230164,2.3669968
47
- c1.8649902,1.5780029,2.79599,3.7649994,2.79599,6.5610046c0,2.137001-0.5499878,3.9179993-1.6430054,5.3460007
48
- c-1.0979919,1.4300003-2.6539917,2.4430008-4.6690063,3.0439987l5.7450256,8.8639984
49
- c1.0049744,1.5439987-0.105011,3.5859985-1.9460144,3.5859985c-0.7949829,0-1.5360107-0.4049988-1.9620056-1.0759964
50
- L348.2196045,57.3600006z M145.120636,53.3460007h6.9459991c1.9530029,0,3.4120026-0.4000015,4.375-1.1969986
51
- s1.4429932-2.0220032,1.4429932-3.6760025c0-1.6529999-0.4799957-2.8799973-1.4429932-3.6749954
52
- c-0.9629974-0.7990036-2.4219971-1.1949997-4.375-1.1949997h-5.048996c-1.0470123,0-1.8970032,0.8499985-1.8970032,1.8969955
53
- V53.3460007z M151.5246277,57.3600006h-6.4039917v9.5859985c0,1.2830048-1.0400085,2.3209991-2.322998,2.3209991h-0.1370087
54
- c-1.2839966,0-2.322998-1.0379944-2.322998-2.3209991V45.7490005c0-3.4519958,2.798996-6.2519989,6.2539978-6.2519989h5.8809967
55
- c3.2180023,0,5.7590027,0.7890015,7.6240082,2.3669968c1.8639984,1.5780029,2.7960052,3.7649994,2.7960052,6.5610046
56
- c0,2.137001-0.5510101,3.9179993-1.6440125,5.3460007c-1.0979919,1.4300003-2.6549988,2.4430008-4.67099,3.0439987
57
- l5.7480011,8.8639984c1.0019989,1.5439987-0.1060028,3.5859985-1.9470062,3.5859985
58
- c-0.7949982,0-1.5350037-0.4049988-1.9609985-1.0759964L151.5246277,57.3600006z M326.107605,65.1100006h-13.5559998
59
- c-1.0449829,0-1.8939819-0.8519974-1.8939819-1.8969955v-6.8480072h13.0799866c1.125,0,2.0360107-0.9119949,2.0360107-2.0339966
60
- c0-1.1269989-0.9110107-2.0400009-2.0360107-2.0400009h-13.0799866v-6.737999c0-1.0479965,0.848999-1.8980026,1.8939819-1.8980026
61
- h13.5559998c1.1790161,0,2.1370239-0.9549942,2.1370239-2.1339951s-0.9580078-2.1360016-2.1370239-2.1360016h-13.5559998
62
- c-3.3999939,0-6.1689758,2.7659988-6.1689758,6.1699982v17.6610031c0,3.401001,2.7689819,6.1699982,6.1689758,6.1699982
63
- h13.5559998c1.1790161,0,2.1370239-0.9560013,2.1370239-2.137001
64
- C328.2446289,66.0650024,327.2866211,65.1100006,326.107605,65.1100006 M259.463623,26.1109982h-13.5559845
65
- c-1.0440063,0-1.8959961-0.848999-1.8959961-1.8949966v-6.8480034h13.082962c1.1240234,0,2.0370178-0.9119987,2.0370178-2.0369987
66
- s-0.9129944-2.0359993-2.0370178-2.0359993h-13.082962V6.5559978c0-1.0469971,0.8519897-1.8969994,1.8959961-1.8969994h13.5559845
67
- c1.1799927,0,2.1380005-0.9569969,2.1380005-2.1369972c0-1.1800022-0.9580078-2.1360016-2.1380005-2.1360016h-13.5559845
68
- c-3.3999939,0-6.1679993,2.7659988-6.1679993,6.1699982v17.6600037c0,3.3999977,2.7680054,6.1689987,6.1679993,6.1689987
69
- h13.5559845c1.1799927,0,2.1380005-0.9570007,2.1380005-2.137001S260.6436157,26.1109982,259.463623,26.1109982
70
- M219.6026306,13.3500004c-2.8650055-0.5139999-4.8580017-1.1240005-5.973999-1.8320007
71
- c-1.1159973-0.7089996-1.6750031-1.6669998-1.6750031-2.8740005c0-1.2970009,0.572998-2.3600006,1.7200012-3.1899986
72
- c1.1470032-0.8300018,2.7600098-1.2449989,4.8440094-1.2449989c2.1100006,0,3.8009949,0.4069977,5.0690002,1.2229996
73
- c0.6809998,0.4379997,1.3029938,1.0209999,1.8629913,1.75c0.8259888,1.0699997,2.3840027,1.2109985,3.3890076,0.3069992
74
- c0.9459839-0.8540001,1.0289917-2.3180008,0.178009-3.2680016c-1.0280151-1.1479988-2.1980286-2.0569992-3.5090179-2.7269993
75
- C223.5626373,0.4979992,221.216629,0,218.4726257,0c-2.3549957,0-4.4139862,0.407999-6.1769867,1.2220001
76
- c-1.7649994,0.8149986-3.1180115,1.9159985-4.0510101,3.3039989c-0.9369965,1.387001-1.4039917,2.9260025-1.4039917,4.6160011
77
- c0,1.598999,0.3679962,2.9570007,1.1100006,4.072998c0.7369995,1.1160011,1.9229889,2.052002,3.5509949,2.8050003
78
- c1.6289978,0.7550011,3.8159943,1.3889999,6.5630035,1.901001c2.7460022,0.5139999,4.6669922,1.1010017,5.7689972,1.7639999
79
- c1.102005,0.6650009,1.6539917,1.5390015,1.6539917,2.625c0,1.3590012-0.6119995,2.4070015-1.8359985,3.1450005
80
- c-1.2189941,0.7410011-2.9019928,1.1090012-5.0429993,1.1090012c-2.2639923,0-4.1569977-0.4210014-5.6809998-1.2660027
81
- c-0.8699951-0.4829979-1.6490021-1.1240005-2.3399963-1.9199982c-0.8679962-1.0089989-2.4250031-1.031002-3.3639984-0.0909996
82
- l-0.0090027,0.0079994c-0.8600006,0.8600006-0.9259949,2.2509995-0.1139984,3.1559982
83
- c2.5820007,2.882,6.4329987,4.3220024,11.552002,4.3220024c2.3529968,0,4.427002-0.3540001,6.2229919-1.0629997
84
- c1.7950134-0.7080002,3.1889954-1.7270012,4.1849976-3.0550003c0.9970093-1.3279991,1.4940186-2.8670006,1.4940186-4.6160011
85
- c0-1.6290016-0.3619995-2.993-1.0859985-4.0950012c-0.7250061-1.1009979-1.8770142-2.0209999-3.4620056-2.7609978
86
- C224.4236298,14.4439983,222.2876282,13.8329983,219.6026306,13.3500004 M152.771637,13.3599987
87
- c-2.8650055-0.5159988-4.8580017-1.1240005-5.973999-1.8330002c-1.1160126-0.7109985-1.6740112-1.6669998-1.6740112-2.875
88
- c0-1.2959976,0.5740051-2.3600006,1.7190094-3.1909981c1.1470032-0.8279991,2.7619934-1.243,4.8439941-1.243
89
- c2.1100006,0,3.8000031,0.4059982,5.0680084,1.2210007c0.6829987,0.4389992,1.3040009,1.0219994,1.8639984,1.7529984
90
- c0.8249969,1.0690002,2.3840027,1.2089996,3.3899994,0.3059998c0.9459991-0.8549995,1.0279999-2.3180008,0.177002-3.269001
91
- c-1.0279999-1.1469994-2.1990051-2.0569992-3.5080109-2.7269993c-1.9459991-0.9959984-4.2929993-1.493-7.0369873-1.493
92
- c-2.3530121,0-4.4120026,0.4070015-6.1760101,1.2220001c-1.7659912,0.8140011-3.1170044,1.9160023-4.052002,3.3029995
93
- c-0.9349976,1.3880005-1.4019928,2.927002-1.4019928,4.6170006c0,1.5979996,0.3679962,2.9570007,1.1080017,4.0720024
94
- c0.7399902,1.1169968,1.9250031,2.0519981,3.5529938,2.8059998c1.6289978,0.7539978,3.8159943,1.3879967,6.5619965,1.9009972
95
- c2.7450104,0.5130005,4.6679993,1.1010017,5.7700043,1.7649994c1.1000061,0.663002,1.6520081,1.538002,1.6520081,2.6240005
96
- c0,1.3580017-0.6119995,2.4070015-1.8330078,3.1450005c-1.2220001,0.7400017-2.9039917,1.1090012-5.0449982,1.1090012
97
- c-2.2640076,0-4.1569977-0.4210014-5.6809998-1.2670021c-0.8699951-0.4819984-1.6490021-1.1239967-2.3379974-1.9209976
98
- c-0.8679962-1.007-2.427002-1.0299988-3.3670044-0.0900002l-0.0079956,0.0089989
99
- c-0.8600006,0.8590012-0.9250031,2.2509995-0.1139984,3.156002c2.5820007,2.882,6.4329987,4.3219986,11.5529938,4.3219986
100
- c2.352005,0,4.4259949-0.3549995,6.2210083-1.0639992c1.79599-0.7080002,3.1899872-1.7270012,4.1869965-3.0540009
101
- c0.9960022-1.3269997,1.4929962-2.8670006,1.4929962-4.6160011c0-1.6289978-0.3619995-2.993-1.0870056-4.0949974
102
- c-0.723999-1.1020012-1.8759918-2.0220032-3.4619904-2.7610016
103
- C157.591629,14.4520016,155.4566345,13.8410015,152.771637,13.3599987 M197.344635,2.4439983v16.4290009
104
- c0,3.9210014-1.0420074,6.8850021-3.1210022,8.8909988c-2.0839996,2.007-5.1150055,3.0090027-9.0970001,3.0090027
105
- c-3.9839935,0-7.0160065-1.0020027-9.0970001-3.0090027c-2.0809937-2.0059967-3.121994-4.9699974-3.121994-8.8909988V2.4439983
106
- C172.9076385,1.0949993,174.0016327,0,175.3506317,0c1.3480072,0,2.4450073,1.0949993,2.4450073,2.4439983V18.282999
107
- c0,2.8370018,0.5939941,4.9249992,1.7869873,6.269001c1.1920013,1.3409996,3.0390015,2.012001,5.5440063,2.012001
108
- s4.3509979-0.6710014,5.5429993-2.012001c1.1909943-1.3440018,1.7870026-3.4319992,1.7870026-6.269001V2.4439983
109
- C192.4566345,1.0949993,193.5516357,0,194.9016266,0C196.2496338,0,197.344635,1.0949993,197.344635,2.4439983"/>
110
- <path class="st1" d="M104.0006256,16.8679981H77.8146362c-0.1610031,0-0.3240051,0-0.4309998,0.0550003v-1.2360001
111
- c0-2.5830002-0.6450043-4.7319984-1.4500046-4.7319984s-1.7740021,2.098999-2.2040024,4.6759987l-1.3449936,8.012001
112
- c-0.4300003,2.5830002,1.3449936,4.6809998,3.9799957,4.6809998h7.8509979c0.8059998,0,1.5600052-0.1090012,2.2570038-0.3240013
113
- c-0.2689972,1.3450012-1.3970032,2.3670006-2.8470001,2.3670006H72.6026306c-1.776001,0-3.1209946-1.6149979-2.8509979-3.3849983
114
- l1.1269989-6.7229996c0.2690048-1.7740021-1.0749969-3.3880005-2.8470001-3.3880005H13.072629
115
- c-1.1819992,0-2.1499977,0.7010002-2.6339989,1.718998L0.114631,34.348999
116
- c-0.1610012,0.2690048-0.1610012,0.5910034,0.0549984,0.8580017l1.9890022,2.3659973
117
- c0.2699966,0.3240051,0.6989975,0.3240051,1.0199966,0.1070023l7.0470009-5.5370026v33.6600037
118
- c0,1.6149979,1.2890015,2.9059982,2.901001,2.9059982h15.5940027c1.6139984,0,2.9029999-1.2910004,2.9029999-2.9059982v-11.723999
119
- c0-1.6149979,1.2909946-2.9020004,2.9049969-2.9020004h38.9330025c1.612999,0,2.9049988,1.2870026,2.9049988,2.9020004v11.723999
120
- c0,1.6149979,1.288002,2.9059982,2.9000015,2.9059982h15.5950012c1.6139984,0,2.9029999-1.2910004,2.9029999-2.9059982V53.2190018
121
- h-8.2809982c-2.5810013,0-4.7300034-2.1520004-4.7300034-4.7310028v-8.1230011
122
- c0-1.5549927,0.7529984-2.9009933,1.8820038-3.7629929v9.6769943c0,2.5820007,2.151001,4.7330017,4.7299957,4.7330017h12.7449951
123
- c2.5820007,0,4.730011-2.151001,4.730011-4.7330017V21.6540012
124
- C108.7336273,18.9660015,106.6386261,16.8679981,104.0006256,16.8679981 M122.8776398,23.6429996
125
- c0.4279938,2.5289993-1.3420105,4.6230011-3.927002,4.6230011h-7.9029999H110.61763V22.513998h0.4300079h2.0970001
126
- c2.5820007,0,4.7309875-2.1499977,4.7309875-4.7329979v-2.0940018c0-2.5809975,0.6440125-4.7329979,1.451004-4.7329979
127
- c0.75,0,1.776001,2.0999985,2.2060089,4.6769981L122.8776398,23.6429996"/>
128
- </g>
129
- </g>
130
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 129 33"><defs><style>.cls-1{fill:none;}.cls-2{fill:#2354ff;}</style></defs><g><path d="M41.31476,9.48438h.8479c.82684,0,1.4519,1.8739,1.89752,2.94592,1.04962,2.38812,2.07568,3.07922,3.86102,3.07922,.26868,0,.5528-.03033,.80145-.06726h3.23517l.91644-2.85632h5.04419l.93616,2.85632h3.77148L57.53851,.37762h-3.77142l-4.13702,12.3017c-.10089,.03265-.29407,.08466-.526,.08466-1.3161,0-1.74066-1.4057-2.36578-2.677-.2674-.53662-.60242-1.04956-1.04834-1.4281,1.49432-.46942,3.03448-1.83032,3.03448-4.08521,0-2.76672-1.98615-4.19604-4.93201-4.19604h-6.20447V15.44226h3.72681v-5.95789Zm13.50067-2.85754c.33502-1.02594,.5578-2.56622,.5578-2.56622h.08862s.1568,1.51782,.51416,2.58862l1.02606,3.16882h-3.23499l1.04834-3.19122Zm-13.50067-3.54858h1.78534c1.02734,0,1.87518,.44696,1.87518,1.76312,0,1.60742-1.25012,1.94238-2.3208,1.94238h-1.33972V3.07825Z"/><path d="M74.85559,.37762h-3.0578V7.60919c0,.87036,.11188,2.07562,.15558,2.92358h-.08862c-.3573-.89276-.8042-2.03082-1.13922-2.67828l-3.94934-7.47687h-3.99585V15.44226h3.05811v-7.23041c0-.8255-.11188-1.83032-.17914-2.67822h.08954c.31238,.8031,.71466,1.78546,1.09467,2.4541l4.10608,7.45453h3.90601V.37762Z"/><path d="M88.35522,10.39825l-3.25854-.33368c.26776,1.96356-.98114,2.92352-2.5213,2.92352-1.62976,0-3.05811-1.04962-3.05811-5.15601,0-3.88354,1.31738-5.08875,2.94586-5.08875,1.69739,0,2.63354,.95996,2.25519,3.34808l3.48138-.31256c.49054-3.25842-1.27277-5.66895-5.66925-5.66895-4.1734,0-6.87421,2.25488-6.87421,7.69977,0,5.49097,2.63348,7.90027,6.71863,7.90027,4.01691,0,6.22552-2.25366,5.98035-5.31171Z"/><polygon points="97.41473 6.06903 92.84009 6.06903 92.84009 .37762 89.1123 .37762 89.1123 15.44226 92.84009 15.44226 92.84009 9.05975 97.41473 9.05975 97.41473 15.44226 101.1413 15.44226 101.1413 .37762 97.41473 .37762 97.41473 6.06903"/><polygon points="106.36212 9.14941 111.60651 9.14941 111.60651 6.38153 106.36212 6.38153 106.36212 3.14545 112.61151 3.14545 112.61151 .37762 102.63428 .37762 102.63428 15.44226 112.83429 15.44226 112.83429 12.6756 106.36212 12.6756 106.36212 9.14941"/><path d="M122.69806,10.08698c-.26782-.53662-.60278-1.04956-1.04968-1.4281,1.49524-.46942,3.03546-1.83032,3.03546-4.08521,0-2.76672-1.98578-4.19604-4.9317-4.19604h-6.20575V15.44226h3.72778v-5.95789h.84821c.82526,0,1.45032,1.8739,1.89624,2.94592,1.04962,2.38812,2.07666,3.07922,3.86102,3.07922,.69232,0,1.49652-.2005,1.49652-.2005l.28912-2.65582s-.26776,.11078-.6015,.11078c-1.31738,0-1.742-1.4057-2.36572-2.677Zm-4.08386-3.30322h-1.34003V3.07825h1.78564c1.02606,0,1.8739,.44696,1.8739,1.76312,0,1.60742-1.25012,1.94238-2.31952,1.94238Z"/><path d="M127.73077,1.091c0-.3075-.21899-.37097-.43829-.37097h-.42712V1.89911h.23431v-.47437h.10449l.26526,.47437h.26135l-.28754-.4906c.16797-.03113,.28754-.13568,.28754-.3175Zm-.41724,.16565h-.21387v-.32745h.21387c.08856,0,.18805,.03107,.18805,.15686,0,.10834-.0896,.17059-.18805,.17059Z"/><path d="M127.26636,.10992c-.58392,0-1.21509,.37097-1.21509,1.22021,0,.83545,.63116,1.20026,1.21509,1.20026,.58521,0,1.21631-.36481,1.21631-1.20026,0-.85547-.6311-1.22021-1.21631-1.22021Zm0,2.16522c-.48547,0-.93268-.28766-.93268-.95001,0-.66736,.4472-.96002,.93268-.96002,.49054,0,.92279,.29266,.92279,.96002,0,.66235-.43225,.95001-.92279,.95001Z"/><path d="M43.60791,18.68408h-5.90723v14.08984h3.48535v-5.03076h2.42188c2.83887,0,4.78027-1.77393,4.78027-4.84277,0-2.81787-2.00391-4.21631-4.78027-4.21631Zm-.79297,6.5332h-1.62891v-4.00781h1.62891c1.08496,0,2.06641,.45947,2.06641,1.8999,0,1.52393-.98145,2.10791-2.06641,2.10791Z"/><path d="M58.53564,27.76416c-.25098-.50098-.56445-.98096-.98145-1.33594,1.39844-.43848,2.83887-1.71191,2.83887-3.81982,0-2.58838-1.85742-3.92432-4.61328-3.92432h-5.80273v14.08984h3.48633v-5.57324h.79297c.77246,0,1.35645,1.75342,1.77441,2.75537,.98047,2.2334,1.94043,2.88037,3.61035,2.88037,.64746,0,1.39941-.1875,1.39941-.1875l.27051-2.48438s-.25,.10449-.56348,.10449c-1.23145,0-1.62793-1.31494-2.21191-2.50488Zm-3.82031-3.08936h-1.25195v-3.46533h1.66992c.95996,0,1.75293,.41797,1.75293,1.64941,0,1.50293-1.16895,1.81592-2.1709,1.81592Z"/><polygon points="62.14795 21.14697 64.02588 21.14697 64.02588 30.31104 62.14795 30.31104 62.14795 32.77393 69.41162 32.77393 69.41162 30.31104 67.51221 30.31104 67.51221 21.14697 69.41162 21.14697 69.41162 18.68408 62.14795 18.68408 62.14795 21.14697"/><path d="M79.2251,24.96729c-.35449,.95996-.60547,2.02441-.60547,2.02441h-.08301s-.25098-1.02246-.60547-2.02441l-2.2959-6.2832h-4.32129v14.08984h2.85938v-7.11816c0-.83496-.14551-2.67188-.14551-2.67188h.08301s.35449,1.81641,.64746,2.56738l2.73438,7.22266h1.56543l2.71387-7.22266c.27148-.70947,.68848-2.69238,.68848-2.69238h.08398s-.22949,1.96191-.22949,2.79688v7.11816h3.25586v-14.08984h-4.1123l-2.2334,6.2832Z"/><polygon points="91.60596 26.88721 96.51172 26.88721 96.51172 24.29932 91.60596 24.29932 91.60596 21.27246 97.45117 21.27246 97.45117 18.68408 88.12061 18.68408 88.12061 32.77393 97.65918 32.77393 97.65918 30.18555 91.60596 30.18555 91.60596 26.88721"/></g><rect class="cls-1" x=".27188" y=".35766" width="32.51248" height="32.51251"/><rect class="cls-1" x="3.45938" y="5.13891" width="20.39999" height="23.58746"/><path class="cls-2" d="M.32416,.37762V32.83649H32.78064V.37762H.32416ZM30.65515,6.41766l-4.19604,5.20831c-.2215,.27515-.5553,.43451-.90747,.43451h-1.77576v7.46204c0,1.06079-.86761,1.92993-1.92975,1.92993h-5.20483c-1.06079,0-1.92969-.86914-1.92969-1.92993v-3.9433c-.46826,.35114-.7746,.91144-.7746,1.54144v3.30328c0,1.06085,.86798,1.92993,1.92877,1.92993h3.37903v5.13739c0,.65118-.52783,1.17908-1.17902,1.17908h-6.36005c-.65118,0-1.17902-.52789-1.17902-1.17908v-4.77258c0-.65118-.52661-1.17908-1.1778-1.17908h-3.01825c-1.49176,0-2.70074-1.20898-2.70074-2.69946V7.55817h3.5285c.72742,0,1.28271,.65491,1.16187,1.37207l-.45453,2.73309c-.12079,.71967,.43475,1.37207,1.16187,1.37207h4.49982c.5766,0,1.05695-.41333,1.15924-.96118-.27411,.09088-.58649,.14191-.9151,.14191h-3.21014c-1.06079,0-1.7879-.85663-1.61353-1.90375l.54285-3.26099c.17566-1.04718,.58392-1.90503,.90778-1.90503,.32355,0,.58875,.86908,.58875,1.92993v.49805c.05994-.00873,.12207-.01617,.1842-.01617h5.34296c.04108-.0025,.0835-.005,.12683-.005h5.20483c1.06213,0,1.92975,.86786,1.92975,1.92871v2.57861l3.0705-5.92798c.26392-.50928,.78955-.82922,1.36237-.82922h1.91345c.57532,0,.8941,.66614,.53296,1.11438Z"/><rect class="cls-1" x="23.54062" y="5.13891" width="7.33127" height="7.01251"/></svg>
Binary file
Binary file
@@ -0,0 +1,7 @@
1
+ <svg width="36px" height="36px" viewBox="0 0 36 36" version="1.1" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <style type="text/css">
3
+ .st0{fill:#777;}
4
+ </style>
5
+ <path d="M29.81,16H29V8.83a2,2,0,0,0-2-2H21A5.14,5.14,0,0,0,16.51,2,5,5,0,0,0,11,6.83H4a2,2,0,0,0-2,2V17H4.81A3.13,3.13,0,0,1,8,19.69,3,3,0,0,1,7.22,22,3,3,0,0,1,5,23H2v8.83a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V26h1a5,5,0,0,0,5-5.51A5.15,5.15,0,0,0,29.81,16Zm2.41,7A3,3,0,0,1,30,24H27v7.83H4V25H5a5,5,0,0,0,5-5.51A5.15,5.15,0,0,0,4.81,15H4V8.83h9V7a3,3,0,0,1,1-2.22A3,3,0,0,1,16.31,4,3.13,3.13,0,0,1,19,7.19V8.83h8V18h2.81A3.13,3.13,0,0,1,33,20.69,3,3,0,0,1,32.22,23Z" class="clr-i-outline clr-i-outline-path-1 st0"></path>
6
+ <rect class="st0" x="0" y="0" width="36" height="36" fill-opacity="0"/>
7
+ </svg>
@@ -39,6 +39,8 @@
39
39
  --default-border : #($dark);
40
40
  --default-banner-bg : #{rgba($dark, 0.15)};
41
41
  --default-light-bg : #{rgba($dark, 0.05)};
42
+ --slider-light-bg : #{rgba($darker, 1)};
43
+ --slider-light-bg-right : #{rgba($darker, 0)};
42
44
 
43
45
  --muted : #{$disabled};
44
46
 
@@ -160,6 +162,7 @@
160
162
  --diff-ins-border : #{rgba($success, 0.5)};
161
163
  --diff-chg-ins : #{rgba($success, 0.25)};
162
164
  --diff-chg-del : #{rgba($warning, 0.5)};
165
+ --diff-chg-dela : #{rgba($warning, 1)};
163
166
  --diff-empty-placeholder : #{$darker};
164
167
 
165
168
 
@@ -82,6 +82,7 @@ BODY, .theme-light {
82
82
  --link-border : #{$link};
83
83
  --link-banner-bg : #{rgba($link, 0.15)};
84
84
  --link-light-bg : #{rgba($link, 0.05)};
85
+
85
86
 
86
87
 
87
88
  .text-link {
@@ -113,6 +114,8 @@ BODY, .theme-light {
113
114
  --default-border : #{$light};
114
115
  --default-banner-bg : #{rgba($light, 0.15)};
115
116
  --default-light-bg : #{rgba($light, 0.05)};
117
+ --slider-light-bg : #{rgba($lightest, 1)};
118
+ --slider-light-bg-right : #{rgba($lightest, 0)};
116
119
 
117
120
 
118
121
  .text-default {
@@ -1,5 +1,5 @@
1
1
  .suse {
2
- $primary: hsl(151, 59%, 46%);
2
+ $primary: hsl(225, 100%, 57%);
3
3
  $info: mix($primary, $secondary, 50%);
4
4
  $selected: rgba($primary, .5);
5
5