dev/null                                                          |binary
 download.lst                                                      |    4 -
 editeng/source/outliner/outliner.cxx                              |    1 
 icon-themes/colibre/cmd/32/numberformatstandard.png               |binary
 icon-themes/colibre/cmd/32/templatemanager.png                    |binary
 icon-themes/colibre/cmd/lc_numberformatstandard.png               |binary
 icon-themes/colibre/cmd/lc_templatemanager.png                    |binary
 icon-themes/colibre/cmd/sc_numberformatstandard.png               |binary
 icon-themes/colibre/cmd/sc_templatemanager.png                    |binary
 icon-themes/colibre/links.txt                                     |    1 
 icon-themes/colibre_svg/cmd/32/numberformatstandard.svg           |    4 -
 icon-themes/colibre_svg/cmd/32/templatemanager.svg                |    2 
 icon-themes/colibre_svg/cmd/lc_numberformatstandard.svg           |    4 -
 icon-themes/colibre_svg/cmd/lc_templatemanager.svg                |   32 
----------
 icon-themes/colibre_svg/cmd/sc_numberformatstandard.svg           |    5 +
 icon-themes/colibre_svg/cmd/sc_templatemanager.svg                |    3 
 icon-themes/colibre_svg/framework/res/templates_32.svg            |    1 
 icon-themes/colibre_svg/svtools/res/template.svg                  |    1 
 icon-themes/elementary/links.txt                                  |   11 +--
 icon-themes/sukapura/cmd/32/developmenttoolsdockingwindow.png     |binary
 icon-themes/sukapura/cmd/32/numberformatstandard.png              |binary
 icon-themes/sukapura/cmd/lc_developmenttoolsdockingwindow.png     |binary
 icon-themes/sukapura/cmd/lc_numberformatstandard.png              |binary
 icon-themes/sukapura/cmd/sc_developmenttoolsdockingwindow.png     |binary
 icon-themes/sukapura/cmd/sc_numberformatstandard.png              |binary
 icon-themes/sukapura/cmd/sc_subscript.png                         |binary
 icon-themes/sukapura/cmd/sc_superscript.png                       |binary
 icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg |    1 
 icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg          |    2 
 icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg |    1 
 icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg          |    2 
 icon-themes/sukapura_svg/cmd/sc_developmenttoolsdockingwindow.svg |    1 
 icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg          |    2 
 icon-themes/sukapura_svg/cmd/sc_subscript.svg                     |    2 
 icon-themes/sukapura_svg/cmd/sc_superscript.svg                   |    2 
 sc/source/core/tool/dbdata.cxx                                    |   23 
+++++--
 sw/source/uibase/docvw/edtwin.cxx                                 |   31 
+++++----
 sw/source/uibase/inc/edtwin.hxx                                   |    1 
 sw/source/uibase/uiview/view1.cxx                                 |    3 
 39 files changed, 69 insertions(+), 71 deletions(-)

New commits:
commit 024c54d911b5b3e6d1f9573b78b9ac4ca172291d
Author:     Eike Rathke <er...@redhat.com>
AuthorDate: Wed Feb 16 21:43:43 2022 +0100
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:25 2022 +0100

    Handle the possible case of broadcasted row block, tdf#119083 follow-up
    
    Though unlikely and apparently not happening, the changed ScHint
    may theoretically notify for a block of rows, not just one
    address. Do not join out-of-band rows to the dirty header columns.
    
    Change-Id: I524bcbedf063fe6b5ff5b99bc984fcb9dc02b6ab
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130054
    Reviewed-by: Eike Rathke <er...@redhat.com>
    Tested-by: Jenkins
    (cherry picked from commit f6b9c471cace1963e8b625ecfe2c20f5248984eb)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130020
    Reviewed-by: Luboš Luňák <l.lu...@collabora.com>

diff --git a/sc/source/core/tool/dbdata.cxx b/sc/source/core/tool/dbdata.cxx
index 5842645953d5..e441c7418796 100644
--- a/sc/source/core/tool/dbdata.cxx
+++ b/sc/source/core/tool/dbdata.cxx
@@ -933,15 +933,30 @@ void ScDBData::Notify( const SfxHint& rHint )
         // multiple cells are affected. Expand the range to what this is
         // listening to. Broadcasted address outside should not happen,
         // but... let it trigger a refresh if.
-        ScRange aHeaderRange( GetHeaderArea());
+        const ScRange aHeaderRange( GetHeaderArea());
+        ScAddress aHintAddress( pScHint->GetStartAddress());
         if (aHeaderRange.IsValid())
         {
             mpContainer->GetDirtyTableColumnNames().Join( aHeaderRange);
-            if (!aHeaderRange.In( pScHint->GetRange()))
-                mpContainer->GetDirtyTableColumnNames().Join( 
pScHint->GetRange());
+            // Header range is one row.
+            // The ScHint's "range" is an address with row count.
+            // Though broadcasted is usually only one cell, check for the
+            // possible case of row block and for one cell in the same row.
+            if (aHintAddress.Row() <= aHeaderRange.aStart.Row()
+                    && aHeaderRange.aStart.Row() < aHintAddress.Row() + 
pScHint->GetRowCount())
+            {
+                aHintAddress.SetRow( aHeaderRange.aStart.Row());
+                if (!aHeaderRange.In( aHintAddress))
+                    mpContainer->GetDirtyTableColumnNames().Join( 
aHintAddress);
+            }
         }
         else
-            mpContainer->GetDirtyTableColumnNames().Join( pScHint->GetRange());
+        {
+            // We need *some* range in the dirty list even without header area,
+            // otherwise the container would not attempt to call a refresh.
+            aHintAddress.SetRow( nStartRow);
+            mpContainer->GetDirtyTableColumnNames().Join( aHintAddress);
+        }
     }
 
     // Do not refresh column names here, which might trigger unwanted
commit 2e236c7e7495c2e584286a6bfa0939ad6874ade7
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Mon Feb 21 10:02:41 2022 +0000
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:24 2022 +0100

    upgrade to expat 2.4.6
    
    Change-Id: Ibec5c6b2a321c48725e0888135c09d9b1835d0b7
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130253
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.st...@allotropia.de>

diff --git a/download.lst b/download.lst
index 8647a04522fb..c046f558a34c 100644
--- a/download.lst
+++ b/download.lst
@@ -50,8 +50,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
b430435a6e8487888b761dc848b7981626eb814884963ffe25eb26a139301e9a
 export ETONYEK_VERSION_MICRO := 10
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
-export EXPAT_TARBALL := expat-2.4.5.tar.xz
+export EXPAT_SHA256SUM := 
de55794b7a9bc214852fdc075beaaecd854efe1361597e6268ee87946951289b
+export EXPAT_TARBALL := expat-2.4.6.tar.xz
 export FIREBIRD_SHA256SUM := 
acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76
 export FIREBIRD_TARBALL := Firebird-3.0.7.33374-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
a5f052cb73fd479ffb7b697980510903b563bbb55b8f7a2b001fcfb94026003c
commit 247a2f53d5a2aa747797fbf1ccd8844d58c55013
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Sat Feb 19 20:43:33 2022 +0000
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:24 2022 +0100

    tdf#147166 EditTextObjectImpl copy ctor doesn't exactly copy 
EditTextObjectImpl
    
    and this is apparently relied on, so eliding the copy gives unexpected
    results.
    
    EditTextObjectImpl::Clone returns a copy of *this, but the
    EditTextObjectImpl copy ctor explicitly does not copy the "PortionInfo"
    member, so in:
    
    commit fb8973f31f111229be5184f4e4223e963ced2c7b
    Author: Caolán McNamara <caol...@redhat.com>
    Date:   Sat Oct 10 19:21:38 2020 +0100
    
        ofz#23492 the only user of this ctor throws away the original of the 
clone
    
        so we can take ownership of the original instead
    
    where the copy was optimized away we want from a state where there was a
    new EditTextObjectImpl with an empty PortionInfo member to one where the
    PortionInfo of the EditTextObjectImpl was retained.
    
    So explicitly clear this unwanted info.
    
    It's very hard to make rational judgements about code if a copy behaves
    differently than the orignal :-(
    
    Change-Id: I642d60841d6bdccbf830f8a2ccdbd9f542a8aa18
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130158
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com>

diff --git a/editeng/source/outliner/outliner.cxx 
b/editeng/source/outliner/outliner.cxx
index d50bdc9b3895..00b5ff202992 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -381,6 +381,7 @@ std::optional<OutlinerParaObject> 
Outliner::CreateParaObject( sal_Int32 nStartPa
         aParagraphDataVector[nPara-nStartPara] = *GetParagraph(nPara);
     }
 
+    xText->ClearPortionInfo(); // tdf#147166 the PortionInfo is unwanted here
     OutlinerParaObject aPObj(std::move(xText), 
std::move(aParagraphDataVector), bIsEditDoc);
     aPObj.SetOutlinerMode(GetOutlinerMode());
 
commit 9602ddf8476dee2288361cd63b75456479289163
Author:     Luboš Luňák <l.lu...@collabora.com>
AuthorDate: Thu Feb 17 16:50:22 2022 +0100
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:24 2022 +0100

    fix Writer key event delayed compression (tdf#145963)
    
    SwEditWin::KeyInput() was stopping the flush timer on every
    invocation, which means that as long as key events kept coming
    the timer would be started again and again and would not time out,
    and so the input buffer would not be actually processed. It seems
    that AnyInput(KEYBOARD) there actually does not normally manage
    to return true ... except for Win11 where it seems that now
    GetQueueStatus() detects even key-up events even though it didn't
    before (I've not debugged this enough to be certain).
    
    I think it still makes sense to have the compression in case Writer
    get overloaded to help it process the pending input events, so fix
    this (but if there are problems, I think an easy solution is simply
    to drop it, it doesn't seem to be that necessary). Also decrease
    the timeout from 200 to 20ms, as 200ms is a very visible delay.
    
    Change-Id: I760ad9c4f58726a80bd6a9fbf93f2771f10cbdb9
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130083
    Tested-by: Jenkins
    Reviewed-by: Luboš Luňák <l.lu...@collabora.com>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130122
    Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com>

diff --git a/sw/source/uibase/docvw/edtwin.cxx 
b/sw/source/uibase/docvw/edtwin.cxx
index e4791daff6a0..59af6a581a6b 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -29,6 +29,8 @@
 #include <com/sun/star/i18n/UnicodeScript.hpp>
 #include <com/sun/star/ui/ContextMenuExecuteEvent.hpp>
 
+#include <comphelper/scopeguard.hxx>
+
 #include <vcl/inputctx.hxx>
 #include <vcl/help.hxx>
 #include <vcl/weld.hxx>
@@ -163,7 +165,6 @@ bool g_bFrameDrag                   = false;
 static bool g_bValidCursorPos       = false;
 static bool g_bModePushed         = false;
 bool g_bDDTimerStarted            = false;
-bool g_bFlushCharBuffer           = false;
 bool g_bDDINetAttr                = false;
 static SdrHdlKind g_eSdrMoveHdl   = SdrHdlKind::User;
 
@@ -871,6 +872,9 @@ static sal_uInt16 lcl_isNonDefaultLanguage(LanguageType 
eBufferLanguage, SwView
  */
 void SwEditWin::FlushInBuffer()
 {
+    if ( m_aKeyInputFlushTimer.IsActive())
+        m_aKeyInputFlushTimer.Stop();
+
     if ( m_aInBuffer.isEmpty() )
         return;
 
@@ -999,8 +1003,6 @@ void SwEditWin::FlushInBuffer()
     rSh.Insert( m_aInBuffer );
     m_eBufferLanguage = LANGUAGE_DONTKNOW;
     m_aInBuffer.clear();
-    g_bFlushCharBuffer = false;
-
 }
 
 #define MOVE_LEFT_SMALL     0
@@ -1389,7 +1391,9 @@ void SwEditWin::KeyInput(const KeyEvent &rKEvt)
         return;
 
     m_pShadCursor.reset();
-    m_aKeyInputFlushTimer.Stop();
+    // Do not reset the timer here, otherwise when flooded with events it 
would never time out
+    // if every key event stopped and started it again.
+    comphelper::ScopeGuard keyInputFlushTimerStop([this]() { 
m_aKeyInputFlushTimer.Stop(); });
 
     bool bIsDocReadOnly = m_rView.GetDocShell()->IsReadOnly() &&
                           rSh.IsCursorReadonly();
@@ -2455,10 +2459,15 @@ KEYINPUT_CHECKTABLE_INSDEL:
                     comphelper::string::padToLength(aBuf,
                         m_aInBuffer.getLength() + aKeyEvent.GetRepeat() + 1, 
aCh);
                     m_aInBuffer = aBuf.makeStringAndClear();
-                    g_bFlushCharBuffer = Application::AnyInput( 
VclInputFlags::KEYBOARD );
-                    bFlushBuffer = !g_bFlushCharBuffer;
-                    if( g_bFlushCharBuffer )
-                        m_aKeyInputFlushTimer.Start();
+                    bool delayFlush = Application::AnyInput( 
VclInputFlags::KEYBOARD );
+                    bFlushBuffer = !delayFlush;
+                    if( delayFlush )
+                    {
+                        // Start the timer, make sure to not restart it.
+                        keyInputFlushTimerStop.dismiss();
+                        if( !m_aKeyInputFlushTimer.IsActive())
+                            m_aKeyInputFlushTimer.Start();
+                    }
                 }
                 eKeyState = SwKeyState::End;
             }
@@ -2674,11 +2683,7 @@ KEYINPUT_CHECKTABLE_INSDEL:
     // in case the buffered characters are inserted
     if( bFlushBuffer && !m_aInBuffer.isEmpty() )
     {
-        // bFlushCharBuffer was not reset here
-        // why not?
-        bool bSave = g_bFlushCharBuffer;
         FlushInBuffer();
-        g_bFlushCharBuffer = bSave;
 
         // maybe show Tip-Help
         if (bNormalChar)
@@ -5187,7 +5192,7 @@ SwEditWin::SwEditWin(vcl::Window *pParent, SwView 
&rMyView):
     SetPointer( PointerStyle::Text );
     m_aTimer.SetInvokeHandler(LINK(this, SwEditWin, TimerHandler));
 
-    m_aKeyInputFlushTimer.SetTimeout( 200 );
+    m_aKeyInputFlushTimer.SetTimeout( 20 );
     m_aKeyInputFlushTimer.SetInvokeHandler(LINK(this, SwEditWin, 
KeyInputFlushHandler));
 
     // TemplatePointer for colors should be reset without
diff --git a/sw/source/uibase/inc/edtwin.hxx b/sw/source/uibase/inc/edtwin.hxx
index a88e75c7bdec..5ec1942a17fd 100644
--- a/sw/source/uibase/inc/edtwin.hxx
+++ b/sw/source/uibase/inc/edtwin.hxx
@@ -301,7 +301,6 @@ public:
 
 extern bool g_bFrameDrag;
 extern bool g_bDDTimerStarted;
-extern bool g_bFlushCharBuffer;
 extern bool g_bDDINetAttr;
 
 #endif
diff --git a/sw/source/uibase/uiview/view1.cxx 
b/sw/source/uibase/uiview/view1.cxx
index 1484b30054fd..979f5e0f5751 100644
--- a/sw/source/uibase/uiview/view1.cxx
+++ b/sw/source/uibase/uiview/view1.cxx
@@ -136,8 +136,7 @@ void SwView::Activate(bool bMDIActivate)
 
 void SwView::Deactivate(bool bMDIActivate)
 {
-    if( g_bFlushCharBuffer ) // Are Characters still in the input buffer?
-        GetEditWin().FlushInBuffer();
+    GetEditWin().FlushInBuffer(); // Flush characters still in the input 
buffer.
 
     if( bMDIActivate )
     {
commit c9013500470815b8d451c9d2864eb9a4baf937e6
Author:     Rizal Muttaqin <riz_17_...@yahoo.co.id>
AuthorDate: Mon Feb 21 08:28:07 2022 +0700
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:24 2022 +0100

    Sukapura: tdf#138400 General Number Format icons
    
    Change-Id: I71005bb44e407bdbc48654f7399a397d03ef86a7
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130248
    Tested-by: Jenkins
    Reviewed-by: Rizal Muttaqin <riz...@libreoffice.org>

diff --git a/icon-themes/sukapura/cmd/32/numberformatstandard.png 
b/icon-themes/sukapura/cmd/32/numberformatstandard.png
index f0253c6e2e84..0114dea63a39 100644
Binary files a/icon-themes/sukapura/cmd/32/numberformatstandard.png and 
b/icon-themes/sukapura/cmd/32/numberformatstandard.png differ
diff --git a/icon-themes/sukapura/cmd/lc_numberformatstandard.png 
b/icon-themes/sukapura/cmd/lc_numberformatstandard.png
index 73344ee6b710..441be6bbd0cd 100644
Binary files a/icon-themes/sukapura/cmd/lc_numberformatstandard.png and 
b/icon-themes/sukapura/cmd/lc_numberformatstandard.png differ
diff --git a/icon-themes/sukapura/cmd/sc_numberformatstandard.png 
b/icon-themes/sukapura/cmd/sc_numberformatstandard.png
index 1247a1cd8bbf..43c29017ec76 100644
Binary files a/icon-themes/sukapura/cmd/sc_numberformatstandard.png and 
b/icon-themes/sukapura/cmd/sc_numberformatstandard.png differ
diff --git a/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg 
b/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg
index c97dbd43eab9..50e656a4fc8f 100644
--- a/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg
+++ b/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg
@@ -1 +1 @@
-<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg";><g fill="#4b4b4f" 
stroke-width=".682294"><path d="m12.438668 
20.550414c0-.817331-.288731-1.505844-.866193-2.065539-.568579-.559694-1.532497-1.066084-2.891754-1.51917-1.8922997-.577463-3.2737674-1.328164-4.1444029-2.252103-.8617515-.932824-1.2926273-2.114401-1.2926273-3.544731
 0-1.4569817.4219917-2.6518845 1.2659752-3.5847083.8528675-.9328238 
2.0211182-1.4880761 
3.5047523-1.6657568v-2.9184059h1.9855817v2.9317319c1.492519.2043329 
2.651886.8306574 3.478101 1.8789737.835099 1.0483163 1.252649 2.4830884 
1.252649 
4.3043154h-2.451994c0-1.252649-.297615-2.2476607-.892846-2.985036-.595231-.737375-1.3992359-1.1060625-2.4120158-1.1060625-1.0572003
 0-1.8656476.2754051-2.4253419.8262154-.5596943.5419262-.8395414 
1.3015111-.8395414 2.2787551 0 .906172.2931732 1.630221.8795196 
2.172147.5952304.533042 1.5680322 1.021664 2.9184055 1.465866 1.359258.435318 
2.416458.919498 3.171601 1.45254.764027.524158 1.323722 1.137156 1.679083 
1.838995.364
 245.701839.546368 1.523613.546368 2.465321 0 1.501402-.453086 
2.709631-1.359257 3.624686-.897288.915056-1.918952 1.385073-3.544731 
1.55387v2.297682h-1.9722556v-2.297682c-1.6524308-.151029-3.1893691-.665466-4.1310769-1.68713-.9328238-1.030549-1.3992357-2.425342-1.3992357-4.184381h2.46532c0
 1.234881.3242673 2.185472.972802 2.851775s1.5680324.999454 
2.7584933.999454c1.1638086 0 2.0788639-.279847 
2.7451669-.839541s.999454-1.323721.999454-2.292081z"/><path d="m29.795556 
17.428467q0 4.330968-1.479192 6.436485-1.479192 2.105516-4.624141 
2.105516-3.104971 
0-4.597489-2.052212-1.492518-2.065539-1.545822-6.156637v-3.291536q0-4.277663 
1.479192-6.3565278 1.479192-2.0788645 4.637467-2.0788645 3.131623 0 4.610815 
2.0122342 1.479192 1.9989081 1.51917 
6.1832891zm-2.46532-3.371492q0-3.131622-.87952-4.5575101-.879519-1.4392139-2.785145-1.4392139-1.8923
 0-2.758493 1.4258878-.866194 1.4258882-.892846 4.3842722v3.944512q0 
3.144949.906172 4.650793.919498 1.492518 2.771819 1.492518 1.82567 0 
2.705189-1.412
 562.892846-1.412562.932824-4.450902z"/></g></svg>
\ No newline at end of file
+<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg";><g 
fill="#4b4b4f"><path d="m7 26h-2v-16.4310248l-4.97061836 
1.8256688v-2.2387764l6.58416236-2.6518849h.386456z" 
stroke-width=".682294"/><path d="m21.030151 
23.940316v2.059684h-11.030151v-1.802224l5.474423-7.249546q1.463461-1.96483 
1.937729-3.089527.48782-1.138248.48782-2.290045 
0-1.449909-.704628-2.4797506-.691079-1.0298426-1.951278-1.0298426-1.65317 
0-2.398449 1.1246961-.745282 1.1246961-.745282 2.8862681h-2.398448q0-2.493302 
1.382156-4.2819753 1.395709-1.7886736 4.160023-1.7886736 2.384897 0 3.712849 
1.4499098 1.341507 1.4499085 1.341507 3.8212561 0 1.734472-.867236 
3.482495-.867236 1.74802-2.140986 3.401187l-4.417483 5.786088z"/><path 
d="m24.851954 16.815747v-2.038469h1.528851q1.52885 0 
2.266452-.952178.751014-.952178.751014-2.387152 
0-3.4332078-2.64196-3.4332078-1.247219 
0-1.998234.911946-.737603.8985343-.737603 2.4273848h-2.36033q0-2.2396321 
1.38133-3.8087149 1.381329-1.5690831 3.714837-1.5690831 2.22622 0 3.62096 1.40
 81515 1.394743 1.3947404 1.394743 4.1171675 0 1.086288-.590083 
2.320097-.590083 1.220397-1.93118 1.917768 1.649549.616905 2.199399 
1.94459.54985 1.314276.54985 2.64196 0 2.735839-1.51544 4.224456-1.502029 
1.488617-3.74166 1.488617-2.185987 
0-3.688016-1.408152-1.502028-1.421562-1.502028-4.023288h2.373741q0 
1.542259.737604 2.467616.751014.925358 2.078699.925358 1.314276 0 
2.092111-.898536.791246-.898534.791246-2.722426 
0-3.553905-3.366152-3.553905z"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg 
b/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg
index e92e641646bf..02a4475aea6b 100644
--- a/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg
+++ b/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg
@@ -1 +1 @@
-<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg";><g 
fill="#4b4b4f"><path d="m5 
2v1.84375c-1.1918684.1427387-2.1312603.5904653-2.8164062 
1.3398438-.678009.7493783-1.015625 1.7084486-1.015625 2.8789062-.0000001 
1.1490468.3448264 2.098278 1.0371093 2.847656.6994197.742242 1.8099107 1.344693 
3.3300781 1.808594 1.0919514.363984 1.8655018.771076 2.3222657 
1.220703.4639009.449627.6972656 1.003558.6972656 1.660156 0 .777926-.2674641 
1.390217-.8027344 1.839844s-1.2701394.675781-2.2050781.675781c-.9563495 
0-1.6958006-.267464-2.2167969-.802734-.5209964-.535271-.78125-1.298982-.78125-2.291016h-1.98046872c-.00000001
 1.413113.37366854 2.533444 1.12304682 3.361328.7565153.820749 1.9869789 
1.290782 3.3144532 1.41211l-.0058594 
2.205078h1.2734375.1230469.6035156v-2.306641c1.0155429-.194939 
1.8390859-.586885 2.4433594-1.203125.7279676-.735105 1.0917966-1.705967 
1.0917966-2.912109 
0-.756515-.146838-1.416651-.439453-1.980469-.2854775-.563818-.7358327-1.057436-1.3496092-1.478515-.6066397-.4282
 
16-1.4549238-.816306-2.546875-1.166016-1.0848144-.356847-1.8655753-.749518-2.34375-1.1777344-.4710378-.4353531-.7070313-1.0161731-.7070313-1.7441406
 0-.7850631.2242011-1.3966781.6738281-1.8320312.449627-.4424902 
1.0999233-.6640626 1.9492188-.6640626.8136107.0000001 1.4593252.2963062 
1.9375.8886719.4781747.5923657.7167968 1.3921294.7167968 
2.3984375h1.9707028c0-1.463072-.33694-2.6148727-1.0078121-3.4570312-.5846164-.7417714-1.3887903-1.2061062-2.3886719-1.421875v-1.9433594h-.4042969-.0957031z"/><path
 d="m22.944889 13.151254q0 3.479257-1.1883 5.170711-1.1883 1.691454-3.714775 
1.691454-2.49436 
0-3.693365-1.648633-1.199005-1.659337-1.241827-4.945897v-2.644235q0-3.4364346 
1.1883-5.1064778 1.1883-1.6700432 3.725481-1.6700432 2.51577 0 3.70407 
1.6165162 1.1883 1.6058107 1.220416 
4.9673078zm-1.9805-2.708467q0-2.5157704-.706556-3.6612487-.706557-1.1561837-2.23743-1.1561837-1.520168
 0-2.216019 1.1454783-.695851 1.1454783-.717262 3.5220781v3.1688q0 
2.526476.727968 3.736186.738672 1.199006 2.22
 6724 1.199006 1.46664 0 
2.173197-1.134773.717262-1.134773.749378-3.575606z"/></g></svg>
\ No newline at end of file
+<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg";><g 
fill="#4b4b4f"><path d="m5.9893782 20h-1.9893782v-13.1876516l-3.9894518 
1.4652947v-1.7968577l5.6686581-2.1284207h.3101719z"/><path d="m15.822455 
18.352564v1.647436h-8.822455v-1.441507l4.378712-5.798542q1.170547-1.571568 
1.549892-2.471154.390182-.9104257.390182-1.8316895 
0-1.1597085-.563598-1.9834266-.552758-.8237182-1.560728-.8237182-1.3222853 
0-1.9183969.8995869-.5961123.899587-.5961123 2.3085787h-1.9183961q0-1.9942652 
1.1055164-3.4249335 1.1163554-1.4306684 3.3273889-1.4306684 1.907558 0 2.96972 
1.1597085 1.073002 1.1597085 1.073002 3.056428 0 1.3873147-.693657 
2.7854681-.693658 1.398153-1.712467 2.720438l-3.5333177 4.627995z"/><path 
d="m18.283941 12.668126v-1.630096h1.222572q1.222572 0 
1.812409-.761426.600562-.7614269.600562-1.9089286 
0-2.7454247-2.11269-2.7454247-.997362 0-1.597924.7292535-.589837.718529-.589837 
1.941101h-1.88748q0-1.7909606 1.104605-3.0457055 1.104605-1.2547448 
2.970636-1.2547448 1.780236 0 2.895564
  1.1260531 1.115329 1.1153287 1.115329 3.2923647 0 .8686695-.47187 
1.8553063-.471869.975913-1.544301 1.533577 1.319091.493318 1.758788 
1.555027.439696 1.050981.439696 2.11269 0 2.187759-1.211847 3.378158-1.201123 
1.190399-2.992083 1.190399-1.748065 
0-2.949187-1.126053-1.201124-1.136778-1.201124-3.217294h1.898203q0 
1.233296.589839 1.973273.600561.739978 1.662269.739978 1.050981 0 
1.672993-.718529.632734-.718529.632734-2.177036 
0-2.841943-2.691803-2.841943z"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg 
b/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg
index 2d34bd497390..5feabaaf563a 100644
--- a/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg
+++ b/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";><g 
fill="#4b4b4f"><path d="m6.1935633 
11.280647c0-.565699-.1554119-1.04126-.4662357-1.4266814-.3108237-.3916379-.8454406-.7521935-1.6038505-1.0816667-1.1127491-.4040709-1.9239991-.929363-2.43375-1.5758765-.509751-.6527299-.76462649-1.479521-.76462649-2.4803735
 0-1.0195019.24555079-1.8494014.73665229-2.4896983.497318-.6465134 
1.1718056-1.0381513 
2.0234627-1.1749138v-1.0514368h1.3147844v1.0607615c.8703065.1554119 
1.5416859.5998898 2.014138 1.3334339.4786686.7273276.7180029 1.7219636.7180029 
2.9839081h-1.6318248c0-.8640901-.1585201-1.5572271-.4755603-2.079411-.3170403-.5221839-.7521935-.7832758-1.3054598-.7832758s-.9853113.1896025-1.296135.5688075c-.3046073.3792049-.456911.9138218-.456911
 1.6038505 0 .627864.1647366 1.1313985.4942098 
1.5106035.3356897.3729885.8796312.7180029 1.6318247 1.0350431 1.125182.4227203 
1.9302155.9511207 2.4151006 1.5852012.4911015.6278639.7366523 1.4422225.7366523 
2.4430745 0 1.019502-.261092 1.85251-
 .7832759 2.499023s-1.0508766 1.035043-2.0268632 1.165589l-.0338983 
1.073391h-1.2961351l.033898-1.073391c-.9822028-.142979-1.9547887-.571915-2.4769726-1.28681-.52218393-.714895-.7832759-1.669124-.7832759-2.862687h1.6411494c0
 .86409.1740613 1.529253.5221839 1.995489.3481226.466235.8392241.699353 
1.4733046.699353.6465135 0 1.1531562-.192711 
1.5199282-.578132.3729885-.391638.5594828-.929363.5594828-1.613175z"/><path 
d="m16.017536 8.9872303q0 3.0025577-.876523 4.4945117-.876523 1.482629-2.75079 
1.482629-1.818319 
0-2.7134916-1.426681-.8951724-1.426681-.9324713-4.2893678v-2.3311781q0-2.9745834.876523-4.4385633.8858479-1.4639799
 2.7507899-1.4639799 1.836969 0 2.713492 1.3893822.885847 1.3893822.932471 
4.2054454zm-1.650474-2.3591523q0-2.1540087-.47556-3.1704023-.475561-1.0257184-1.519929-1.0257184-1.016393
 0-1.491954 1.0070689-.47556.9977443-.494209 3.0212069v2.7974138q0 
2.1446841.494209 3.2263511.49421 1.072341 1.510604 1.072341 1.007069 0 
1.482629-1.016393.47556-1.016394.49421-3.1051295z"/
 ></g></svg>
\ No newline at end of file
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";><g 
fill="#4b4b4f"><path d="m5 15h-2v-11.4973709l-2.853362 
1.2774857v-1.5665518l3.5922701-1.8556178h1.2610919z" 
stroke-width=".477425"/><path d="m14.71906 
13.558603v1.441397h-7.71906v-1.261222l3.831081-5.0733379q1.02415-1.3750167 
1.35605-2.1620953.341385-.7965614.341385-1.6026055 
0-1.0146678-.493111-1.7353662-.483626-.7206985-1.365533-.7206985-1.1569098 
0-1.6784688.7870786-.5215576.7870783-.5215576 
2.0198523h-1.6784686q0-1.7448489.9672538-2.9965884.9767354-1.2517393 
2.9112412-1.2517393 1.668986 0 2.598307 1.0146676.938806 1.0146678.938806 
2.6741703 0 1.2138079-.606905 2.4370989-.606904 1.2232908-1.498294 
2.3802019l-3.0914168 4.0491865z"/></g></svg>
\ No newline at end of file
commit 5a7f38b2feb8a975c445018922c46165550ea0b6
Author:     Rizal Muttaqin <riz_17_...@yahoo.co.id>
AuthorDate: Mon Feb 21 08:05:08 2022 +0700
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:24 2022 +0100

    Colibre: tdf#138400 General Number Format icons
    
    Change-Id: If1ee2bb381b2b27f4f6a405cdde5dc58a35b0f73
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130166
    Tested-by: Jenkins
    Reviewed-by: Rizal Muttaqin <riz...@libreoffice.org>

diff --git a/icon-themes/colibre/cmd/32/numberformatstandard.png 
b/icon-themes/colibre/cmd/32/numberformatstandard.png
index 1628c545809a..2e482553d6f9 100644
Binary files a/icon-themes/colibre/cmd/32/numberformatstandard.png and 
b/icon-themes/colibre/cmd/32/numberformatstandard.png differ
diff --git a/icon-themes/colibre/cmd/lc_numberformatstandard.png 
b/icon-themes/colibre/cmd/lc_numberformatstandard.png
index 4a3b98048c34..7e5e60ad5809 100644
Binary files a/icon-themes/colibre/cmd/lc_numberformatstandard.png and 
b/icon-themes/colibre/cmd/lc_numberformatstandard.png differ
diff --git a/icon-themes/colibre/cmd/sc_numberformatstandard.png 
b/icon-themes/colibre/cmd/sc_numberformatstandard.png
index 2620917dcf0e..256cc0e2eb14 100644
Binary files a/icon-themes/colibre/cmd/sc_numberformatstandard.png and 
b/icon-themes/colibre/cmd/sc_numberformatstandard.png differ
diff --git a/icon-themes/colibre_svg/cmd/32/numberformatstandard.svg 
b/icon-themes/colibre_svg/cmd/32/numberformatstandard.svg
index a3a26a09f901..1d59ffee7dae 100644
--- a/icon-themes/colibre_svg/cmd/32/numberformatstandard.svg
+++ b/icon-themes/colibre_svg/cmd/32/numberformatstandard.svg
@@ -1 +1,3 @@
-<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg";><g 
fill="#3a3a38"><path d="m23.486328 6c-.911302 
0-1.762319.2023262-2.552734.609375-.790415.397121-1.478614 1.0080056-2.064453 
1.8320312-.576537.8240258-1.030471 1.8660958-1.365235 3.1269528-.334764 
1.250933-.503906 2.72988-.503906 4.4375 0 1.707619.169142 3.192266.503906 
4.453125.334764 1.250931.788698 2.289257 1.365235 3.113282.585839.814098 
1.274038 1.426936 2.064453 1.833984.790415.397121 1.641432.59375 
2.552734.59375.911304 0 1.762319-.196629 2.552734-.59375.799714-.407048 
1.492291-1.019886 2.078126-1.833984.585836-.824025 1.044142-1.862351 
1.378906-3.113282.334764-1.260859.503906-2.745506.503906-4.453125 
0-1.70762-.169142-3.186568-.503906-4.4375-.334764-1.260858-.79307-2.302927-1.378906-3.1269528-.585835-.8240257-1.278413-1.4349102-2.078126-1.8320312-.790417-.4070488-1.64143-.609375-2.552734-.609375zm0
 1c.719546 0 1.431189.185417 2.074219.5351562.700951.381244 1.265041.9823592 
1.710937 1.71875.470494.7612008.803709 1.
 6847878 1.044922 2.7792968.247863 1.115218.359375 2.430311.359375 3.972656 0 
1.543849-.111544 2.867696-.359375 3.992188a1.1017575 1.1017575 0 0 1 0 
.003906c-.241475 1.084958-.576027 2.001165-1.044922 
2.759766-.445896.736393-1.009988 1.337506-1.710937 1.71875a1.1017575 1.1017575 
0 0 1 -.013672.009765c-.641968.336231-1.348759.509766-2.060547.509766-.711785 
0-1.418576-.173532-2.060547-.509766a1.1017575 1.1017575 0 0 1 
-.021484-.013672c-.689878-.382437-1.248197-.97766-1.701172-1.708984a1.1017575 
1.1017575 0 0 1 
-.005859-.009766c-.457201-.756597-.786024-1.671613-1.027344-2.755859a1.1017575 
1.1017575 0 0 1 0-.003906c-.247821-1.124482-.359375-2.448336-.359375-3.992188 
0-1.542351.111528-2.857454.359375-3.972656.241066-1.093828.568586-2.016218 
1.027344-2.7753905a1.1017575 1.1017575 0 0 1 .005859-.0097656c.452975-.7313219 
1.011291-1.3265467 1.701172-1.7089844a1.1017575 1.1017575 0 0 1 
.007812-.0039063c.643032-.3497419 1.354676-.5351562 2.074219-.5351562z"/><path 
d="m8 3v3.6503906c-.6598813.04
 
34362-1.2470274.1714888-1.7597656.3886719-.0012651.0005359-.002642.0014163-.0039063.0019531a.22119743.22119743
 0 0 1 -.0039062.0019532c-.6461702.2692372-1.1753342.6217304-1.609375 
1.0644531-.4286673.4374143-.7537412.9390352-.9824219 
1.5195312h-.0019531a.22119743.22119743 0 0 1 0 
.0019531c-.2296982.5742458-.3417969 1.1550928-.3417969 1.7617188 0 
.808789.1198645 1.453931.3222656 1.935547.2290971.519872.513405.938453.8554688 
1.273437h.0019531v.001953c.3664525.348602.7759344.629825 
1.2402344.84961.5082179.230054 1.0243542.435331 
1.5507812.617187.2485933.085878.4877925.167911.7324219.251953v8.042969c-.0606789.001712-.1161576.013672-.1777344.013672-.7449892
 0-1.4148606-.106178-2.0039062-.341797a.22119743.22119743 0 0 1 
-.0136719-.007812l-.0019531.003906c-.515861-.221083-.9692004-.46292-1.359375-.730469a.22119743.22119743
 0 0 1 
-.0097656-.005859c-.3575836-.255416-.658743-.488079-.9121094-.699219a.22119743.22119743
 0 0 1 -.0195313-.019531l-.0019531.001953c-.0808301-.073801-.1453012-.114211-
 
.1855469-.134766-.0158467-.008093-.0276408-.009303-.0371093-.011718.0001075.0006-.0032872-.003947-.015625.003906v-.001953a.22119743.22119743
 0 0 1 
-.015625.009765c-.0189978.011402-.0197687.011249-.0449219.050782a.22119743.22119743
 0 0 1 -.0136719.017578l-.0058594.007812-.4941406.800781c.5793195.570196 
1.2314843 1.056437 2.0097656 1.419922a.22119743.22119743 0 0 1 
.0078125.001954v.001953c.9262679.417051 1.9399609.626953 
3.0605469.626953.0809529 0 
.155345-.007488.234375-.009766v3.638672h1v-3.730469c.423882-.072595.8174145-.182253
 1.177734-.330078.702407-.288166 1.270983-.670645 
1.732422-1.158203a.22119743.22119743 0 0 1 
.003906-.003906l-.001953-.001953c.476216-.493855.836273-1.064312 
1.085938-1.732422.250867-.681567.378906-1.41384.378906-2.208985 
0-.736825-.12072-1.322512-.330078-1.773437h.001953a.22119743.22119743 0 0 1 
-.003906-.009766c-.216422-.484788-.498503-.875503-.847656-1.191406a.22119743.22119743
 0 0 1 
-.011719-.009766c-.357752-.340276-.765758-.620751-1.234375-.841797a.221197
 43.22119743 0 0 1 
-.009766-.005859l-.001953.003906c-.506704-.248571-1.0207046-.469532-1.5449218-.660156-.1338816-.048684-.26179-.09462-.3945312-.142578v-7.5429688c.4322691.0353546.8415923.1017922
 1.203125.2421876.445871.1601208.840981.3444947 
1.179687.5664062.279546.1686652.51739.3341455.728516.4980469a.22119743.22119743 
0 0 1 .00586.0019531.22119743.22119743 0 0 1 
.03125.0195312c.073535.0525261.131113.0818557.167968.0976563.005753.0024664.00704.0020932.011719.0039063.001378-.0037672.010023-.0093336.046875-.078125l.433594-.8164063c-.500514-.4536308-1.050973-.8299836-1.697266-1.0878906a.22119743.22119743
 0 0 1 -.005859-.0019531.22119743.22119743 0 0 1 
-.003907-.0019532c-.63807-.2566954-1.3379304-.4052267-2.101562-.453125v-3.6503906zm-4.7226562
 19.431641c-.0001239-.000691-.0036159-.00586.0175781-.00586-.0360023 
0-.0321567.002141-.0175781.00586zm2.8710937-15.8203129c-.3288336 
0-.6567756.0027074 0 .0058594.0191104-.0000917.0040187.000089.0214844 0 
.5827872-.0029713.297781-.0058594-.0214
 844-.0058594zm1.8515625 
1.0507813v7.1816406c-.069423-.024887-.1418392-.051401-.2109375-.076172-.5582543-.200128-1.0682133-.434902-1.5253906-.707031a.22119743.22119743
 0 0 1 
-.0136719-.009766l-.0019531.001953c-.4573182-.290005-.8416572-.648234-1.1464844-1.0625a.22119743.22119743
 0 0 1 -.0214844-.023437s-.0019531-.001953-.0019531-.001953a.22119743.22119743 
0 0 1 -.0058594-.007813c-.3348049-.482118-.4824218-1.073939-.4824218-1.714843 
0-.474235.0808163-.928125.2402343-1.351563a.22119743.22119743 0 0 1 
.0097657-.0351562c.1682361-.4428433.4211379-.8391065.7519531-1.1699219.3455323-.3455335.7688713-.6084706
 1.25-.7851563.3556517-.1352746.7491479-.2014981 1.1582031-.2382812zm4.324219 
1.4355468c.00058-.0001879-.009975.0152713-.007813.0136719.013904-.0102813.033235-.0131452.007813-.0136719zm-5.8964846
 4.5429688c.015891.010056.0088164.008577.0390625.027344a.22119743.22119743 0 0 
1 
.0097656.003906c.0067734.004198.0004621.001308.0078125.005859a.22119743.22119743
 0 0 1 .0039062.001954c.0362221.02
 
105.0177909.010018.0410157.023437.0253685.014658.0328463.018531.0449219.025391-.0298006-.017795-.0476994-.030152-.0859376-.052735h-.0019531c-.0259318-.015808-.0352704-.021029-.0585937-.035156zm4.6621096
 1.951172c-.01024-.002446.014711.004539.003906.001953a.22119743.22119743 0 0 1 
0-.001953c-.003251-.000847-.000705.000834-.003906 
0zm1.238281.8125c-.016018-.011285.024362.019675.138672.105469a.22119743.22119743
 0 0 1 
.003906.001953s.001953.001953.001953.001953.001953.001953.001953.001953a.22119743.22119743
 0 0 1 
.001953.001953c.098964.072383.102545.074145.111329.080078-.018953-.014634-.04406-.034129-.076172-.058594-.014787-.010985-.019723-.013959-.035157-.02539
 0 
0-.001953-.001953-.001953-.001953-.02798-.02072-.038489-.029205-.0625-.046875-.031819-.023417-.074486-.053856-.083984-.060547zm-3.328125.263672c.5095013.173978.9783146.385979
 1.394531.648437.474194.282728.868667.650643 1.167969 
1.091797l.001953.001953a.22119743.22119743 0 0 1 
.027344.03125v.001953c.3408.502112.490234 1.118449.
 490234 1.792969 0 .578386-.093381 1.124814-.283203 1.63086a.22119743.22119743 
0 0 1 -.009766.037109c-.188233.503984-.4769.951471-.857421 
1.322265h-.001953v.001954c-.374652.374064-.831897.661102-1.351563.857422-.1832515.069228-.3816054.108555-.578125.152343zm-5.9179688
 
5.355469c-.0238961.014015-.0338496.019391-.0605468.035156-.0382398.02258-.0561356.034942-.0859375.052734.0150294-.009264.0264801-.014098.0449219-.02539.0223941-.013352.00574-.002279.0410156-.023438a.22119743.22119743
 0 0 1 
.0019531-.001953h.0019531c.0506983-.030422.0340779-.023338.0566406-.037109zm.5800782.107421c-.0162684-.012474.0154376.016823.1347656.119141
 0 0 .0019531.001953.0019531.001953a.22119743.22119743 0 0 1 
.0019531.001953h.0019532c.1687616.144578.1418879.121063.0761718.0625.0530857.042116.0238638.01588-.0625-.05664-.0051802-.00435-.0065078-.005398-.0117187-.009766-.0391775-.034363-.061121-.051457-.0898437-.076172-.016266-.01336-.0466877-.038332-.0527344-.042969zm2.0957031
 1.44336c-.0166967-.002816.0512893.
 
011679.1484375.03125.0208091.004455.0035584-.000032.03125.005859a.22119743.22119743
 0 0 1 0 .001953.22119743.22119743 0 0 1 .0039062 
0c.0589063.011033.0368824.006307.0664063.011719.0831589.016273.0961532.018003.0292969.003906-.0328658-.006929-.0533108-.010777-.0957032-.019531-.001656-.000321-.0022507.00032-.0039062
 
0-.021844-.004508-.0281805-.005542-.0488281-.009766-.0226573-.004343-.0367374-.008332-.0546875-.011718-.0248419-.004687-.0677241-.012248-.0761719-.013672z"/></g></svg>
\ No newline at end of file
+<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg";>
+
+/&amp;amp;amp;amp;amp;gt;<g fill="#3a3a38"><path d="m5.478904 
5.9999996-5.478904 
5.1440434.7593307.108398c.085837.131512.2321155.231921.4419262.302734.2193486.0607.4449905-.01008.6738758-.212402l4.1248673-4.342773c-.02861.4248863.0226
 3.202631.02198 3.597168l-.02198 12.902832v.500489 
1.999511h1v-1.999511-18.0004894z"/><path d="m13.783203 
5.4589844c-.862406-.0000001-1.658588.123826-2.394531.3691406-.722377.244407-1.354598.6033751-1.9101564
 1.078125-.5536586.4731264-1.0182976 1.0620662-1.3984375 
1.78125-.300518.5764036-.4706338 1.289357-.609375 
2.035156l.6818451.169527c.3265657.04665.5249561.0078.6015625-.03125.065264-.03682.160721-.141073.2304688-.4375.00065-.000002.0013-.000002.00195
 0 
.119506-.5019136.3119268-.9697218.5781281-1.3945321.2650355-.4336946.5888094-.808412.9687494-1.1152343.000709-.0005723.0012-.00138.002-.00195.378334-.3157665.832725-.7540354
 1.312803-.9229286.491567-.184078 1.471161-.2753906 2.032795-.2753906.569459 0 
1.106739.085561 1.605469.2558594.504697.1723356.93
 392.636248 1.310243.9991004.380642.3562197.674523.8062189.880859 
1.328125.222009.5341667.328125 1.1394538.328125 1.8066408 0 .665223-.09388 
1.300818-.283203 1.904297-.358513 1.208173-1.285574 2.323543-2.214687 
3.398827-.456122.544875-.96936 1.106766-1.542968 1.691406l-6.6660159 
6.878906c-.00508.0053-.010292.01055-.015625.01563-.1386502.130494-.2223891.262353-.2734365.408202-.00129.002-.00259.0039-.00391.0059-.061337.166485-.085937.309883-.085937.431641v.474568h12.8727734l.01984-.578679c.0064-.188059-.03872-.260548-.119141-.335937-.0033-.0032-.0066-.0065-.0098-.0098-.08526-.08526-.176288-.128906-.378906-.128906l-6.550504-.000001-3.7914078.01056.9844974-1.029507
 5.5214844-5.75c.5738-.595454 1.119629-1.183743 
1.638672-1.767578l.002-.0039c.508616-.583115.951139-1.173449 
1.330078-1.773438.0013-.002.0026-.0039.0039-.0059.384511-.592354.68571-1.206116.902344-1.845703-.000006-.0013-.000006-.0026
 0-.0039.221914-.635481.333984-1.326601.333985-2.078125 
0-.89777-.152876-1.677377-.451172-2.35351
 
59-.00068-.00195-.0013-.0039-.002-.00586-.292622-.6861142-.694709-1.2542663-1.21289-1.7226226-.521142-.4710327-1.136072-.8312531-1.859375-1.0859375-.72268-.2544646-1.510935-.3847656-2.371094-.3847656z"
 transform="matrix(.85451697 0 0 .95899354 3.086809 .766482)"/><path 
d="m31.048828 5.4238281c-.865774 
0-1.6645.1244949-2.404297.3710938v-.00195c-.726144.2454569-1.36879.6076874-1.939453
 1.0859374-.556424.475489-1.017996 1.06635-1.388672 
1.7871094-.000665.0006522-.0013.0013-.002.00195-.311418.5968847-.521841 
1.3023583-.667969 
2.0781253l.74506.174174c.330648.04723.534548.0091.621094-.03516.07676-.04323.178926-.158877.25-.460938.000628-.0033.0013-.0065.002-.0098.129437-.4942133.319027-.9542373.570312-1.3730464.000665-.0006522.0013-.0013.002-.00195.262827-.4301219.586189-.7983094.960891-1.1015275.376125-.3151987
 1.069822-.7765332 1.540681-.9455595.487252-.1818902 1.017605-.2714843 
1.583985-.2714843.563162 0 1.552821.1193884 
2.036879.2878015.500794.1594612.921451.6151108 1.284572.9647446.37
 3337.3493931.65909.7884564.853516 1.2949219.210981.5103461.310546 
1.0935997.310546 1.7460937.04619 1.392676-.586106 2.147526-1.728285 
2.977824-.445981.371649-1.005906.654208-1.667969.863281-.002.000681-.0039.0013-.0059.002-.555959.165813-1.249021.22253-1.974609.257812v1.236328c.897219.02567
 1.73.08349 2.361328.263672.742385.208796 1.348076.506232 
1.804688.91211.448321.387428 1.227159.914158 1.390395 
1.479207.15446.523489.230469 1.086983.230469 1.689453 0 .515714-.107274 
1.036934-.308594 1.558594-.000243.000629.000243.0013 0 
.002-.194415.53115-.492793 1.013723-.888672 
1.433594-.399748.423976-.893189.771891-1.470703 
1.042969-.002.0013-.0039.0026-.0059.0039-.600529.269625-1.753806.360636-2.521255.360636-.798183
 
0-1.489455-.124458-2.066406-.40039-.002-.0013-.0039-.0026-.0059-.0039-.540028-.270014-1.245532-.582979-1.612362-.974263l-.0039-.0039c-.349564-.38452-.634239-.786303-.84961-1.205078-.002-.0039-.004-.0078-.0059-.01172-.184644-.391012-.34469-.728034-.476563-1.013672-.08238-.171627-
 .15114-.226266-.332031-.259766-.0013.000006-.0026.000006-.0039 
0-.192545-.03703-.400546-.01559-.65625.08984l-.549747.325826c.210656.638893.436738
 1.258215.726562 1.802734.338005.635038.76619 1.182496 1.28711 
1.652344.511329.461201 1.132464.826258 1.871093 
1.09375.0011.000382.0028-.000381.0039 0 
.000852.000308.0011.0016.002.002.727081.251582 1.628562.384766 
2.705078.384766.917967 0 1.774989-.139284 2.580078-.417969.80421-.27838 
1.49718-.677847 
2.087891-1.197265.000664-.000669.0013-.0013.002-.002.59972-.518401 
1.068804-1.138619 
1.416016-1.873046.342767-.735943.517578-1.566688.517578-2.507813 
0-1.236527-.31672-2.215205-.939454-2.996094-.000002-.000667-.000002-.0013 
0-.002-.765898-1.020849-1.673048-1.468724-2.827134-2.112648.984387-.511783 
1.783011-1.22091 
2.399442-1.981149.282264-.360129.500141-.780668.650391-1.271484.000642-.0026.0013-.0052.002-.0078.158082-.484127.240234-1.05082.240234-1.703125
 
0-.7778506-.142718-1.4678045-.421875-2.0859372-.000673-.0013-.0013-.0026-.002-.00391-.2712
 
11-.6228426-.651886-1.1475189-1.152323-1.5879029-.502479-.4421822-1.10137-.7872123-1.808593-1.0332031-.703542-.2447106-1.485789-.3691407-2.351563-.3691407z"
 transform="matrix(.84258285 0 0 .94560032 .60556 .870395)"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/lc_numberformatstandard.svg 
b/icon-themes/colibre_svg/cmd/lc_numberformatstandard.svg
index 3483224fdf4f..c053a0536690 100644
--- a/icon-themes/colibre_svg/cmd/lc_numberformatstandard.svg
+++ b/icon-themes/colibre_svg/cmd/lc_numberformatstandard.svg
@@ -1 +1,3 @@
-<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg";><g 
fill="#3a3a38"><path d="m17.990234 20c-.701002 
0-1.356832-.162642-1.964843-.488281-.608012-.317697-1.137246-.805623-1.587891-1.464844-.44349-.659221-.793271-1.493266-1.050781-2.501953-.257511-1.000745-.386719-2.184686-.386719-3.550781
 0-1.366096.129208-2.553813.386719-3.5625.25751-1.000745.607291-1.829061 
1.050781-2.488282.450645-.651278.979879-1.141158 
1.587891-1.466797.608011-.317696 1.263841-.476562 
1.964843-.476562s1.354879.158867 1.962891.476562c.615164.325639 1.147013.815519 
1.597656 1.466797.450643.659221.804989 1.487537 1.0625 2.488282.25751 
1.008687.386719 2.196404.386719 3.5625 0 1.366095-.129209 2.550036-.386719 
3.550781-.257511 1.008687-.611857 1.842732-1.0625 2.501953s-.982492 
1.147147-1.597656 
1.464844c-.608013.325639-1.261889.488281-1.962891.488281zm0-1c.532651 0 
1.054073-.143556 1.525391-.410156.509194-.288026.918985-.741462 
1.248047-1.306641.345941-.5815.59517-1.298523.777344-2.158203.185812-.869026.2734
 37-1.907489.273437-3.130859 
0-1.224128-.08779-2.266527-.273437-3.142579a.67982563.67982563 0 0 1 
0-.002c-.182309-.851881-.432185-1.56435-.777344-2.144531-.329062-.565181-.738855-1.018615-1.248047-1.30664a.67982563.67982563
 0 0 0 -.0098-.0059c-.470092-.255989-.987065-.392491-1.515591-.392491-.528525 
0-1.045498.136501-1.515625.392578a.67982563.67982563 0 0 0 
-.01563.0078c-.500124.288352-.906437.739008-1.242182 
1.302747a.67982563.67982563 0 0 0 -.0039.0059c-.336623.579307-.581675 
1.290182-.763668 2.140584a.67982563.67982563 0 0 1 0 .002c-.185643.876-.273438 
1.918402-.273438 3.142532 0 1.223372.08764 2.261842.273438 
3.130859.181866.858225.426287 1.573644.763672 2.154297a.67982563.67982563 0 0 0 
.0039.0059c.33574.563737.742052 1.014394 1.242183 1.302734a.67982563.67982563 0 
0 0 .0059.002c.471278.266514.9927.410069 1.52535.410069z"/><path d="m6 
2v2.015625c-.3776499.0590916-.7339855.1458909-1.0527344.28125a.37020046.37020046
 0 0 1 -.0019531.0019531c-.5621.234231-1.0304504.5462536-1.4121094
 .9355469-.376393.3840729-.6610681.8217272-.8613281 
1.3300781a.37020046.37020046 0 0 1 0 .0019531c-.200799.501999-.2988281 
1.0155622-.2988281 1.546875-.000001.7015081.1015452 1.267851.2851562 
1.7011719.20069.4538269.4504493.8245349.7539063 
1.1210939h.0019531v.001953c.32094.305261.6824176.552066 
1.0878906.744141.432707.195943.8758939.371793 
1.3261719.527343.0583783.020167.1137994.038541.171875.058594v6.613281c-.4691598-.029113-.9067091-.100571-1.2851562-.251953a.37020046.37020046
 0 0 1 
-.0097657-.003906c-.427553-.183237-.7989995-.381423-1.1171875-.599609a.37020046.37020046
 0 0 1 
-.0058594-.003907c-.2992689-.213952-.5521207-.407366-.7617187-.582031a.37020046.37020046
 0 0 1 
-.0136719-.011719c-.155093-.141606-.2545837-.166015-.2773437-.166015-.05554 
0-.0836904.009197-.1152344.029297a.37020046.37020046 0 0 1 
-.0078125.005859c-.02763.01658-.0581969.042913-.0917969.095703l.0019531-.005859-.5058593.820312c.52163.531159
 1.1222246.976968 1.8378906 1.310547.000562.000254.0033062-.000253.0039063
  0 0 0 .0019531.001953.0019531.001953.7183316.323333 1.4992227.495086 
2.3457031.529297v1.951172h1v-1.996094c.5040233-.053906.979242-.144878 
1.3925781-.314453.61016-.250321 1.1121842-.589238 
1.5175781-1.017578a.37020046.37020046 0 0 1 
.0039063-.003906c.4169755-.43242.7295335-.932416.9472655-1.515625.21857-.593263.328125-1.229301.328125-1.917969
 0-.638643-.102135-1.157633-.291015-1.564453a.37020046.37020046 0 0 1 
-.003907-.00586c-.190569-.426875-.440552-.774897-.751953-1.05664a.37020046.37020046
 0 0 1 
-.005859-.007813c-.3140868-.298766-.6719285-.542883-1.0820315-.736328a.37020046.37020046
 0 0 1 
-.0039063-.001953c-.4319059-.211879-.8743516-.399622-1.3222656-.5625-.2477243-.090081-.4861566-.175809-.7285156-.263672v-5.9374998c.4832549.0070892.9172171.0735719
 
1.2929688.21875h.0019531c.372705.1332372.6941299.2861992.9667969.4648438.24834.1495081.460228.2925918.640625.4355469.1432032.1022884.2362682.1191406.2363282.1191406.08433
 0 .105538-.00178.1875-.1542969l.425781-.8066406c-.45756-.43151
 73-.9719349-.7823393-1.5781249-1.0234375a.37020046.37020046 0 0 1 -.0019531 
0c-.6526893-.2625944-1.37566-.3990453-2.171875-.4101563v-1.9414062zm0 
3.2070312v5.4492188c-.3142978-.130093-.6139607-.269656-.8828125-.429688a.37020046.37020046
 0 0 1 
-.0078125-.005859c-.378094-.2396207-.6998726-.5305033-.9472656-.8730468a.37020046.37020046
 0 0 1 -.0039063-.0058593c-.259475-.373642-.3808593-.8367027-.3808593-1.3535157 
0-.3913978.0671598-.7653406.2011718-1.1113281.13481-.3562839.3370714-.6710552.5996094-.9335937.274173-.274172.613137-.4830734
 1-.625.1323684-.0503339.2791007-.0779247.421875-.1113282zm1 
7.4042968c.0597254.020368.1221976.042312.1816406.0625.46525.149724.8828763.339406
 
1.2539063.574219.0012.000743.0027062.001153.0039062.001953.390669.234176.7122009.537934.9511719.900391
 0 0 .0019531.001953.0019531.001953.265225.390585.3886719.87442.3886719 
1.419922 0 .482283-.0782302.934655-.2382812 
1.349609v.001953c-.152099.406945-.3853683.766027-.6914063 
1.0625-.298213.297068-.6622001.523776-1.
 0800781.681641-.2402197.090749-.4994738.148214-.7714844.1875z"/></g></svg>
\ No newline at end of file
+<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg";>
+
+/&amp;amp;amp;amp;gt;<g fill="#3a3a38"><path d="m4.382812 3.9999997-3.88281195 
4 
.05664.3066406c.06866.10521.185678.1855365.353515.2421875.17546595.048559.35596795-.00806.53906295-.1699219l2.550782-2.3789062c-.02289.339909-.03271.6667925-.0332.9824219.010885
 4.3391974.0332 8.6783644.0332 13.0175784h1c0-5.333333 0-10.666667 
0-16.0000003z"/><path d="m11.935547 4.1054688c-.536096 
0-1.032102.092066-1.492188.2753906-.4515427.1827108-.8493647.4531303-1.2011715.8125-.3512889.3588408-.6493686.8079108-.890625
 1.3535156-.2103388.4819114-.3503624 1.0475397-.4355469 
1.6796875l.5473167.1787296-.00391-.00195c.2043807.034902.3288385.00975.3925781-.029297.059175-.039443.1412319-.1612599.1894531-.40625.071167-.3572995.1850082-.6879516.34375-.9902344v-.00195c.1582072-.3091027.3520217-.5731221.5800822-.7929749.2277733-.227558.4916383-.553635.7851563-.6768136.000841-.000353.0011-.0016.002-.00195.297338-.1323304.747261-.249042
 1.091355-.249042.349904-.0000001.679798.061226.984375.1855469.308645.1259811.
 
728508.4710599.952204.729548.225416.2521355.397391.5662397.519532.9355469.130819.3752872.191406.8033476.191406
 1.28125 0 .4776536-.05474.9318582-.167969 
1.3632812-.111989.4267068-.270834.8496728-.472656 
1.2656248-.201673.40733-.595509.813914-.885798 
1.21875-.280696.40093-.598874.816442-.953125 1.248047l-4.1250002 
5.089844c-.00254.0027-.00514.0053-.00781.0078-.094802.106657-.1589865.222776-.1972656.353516-.000637.0013-.00129.0026-.00195.0039-.041845.135775-.060547.25796-.060547.371094v.474609l7.8388148.000015v-.489929c0-.172915-.04051-.276573-.107422-.351563-.0013-.0019-.0026-.0039-.0039-.0059-.07025-.08397-.139412-.117187-.269531-.117188l-3.79194-.000015c-.220873-.000001-1.9431654-.06181-2.1962864-.01526l.5048214-.576786
 3.417969-4.255859c.35689-.442714.698967-.878781 
1.021484-1.3125h-.002c.318693-.436512.597674-.879126.835938-1.330078-.000003-.000667-.000003-.0013
 
0-.002.24253-.446624.432658-.912631.570312-1.3984376-.000003-.00065-.000003-.0013
 0-.00195.142375-.4873682.214844-1.016
 069.214844-1.5878906 
0-.6825338-.09678-1.281742-.289063-1.8027344-.00068-.0013-.0013-.0026-.002-.00391-.187429-.5255703-.447441-.9619755-.77725-1.3183118-.331053-.357679-.71924-.6297963-1.171875-.8203125-.452152-.1903125-.941408-.2871093-1.476562-.2871093z"
 transform="matrix(1.0205556 0 0 1.0205556 -.775757 -.189859)"/><path 
d="m19.892578 4.1367188c-.532595 
0-1.02411.091599-1.480469.2734374-.447161.1809379-.845343.4481943-1.201171.8046876-.347951.3554302-.639907.7999038-.873047
 1.3417968-.000663.0006538-.0013.0013-.002.00195-.205364.4705124-.344749 
1.0247338-.435547 
1.640625l.526949.1751575c.194501.031832.30852.0081.363282-.025391.04868-.032516.128359-.1457932.175781-.3867187.000655-.00131.0013-.00261.002-.00391.07851-.3583312.195954-.6899536.347656-.9921875-.000002-.00065-.000002-.0013
 
0-.00195.159686-.3123545.35488-.579994.585938-.8027344.229733-.2295663.49169-.5605384.783203-.6856288.302423-.134898.760819-.2532825
 1.115628-.2532825.353445-.0000001.835814.062709 1.138754.1894531.8
 26164.3793275 1.132332 1.0521272 1.31836 
1.6485195.125213.363353.183594.780833.183594 1.2519531.000523 1.0549085-.450229 
1.6610118-.912192 
2.1640621-.272197.271148-.619407.483209-1.03125.638672-.0013.000678-.0026.0013-.0039.002-.355472.126731-.779265.188394-1.246094.21289v1.00586c.576026.01682
 1.079435.07942 1.482422.216796.46108.155016.838951.374283 
1.117187.669922.274052.282834.610323.632701.707114 
1.033203.09326.377306.140625.784726.140625 1.222657 0 
.366864-.06448.739481-.185547 1.115234-.116584.383239-.294708.731741-.537109 
1.039062-.243807.309102-.699424.565147-1.056723.765626-.0013.000678-.0026.0013-.0039.002-.371809.199547-.803721.296875-1.283203.296875-.498319
 
0-1.05744-.04652-1.414456-.250625-.0013-.000655-.0026-.0013-.0039-.002-.333701-.199449-.616521-.441812-.839844-.726562-.00067-.000662-.0013-.0013-.002-.002-.214346-.281875-.387513-.576649-.517551-.878901-.000691-.002-.0014-.0039-.002-.0059-.114587-.290063-.213219-.538426-.294921-.75-.05973-.148747-.113286-.191929-.216
 797-.214844-.000667.000002-.0013.000002-.002 
0-.112881-.02595-.236698-.01166-.394532.06641l-.411715.225233c.136353.508425.290535.99288.482422
 1.423828.213183.478775.4817.893798.80664 1.244141.320649.345716.705282.61506 
1.16211.8125.448538.18617 1.002459.283203 1.667969.283203.56445 0 
1.090764-.102892 1.58789-.308594.496708-.205528.928191-.499195 
1.296875-.886719.000663-.00067.0013-.0013.002-.002.374404-.386866.669389-.853684.888672-1.408203v-.002c.216867-.557295.328125-1.187766.328125-1.896484
 
0-.933598-.203863-1.685112-.597656-2.275391-.393479-.597274-.973126-1.022355-1.775391-1.283203-.224938-.07109-.232824-.386505-.01172-.46875.324921-.121852.614399-.278274.873046-.466797.252884-.192471.470361-.424649.650391-.699219.179328-.2734966.316446-.5912915.412109-.9648434.000655-.00131.0013-.00261.002-.00391.101001-.3697471.152343-.8032573.152343-1.2949219
 0-.5889738-.09014-1.1143167-.267578-1.5839844-.00001-.0013-.00001-.00261 
0-.00391-.172128-.4723464-.415124-.8694196-.728512-1.1990802-
 
.31428-.3305975-.686455-.5840985-1.123047-.765625-.434061-.1804739-.912718-.2714843-1.445313-.2714843z"
 transform="matrix(1.0137551 0 0 1.0137551 -.106185 -.19362)"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/sc_numberformatstandard.svg 
b/icon-themes/colibre_svg/cmd/sc_numberformatstandard.svg
index 5b1bd2c6f649..df93b84b51bc 100644
--- a/icon-themes/colibre_svg/cmd/sc_numberformatstandard.svg
+++ b/icon-themes/colibre_svg/cmd/sc_numberformatstandard.svg
@@ -1 +1,4 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";>/&amp;gt;<g 
fill="#3a3a38"><path d="m11.992188 1c-.560803 
0-1.085856.1428002-1.572266.4277344-.4864092.2779846-.9090154.704432-1.2695314 
1.28125-.354792.5768181-.6338357 1.3068519-.8398437 
2.1894531-.206008.8756517-.3105469 1.9101357-.3105469 3.1054687 0 
1.195334.1045389 2.2345868.3105469 3.1171878.206008.875652.4850517 
1.602869.8398437 2.179687.360516.569869.7831222.998269 1.2695314 
1.283203.48641.277984 1.011464.416016 1.572266.416016.560801 0 1.083902-.138032 
1.570312-.416016.492131-.284934.918783-.713334 
1.279297-1.283203.360515-.576818.641647-1.304035.847656-2.179687.206008-.882601.310547-1.9218538.310547-3.1171878
 
0-1.1953331-.104539-2.229817-.310547-3.1054687-.206009-.8826012-.487141-1.612635-.847656-2.1894531-.360514-.576818-.787166-1.0032654-1.279297-1.28125-.48641-.2849342-1.009511-.4277344-1.570312-.4277344zm0
 1c.420419 0 .832275.1233347 
1.201171.3515625.395123.2444537.707493.6254956.962891 1.1054687.267364.49148
 95.464023 1.1016609.607422 1.8417969.145667.7444729.214845 1.6416541.214844 
2.7050781 0 1.0634251-.06936 1.9678529-.214844 2.7187498-.143501.733405-.340756 
1.339878-.607422 1.830078-.255119.479468-.566529.862201-.962891 
1.107422-.0026.0013-.0052.0026-.0078.0039-.369288.220006-.777461.335944-1.193371.335944-.415909
 
0-.824081-.115932-1.19336-.335938-.0039-.0019-.0078-.0039-.01172-.0059-.388869-.245213-.700201-.624679-.9609371-1.103515-.0006571-.0013-.00131-.0026-.00195-.0039-.2596367-.488699-.4541922-1.094863-.5976584-1.828091-.1456419-.7517131-.2128906-1.6559122-.2128906-2.7187498
 
0-1.0628394.067078-1.9597912.2128906-2.7050781.143366-.7399687.3373468-1.349839.5976563-1.8398437.000645-.00131.0013-.00261.00195-.00391.2610211-.4793601.5733151-.8571357.9609371-1.1015625.0013-.0006571.0026-.00131.0039-.00195.3689061-.2282278.7807601-.3515619
 1.2011821-.3515619z"/><path d="m3 
0v1.7675781c-.2581916.0473224-.4985049.1185324-.7207031.2128907-.4426912.1844545-.8122704.431211-1.1152344.7402343-
 .2979778.304059-.5251831.6545215-.6835937 
1.0566407-.1587481.3968702-.2382813.8043612-.2382813 1.2246093 0 
.5472986.0781778.9944133.2246094 
1.3417969.1587528.3602468.3626076.6576411.6074219.8964844.2551806.2426295.5425673.4395955.8652343.5917968.3364426.1522744.6774816.2899695
 
1.0253907.4101563.011901.00411.02327.00762.035156.011719v4.9570315c-.3023629-.028238-.5868474-.076927-.8339842-.175782a.20146155.20146155
 0 0 1 
-.00586-.002c-.3260542-.13969-.6062745-.290852-.8457025-.455031a.20146155.20146155
 0 0 1 
-.00391-.002c-.2286843-.163301-.4233256-.311386-.5839806-.445266a.20146155.20146155
 0 0 1 
-.0078125-.005859c-.1282177-.117068-.2207298-.150391-.2695312-.150391-.0589136 
0-.0979943.01176-.1347657.03516a.20146155.20146155 0 0 1 
-.003906.002c-.0350822.02105-.0691784.05374-.0996094.101562l-.42382812.6875c.42005562.439283.91145832.80302
 1.49414042 1.074169.5298014.238429 1.1027385.371576 
1.71875.410156v1.714844h1v-1.751953c.3602694-.04543.7010073-.114816 
1.0019531-.238281.480167-.196992
 .8776458-.466866 1.1992188-.806641a.20146155.20146155 0 0 1 
.00195-.002c.329608-.341815.578314-.739346.75-1.199219.172241-.467512.2597656-.967666.2597656-1.507812
 0-.5014947-.08203-.9140615-.234375-1.2421879a.20146155.20146155 0 0 1 
0-.00195c-.1511479-.3385356-.3521604-.6200126-.6015594-.8456592a.20146155.20146155
 0 0 1 
-.00391-.00195c-.2488452-.2367131-.5334081-.4311527-.8574181-.5839875a.20146155.20146155
 0 0 1 -.00195 
0c-.3356828-.1646732-.6788234-.3107641-1.0273469-.4375-.1653445-.0601253-.3240795-.1167986-.4863281-.1757813v-4.4355469c.3228792.013396.6173782.058001.8691406.15625.28089.1006272.5252182.2164145.7285156.3496094.191997.1155218.3541714.2238597.4902344.3320313.118189.084421.2023958.109375.2304688.109375.095379
 0 
.144543-.027496.21875-.1660157l.3613281-.6796874c-.371779-.3625946-.7952497-.6516531-1.2929687-.8496094-.4842769-.1948241-1.0231742-.2897658-1.6054688-.3085938v-1.7128906zm0
 
2.8808594v3.9414062c-.1813131-.0810408-.3540475-.1667043-.5136719-.2617187a.20146155.20
 146155 0 0 1 
-.00391-.00391c-.2834468-.1797455-.5227155-.3971389-.7070275-.65234a.20146155.20146155
 0 0 1 -.00195-.00195c-.189061-.2722467-.2773468-.6123464-.2773468-.99805 
0-.2934807.051161-.5683897.1503906-.8242188v-.0019531c.0996381-.2627024.2467211-.4967211.4414062-.6914062.2022628-.2022629.4526617-.355342.7402344-.4609376.0537426-.0204226.1156061-.0282903.171875-.0449218zm1
 
5.7148437c.00249.0008455.00532.00111.00781.00195.3561825.1142474.6738475.2591588.9550781.4375.292908.1752606.5314634.4000896.7089844.6699219.194305.2850796.2851562.6411609.2851562
 1.0507809 0 .363557-.058071.702005-.1777343 
1.011719-.11278.30202-.2833287.567173-.5097657.78711h-.00195v.002c-.2213393.2207071-.4934607.3894551-.8066412.5077681-.1447355.054678-.3001453.093795-.4609375.123047z"/></g></svg>
\ No newline at end of file
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";>
+
+
+/&amp;amp;amp;amp;gt;<g fill="#3a3a38"><path d="m4.3418198 1-4.3418198 
3.6008301.4970368.1400802c.0613078.092059.1657963.1623444.3156612.211914.156677.042489.3178498-.00705.4813389-.1486815l2.7059631-2.0815431c-.020439.2974204-.029207.5834434-.029645.8596192l.029645
 9.6677811v.350342 1.399658h1v-1.399658-12.600342z"/><path 
d="m11.642525.9531435c-.581923 
0-1.119191.082048-1.617188.2480469-.4892301.1656028-.9205381.4088727-1.2968739.7304687-.3755861.3209555-.6901655.7225788-.9472656
 1.2089844-.2139628.410537-.3570163.8944785-.4492187 
1.4296875l.6933593.1113281c.2197359.030595.3637629.00508.4316407-.029297.063331-.035262.1366618-.1203633.1855469-.328125-.0000025-.00065-.0000025-.0013
 
0-.00195.0785963-.3301074.2039015-.6370552.3789062-.9160186l.00195-.00195c.174284-.2845962.386734-.5265381.634769-.7265656.2485375-.2077664.5338641-.3712279.8515611-.4824219.320614-.1194056.667846-.1777344
 1.035156-.1777344.375022 0 .727759.056335 
1.054688.1679688.32999.1126794.864706.3856121 1.109429.6212
 
695.247921.2313936.438734.5235303.574218.8652344.14593.3493432.216797.7459044.216797
 1.1875.0092.987109-.640601 1.8928781-.945366 
2.3162305.000003.00065.000003.0013 0 
.00195-.219818.3714208-.487774.741924-.802734 
1.1093781-.303802.3629553-.64669.7369883-1.029297 1.1269531h.002l-4.4550772 
4.597656c-.00255.0027-.00515.0053-.00781.0078-.098959.09314-.1623493.189581-.1992188.294922-.0006386.0013-.00129.0026-.00195.0039-.042514.115394-.060547.21816-.060547.308594v.373047h8.902343v-.855469c0-.139728-.03035-.208144-.09375-.267578-.002-.0019-.004-.0039-.0059-.0059-.06649-.06649-.146045-.09961-.294922-.09961h-4.564465c-.241957
 
0-.500656.01858-.773438.06055-.2653446.04198-.5311071.104143-.7988271.18164-.2452605.07186-.4270364-.227787-.25-.412109l3.6894531-3.84375c-.000003-.00065-.000003-.0013
 0-.00195.384145-.398588.750484-.7910814 
1.097656-1.1815868l.002-.00195c.341418-.3914222.637435-.7893824.892578-1.1933593.000655-.00131.0013-.00261.002-.00391.259129-.399342.460892-.8137586.607328-1.24609
 31-.000003-.00065-.000003-.0013 
0-.00195.150821-.4318941.228516-.8990171.228516-1.40625 
0-.6062807-.103631-1.1355474-.306641-1.5957031-.00001-.0013-.00001-.00261 
0-.00391-.198696-.4659075-.474139-.8536915-.826172-1.1718745-.35351-.3195183-.771395-.565632-1.261719-.7382812-.48936-.17231-1.022807-.2578125-1.603515-.2578125z"/></g></svg>
\ No newline at end of file
commit f62977144b39c98e750de985ae9457f0873c0385
Author:     Rizal Muttaqin <riz_17_...@yahoo.co.id>
AuthorDate: Mon Feb 21 07:01:42 2022 +0700
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:23 2022 +0100

    Colibre: Update Template Manager icons
    
    Change-Id: If1d0101990fec60df0fc32f511d6d6e7cb8bff5c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130165
    Tested-by: Jenkins
    Reviewed-by: Rizal Muttaqin <riz...@libreoffice.org>

diff --git a/icon-themes/colibre/cmd/32/templatemanager.png 
b/icon-themes/colibre/cmd/32/templatemanager.png
index db13c447d2fb..8e7996b51fc2 100644
Binary files a/icon-themes/colibre/cmd/32/templatemanager.png and 
b/icon-themes/colibre/cmd/32/templatemanager.png differ
diff --git a/icon-themes/colibre/cmd/lc_templatemanager.png 
b/icon-themes/colibre/cmd/lc_templatemanager.png
index 20ea2d7aee5a..67c02221f94d 100644
Binary files a/icon-themes/colibre/cmd/lc_templatemanager.png and 
b/icon-themes/colibre/cmd/lc_templatemanager.png differ
diff --git a/icon-themes/colibre/cmd/sc_templatemanager.png 
b/icon-themes/colibre/cmd/sc_templatemanager.png
index a14e181a14ca..1bb4234bf5eb 100644
Binary files a/icon-themes/colibre/cmd/sc_templatemanager.png and 
b/icon-themes/colibre/cmd/sc_templatemanager.png differ
diff --git a/icon-themes/colibre/framework/res/templates_32.png 
b/icon-themes/colibre/framework/res/templates_32.png
deleted file mode 100644
index db13c447d2fb..000000000000
Binary files a/icon-themes/colibre/framework/res/templates_32.png and /dev/null 
differ
diff --git a/icon-themes/colibre/links.txt b/icon-themes/colibre/links.txt
index 095a4a5af88f..c3ca07565f53 100644
--- a/icon-themes/colibre/links.txt
+++ b/icon-themes/colibre/links.txt
@@ -2035,6 +2035,7 @@ framework/res/arrow.png cmd/sc_nextrecord.png
 framework/res/extension.png cmd/lc_insertplugin.png
 framework/res/info_26.png cmd/lc_helpindex.png
 framework/res/addtemplate_32.png cmd/32/newdoc.png
+framework/res/templates_32.png cmd/32/templatemanager.png
 
 # reportdesign
 # ==============================================
diff --git a/icon-themes/colibre/svtools/res/template.png 
b/icon-themes/colibre/svtools/res/template.png
deleted file mode 100644
index 7e0ffcf7bc44..000000000000
Binary files a/icon-themes/colibre/svtools/res/template.png and /dev/null differ
diff --git a/icon-themes/colibre_svg/cmd/32/templatemanager.svg 
b/icon-themes/colibre_svg/cmd/32/templatemanager.svg
index 7876c78f0af1..bef674ba1c63 100644
--- a/icon-themes/colibre_svg/cmd/32/templatemanager.svg
+++ b/icon-themes/colibre_svg/cmd/32/templatemanager.svg
@@ -1 +1 @@
-<svg height="32" viewBox="0 0 32 32" width="32" 
xmlns="http://www.w3.org/2000/svg";><path d="m6 
4v24h8.84375l11.15625-11.232422v-7.7011718l-5.011719-5.0664062z" 
fill="#fafafa"/><path d="m20 10h6l-6-6z" fill="#fafafa" 
fill-rule="evenodd"/><path d="m19.994141 2.9941406a.50005.50005 0 0 0 
-.076172.0058594h-.417969-.5-13c-.554 0-1 .446-1 1v24c0 .554.446 1 1 
1h7.851562l.992188-1h-7.84375-1v-1-22-1h1 12v6.5c0 
.277.223.5.5.5h6.5v5.767578l1-1.007812v-4.759766-.5-.421875a.50005.50005 0 0 0 
-.146484-.4316406l-6.5-6.5a.50005.50005 0 0 0 -.359375-.1523438zm.005859 
1.2128906 5.792969 5.7929688h-5.792969z" fill="#3a3a38"/><path d="m27.499929 
17.5-12 12h12zm-2 5v1.476392 3.523608h-4.499999-.500001z" fill="#f8db8f" 
fill-rule="evenodd" stroke="#ed8733" stroke-linecap="round" 
stroke-linejoin="round"/></svg>
\ No newline at end of file
+<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";><path d="m6 
3v26h20v-20.6406494l-6-5.3593506z" fill="#fafafa"/><path d="m6 2c-.554 0-1 
.446-1 1v26c0 .554.446 1 1 1h20c.554 0 1-.446 
1-1v-18.109375-1.641221-.207924c0-.4506797.09887-.4265949-.604637-1.067589l-5.307389-5.2370335c-.709525-.7368575-1.478385-.7368575-1.094804-.7368575h-.331557-.661613zm0
 1h13v6c0 .554.446016 1.004232 1 1h6v19h-20z" fill="#3a3a38"/><path d="m20 
9h6l-6-6z" fill="#fafafa" fill-rule="evenodd"/><path id="a" d="m7 4h1v1h-1z" 
fill="#3a3a38"/><path id="b" d="m3 4h3v1h-3z" fill="#3a3a38"/><g 
fill="#3a3a38"><use height="1085" transform="translate(0 3)" width="5033" 
xlink:href="#b"/><use height="1085" transform="translate(0 6)" width="5033" 
xlink:href="#b"/><use height="1085" transform="translate(0 9)" width="5033" 
xlink:href="#b"/><use height="1085" transform="translate(0 12)" width="5033" 
xlink:href="#b"/><use height="1085" transform="translate(0 15)" width="50
 33" xlink:href="#b"/><use height="1085" transform="translate(0 18)" 
width="5033" xlink:href="#b"/><use height="1085" transform="translate(0 21)" 
width="5033" xlink:href="#b"/><use height="1085" transform="translate(0 24)" 
width="5033" xlink:href="#b"/><use height="1085" transform="translate(0 3)" 
width="5033" xlink:href="#a"/><use height="1085" transform="translate(0 6)" 
width="5033" xlink:href="#a"/><use height="1085" transform="translate(0 9)" 
width="5033" xlink:href="#a"/><use height="1085" transform="translate(0 12)" 
width="5033" xlink:href="#a"/><use height="1085" transform="translate(0 15)" 
width="5033" xlink:href="#a"/><use height="1085" transform="translate(0 18)" 
width="5033" xlink:href="#a"/><use height="1085" transform="translate(0 21)" 
width="5033" xlink:href="#a"/><use height="1085" transform="translate(0 24)" 
width="5033" xlink:href="#a"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/lc_templatemanager.svg 
b/icon-themes/colibre_svg/cmd/lc_templatemanager.svg
index bc38e85c8cca..8b83f86fde0d 100644
--- a/icon-themes/colibre_svg/cmd/lc_templatemanager.svg
+++ b/icon-themes/colibre_svg/cmd/lc_templatemanager.svg
@@ -1,31 +1 @@
-<?xml-stylesheet type="text/css" href="icons.css" ?>
-<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg";>
-  <g id="background"
-     class="icn icn--area-color"
-     fill="#fafafa"
-     stroke="#3a3a38"
-     stroke-linecap="round"
-     stroke-linejoin="round"
-     >
-      <path d="m 4.5,21.5 h 15 V 7 L 15,2.5 H 4.5 Z" />
-      <path d="m 14.5,7.5 h 5 V 7 L 15,2.5 h -0.5 z" />
-  </g>
-  <g id="symbol-background"
-        class="icn icn--background"
-     stroke="#fff" 
-     stroke-width="3px"
-        stroke-linecap="round" 
-        stroke-linejoin="round"
-      >
-      <path d="M 21.5,10.5 10.5,21.5 h 11 z m -2,5 v 4 h -4 z" />
-  </g>
-  <g id="symbol"
-        class="icn icn--highlight-color-2"
-     fill="#f8db8f" 
-     stroke="#ed8733" 
-        stroke-linecap="round" 
-        stroke-linejoin="round"
-      >
-      <path d="M 21.5,10.5 10.5,21.5 h 11 z m -2,5 v 4 h -4 z" />
-  </g>
-</svg>
+<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg";><path d="m5 
3v18h14v-14.2705905l-4-3.7294095z" fill="#fafafa"/><path d="m5 2c-.554 0-1 
.446-1 1v18c0 .554.446 1 1 1h14c.554 0 1-.446 
1-1v-10.109375-3.6412209-.2079239c0-.4506799.09887-.4265951-.604637-1.0675892l-3.307389-3.2370335c-.709525-.7368575-.711223-.7368575-1.094804-.7368575h-.331557-.661613zm0
 1h9v4c0 .554.446 1 1 1h4v13h-14z" fill="#3a3a38"/><path d="m15 7h4l-4-4z" 
fill="#fafafa" fill-rule="evenodd"/><g fill="#3a3a38"><path d="m2 4v1h2v-1zm4 
0v1h1v-1z"/><path d="m2 7v1h2v-1zm4 0v1h1v-1z"/><path d="m2 10v1h2v-1zm4 
0v1h1v-1z"/><path d="m2 13v1h2v-1zm4 0v1h1v-1z"/><path d="m2 16v1h2v-1zm4 
0v1h1v-1z"/><path d="m2 19v1h2v-1zm4 0v1h1v-1z"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/sc_templatemanager.svg 
b/icon-themes/colibre_svg/cmd/sc_templatemanager.svg
index 282828b82637..5b9824dd3a6b 100644
--- a/icon-themes/colibre_svg/cmd/sc_templatemanager.svg
+++ b/icon-themes/colibre_svg/cmd/sc_templatemanager.svg
@@ -1 +1,2 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";>/&amp;amp;gt;<path 
d="m3 1v14h1.3554688l8.6445312-9.5722656v-1.7226563l-2.695312-2.7050781z" 
fill="#fafafa"/><path d="m3 0c-.554 0-1 .446-1 1v14c0 .554.446 1 1 
1h.4511719l.9042969-1h-1.3554688v-14h6v3.5c0 
.277.223.5.5.5h3.5v.4277344l1-1.1054688v-.6855468l-3.636719-3.6367188h-.863281zm7
 1 3 3h-3z" fill="#3a3a38"/><path d="m15.5 5.0000003-9.5 10.4999997h9.5zm-2 
5.4999997v.976392 2.023608h-2-.5z" fill="#f8db8f" fill-rule="evenodd" 
stroke="#ed8733"/></svg>
\ No newline at end of file
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";>
+/&amp;amp;gt;<path d="m3 1v14h10v-11.2949219l-2.695312-2.7050781z" 
fill="#fafafa"/><g fill="#3a3a38"><path d="m3 0c-.554 0-1 .446-1 1v14c0 
.554.446 1 1 1h2 1.0292969 2.9433593 2.0273438 2c.554 0 1-.446 
1-1v-.800781-.199219-2-7.5-.8632812l-3.636719-3.6367188h-.863281zm0 1h6v3.5c0 
.277.223.5.5.5h3.5v7 2 .0918.9082h-2-.740234-4.0585941-1.2011719-2zm7 0 3 
3h-3z"/><path d="m1 2h1v1h-1z"/><path d="m4 2h1v1h-1z"/><path d="m1 
5h1v1h-1z"/><path d="m1 8h1v1h-1z"/><path d="m1 11h1v1h-1z"/><path d="m1 
14h1v1h-1z"/><path d="m4 5h1v1h-1z"/><path d="m4 8h1v1h-1z"/><path d="m4 
11h1v1h-1z"/><path d="m4 14h1v1h-1z"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/framework/res/templates_32.svg 
b/icon-themes/colibre_svg/framework/res/templates_32.svg
deleted file mode 100644
index 7876c78f0af1..000000000000
--- a/icon-themes/colibre_svg/framework/res/templates_32.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg height="32" viewBox="0 0 32 32" width="32" 
xmlns="http://www.w3.org/2000/svg";><path d="m6 
4v24h8.84375l11.15625-11.232422v-7.7011718l-5.011719-5.0664062z" 
fill="#fafafa"/><path d="m20 10h6l-6-6z" fill="#fafafa" 
fill-rule="evenodd"/><path d="m19.994141 2.9941406a.50005.50005 0 0 0 
-.076172.0058594h-.417969-.5-13c-.554 0-1 .446-1 1v24c0 .554.446 1 1 
1h7.851562l.992188-1h-7.84375-1v-1-22-1h1 12v6.5c0 
.277.223.5.5.5h6.5v5.767578l1-1.007812v-4.759766-.5-.421875a.50005.50005 0 0 0 
-.146484-.4316406l-6.5-6.5a.50005.50005 0 0 0 -.359375-.1523438zm.005859 
1.2128906 5.792969 5.7929688h-5.792969z" fill="#3a3a38"/><path d="m27.499929 
17.5-12 12h12zm-2 5v1.476392 3.523608h-4.499999-.500001z" fill="#f8db8f" 
fill-rule="evenodd" stroke="#ed8733" stroke-linecap="round" 
stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/svtools/res/template.svg 
b/icon-themes/colibre_svg/svtools/res/template.svg
deleted file mode 100644
index fdb624e0013a..000000000000
--- a/icon-themes/colibre_svg/svtools/res/template.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";><path 
d="m4.6252931.00899256c-.9167679.17493262-1.6413825 1.06650924-1.6249431 
1.99944994v27.9921785c.0001 1.046877.9528067 1.99935 1.99993 
1.99945h21.99921c1.047123-.0001 1.99983-.952573 
1.99993-1.99945v-17.454837c.012-.527977-.194993-1.057653-.56248-1.437106l-10.540471-10.53734203c-.379547-.36729853-.909349-.5745787-1.43745-.56234341h-11.458739c-.1245956-.01199538-.2503512-.01199538-.3749869
 0z" fill="#3a3a38"/><path d="m21.658457.0153901c-.665617.21319788-.889629 
1.2265076-.376487 1.7030241l6.023769 6.0552478c.556481.5304157 1.664862.07657 
1.694181-.6938328v-6.0552278c-.00006-.52841648-.478303-1.00915133-1.003965-1.0092113h-6.023769c-.103796-.01599385-.209993-.01599385-.313729
 0z" fill="#3a3a38"/><path d="m5.000182 2.01156v.5 27 .5h.49999 
20.9996.49999v-.5-17-.2188l-.15624-.1562-9.93731-10-.12499-.125h-.21875-11.0623z"
 fill="#fafafa"/><g transform="translate(-.4991)"><path id="a
 " d="m6.4991 3.99632h1v1h-1z" fill="#3a3a38"/><path id="b" d="m2.4991 
3.99632h3v1h-3z" fill="#3a3a38"/><g fill="#3a3a38"><use height="1085" 
transform="translate(0 2)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 4)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 6)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 8)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 10)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 12)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 14)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 16)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 18)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 20)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 22)" width="5033" xlink:href="#b"/><use height="1085" 
transform="tra
 nslate(0 24)" width="5033" xlink:href="#b"/><use height="1085" 
transform="translate(0 2)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 4)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 6)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 8)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 10)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 12)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 14)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 16)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 18)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 20)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 22)" width="5033" xlink:href="#a"/><use height="1085" 
transform="translate(0 24)" width="5033" xlink:href="#a"/></g></g></svg>
\ No newline at end of file
commit 18ee764ab4d028ecc84dce4bb0de245fde9a7569
Author:     Rizal Muttaqin <riz_17_...@yahoo.co.id>
AuthorDate: Mon Feb 21 05:18:15 2022 +0700
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:23 2022 +0100

    elementary: Fix unused icon definition in links.txt
    
    Change-Id: I5ef56e9bac0c42d514839dc6f6dca522743ae584
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130225
    Tested-by: Jenkins
    Reviewed-by: Rizal Muttaqin <riz...@libreoffice.org>
    (cherry picked from commit 205a94e7ac14569e535f47ed21cdf181a088e37f)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130164

diff --git a/icon-themes/elementary/links.txt b/icon-themes/elementary/links.txt
index f6b3837bdd3e..6c7f03c96b08 100644
--- a/icon-themes/elementary/links.txt
+++ b/icon-themes/elementary/links.txt
@@ -1911,7 +1911,7 @@ res/da02.png res/da01.png
 res/dir-clos.png cmd/sc_open.png
 res/dir-open.png cmd/sc_open.png
 res/fileopen.png cmd/sc_open.png
-res/foldercl.png formula/res/fapclose.png
+res/foldercl.png svtools/res/folder.png
 res/fp010.png cmd/sc_upsearch.png
 res/grafikei.png cmd/sc_graphic.png
 res/im30820.png cmd/sc_scriptorganizer.png
@@ -1980,7 +1980,7 @@ res/lx03254.png res/ots_32_8.png
 res/lx03255_32.png res/ott_32_8.png
 res/lx03256.png cmd/lc_insertplugin.png
 res/mainapp_32.png res/mainapp_32_8.png
-res/newdoc.png formula/res/fapclose.png
+res/newdoc.png svtools/res/folder.png
 res/oleobj.png cmd/32/insertobject.png
 res/plugin.png cmd/32/insertplugin.png
 res/printeradmin_16_8.png res/printeradmin_16.png
@@ -2023,7 +2023,7 @@ res/sx03131.png res/sx03126.png
 res/sx03137.png res/sx03125.png
 res/sx03139.png cmd/sc_newhtmldoc.png
 res/sx03140.png res/sx03125.png
-res/sx03141.png formula/res/fapclose.png
+res/sx03141.png svtools/res/folder.png
 res/sx03144.png res/odf_16_8.png
 res/sx03145.png res/otf_16_8.png
 res/sx03150.png cmd/sc_showsinglepage.png
@@ -2038,7 +2038,7 @@ res/sx03164.png res/harddisk_16.png
 res/sx03165.png cmd/sc_save.png
 res/sx03167.png cmd/sc_openremote.png
 res/sx03188.png cmd/sc_dbviewtables.png
-res/sx03189.png formula/res/fapclose.png
+res/sx03189.png svtools/res/folder.png
 res/sx03202.png cmd/sc_dbviewqueries.png
 res/sx03217.png res/odg_16_8.png
 res/sx03218.png res/odg_16_8.png
@@ -2207,7 +2207,6 @@ startmath/res/im21108.png cmd/lc_outlineformat.png
 svtools/res/back_small.png cmd/sc_prevrecord.png
 svtools/res/back_large.png cmd/lc_prevrecord.png
 svtools/res/ed06.png dbaccess/res/pkey.png
-svtools/res/folder.png formula/res/fapclose.png
 svtools/res/folderop.png cmd/sc_open.png
 
 # svx
@@ -2242,7 +2241,7 @@ svx/res/fontworkalignstretch_16.png 
cmd/sc_text_marquee.png
 svx/res/fw07.png cmd/sc_alignleft.png
 svx/res/fw08.png cmd/sc_alignhorizontalcenter.png
 svx/res/fw09.png cmd/sc_alignright.png
-svx/res/galrdos.png formula/res/fapclose.png
+svx/res/galrdos.png svtools/res/folder.png
 svx/res/id01.png cmd/sc_ok.png
 svx/res/id018.png cmd/sc_controlproperties.png
 svx/res/id02.png cmd/sc_open.png
diff --git a/icon-themes/elementary/formula/res/fapclose.png 
b/icon-themes/elementary/svtools/res/folder.png
similarity index 100%
rename from icon-themes/elementary/formula/res/fapclose.png
rename to icon-themes/elementary/svtools/res/folder.png
diff --git a/icon-themes/elementary_svg/formula/res/fapclose.svg 
b/icon-themes/elementary_svg/svtools/res/folder.svg
similarity index 100%
rename from icon-themes/elementary_svg/formula/res/fapclose.svg
rename to icon-themes/elementary_svg/svtools/res/folder.svg
commit eb11f93d47c75952535ecf60ba377c9490a9228d
Author:     Rizal Muttaqin <riz_17_...@yahoo.co.id>
AuthorDate: Sun Feb 20 20:13:13 2022 +0700
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:23 2022 +0100

    Sukapura: update small Subscript & Superscript icons
    
    Change-Id: I59e4255312410d5d190b5034440fe059a866689d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130161
    Tested-by: Jenkins
    Reviewed-by: Rizal Muttaqin <riz...@libreoffice.org>

diff --git a/icon-themes/sukapura/cmd/sc_subscript.png 
b/icon-themes/sukapura/cmd/sc_subscript.png
index 9535320e1044..49df7ec105fc 100644
Binary files a/icon-themes/sukapura/cmd/sc_subscript.png and 
b/icon-themes/sukapura/cmd/sc_subscript.png differ
diff --git a/icon-themes/sukapura/cmd/sc_superscript.png 
b/icon-themes/sukapura/cmd/sc_superscript.png
index 35212256286b..2df491dbdea3 100644
Binary files a/icon-themes/sukapura/cmd/sc_superscript.png and 
b/icon-themes/sukapura/cmd/sc_superscript.png differ
diff --git a/icon-themes/sukapura_svg/cmd/sc_subscript.svg 
b/icon-themes/sukapura_svg/cmd/sc_subscript.svg
index feac2d1d597c..868750a58447 100644
--- a/icon-themes/sukapura_svg/cmd/sc_subscript.svg
+++ b/icon-themes/sukapura_svg/cmd/sc_subscript.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";><linearGradient id="a" 
gradientUnits="userSpaceOnUse" x1="13.850109" x2="13.850109" y1="14.552339" 
y2="7.052339"><stop offset="0" stop-color="#0040dd"/><stop offset="1" 
stop-color="#0a84ff"/></linearGradient><path d="m3.9374257 
5.890857-3.12851464-4.890857h1.69108894l2.3337027 3.7708135 
2.3167919-3.7708135h1.6741783l-3.1285148 4.890857 3.2976234 
5.114865h-1.6910888l-2.46899-3.9948213-2.5028116 3.9948213h-1.67417805z" 
fill="#4b4b4f" stroke-width=".833803"/><path d="m15.166913 
15.052339h-5.310515v-.905879l2.630848-2.869523q.569565-.634658.80824-1.057763.244099-.4285299.244099-.8570597
 0-.5641405-.320041-.9113039-.314617-.3471634-.851636-.3471634-.640082 
0-.99267.3905588-.352588.3905588-.352588 
1.0686123h-1.3181357q0-.7214489.3254657-1.2964383.33089-.5804137.938426-.900455.61296-.3200412
 1.410351-.3200412 1.149979 0 1.811759.5804138.667205.5749893.667205 1.5947817 
0 .5912627-.336315 1
 .2421939-.33089.645507-1.09031 1.47002l-1.931096 2.066707h3.666913z" 
fill="url(#a)"/></svg>
\ No newline at end of file
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";><linearGradient id="a" 
gradientUnits="userSpaceOnUse" x1="13.850109" x2="13.850109" y1="15.5" 
y2="8"><stop offset="0" stop-color="#0040dd"/><stop offset="1" 
stop-color="#0a84ff"/></linearGradient><path d="m3.9374257 
7.887996-3.12851464-4.890857h1.69108894l2.3337027 3.7708135 
2.3167919-3.7708135h1.6741783l-3.1285148 4.890857 3.2976234 
5.114865h-1.6910888l-2.46899-3.9948213-2.5028116 3.9948213h-1.67417805z" 
fill="#4b4b4f" stroke-width=".833803"/><path d="m15.166913 
16h-5.310515v-.905879l2.630848-2.869523q.569565-.634658.80824-1.057763.244099-.42853.244099-.85706
 0-.5641402-.320041-.9113036-.314617-.3471634-.851636-.3471634-.640082 
0-.99267.3905588-.352588.3905588-.352588 
1.0686122h-1.3181357q0-.7214488.3254657-1.2964382.33089-.5804137.938426-.900455.61296-.3200412
 1.410351-.3200412 1.149979 0 1.811759.5804138.667205.5749893.667205 1.5947816 
0 .591263-.336315 1.242194-.33089.645507-1.
 09031 1.47002l-1.931096 2.066707h3.666913z" fill="url(#a)"/></svg>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/sc_superscript.svg 
b/icon-themes/sukapura_svg/cmd/sc_superscript.svg
index a69aef6c723f..100b7ce112f2 100644
--- a/icon-themes/sukapura_svg/cmd/sc_superscript.svg
+++ b/icon-themes/sukapura_svg/cmd/sc_superscript.svg
@@ -1 +1 @@
-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";><linearGradient id="a" 
gradientUnits="userSpaceOnUse" x1="14.850109" x2="14.850109" y1="9.056576" 
y2="1.056576"><stop offset="0" stop-color="#0040dd"/><stop offset="1" 
stop-color="#0a84ff"/></linearGradient><path d="m4.1155482 
9.8880595-3.12672515-4.8880595h1.69012165l2.3323679 3.7686566 
2.3154667-3.7686566h1.6732207l-3.1267253 4.8880595 3.2957371 
5.1119395h-1.6901215l-2.4675777-3.992536-2.50138 3.992536h-1.67322051z" 
fill="#4b4b4f" stroke-width=".833326"/><path d="m15.166913 
9.052339h-5.310515v-.9058794l2.630848-2.8695223q.569565-.6346581.80824-1.0577634.244099-.4285298.244099-.8570596
 0-.5641405-.320041-.9113039-.314617-.3471634-.851636-.3471634-.640082 
0-.99267.3905588-.352588.3905588-.352588 
1.0686123h-1.3181357q0-.7214489.3254657-1.2964383.33089-.5804137.938426-.900455.61296-.3200412
 1.410351-.3200412 1.149979 0 1.811759.5804138.667205.5749893.667205 1.5947817 
0 .5912627-.3363
 15 1.242194-.33089.6455069-1.09031 1.4700199l-1.931096 2.066707h3.666913z" 
fill="url(#a)"/></svg>
\ No newline at end of file
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";><linearGradient id="a" 
gradientUnits="userSpaceOnUse" x1="13.850109" x2="13.850109" y1="7.506455" 
y2=".006455"><stop offset="0" stop-color="#0040dd"/><stop offset="1" 
stop-color="#0a84ff"/></linearGradient><path d="m3.9374257 
7.887996-3.12851464-4.890857h1.69108894l2.3337027 3.7708135 
2.3167919-3.7708135h1.6741783l-3.1285148 4.890857 3.2976234 
5.114865h-1.6910888l-2.46899-3.9948213-2.5028116 3.9948213h-1.67417805z" 
fill="#4b4b4f" stroke-width=".833803"/><path d="m15.166913 
8.0064554h-5.310515v-.905879l2.630848-2.869523q.569565-.634658.80824-1.057763.244099-.42853.244099-.85706
 0-.5641402-.320041-.9113036-.314617-.3471634-.851636-.3471634-.640082 
0-.99267.3905588-.352588.3905588-.352588 
1.0686122h-1.3181357q0-.7214488.3254657-1.2964382.33089-.5804137.938426-.900455.61296-.3200412
 1.410351-.3200412 1.149979 0 1.811759.5804138.667205.5749893.667205 1.5947816 
0 .591263-.336315 1.242194
 -.33089.645507-1.09031 1.47002l-1.931096 2.066707h3.666913z" 
fill="url(#a)"/></svg>
\ No newline at end of file
commit 0eb50753b2063f531ca6ece56d83f5f593b345be
Author:     Rizal Muttaqin <riz_17_...@yahoo.co.id>
AuthorDate: Sun Feb 20 17:38:33 2022 +0700
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Mon Feb 21 15:51:23 2022 +0100

    Sukapura: tdf#144036 add UNO Object Inspector icons
    
    Change-Id: I1b16ecb118df59add4b9d39118cf5b22afb4c6fa
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130208
    Tested-by: Jenkins
    Reviewed-by: Rizal Muttaqin <riz...@libreoffice.org>
    (cherry picked from commit 2b80f5a1646308ed43d1d7fee6ce3cefdc9e05e3)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130160

diff --git a/icon-themes/sukapura/cmd/32/developmenttoolsdockingwindow.png 
b/icon-themes/sukapura/cmd/32/developmenttoolsdockingwindow.png
new file mode 100644
index 000000000000..1f9e36e7e6fb
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/32/developmenttoolsdockingwindow.png differ
diff --git a/icon-themes/sukapura/cmd/lc_developmenttoolsdockingwindow.png 
b/icon-themes/sukapura/cmd/lc_developmenttoolsdockingwindow.png
new file mode 100644
index 000000000000..278243753117
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/lc_developmenttoolsdockingwindow.png differ
diff --git a/icon-themes/sukapura/cmd/sc_developmenttoolsdockingwindow.png 
b/icon-themes/sukapura/cmd/sc_developmenttoolsdockingwindow.png
new file mode 100644
index 000000000000..11b596413429
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/sc_developmenttoolsdockingwindow.png differ
diff --git a/icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg 
b/icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg
new file mode 100644
index 000000000000..1d29de5ffcc3
--- /dev/null
+++ b/icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@
+<svg height="32" viewBox="0 0 8.4665 8.4665" width="32" 
xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";><linearGradient id="a" 
gradientUnits="userSpaceOnUse" x1="373.53176496045" x2="386.947250044" 
y1="948.60534765" y2="948.60534765"><stop offset="0" 
stop-color="#828398"/><stop offset=".050132" stop-color="#4f4e50"/><stop 
offset=".14024" stop-color="#e8e5eb"/><stop offset=".23171" 
stop-color="#e9d3d9" stop-opacity=".94118"/><stop offset=".7622" 
stop-color="#c4c2c7"/><stop offset=".86999" stop-color="#f4f1fa"/><stop 
offset=".9341" stop-color="#b8b8bf"/><stop offset="1" 
stop-color="#c1bfcc"/></linearGradient><linearGradient id="b" 
gradientUnits="userSpaceOnUse" x1="368.64713737614" x2="393.87666243974" 
y1="1013.70947882" y2="1013.330372508"><stop offset="0" 
stop-color="#130804"/><stop offset=".16971" stop-color="#0f0704"/><stop 
offset=".23766" stop-color="#323033"/><stop offset=".71843" 
stop-color="#323033"/><stop offset=".84822" stop-color="#141215"/><st
 op offset="1" stop-color="#00010e"/></linearGradient><linearGradient id="c" 
gradientUnits="userSpaceOnUse" x1="369.39481824522" x2="373.5331074" 
y1="910.59895428767" y2="923.0326322"><stop offset="0" 
stop-color="#2d2d39"/><stop offset="1" 
stop-color="#acabb0"/></linearGradient><linearGradient id="d" 
gradientUnits="userSpaceOnUse" x1="389.76653342922" x2="412.856348944" 
y1="908.18180231445" y2="914.37040208555"><stop offset="0" 
stop-color="#59585d"/><stop offset=".19258" stop-color="#010103"/><stop 
offset=".54332" stop-color="#5b5b5d"/><stop offset="1" 
stop-color="#171719"/></linearGradient><linearGradient id="e" 
gradientTransform="matrix(-.9405224 0 0 .9405224 23.423644 59.633069)" 
gradientUnits="userSpaceOnUse" x1="-353.82001" x2="-353.82001" y1="903.40002" 
y2="883.10999"><stop offset="0" stop-color="#202024"/><stop offset=".33685" 
stop-color="#919095"/><stop offset=".53882" stop-color="#4e4d51"/><stop 
offset=".69465" stop-color="#cfcfd1"/><stop offset="1" stop-color="#69696b"/></l
 inearGradient><linearGradient id="f" gradientUnits="userSpaceOnUse" 
x1="342.11966864522" x2="342.11966864522" y1="909.54551276833" 
y2="890.92318805878"><stop offset="0" stop-color="#181820"/><stop 
offset=".035115" stop-color="#86858a"/><stop offset=".14091" 
stop-color="#7a797e"/><stop offset=".19626" stop-color="#2f2e33"/><stop 
offset=".33305" stop-color="#414045"/><stop offset=".43142" 
stop-color="#545358"/><stop offset=".56075" stop-color="#ebeaf0"/><stop 
offset=".69159" stop-color="#abaaaf"/><stop offset=".85981" 
stop-color="#d7d6dc"/><stop offset="1" 
stop-color="#66656a"/></linearGradient><linearGradient id="g" 
gradientUnits="userSpaceOnUse" x1="369.39481824522" x2="414.27654717322" 
y1="895.75278040504" y2="911.29020763148"><stop offset="0" 
stop-color="#c7c6cb"/><stop offset=".54332" stop-color="#fcfcfd"/><stop 
offset="1" stop-color="#d8d8da"/></linearGradient><filter id="h" 
color-interpolation-filters="sRGB" height="1.2729" width="1.0399" x="-.019943" 
y="-.13645"><feGaussianBlu
 r stdDeviation=".19828681"/></filter><g stroke-width="2.4282" 
transform="matrix(.03511283 -.02172017 .02027251 .03762025 -28.192077 
-23.925961)"><path d="m410.25854 
893.79056c-14.51406-9.51482-28.50681-11.13775-44.46013-11.13776-1.89542-.00025-3.72973.64794-5.1424
 1.79013-1.59919 1.29495-2.64119 1.95815-3.37294 
2.32658-.36587.18422-.64207.29054-.9285.36493-.14325.0371-.50051.0728-.51277.0736-2.94768-.53002-5.08329-2.02253-7.65596-3.2881-.0662-.0117-.13193-.0267-.19707-.0444-.20266-.0637-.41232-.1229-.6184-.17221-.11039-.0254-.21739-.053-.32851-.074-.007-.004-.0117-.007-.0185-.0104-.13709-.0274-.29479-.0442-.43273-.065-.24566-.0338-.47907-.0593-.72555-.0723-.0158-.001-.0314-.003-.0472-.004-.16075-.0117-.32067-.0214-.48132-.0237l-9.49083.0188c-.007-.004-.0117-.007-.0185-.0104-3.76653.00098-7.18079
 2.74128-7.83766 6.28686-1.34559 7.30607-1.53458 11.86269.00018 21.09265.67534 
3.983 4.73043 7.36355 8.86862 
7.36127l9.10243.0104c.009-.003.019-.004.0285-.007l.0472.004.0757-.003c.0551-.001.1
 
0636-.0197.16143-.0224.0378.005.0753.0117.11287.0189.20204.00037.40493-.007.6056-.0199.004-.005.007-.0117.0104-.0173.0757-.004.15158-.00094.22711-.008.0104-.001.0179-.005.0285-.007.019-.005.0381-.009.0572-.0133.23472-.0282.48251-.0725.71274-.11991.007.004.013.007.0185.0104.27274-.0529.54562-.12303.80991-.20237.55485-.16398
 1.09933-.39641 1.59989-.67037l.0285-.007c1.64278-1.20853 3.75055-1.57167 
5.51827-2.31245.001-.00032.29331-.0381.29423-.0381l1.87773 
1.29208c-.0992-.29982-.12356-.2615-.0971-.21775.64485 1.46102 2.38402 2.36468 
3.39961 
3.37204.12069.0692.14648.0877.18565.10713.0196.009.0263.0192.12994.0751.0519.0279.29328.16875.29704.1715.001.001.31148.27175.31271.27292.001.001.3877.56955.3883.57073.0326
 3.09065.001.0985.0461 
3.00678.003.009.005.0186.009.028-.003.0514-.008.10257-.0143.15344-.0205.20048-.0425.39412-.0473.59644.003.009.005.0186.009.028.004.0547.005.10948.004.16414.003.22405.0139.44318.0354.66735.004.0435.0193.086.0242.12955-.0003.0152-.00068.0304-.001.0456.0197.1966.
 
0413.4025.0755.59805l.009.028c.0165.0614.0305.1233.0413.18565.0542.26231.11248.52365.19256.78116.001.005.0168.005.0185.0104l.009.028c.0742.20969.14458.4168.23545.62111.11977.26954.18144.55693.18111.84383l-.013
 24.75865c.003 2.79077 1.60746 5.61744 4.08113 7.20778 2.47365 1.59034 5.73583 
1.88922 
8.30376.75129.013-.008.0257-.0162.0386-.024l.32571-.1354c.24658-.10531.51479-.16225.78988-.16771l5.01148-.0636c.23737-.003.47583.034.70554.107l1.53526.4706c2.57166.79993
 5.45298.36484 7.51313-1.13756 2.06017-1.5024 3.23901-4.03154 
3.09299-6.60044l-1.17147-20.8217.0439-12.08031c-.0232-1.03594.75141-1.88264 
1.81172-1.98041.33527-.0279.26609-.0275.83269-.0275 4.02473 1.32154 6.76083 
2.53072 8.24995 3.63119 3.99442 2.50857 8.06768 6.0043 10.75764 
9.19117l.0392-.0237c.71931.9224 1.28184 1.65834 2.89137 2.70896 1.37498.89759 
4.67646 2.20528 7.88084 
1.26948.51736-.15107.54054-.20381.79137-.5134.25127-.30933.6275-.98819 
1.38745-1.71711.0856-.0854.18008-.16223.28143-.23025.4354-.2809.8542-.59925 
1.221
 
57-.9581.0373-.0407.0765-.0798.11691-.1173.0923-.0748.19264-.15149.28142-.23026.013-.008.0259-.0159.0392-.0236l.0491-.0409c.004-.005.007-.0117.0104-.0173.41563-.34634.78351-.73501
 
1.11447-1.15856l-.2301.39851c.19973-.45138.22368-.27685.35327-.3967.013-.0477-.003-.0626.0132-.10791.0521-.13796.11925-.2696.20093-.39226.59117-.90996.97918-1.95691
 
1.13648-3.04024.008-.0788.0195-.1564.036-.23336.23355-.84185.43718-.8848.5734-1.07821.13622-.1934.2386-.62623.0259.0843.0388-.1439.0936-.28279.16411-.41351l.0104-.0173c.004-.005.007-.0117.0104-.0173.0299-.0504.0614-.10492.0901-.15593l-.0009.0457c.0745-.14171.13758-.29102.20326-.43711.0262-.0691.0569-.13613.0908-.20164.0271-.0459.054-.0923.08-.13862.0822-.19358.15099-.39081.21694-.59093.007-.0117.0133-.0232.0201-.0347.0181-.0502.0266-.10909.0431-.15988.013-.0538.0266-.10726.0431-.15988.0602-.20116.10779-.39971.15155-.60557.36889-1.75139.0846-3.67046-.75665-5.33458-.1031-.10857-.30689-.33308-.49967-.63502l-.0813-.11626c-.24395-.36522-.51084-.7163
 
9-.80806-1.04409-.0908-.0944-.17298-.19592-.24553-.30347-2.3878-3.75783-5.09989-7.26524-6.99681-9.19153-.079-.0786-.15644-.15427-.23847-.23009-.003-.009-.007-.0188-.008-.0279l-.0644-.0602.008.028c-.30047-.27837-.62211-.54781-.95813-.7842-.0602-.0386-.11912-.0804-.1756-.12447-.0232-.0176-.0508-.0498-.0643-.0602-.013-.0104-.0738-.0424-.0743-.0429-4.73549-4.35933-9.24193-8.13364-13.64064-11.01726zm21.9165
 
36.07945c-.033.0281-.0617.0609-.12682.13467-.0306.0343-.0702.0928-.10922.1449.0626-.0199.20635-.26896.23604-.27957z"
 fill="#848489" stroke-width=".906879"/><path d="m382.93091 
945.2396-8.79252.13285c-.98212.0147-1.9603.23293-2.85526.63765l-2.17688.98482c-.21526.0976-.42595.20582-.63056.32414a2.8098271
 2.8098267 22.420438 0 1 -.001.001c-4.33515 2.50301-4.43468 5.89262-4.65663 
7.56858h.001c-.0211.15945-.0374.31948-.0478.48l-2.40359 
37.21759c-.009.13946-.0137.28022-.0142.41981l-.23735 43.62966a2.8098271 
2.8098267 22.420438 0 1 -.0514.5191c-.13202.6806-.54378 2.9239-.54378 6.1196 0 
2.4772
  1.66183 5.269 2.74723 6.3092 1.37018 1.3133 2.28321 1.7136 3.37602 2.1982 
2.01505.8935 3.03568 1.0561 4.08451 1.3834.76726.2392 1.57556.3486 
2.3788.3222l19.80442-.6482c.49517-.017.98886-.085 1.47013-.202a2.8098271 
2.8098267 22.420438 0 1 .0318-.013s2.1568-.5391 4.01366-1.9855c1.60719-1.252 
4.10402-5.0939 4.10399-8.4933 0-3.3866-.50681-5.5729-.79351-6.6882a2.8098271 
2.8098267 22.420438 0 1 
-.085-.5438l-1.79251-32.2863c-.005-.085-.0104-.1701-.0177-.2551a2.8098271 
2.8098267 22.420438 0 1 -.001 0l-1.8315-19.97803a2.8098271 2.8098267 22.420438 
0 1 
0-.004c-.008-.0786-.0151-.15554-.0248-.23383v-.001l-3.57262-28.53495v-.001c-.0409-.32592-.1044-.64984-.18951-.9671a2.8098271
 2.8098267 22.420438 0 1 
0-.001c-1.01981-3.80677-2.98038-4.93697-5.11173-6.01868a2.8098271 2.8098267 
22.420438 0 1 
-.009-.004c-1.96472-.99683-3.85227-1.39573-6.04173-1.39574a2.8098271 2.8098267 
22.420438 0 1 -.0213.00003c-.0291-.00026-.0577-.00016-.0868.00001z" 
stroke-width=".906883"/><path d="m373.59415 925.88369c-.0818-
 .10228-.98169-1.12494-.98169-1.12494l1.10444-2.08623 11.43035-.0102 1.50405 
1.15694.0578.92562-.98339 1.4462z" fill-rule="evenodd" 
stroke-width="2.164485"/><path d="m373.42478 
924.68922.78884-1.24376h10.75111l1.03188.54084 1.64365 
28.92754-3.18577-.9923-8.80555.1018-2.22438.99177z" fill="url(#a)" 
stroke-width="2.164485"/><path d="m368.22065 1037.7827.26096-46.40638 
2.522-38.88398c.11432-.86328.31173-1.88871 1.1686-2.38345l2.27577-1.03022 
9.21229-.15061c2.23521 0 4.07454.9871 4.3927 2.17465l3.74036 29.83567 1.91363 
20.87642 1.91364 34.62s.86984 3.2848.86984 6.2628c0 2.9781-2.7835 3.6534-2.7835 
3.6534l-20.70204.6959c-2.04414-.6379-5.39298-1.3645-5.39298-3.175 
0-1.8103.60888-6.0889.60888-6.0889z" fill="url(#b)" fill-rule="evenodd" 
stroke-width="2.301365"/><g stroke-width="2.283777"><path d="m372.39508 
925.15822s2.05241-8.32391-5.94345-13.02342l.91557-8.78937s7.85853 6.36311 
6.21055 19.60801z" fill="url(#c)" fill-rule="evenodd"/><path d="m374.51125 
922.95739c.52937-12.00765-4.20084-16.6
 5947-7.1427-19.61177 0 0 7.85853 6.36311 6.21055 19.60801z" fill="#5b5c60" 
fill-rule="evenodd"/><path d="m387.17068 
924.15186s-.69056-5.09284.0863-8.71827c.77689-3.62543 3.71178-5.26551 
10.78968-5.26551s20.02654 8.28666 27.1905 16.91905c1.03147 1.32275 1.75784 
1.08913 
1.81276-.51791.0426-.21321-10.46049-12.52588-20.02654-16.57295-9.63847-4.07848-1.64008-2.84856-1.64008-2.84856s12.25688
 4.92025 21.66587 15.96913c1.24337 1.67065 1.63228.62523 1.89901-1.12214 0 
0-8.45934-12.68858-21.7524-18.90356-13.29306-6.21497-19.76696 2.5033-21.23418 
8.71827-1.46721 6.21497-.51791 11.22137-.51791 11.22137z" fill="url(#d)" 
fill-rule="evenodd"/><path d="m428.61951 921.59364-.57986 2.36522c1.06307-.0152 
1.59202-1.66322 1.72426-3.15865z" fill-rule="evenodd"/><path d="m426.89835 
926.3809-.55697 1.57932c1.03251 0 1.32388-1.13624 1.44201-2.47197z" 
fill-rule="evenodd"/><path d="m367.25983 889.88863c-8.10148 6.56014-12.72433 
5.73483-21.19186.82003v19.0437c6.27997-3.51784 13.67614-6.65016 20.41498 
2.41695l.8
 9976-8.64791z" fill="url(#e)"/><path d="m336.17556 
890.70688h9.88771v19.0437h-9.88771z" fill="url(#f)"/><path d="m367.25983 
889.88863c21.50598 0 34.67612 2.16517 55.14941 
21.46554-21.18997-18.6167-33.10263-18.67878-55.14753-18.49631z" fill="#3b3b3d" 
fill-rule="evenodd"/><path d="m375.08497 
892.83528c-2.47686-.0206-5.07355-.00076-7.82909.022l-.0532 
12.02834.16165-1.54669s.12149.0983.33066.29575c.003.002.00085.00094.004.004.20901.19749.50392.49196.85418.88725.006.007.008.008.0129.0147.045.0508.0967.11679.14328.17083.10765.12473.21704.25472.33249.39679.008.009.0158.0186.0239.0276
 2.75902 3.07127 5.87638 7.94083 5.44111 17.81631l-.84867-.006.10286.40964 
11.79886-.2241.004-.0257-.1194-.0771s-.94936-5.00697.51802-11.22232c1.46739-6.21534
 7.94206-14.93361 21.23512-8.71817 12.01517 5.61765 20.01243 16.43093 21.45237 
18.47656l1.09486-.75866c-1.8722-3.61697-5.01994-7.10226-7.34049-9.45319-18.54146-16.28985-29.98009-18.37404-47.31862-18.51794zm28.27587
 14.137c-1.49619-.002-2.36128.47277 3.6628
 6 3.0218 9.18383 3.88596 19.12929 15.27879 19.87982 
16.38014l.86889-.87623-2.01329-3.82275c-9.20113-10.02785-20.37547-14.52825-20.37547-14.52825s-1.12477-.1734-2.0225-.17452zm-30.53406
 5.45023c.16279.55374.31109 1.13239.43902 
1.7378-.1281-.60498-.27608-1.1844-.43902-1.7378zm.43902 
1.73959c.11205.53042.20355 1.09035.28289 
1.66059-.0797-.57117-.17045-1.12938-.28289-1.66059zm.32515 
1.92327c.0723.56572.11776 1.15929.15247 
1.76348-.0348-.60417-.08-1.19785-.15247-1.76348zm.17635 
2.05928c.0318.69591.0383 1.41595.0129 
2.16207.0255-.74709.0191-1.46543-.0129-2.16207zm.011 2.21352c-.0265.73751-.0845 
1.50032-.1745 
2.28697.0899-.78672.14804-1.54951.1745-2.28697zm55.97614.46291c-.00029.003-.002.006-.002.009l.006-.004zm-1.97661
 4.69161c-.004.0426-.0123.0791-.0165.12124l.0514-.057z" fill="url(#g)"/><path 
d="m336.17556 890.70688c-1.38144 7.50076-1.5528 9.70525 0 19.0437z" 
fill="#5b5a60"/></g><rect fill="#323033" filter="url(#h)" height="3.4876" 
rx="1.7438" transform="matrix(.98719283 0 0 1.1255666 4
 .573348 -138.9064)" width="23.862" x="370.97" y="1049.2"/><rect fill="#060509" 
height="3.305428" rx="1.652714" stroke-width="2.301365" width="22.615587" 
x="371.26297" y="1042.3319"/></g></svg>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg 
b/icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg
new file mode 100644
index 000000000000..0ad887dbdcd9
--- /dev/null
+++ b/icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@

... etc. - the rest is truncated

Reply via email to