configure.ac                        |    4 
 download.lst                        |   12 
 editeng/source/editeng/impedit5.cxx |   11 
 external/expat/expat-winapi.patch   |   15 
 readlicense_oo/license/CREDITS.fodt | 3862 ++++++++++++++++++------------------
 sw/source/core/doc/docdesc.cxx      |    2 
 sw/source/uibase/misc/redlndlg.cxx  |    9 
 sw/source/uibase/wrtsh/wrtsh1.cxx   |    8 
 8 files changed, 1994 insertions(+), 1929 deletions(-)

New commits:
commit 01e7878012b1aa5dc569671a287bc53d65556c1f
Author:     Patrick Luby <[email protected]>
AuthorDate: Fri Sep 19 11:05:35 2025 -0400
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    tdf#168375 return false if both KEY_MOD1 and KEY_MOD2 are pressed
    
    Previously ImpEditEngine::IsSimpleCharInput() returned false only
    if one of these modifiers is pressed. At least on macOS, pressing
    Command-Option with a character is not a simple character so return
    false if both modifiers are pressed.
    
    Change-Id: I7698a1ec3178b83c0a1d4e161915246cac08f0ee
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191205
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <[email protected]>
    (cherry picked from commit ed45cdaef3d2807d0b9d6a4c08da375fc72024a6)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191209
    Reviewed-by: Patrick Luby <[email protected]>
    Reviewed-by: Adolfo Jayme Barrientos <[email protected]>
    (cherry picked from commit 2dc604d5dc088dd80c8254bf5e2bddd5acac3bf7)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191359
    Reviewed-by: Christian Lohmaier <[email protected]>

diff --git a/editeng/source/editeng/impedit5.cxx 
b/editeng/source/editeng/impedit5.cxx
index 9abcc1350c06..b86ca22156db 100644
--- a/editeng/source/editeng/impedit5.cxx
+++ b/editeng/source/editeng/impedit5.cxx
@@ -1337,9 +1337,14 @@ bool ImpEditEngine::PostKeyEvent( const KeyEvent& 
rKeyEvent, EditView* pEditView
 
 bool ImpEditEngine::IsSimpleCharInput( const KeyEvent& rKeyEvent )
 {
-    return EditEngine::IsPrintable( rKeyEvent.GetCharCode() ) &&
-        ( KEY_MOD2 != (rKeyEvent.GetKeyCode().GetModifier() & ~KEY_SHIFT ) ) &&
-        ( KEY_MOD1 != (rKeyEvent.GetKeyCode().GetModifier() & ~KEY_SHIFT ) );
+    // tdf#168375 return false if both KEY_MOD1 and KEY_MOD2 are pressed
+    // Previously this function returned false only if one of these
+    // modifiers is pressed. At least on macOS, pressing Command-Option
+    // with a character is not a simple character so return false if
+    // both modifiers are pressed.
+    sal_uInt16 nNonShiftModifiers = rKeyEvent.GetKeyCode().GetModifier() & 
~KEY_SHIFT;
+    nNonShiftModifiers &= ( KEY_MOD1 | KEY_MOD2 );
+    return !nNonShiftModifiers && EditEngine::IsPrintable( 
rKeyEvent.GetCharCode() );
 }
 
 void ImpEditEngine::SetControlWord( EEControlBits nWord )
commit 63619f13ff340cd825c5c03083313c85585c9d83
Author:     Xisco Fauli <[email protected]>
AuthorDate: Thu Sep 18 18:16:36 2025 +0200
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    tiff: upgrade to 4.7.1
    
    Downloaded from https://download.osgeo.org/libtiff/tiff-4.7.1.tar.xz
    
    Change-Id: I9eda3018e55e771986968ffacf7081538baf432b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191142
    Reviewed-by: Xisco Fauli <[email protected]>
    Tested-by: Jenkins
    (cherry picked from commit b3a027d2b7273478773bd0d8624b70f9a48b0952)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191163
    Reviewed-by: Christian Lohmaier <[email protected]>

diff --git a/download.lst b/download.lst
index d8a8ecd0429c..4e1b35b66a7f 100644
--- a/download.lst
+++ b/download.lst
@@ -651,8 +651,8 @@ LIBPNG_TARBALL := libpng-1.6.50.tar.xz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
-LIBTIFF_SHA256SUM := 
273a0a73b1f0bed640afee4a5df0337357ced5b53d3d5d1c405b936501f71017
-LIBTIFF_TARBALL := tiff-4.7.0.tar.xz
+LIBTIFF_SHA256SUM := 
b92017489bdc1db3a4c97191aa4b75366673cb746de0dce5d7a749d5954681ba
+LIBTIFF_TARBALL := tiff-4.7.1.tar.xz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
commit 4d33d0e89c2138e581720fb9d3494c10e792d64d
Author:     Michael Stahl <[email protected]>
AuthorDate: Wed Oct 1 15:55:08 2025 +0200
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    configure: openssl 3.0.18 evidently needs perl Time::Piece
    
    Can't locate Time/Piece.pm in @INC (you may need to install the Time::Piece 
module) (@INC entries checked: ...) at Makefile.in line 37.
    
    Change-Id: Ia47eeb971f7bf91972f46be46330f10e64682799
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191735
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <[email protected]>
    (cherry picked from commit 0622d8d160b54b120e3955b6b0e177a2a25ca0d1)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191753
    Reviewed-by: Christian Lohmaier <[email protected]>

diff --git a/configure.ac b/configure.ac
index 25cfa8c7b51e..5f1729a1fc9d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6891,9 +6891,9 @@ if test "$enable_openssl" = "yes" -a 
"$with_system_openssl" != "yes"; then
     # OpenSSL needs that to build
     if test -n "$WSL_ONLY_AS_HELPER"; then
         # OpenSSL is built via spp, FindBin is provided by default, but deps 
might change in future
-        perl_use_string_spp="$perl_use_string_spp ; use FindBin"
+        perl_use_string_spp="$perl_use_string_spp ; use FindBin ; use 
Time::Piece"
     else
-        perl_use_string="$perl_use_string ; use FindBin"
+        perl_use_string="$perl_use_string ; use FindBin ; use Time::Piece"
     fi
 fi
 dnl in WSL_ONLY_AS_HELPER case the test should be done with 
git-bash-provided-perl and not perl from
commit c25465d36f72c23280f0e008ef0b97b367846090
Author:     Justin Luth <[email protected]>
AuthorDate: Thu Sep 18 08:16:47 2025 -0400
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    tdf#168377 sw: avoid crash in redlndlg - index out of range
    
    Everywhere else GetRedlinePos() is used
    it is checked against SwRedlineTable::npos
    to identify a valid index position.
    
    Change-Id: I46a52a9c7aadab4b1690562c0ba32027cd2dcd2f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191121
    Tested-by: Jenkins
    Reviewed-by: Justin Luth <[email protected]>
    (cherry picked from commit c920581dc81e553a07d0cd27f5d218df39811b6d)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191137
    Reviewed-by: Xisco Fauli <[email protected]>
    (cherry picked from commit d24e8a20907bf3e861dad93456d0dea891c3b320)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191165
    Reviewed-by: Christian Lohmaier <[email protected]>

diff --git a/sw/source/uibase/misc/redlndlg.cxx 
b/sw/source/uibase/misc/redlndlg.cxx
index ac84002e0070..efb886526a26 100644
--- a/sw/source/uibase/misc/redlndlg.cxx
+++ b/sw/source/uibase/misc/redlndlg.cxx
@@ -1125,10 +1125,13 @@ void SwRedlineAcceptDlg::CallAcceptReject( bool 
bSelect, bool bAccept )
             if ( !bSelect && !bAccept && !m_bOnlyFormatedRedlines )
             {
                 SwRedlineTable::size_type nPosition = GetRedlinePos(rEntry);
-                const SwRangeRedline& rRedln = pSh->GetRedline(nPosition);
+                if (nPosition != SwRedlineTable::npos)
+                {
+                    const SwRangeRedline& rRedln = pSh->GetRedline(nPosition);
 
-                if( RedlineType::Format == rRedln.GetType() )
-                    bIsNotFormatted = false;
+                    if (RedlineType::Format == rRedln.GetType())
+                        bIsNotFormatted = false;
+                }
             }
 
             if (!pData->bDisabled && bIsNotFormatted)
commit a6ab69bb6e0732c93523042353aac06f449346f5
Author:     Xisco Fauli <[email protected]>
AuthorDate: Tue Sep 16 21:26:24 2025 +0200
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    expat: upgrade to 2.7.2
    
    Downloaded from 
https://github.com/libexpat/libexpat/releases/download/R_2_7_2/expat-2.7.2.tar.xz
    
    Change-Id: Icf4b730291dfecc039024360b36c2fe8adb247fc
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191047
    Reviewed-by: Xisco Fauli <[email protected]>
    Tested-by: Jenkins
    (cherry picked from commit 953f1da9270dc10d4aa7852a91e22e4483751aba)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191055
    Reviewed-by: Christian Lohmaier <[email protected]>

diff --git a/download.lst b/download.lst
index 876dbfd623ff..d8a8ecd0429c 100644
--- a/download.lst
+++ b/download.lst
@@ -111,8 +111,8 @@ ETONYEK_TARBALL := 
libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
-EXPAT_SHA256SUM := 
354552544b8f99012e5062f7d570ec77f14b412a3ff5c7d8d0dae62c0d217c30
-EXPAT_TARBALL := expat-2.7.1.tar.xz
+EXPAT_SHA256SUM := 
21b778b34ec837c2ac285aef340f9fb5fa063a811b21ea4d2412a9702c88995c
+EXPAT_TARBALL := expat-2.7.2.tar.xz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
diff --git a/external/expat/expat-winapi.patch 
b/external/expat/expat-winapi.patch
index fed65644a732..5cef970a2bf2 100644
--- a/external/expat/expat-winapi.patch
+++ b/external/expat/expat-winapi.patch
@@ -1,15 +1,16 @@
 --- misc/expat-2.5.0/lib/expat_external.h      2022-10-25 01:32:54.000000000 
+0900
 +++ misc/build/expat-2.5.0/lib/expat_external.h        2022-10-30 
23:09:47.339459134 +0900
-@@ -88,10 +88,6 @@
- #  ifndef XML_BUILDING_EXPAT
+@@ -88,11 +88,6 @@
+ #    ifndef XML_BUILDING_EXPAT
  /* using Expat from an application */
  
--#    if defined(_MSC_EXTENSIONS) && ! defined(__BEOS__) && ! 
defined(__CYGWIN__)
--#      define XMLIMPORT __declspec(dllimport)
--#    endif
+-#      if defined(_MSC_EXTENSIONS) && ! defined(__BEOS__)                     
 \
+-          && ! defined(__CYGWIN__)
+-#        define XMLIMPORT __declspec(dllimport)
+-#      endif
 -
- #  endif
- #endif /* not defined XML_STATIC */
+ #    endif
+ #  endif /* not defined XML_STATIC */
  
 --- misc/expat-2.5.0/lib/xmlparse.c    2022-10-26 00:09:08.000000000 +0900
 +++ misc/build/expat-2.5.0/lib/xmlparse.c      2022-10-30 23:09:01.843006341 
+0900
commit 4800eb50d2d4d81e6621f5ba096c3ec88b0e3e44
Author:     Justin Luth <[email protected]>
AuthorDate: Thu Sep 11 06:38:43 2025 -0400
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    tdf#142785 stashedFooter: fix copy/paste error
    
    Change-Id: I1455420a9bc8566648aee8972b47e0408e1255da
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190811
    Reviewed-by: Justin Luth <[email protected]>
    Tested-by: Jenkins
    (cherry picked from commit 0bcce63a97e0d51638746267e11c7a8f4936c9e2)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190819
    Reviewed-by: Xisco Fauli <[email protected]>
    (cherry picked from commit abdfd11e6b0dc814190e13a24bb78479a871aca2)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190878
    Reviewed-by: Christian Lohmaier <[email protected]>

diff --git a/sw/source/core/doc/docdesc.cxx b/sw/source/core/doc/docdesc.cxx
index b03a3558baca..4a8d5dbf0477 100644
--- a/sw/source/core/doc/docdesc.cxx
+++ b/sw/source/core/doc/docdesc.cxx
@@ -591,7 +591,7 @@ void SwDoc::ChgPageDesc( size_t i, const SwPageDesc &rChged 
)
     CopyMasterFooter(rChged, pStashedFirstMasterFoot ? 
pStashedFirstMasterFoot->GetFooter() : rMasterFoot, rDesc, false, true); // 
Copy first master
     CopyMasterFooter(rChged, pStashedFirstLeftFoot ? 
pStashedFirstLeftFoot->GetFooter() : rMasterFoot, rDesc, true, true); // Copy 
first left
 
-    if (pStashedLeftFormat)
+    if (pStashedLeftFoot)
         rDesc.RemoveStashedFormat(false, true, false);
 
     if (pStashedFirstMasterFoot)
commit 22f28b2e6b33f530a93a7577999ff610c4b5095e
Author:     Xisco Fauli <[email protected]>
AuthorDate: Tue Sep 30 20:48:36 2025 +0200
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    openssl: upgrade to 3.0.18
    
    Downloaded from 
https://github.com/openssl/openssl/releases/download/openssl-3.0.18/openssl-3.0.18.tar.gz
    
    Change-Id: Ie24873924bf8a0f9d3edb37e4e69e2e64b25ce47
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191693
    Reviewed-by: Xisco Fauli <[email protected]>
    Tested-by: Jenkins
    (cherry picked from commit b9abb977cbdc90ffc5c60ac5307cede571c168d7)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191698
    Reviewed-by: Adolfo Jayme Barrientos <[email protected]>

diff --git a/download.lst b/download.lst
index ee2469a47a53..876dbfd623ff 100644
--- a/download.lst
+++ b/download.lst
@@ -611,8 +611,8 @@ OPENLDAP_TARBALL := openldap-2.6.10.tgz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
-OPENSSL_SHA256SUM := 
dfdd77e4ea1b57ff3a6dbde6b0bdc3f31db5ac99e7fdd4eaf9e1fbb6ec2db8ce
-OPENSSL_TARBALL := openssl-3.0.17.tar.gz
+OPENSSL_SHA256SUM := 
d80c34f5cf902dccf1f1b5df5ebb86d0392e37049e5d73df1b3abae72e4ffe8b
+OPENSSL_TARBALL := openssl-3.0.18.tar.gz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
commit c7733e3fa1456a17af176fe1623f868acb14af7f
Author:     Xisco Fauli <[email protected]>
AuthorDate: Wed Oct 1 13:14:01 2025 +0200
Commit:     Andras Timar <[email protected]>
CommitDate: Mon Oct 13 18:38:34 2025 +0200

    update credits
    
    Change-Id: Ice1c1887ada55c21b7a9d1af86bb5315a3f7f70a
    (cherry picked from commit a1911bbebc9fbd949f81755cb7148d53e13948ed)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 201c18dcaed7..8701c8f83c18 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -184,14 +184,14 @@
  </office:font-face-decls>
  <office:styles>
   <style:default-style style:family="graphic">
-   <style:graphic-properties svg:stroke-color="#3465a4" 
draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" 
draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" 
draw:start-line-spacing-vertical="0.283cm" 
draw:end-line-spacing-horizontal="0.283cm" 
draw:end-line-spacing-vertical="0.283cm" style:writing-mode="lr-tb" 
style:flow-with-text="true"/>
-   <style:paragraph-properties style:text-autospace="ideograph-alpha" 
style:line-break="strict" loext:tab-stop-distance="0cm" 
style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
+   <style:graphic-properties svg:stroke-color="#3465a4" 
draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" 
draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" 
draw:start-line-spacing-vertical="0.283cm" 
draw:end-line-spacing-horizontal="0.283cm" 
draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="true"/>
+   <style:paragraph-properties style:text-autospace="ideograph-alpha" 
style:line-break="strict" style:font-independent-line-spacing="false">
     <style:tab-stops/>
    </style:paragraph-properties>
-   <style:text-properties style:use-window-font-color="true" 
loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" 
fo:language="hu" fo:country="HU" style:letter-kerning="true" 
style:font-name-asian="SimSun" style:font-size-asian="12pt" 
style:language-asian="zh" style:country-asian="CN" 
style:font-name-complex="Mangal1" style:font-size-complex="12pt" 
style:language-complex="hi" style:country-complex="IN"/>
+   <style:text-properties style:use-window-font-color="true" 
loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" 
style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="hu" 
fo:country="HU" style:letter-kerning="true" style:font-name-asian="SimSun" 
style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" 
style:font-name-complex="Mangal1" style:font-size-complex="12pt" 
style:language-complex="hi" style:country-complex="IN"/>
   </style:default-style>
   <style:default-style style:family="paragraph">
-   <style:paragraph-properties fo:hyphenation-ladder-count="no-limit" 
fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column" 
loext:hyphenation-keep-line="false" style:text-autospace="ideograph-alpha" 
style:punctuation-wrap="hanging" style:line-break="strict" 
style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
+   <style:paragraph-properties fo:hyphenation-ladder-count="no-limit" 
style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" 
style:line-break="strict" style:tab-stop-distance="1.251cm" 
style:writing-mode="page"/>
    <style:text-properties style:use-window-font-color="true" 
loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" 
fo:language="hu" fo:country="HU" style:letter-kerning="true" 
style:font-name-asian="SimSun" style:font-size-asian="12pt" 
style:language-asian="zh" style:country-asian="CN" 
style:font-name-complex="Mangal1" style:font-size-complex="12pt" 
style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" 
fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" 
loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" 
loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/>
   </style:default-style>
   <style:default-style style:family="table">
@@ -203,7 +203,7 @@
   <style:style style:name="Standard" style:family="paragraph" 
style:class="text">
    <style:text-properties fo:font-variant="normal" fo:text-transform="none" 
style:font-name="sans-serif" fo:font-family="sans-serif" fo:font-style="normal" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-family-asian="sans-serif" style:font-style-asian="normal" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-family-complex="sans-serif" style:font-style-complex="normal" 
style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="Heading" style:family="paragraph" 
style:parent-style-name="Standard" style:next-style-name="Text_20_body" 
style:class="chapter">
+  <style:style style:name="Heading" style:family="paragraph" 
style:parent-style-name="Standard" style:next-style-name="Text_20_body" 
style:class="text">
    <style:paragraph-properties fo:margin-top="0.423cm" 
fo:margin-bottom="0.499cm" style:contextual-spacing="false" 
fo:keep-with-next="always"/>
    <style:text-properties fo:color="#18a303" loext:opacity="100%" 
style:font-name="Albany" fo:font-family="Albany" 
style:font-family-generic="swiss" style:font-pitch="variable" 
fo:font-size="14pt" style:font-name-asian="HG Mincho Light J" 
style:font-family-asian="&apos;HG Mincho Light J&apos;" 
style:font-pitch-asian="variable" style:font-size-asian="14pt" 
style:font-name-complex="Arial Unicode MS" 
style:font-family-complex="&apos;Arial Unicode MS&apos;" 
style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
   </style:style>
@@ -254,7 +254,7 @@
     </style:tab-stops>
    </style:paragraph-properties>
   </style:style>
-  <style:style style:name="Heading_20_1" style:display-name="Heading 1" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:class="chapter">
+  <style:style style:name="Heading_20_1" style:display-name="Heading 1" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:class="text">
    <style:text-properties style:font-name="Liberation Sans" 
fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Bold" 
style:font-family-generic="swiss" style:font-pitch="variable" 
fo:font-size="24pt" fo:language="en" fo:country="US" fo:font-weight="bold" 
style:font-name-asian="HG Mincho Light J" style:font-family-asian="&apos;HG 
Mincho Light J&apos;" style:font-pitch-asian="variable" 
style:font-size-asian="24pt" style:font-weight-asian="bold" 
style:font-name-complex="Arial Unicode MS" 
style:font-family-complex="&apos;Arial Unicode MS&apos;" 
style:font-pitch-complex="variable" style:font-size-complex="24pt" 
style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Quotations" style:family="paragraph" 
style:parent-style-name="Standard" style:class="html">
@@ -263,14 +263,14 @@
   <style:style style:name="Text_20_body.roles" style:display-name="Text 
body.roles" style:family="paragraph" style:parent-style-name="Text_20_body">
    <style:text-properties fo:font-variant="small-caps"/>
   </style:style>
-  <style:style style:name="Heading_20_3" style:display-name="Heading 3" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="3" 
style:list-style-name="" style:class="chapter">
+  <style:style style:name="Heading_20_3" style:display-name="Heading 3" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="3" 
style:list-style-name="" style:class="text">
    <style:text-properties style:font-name="Liberation Sans" 
fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Bold" 
style:font-family-generic="swiss" style:font-pitch="variable" 
fo:font-size="14pt" fo:language="en" fo:country="US" fo:font-weight="bold" 
style:font-name-asian="SimSun" style:font-family-asian="SimSun" 
style:font-family-generic-asian="system" style:font-pitch-asian="variable" 
style:font-size-asian="14pt" style:font-weight-asian="bold" 
style:font-name-complex="Mangal1" style:font-family-complex="Mangal" 
style:font-family-generic-complex="system" style:font-pitch-complex="variable" 
style:font-size-complex="14pt" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Table_20_Heading" style:display-name="Table 
Heading" style:family="paragraph" style:parent-style-name="Table_20_Contents" 
style:class="extra">
    <style:paragraph-properties fo:text-align="center" 
style:justify-single-word="false" text:number-lines="false" 
text:line-number="0"/>
    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" 
style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="Heading_20_2" style:display-name="Heading 2" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="2" 
style:list-style-name="" style:class="chapter">
+  <style:style style:name="Heading_20_2" style:display-name="Heading 2" 
style:family="paragraph" style:parent-style-name="Heading" 
style:next-style-name="Text_20_body" style:default-outline-level="2" 
style:list-style-name="" style:class="text">
    <style:text-properties style:font-name="Liberation Sans" 
fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Bold" 
style:font-family-generic="swiss" style:font-pitch="variable" 
fo:font-size="18pt" fo:language="en" fo:country="US" fo:font-weight="bold" 
style:font-name-asian="SimSun" style:font-family-asian="SimSun" 
style:font-family-generic-asian="system" style:font-pitch-asian="variable" 
style:font-size-asian="18pt" style:font-weight-asian="bold" 
style:font-name-complex="Mangal1" style:font-family-complex="Mangal" 
style:font-family-generic-complex="system" style:font-pitch-complex="variable" 
style:font-size-complex="18pt" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Frame_20_contents" style:display-name="Frame 
contents" style:family="paragraph" style:parent-style-name="Text_20_body" 
style:class="extra"/>
@@ -360,77 +360,61 @@
   <text:notes-configuration text:note-class="footnote" style:num-format="1" 
text:start-value="0" text:footnotes-position="page" 
text:start-numbering-at="document"/>
   <text:notes-configuration text:note-class="endnote" style:num-format="i" 
text:start-value="0"/>
   <text:linenumbering-configuration text:number-lines="false" 
text:offset="0.499cm" style:num-format="1" text:number-position="left" 
text:increment="5"/>
-  <loext:theme loext:name="Office">
-   <loext:theme-colors loext:name="LibreOffice">
-    <loext:color loext:name="dark1" loext:color="#000000"/>
-    <loext:color loext:name="light1" loext:color="#ffffff"/>
-    <loext:color loext:name="dark2" loext:color="#000000"/>
-    <loext:color loext:name="light2" loext:color="#ffffff"/>
-    <loext:color loext:name="accent1" loext:color="#18a303"/>
-    <loext:color loext:name="accent2" loext:color="#0369a3"/>
-    <loext:color loext:name="accent3" loext:color="#a33e03"/>
-    <loext:color loext:name="accent4" loext:color="#8e03a3"/>
-    <loext:color loext:name="accent5" loext:color="#c99c00"/>
-    <loext:color loext:name="accent6" loext:color="#c9211e"/>
-    <loext:color loext:name="hyperlink" loext:color="#0000ee"/>
-    <loext:color loext:name="followed-hyperlink" loext:color="#551a8b"/>
-   </loext:theme-colors>
-  </loext:theme>
  </office:styles>
  <office:automatic-styles>
   <style:style style:name="Tabelle1" style:family="table">
-   <style:table-properties style:width="26.091cm" table:align="left"/>
+   <style:table-properties style:width="22.677cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle1.A" style:family="table-column">
-   <style:table-column-properties style:column-width="6.761cm"/>
+   <style:table-column-properties style:column-width="5.773cm"/>
   </style:style>
   <style:style style:name="Tabelle1.B" style:family="table-column">
-   <style:table-column-properties style:column-width="6.193cm"/>
+   <style:table-column-properties style:column-width="5.777cm"/>
   </style:style>
   <style:style style:name="Tabelle1.C" style:family="table-column">
-   <style:table-column-properties style:column-width="6.872cm"/>
+   <style:table-column-properties style:column-width="5.126cm"/>
   </style:style>
   <style:style style:name="Tabelle1.D" style:family="table-column">
-   <style:table-column-properties style:column-width="6.265cm"/>
+   <style:table-column-properties style:column-width="6.001cm"/>
   </style:style>
   <style:style style:name="Tabelle1.A1" style:family="table-cell">
    <style:table-cell-properties style:vertical-align="middle" 
fo:padding="0.049cm" fo:border="none"/>
   </style:style>
-  <style:style style:name="Tabelle1.D493" style:family="table-cell">
-   <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
-  </style:style>
   <style:style style:name="Tabelle2" style:family="table">
-   <style:table-properties style:width="18.219cm" table:align="left"/>
+   <style:table-properties style:width="18.528cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle2.A" style:family="table-column">
-   <style:table-column-properties style:column-width="4.286cm"/>
+   <style:table-column-properties style:column-width="4.129cm"/>
   </style:style>
   <style:style style:name="Tabelle2.B" style:family="table-column">
-   <style:table-column-properties style:column-width="4.761cm"/>
+   <style:table-column-properties style:column-width="4.209cm"/>
   </style:style>
   <style:style style:name="Tabelle2.C" style:family="table-column">
-   <style:table-column-properties style:column-width="3.842cm"/>
+   <style:table-column-properties style:column-width="4.817cm"/>
   </style:style>
   <style:style style:name="Tabelle2.D" style:family="table-column">
-   <style:table-column-properties style:column-width="5.33cm"/>
+   <style:table-column-properties style:column-width="5.373cm"/>
   </style:style>
   <style:style style:name="Tabelle2.A1" style:family="table-cell">
    <style:table-cell-properties style:vertical-align="middle" 
fo:padding="0.049cm" fo:border="none"/>
   </style:style>
+  <style:style style:name="Tabelle2.D9" style:family="table-cell">
+   <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
+  </style:style>
   <style:style style:name="Tabelle3" style:family="table">
-   <style:table-properties style:width="17.941cm" table:align="left"/>
+   <style:table-properties style:width="17.999cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle3.A" style:family="table-column">
-   <style:table-column-properties style:column-width="3.852cm"/>
+   <style:table-column-properties style:column-width="3.865cm"/>
   </style:style>
   <style:style style:name="Tabelle3.B" style:family="table-column">
-   <style:table-column-properties style:column-width="3.826cm"/>
+   <style:table-column-properties style:column-width="3.838cm"/>
   </style:style>
   <style:style style:name="Tabelle3.C" style:family="table-column">
    <style:table-column-properties style:column-width="6.193cm"/>
   </style:style>
   <style:style style:name="Tabelle3.D" style:family="table-column">
-   <style:table-column-properties style:column-width="4.069cm"/>
+   <style:table-column-properties style:column-width="4.103cm"/>
   </style:style>
   <style:style style:name="Tabelle3.A1" style:family="table-cell">
    <style:table-cell-properties style:vertical-align="middle" 
fo:padding="0.049cm" fo:border="none"/>
@@ -439,19 +423,16 @@
    <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
   </style:style>
   <style:style style:name="Tabelle4" style:family="table">
-   <style:table-properties style:width="16.907cm" table:align="left"/>
+   <style:table-properties style:width="17.02cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle4.A" style:family="table-column">
-   <style:table-column-properties style:column-width="3.881cm"/>
+   <style:table-column-properties style:column-width="3.918cm"/>
   </style:style>
   <style:style style:name="Tabelle4.B" style:family="table-column">
-   <style:table-column-properties style:column-width="4.867cm"/>
+   <style:table-column-properties style:column-width="4.897cm"/>
   </style:style>
   <style:style style:name="Tabelle4.C" style:family="table-column">
-   <style:table-column-properties style:column-width="4.255cm"/>
-  </style:style>
-  <style:style style:name="Tabelle4.D" style:family="table-column">
-   <style:table-column-properties style:column-width="3.905cm"/>
+   <style:table-column-properties style:column-width="4.288cm"/>
   </style:style>
   <style:style style:name="Tabelle4.A1" style:family="table-cell">
    <style:table-cell-properties style:vertical-align="middle" 
fo:padding="0.049cm" fo:border="none"/>
@@ -460,27 +441,27 @@
    <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
   </style:style>
   <style:style style:name="Tabelle5" style:family="table">
-   <style:table-properties style:width="26.619cm" table:align="left"/>
+   <style:table-properties style:width="22.677cm" table:align="left"/>
   </style:style>
   <style:style style:name="Tabelle5.A" style:family="table-column">
-   <style:table-column-properties style:column-width="5.569cm"/>
+   <style:table-column-properties style:column-width="4.602cm"/>
   </style:style>
   <style:style style:name="Tabelle5.B" style:family="table-column">
-   <style:table-column-properties style:column-width="7.385cm"/>
+   <style:table-column-properties style:column-width="4.897cm"/>
   </style:style>
   <style:style style:name="Tabelle5.C" style:family="table-column">
-   <style:table-column-properties style:column-width="7.4cm"/>
+   <style:table-column-properties style:column-width="7.131cm"/>
   </style:style>
   <style:style style:name="Tabelle5.D" style:family="table-column">
-   <style:table-column-properties style:column-width="6.265cm"/>
+   <style:table-column-properties style:column-width="6.047cm"/>
   </style:style>
   <style:style style:name="Tabelle5.A1" style:family="table-cell">
    <style:table-cell-properties style:vertical-align="middle" 
fo:padding="0.049cm" fo:border="none"/>
   </style:style>
-  <style:style style:name="Tabelle5.D745" style:family="table-cell">
+  <style:style style:name="Tabelle5.D747" style:family="table-cell">
    <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/>
   </style:style>
-  <style:style style:name="P1" style:family="paragraph" 
style:parent-style-name="Heading_20_1" style:master-page-name="HTML">
+  <style:style style:name="P1" style:family="paragraph" 
style:parent-style-name="Heading_20_1" style:master-page-name="">
    <style:paragraph-properties style:page-number="auto"/>
    <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
   </style:style>
@@ -488,22 +469,51 @@
    <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.499cm" 
style:contextual-spacing="false"/>
    <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P3" style:family="paragraph" 
style:parent-style-name="Table_20_Contents">
-   <style:text-properties fo:font-size="2pt" style:font-size-asian="2pt" 
style:font-size-complex="2pt"/>
-  </style:style>
-  <style:style style:name="P4" style:family="paragraph" 
style:parent-style-name="Heading_20_3">
+  <style:style style:name="P3" style:family="paragraph" 
style:parent-style-name="Heading_20_3">
    <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.499cm" 
style:contextual-spacing="false"/>
    <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P5" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1">
+  <style:style style:name="P4" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
+   <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P5" style:family="paragraph" 
style:parent-style-name="Table_20_Contents">
+   <style:text-properties fo:font-size="2pt" style:font-size-asian="2pt" 
style:font-size-complex="2pt"/>
+  </style:style>
+  <style:style style:name="P6" style:family="paragraph" 
style:parent-style-name="Text_20_body">
    <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
   </style:style>
-  <style:style style:name="P6" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
-  <style:style style:name="P7" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
+  <style:style style:name="P7" style:family="paragraph" 
style:parent-style-name="Text_20_body">
+   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false"/>
+  </style:style>
+  <style:style style:name="P8" style:family="paragraph" 
style:parent-style-name="Heading_20_1" style:master-page-name="HTML">
+   <style:paragraph-properties style:page-number="auto"/>
+   <style:text-properties officeooo:paragraph-rsid="00af6e70"/>
+  </style:style>
+  <style:style style:name="P9" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
+   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.499cm" 
style:contextual-spacing="false"/>
+   <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P10" style:family="paragraph" 
style:parent-style-name="Heading_20_2">
    <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
    <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P8" style:family="paragraph" 
style:parent-style-name="Text_20_body">
+  <style:style style:name="P11" style:family="paragraph" 
style:parent-style-name="Heading_20_3">
+   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.499cm" 
style:contextual-spacing="false"/>
+   <style:text-properties style:font-name="Liberation Sans1" 
fo:font-weight="normal" style:font-name-asian="sans-serif" 
style:font-weight-asian="normal" style:font-name-complex="sans-serif" 
style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P12" style:family="paragraph" 
style:parent-style-name="Table_20_Contents">
+   <style:text-properties fo:font-size="2pt" style:font-size-asian="2pt" 
style:font-size-complex="2pt"/>
+  </style:style>
+  <style:style style:name="P13" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
+  <style:style style:name="P14" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L1">
+   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" 
fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" 
fo:text-indent="0cm" style:auto-text-indent="false"/>
+  </style:style>
+  <style:style style:name="P15" style:family="paragraph" 
style:parent-style-name="Text_20_body">
+   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false"/>
+  </style:style>
+  <style:style style:name="P16" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L2"/>
+  <style:style style:name="P17" style:family="paragraph" 
style:parent-style-name="Text_20_body" style:list-style-name="L2">
    <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" 
style:contextual-spacing="false"/>
   </style:style>
   <style:style style:name="T1" style:family="text">
@@ -515,6 +525,7 @@
   <style:style style:name="T3" style:family="text">
    <style:text-properties fo:font-weight="bold"/>
   </style:style>
+  <style:style style:name="T4" style:family="text"/>
   <style:style style:name="fr1" style:family="graphic" 
style:parent-style-name="Graphics">
    <style:graphic-properties style:run-through="foreground" style:wrap="none" 
style:vertical-pos="from-top" style:vertical-rel="page" 
style:horizontal-pos="from-left" style:horizontal-rel="page" 
style:mirror="none" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:luminance="0%" 
draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" 
draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" 
draw:color-mode="standard"/>
   </style:style>
@@ -555,6 +566,38 @@
     <style:list-level-properties text:space-before="12.007cm" 
text:min-label-width="0.499cm"/>
    </text:list-level-style-number>
   </text:list-style>
+  <text:list-style style:name="L2">
+   <text:list-level-style-number text:level="1" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%1%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="0.752cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="2" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%2%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="2.002cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="3" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%3%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="3.253cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="4" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%4%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="4.503cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="5" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%5%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="5.754cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="6" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%6%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="7.005cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="7" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%7%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="8.255cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="8" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%8%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="9.506cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="9" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%9%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="10.756cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+   <text:list-level-style-number text:level="10" 
text:style-name="Bullet_20_Symbols" loext:num-list-format="%10%." 
style:num-suffix="." style:num-format="a">
+    <style:list-level-properties text:space-before="12.007cm" 
text:min-label-width="0.499cm"/>
+   </text:list-level-style-number>
+  </text:list-style>
   <style:page-layout style:name="pm1">
    <style:page-layout-properties fo:page-width="21.001cm" 
fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" 
fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" 
fo:margin-right="2cm" style:writing-mode="lr-tb" 
style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" 
style:layout-grid-base-height="0.706cm" style:layout-grid-ruby-height="0.353cm" 
style:layout-grid-mode="none" style:layout-grid-ruby-below="false" 
style:layout-grid-print="false" style:layout-grid-display="false" 
style:footnote-max-height="0cm" loext:margin-gutter="0cm">
     <style:footnote-sep style:width="0.018cm" 
style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" 
style:line-style="none" style:adjustment="left" style:rel-width="25%" 
style:color="#000000"/>
@@ -861,10 +904,10 @@
     </draw:image>
    </draw:frame>
    <text:section text:style-name="Sect1" text:name="BgContainer">
-    <text:p text:style-name="P1"><text:span 
text:style-name="T1">Credits</text:span></text:p>
-    <text:p text:style-name="Text_20_body">2101 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2025-08-22 13:26:19.</text:p>
+    <text:p text:style-name="P8">Credits</text:p>
+    <text:p text:style-name="Text_20_body">2098 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2025-09-17 21:01:28.</text:p>
     <text:p text:style-name="Text_20_body"><text:span 
text:style-name="T2">*</text:span> marks developers whose first contributions 
happened after 2010-09-28.</text:p>
-    <text:h text:style-name="P2" text:outline-level="2">Developers committing 
code since 2010-09-28</text:h>
+    <text:h text:style-name="Heading_20_2" text:outline-level="2">Developers 
committing code since 2010-09-28</text:h>
     <table:table table:name="Tabelle1" table:style-name="Tabelle1">
      <table:table-column table:style-name="Tabelle1.A"/>
      <table:table-column table:style-name="Tabelle1.B"/>
@@ -875,7 +918,7 @@
        <text:p text:style-name="Table_20_Contents">Ruediger 
Timm<text:line-break/>Commits: 82464<text:line-break/>Joined: 
2000-10-10</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Caolán 
McNamara<text:line-break/>Commits: 36994<text:line-break/>Joined: 
2000-10-10</text:p>
+       <text:p text:style-name="Table_20_Contents">Caolán 
McNamara<text:line-break/>Commits: 37041<text:line-break/>Joined: 
2000-10-10</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Kurt 
Zenker<text:line-break/>Commits: 31752<text:line-break/>Joined: 
2000-09-25</text:p>
@@ -892,15 +935,15 @@
        <text:p text:style-name="Table_20_Contents">Vladimir 
Glazunov<text:line-break/>Commits: 25434<text:line-break/>Joined: 
2000-12-04</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Stephan 
Bergmann<text:line-break/>Commits: 21525<text:line-break/>Joined: 
2000-10-04</text:p>
+       <text:p text:style-name="Table_20_Contents">Stephan 
Bergmann<text:line-break/>Commits: 21600<text:line-break/>Joined: 
2000-10-04</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Noel Grandin<text:line-break/>Commits: 
20266<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-12-12</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Noel Grandin<text:line-break/>Commits: 
20438<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-12-12</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Miklos 
Vajna<text:line-break/>Commits: 10300<text:line-break/>Joined: 
2010-07-29</text:p>
+       <text:p text:style-name="Table_20_Contents">Miklos 
Vajna<text:line-break/>Commits: 10332<text:line-break/>Joined: 
2010-07-29</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Ivo 
Hinkelmann<text:line-break/>Commits: 9480<text:line-break/>Joined: 
2002-09-09</text:p>
@@ -909,12 +952,12 @@
        <text:p text:style-name="Table_20_Contents">Tor 
Lillqvist<text:line-break/>Commits: 9161<text:line-break/>Joined: 
2010-03-23</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Michael 
Stahl<text:line-break/>Commits: 8681<text:line-break/>Joined: 
2008-06-16</text:p>
+       <text:p text:style-name="Table_20_Contents">Michael 
Stahl<text:line-break/>Commits: 8708<text:line-break/>Joined: 
2008-06-16</text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Kohei 
Yoshida<text:line-break/>Commits: 5579<text:line-break/>Joined: 
2009-06-19</text:p>
+       <text:p text:style-name="Table_20_Contents">Kohei 
Yoshida<text:line-break/>Commits: 5584<text:line-break/>Joined: 
2009-06-19</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Eike 
Rathke<text:line-break/>Commits: 5396<text:line-break/>Joined: 
2000-10-11</text:p>
@@ -928,24 +971,24 @@
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andrea Gelmini<text:line-break/>Commits: 
4454<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-10-30</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andrea Gelmini<text:line-break/>Commits: 
4468<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-10-30</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Mike Kaganski<text:line-break/>Commits: 
4382<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-04-26</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Mike Kaganski<text:line-break/>Commits: 
4468<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-04-26</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Julien Nabet<text:line-break/>Commits: 
4003<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-04</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Julien Nabet<text:line-break/>Commits: 
4019<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-04</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Xisco Fauli<text:line-break/>Commits: 
3763<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-02-06</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Xisco Fauli<text:line-break/>Commits: 
3821<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-02-06</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Tomaž Vajngerl<text:line-break/>Commits: 
3706<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-06-02</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Tomaž Vajngerl<text:line-break/>Commits: 
3732<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-06-02</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Michael Weghorn<text:line-break/>Commits: 
3667<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-09-10</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Michael Weghorn<text:line-break/>Commits: 
3729<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-09-10</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">David 
Tardon<text:line-break/>Commits: 3648<text:line-break/>Joined: 
2009-11-12</text:p>
@@ -962,7 +1005,7 @@
        <text:p text:style-name="Table_20_Contents">Ocke Janssen 
[oj]<text:line-break/>Commits: 2850<text:line-break/>Joined: 2000-09-20</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Oliver 
Specht<text:line-break/>Commits: 2697<text:line-break/>Joined: 
2000-09-21</text:p>
+       <text:p text:style-name="Table_20_Contents">Oliver 
Specht<text:line-break/>Commits: 2698<text:line-break/>Joined: 
2000-09-21</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Jan 
Holesovsky<text:line-break/>Commits: 2673<text:line-break/>Joined: 
2009-06-23</text:p>
@@ -979,7 +1022,7 @@
        <text:p text:style-name="Table_20_Contents">Bjoern 
Michaelsen<text:line-break/>Commits: 2510<text:line-break/>Joined: 
2009-10-14</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Olivier Hallot<text:line-break/>Commits: 
2458<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-25</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Olivier Hallot<text:line-break/>Commits: 
2477<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-25</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -993,7 +1036,7 @@
        <text:p text:style-name="Table_20_Contents">Philipp Lohmann 
[pl]<text:line-break/>Commits: 2089<text:line-break/>Joined: 2000-09-21</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andras Timar<text:line-break/>Commits: 
2074<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-02</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andras Timar<text:line-break/>Commits: 
2078<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-02</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1001,44 +1044,47 @@
        <text:p text:style-name="Table_20_Contents">Christian 
Lippka<text:line-break/>Commits: 1805<text:line-break/>Joined: 
2000-09-25</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Armin Le Grand 
(Collabora)<text:line-break/>Commits: 1787<text:line-break/>Joined: 
2000-09-25</text:p>
+       <text:p text:style-name="Table_20_Contents">Armin Le Grand 
(Collabora)<text:line-break/>Commits: 1788<text:line-break/>Joined: 
2000-09-22</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Matúš Kukan<text:line-break/>Commits: 
1712<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-04-06</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Christopher 
Sherlock<text:line-break/>Commits: 1594<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-02-25</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Christopher 
Sherlock<text:line-break/>Commits: 1613<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-02-25</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Takeshi Abe<text:line-break/>Commits: 
1486<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-08</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Thorsten 
Behrens<text:line-break/>Commits: 1535<text:line-break/>Joined: 
2001-04-25</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Matteo Casalin<text:line-break/>Commits: 
1476<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-11-13</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Takeshi Abe<text:line-break/>Commits: 
1486<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-08</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Thorsten 
Behrens<text:line-break/>Commits: 1442<text:line-break/>Joined: 
2001-04-25</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Matteo Casalin<text:line-break/>Commits: 
1476<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-11-13</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Christian 
Lohmaier<text:line-break/>Commits: 1437<text:line-break/>Joined: 
2008-06-01</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 
1459<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-06-18</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Samuel Mehrbrodt<text:line-break/>Commits: 
1350<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-06-08</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Christian 
Lohmaier<text:line-break/>Commits: 1442<text:line-break/>Joined: 
2008-06-01</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Fridrich 
Štrba<text:line-break/>Commits: 1340<text:line-break/>Joined: 
2007-02-22</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Samuel Mehrbrodt<text:line-break/>Commits: 
1357<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-06-08</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Szymon Kłos<text:line-break/>Commits: 
1327<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-03-22</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Fridrich 
Štrba<text:line-break/>Commits: 1340<text:line-break/>Joined: 
2007-02-22</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Thomas Lange 
[tl]<text:line-break/>Commits: 1310<text:line-break/>Joined: 2000-09-22</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Szymon Kłos<text:line-break/>Commits: 
1328<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-03-22</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
+      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
+       <text:p text:style-name="Table_20_Contents">Thomas Lange 
[tl]<text:line-break/>Commits: 1310<text:line-break/>Joined: 2000-09-22</text:p>
+      </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Niklas 
Nebel<text:line-break/>Commits: 1296<text:line-break/>Joined: 
2000-09-19</text:p>
       </table:table-cell>
@@ -1048,22 +1094,19 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>andreas kainz<text:line-break/>Commits: 
1228<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-03-18</text:span></text:p>
       </table:table-cell>
-      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Tamás Zolnai<text:line-break/>Commits: 
1208<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-08-06</text:span></text:p>
-      </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Daniel Rentz 
[dr]<text:line-break/>Commits: 1206<text:line-break/>Joined: 2000-09-28</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Tamás Zolnai<text:line-break/>Commits: 
1208<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-08-06</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 
1163<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-06-18</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Daniel Rentz 
[dr]<text:line-break/>Commits: 1206<text:line-break/>Joined: 2000-09-28</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Lionel Elie Mamane<text:line-break/>Commits: 
1051<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-15</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>László Németh<text:line-break/>Commits: 
1013<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-09-29</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>László Németh<text:line-break/>Commits: 
1020<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-09-29</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1077,7 +1120,7 @@
        <text:p text:style-name="Table_20_Contents">Noel 
Power<text:line-break/>Commits: 950<text:line-break/>Joined: 2002-09-24</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Khaled Hosny<text:line-break/>Commits: 
931<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-28</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Khaled Hosny<text:line-break/>Commits: 
933<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-28</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
@@ -1137,6 +1180,9 @@
       </table:table-cell>
      </table:table-row>
      <table:table-row>
+      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jim Raykowski<text:line-break/>Commits: 
680<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-04-16</text:span></text:p>
+      </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Justin Luth<text:line-break/>Commits: 
679<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-04-21</text:span></text:p>
       </table:table-cell>
@@ -1146,9 +1192,6 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Rizal Muttaqin<text:line-break/>Commits: 
672<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-05-21</text:span></text:p>
       </table:table-cell>
-      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jim Raykowski<text:line-break/>Commits: 
671<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-04-16</text:span></text:p>
-      </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
@@ -1161,12 +1204,12 @@
        <text:p text:style-name="Table_20_Contents">Kai 
Sommerfeld<text:line-break/>Commits: 651<text:line-break/>Joined: 
2000-10-10</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Ingrid 
Halama<text:line-break/>Commits: 639<text:line-break/>Joined: 
2001-01-19</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 
646<text:line-break/>Joined: <text:span 
text:style-name="T3">2016-10-06</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 
633<text:line-break/>Joined: <text:span 
text:style-name="T3">2016-10-06</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Ingrid 
Halama<text:line-break/>Commits: 639<text:line-break/>Joined: 
2001-01-19</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Justin Luth<text:line-break/>Commits: 
626<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-09-30</text:span></text:p>
@@ -1180,7 +1223,7 @@
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Rene 
Engelhard<text:line-break/>Commits: 601<text:line-break/>Joined: 
2005-03-14</text:p>
+       <text:p text:style-name="Table_20_Contents">Rene 
Engelhard<text:line-break/>Commits: 605<text:line-break/>Joined: 
2005-03-14</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Adolfo Jayme 
Barrientos<text:line-break/>Commits: 590<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-06-21</text:span></text:p>
@@ -1211,16 +1254,19 @@
        <text:p text:style-name="Table_20_Contents">Andreas 
Bregas<text:line-break/>Commits: 470<text:line-break/>Joined: 
2000-09-25</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jean-Pierre Ledure<text:line-break/>Commits: 
439<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-10-12</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 
467<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-07-05</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Ashod Nakashian<text:line-break/>Commits: 
404<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-01-07</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jean-Pierre Ledure<text:line-break/>Commits: 
445<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-10-12</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Henry Castro<text:line-break/>Commits: 
400<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-01-09</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Ashod Nakashian<text:line-break/>Commits: 
405<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-01-07</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
+      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Henry Castro<text:line-break/>Commits: 
403<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-01-09</text:span></text:p>
+      </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Marco Cecchetti<text:line-break/>Commits: 
399<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-04-14</text:span></text:p>
       </table:table-cell>
@@ -1230,112 +1276,106 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Dirk 
Voelzke<text:line-break/>Commits: 392<text:line-break/>Joined: 
2000-11-27</text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Laurent BP<text:line-break/>Commits: 
389<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-08-31</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Bogdan Buzea<text:line-break/>Commits: 
384<text:line-break/>Joined: <text:span 
text:style-name="T3">2022-11-01</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Bogdan Buzea<text:line-break/>Commits: 
386<text:line-break/>Joined: <text:span 
text:style-name="T3">2022-11-01</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Arnaud VERSINI<text:line-break/>Commits: 
382<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-05</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Arnaud VERSINI<text:line-break/>Commits: 
383<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-05</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Ivan Timofeev<text:line-break/>Commits: 
380<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-09-16</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
+      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Justin Luth<text:line-break/>Commits: 
377<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-02-03</text:span></text:p>
+      </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Oliver-Rainer 
Wittmann<text:line-break/>Commits: 372<text:line-break/>Joined: 
2002-08-09</text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Martin 
Hollmichel<text:line-break/>Commits: 371<text:line-break/>Joined: 
2000-09-19</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Muhammet Kara<text:line-break/>Commits: 
367<text:line-break/>Joined: <text:span 
text:style-name="T3">2016-03-20</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Pranav Kant<text:line-break/>Commits: 
366<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-03-01</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Matthias Huetsch 
[mhu]<text:line-break/>Commits: 360<text:line-break/>Joined: 2000-09-28</text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
-      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Justin Luth<text:line-break/>Commits: 
346<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-02-03</text:span></text:p>
-      </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Patrick 
Luby<text:line-break/>Commits: 335<text:line-break/>Joined: 2000-09-21</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>David Ostrovsky<text:line-break/>Commits: 
334<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-04-01</text:span></text:p>
       </table:table-cell>
-      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Stanislav Horacek<text:line-break/>Commits: 
333<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-12-09</text:span></text:p>
-      </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andreas Heinisch<text:line-break/>Commits: 
325<text:line-break/>Joined: <text:span 
text:style-name="T3">2019-05-13</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Andreas Heinisch<text:line-break/>Commits: 
334<text:line-break/>Joined: <text:span 
text:style-name="T3">2019-05-13</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Radek 
Doulik<text:line-break/>Commits: 305<text:line-break/>Joined: 
2010-05-03</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Stanislav Horacek<text:line-break/>Commits: 
333<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-12-09</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Mark Hung<text:line-break/>Commits: 
305<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-11-04</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Radek 
Doulik<text:line-break/>Commits: 305<text:line-break/>Joined: 
2010-05-03</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Chr. Rossmanith<text:line-break/>Commits: 
300<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-03</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Mark Hung<text:line-break/>Commits: 
305<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-11-04</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Regina Henschel<text:line-break/>Commits: 
296<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-04</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Chr. Rossmanith<text:line-break/>Commits: 
300<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-03</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 
286<text:line-break/>Joined: <text:span 
text:style-name="T3">2022-06-29</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Regina Henschel<text:line-break/>Commits: 
299<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-04</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>August Sodora<text:line-break/>Commits: 
285<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-10-18</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Vasily Melenchuk<text:line-break/>Commits: 
278<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-01-27</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Ilmari Lauhakangas<text:line-break/>Commits: 
281<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-04-15</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Siqi Liu<text:line-break/>Commits: 
277<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-04-13</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Vasily Melenchuk<text:line-break/>Commits: 
278<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-01-27</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Ilmari Lauhakangas<text:line-break/>Commits: 
277<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-04-15</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Siqi Liu<text:line-break/>Commits: 
277<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-04-13</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Pierre-André 
Jacquod<text:line-break/>Commits: 276<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-11-13</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Bartosz 
Kosiorek<text:line-break/>Commits: 268<text:line-break/>Joined: 
2010-09-17</text:p>
+       <text:p text:style-name="Table_20_Contents">Bartosz 
Kosiorek<text:line-break/>Commits: 271<text:line-break/>Joined: 
2010-09-17</text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Lars 
Langhans<text:line-break/>Commits: 260<text:line-break/>Joined: 
2000-09-22</text:p>
       </table:table-cell>
-      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 
254<text:line-break/>Joined: <text:span 
text:style-name="T3">2023-02-14</text:span></text:p>
-      </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Muthu 
Subramanian<text:line-break/>Commits: 250<text:line-break/>Joined: 
2010-08-25</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Robert Antoni Buj 
Gelonch<text:line-break/>Commits: 247<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-06-11</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Winfried Donkers<text:line-break/>Commits: 
217<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-11-11</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Dennis Francis<text:line-break/>Commits: 
206<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-11-15</text:span></text:p>
       </table:table-cell>
@@ -1345,11 +1385,11 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Ingo 
Schmidt<text:line-break/>Commits: 202<text:line-break/>Joined: 
2004-02-05</text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Arkadiy Illarionov<text:line-break/>Commits: 
201<text:line-break/>Joined: <text:span 
text:style-name="T3">2017-01-15</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jacobo Aragunde 
Pérez<text:line-break/>Commits: 192<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-09-25</text:span></text:p>
       </table:table-cell>
@@ -1359,11 +1399,11 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Marcos Paulo de 
Souza<text:line-break/>Commits: 191<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-09-26</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Giuseppe 
Castagno<text:line-break/>Commits: 187<text:line-break/>Joined: 
2007-12-09</text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Gülşah Köse<text:line-break/>Commits: 
183<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-03-14</text:span></text:p>
       </table:table-cell>
@@ -1373,39 +1413,39 @@
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>François Tigeot<text:line-break/>Commits: 
176<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-01-31</text:span></text:p>
       </table:table-cell>
+      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Pranam Lashkari<text:line-break/>Commits: 
174<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-04-03</text:span></text:p>
+      </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Tibor Nagy<text:line-break/>Commits: 
172<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-04-01</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Nagy Tibor<text:line-break/>Commits: 
173<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-04-01</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Philipp Riemer<text:line-break/>Commits: 
171<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-05-25</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Pranam Lashkari<text:line-break/>Commits: 
168<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-04-03</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Hossein<text:line-break/>Commits: 
171<text:line-break/>Joined: <text:span 
text:style-name="T3">2021-06-29</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Hossein<text:line-break/>Commits: 
167<text:line-break/>Joined: <text:span 
text:style-name="T3">2021-06-29</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Nigel Hawkins<text:line-break/>Commits: 
160<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-28</text:span></text:p>
       </table:table-cell>
      </table:table-row>
      <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 
165<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-07-05</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Aron Budea<text:line-break/>Commits: 
153<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-12-22</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Nigel Hawkins<text:line-break/>Commits: 
160<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-28</text:span></text:p>
-      </table:table-cell>
-      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Aron Budea<text:line-break/>Commits: 
152<text:line-break/>Joined: <text:span 
text:style-name="T3">2014-12-22</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Patrick Luby<text:line-break/>Commits: 
152<text:line-break/>Joined: <text:span 
text:style-name="T3">2024-02-11</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Gert Faller<text:line-break/>Commits: 
151<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-25</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Artur Dorda<text:line-break/>Commits: 
151<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-04-15</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Alexander Wilms<text:line-break/>Commits: 
151<text:line-break/>Joined: <text:span 
text:style-name="T3">2012-05-26</text:span></text:p>
       </table:table-cell>
@@ -1413,83 +1453,83 @@
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Sarper Akdemir<text:line-break/>Commits: 
150<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-01-26</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Patrick Luby<text:line-break/>Commits: 
147<text:line-break/>Joined: <text:span 
text:style-name="T3">2024-02-11</text:span></text:p>
-      </table:table-cell>
-     </table:table-row>
-     <table:table-row>
-      <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Gregor 
Hartmann&lt;gh<text:line-break/>Commits: 141<text:line-break/>Joined: 
2000-10-12</text:p>
+       <text:p text:style-name="Table_20_Contents">Gregor 
Hartmann<text:line-break/>Commits: 141<text:line-break/>Joined: 
2000-10-12</text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Matthias Freund<text:line-break/>Commits: 
141<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-02-08</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Tomáš Chvátal<text:line-break/>Commits: 
140<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-07-27</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Alain Romedenne<text:line-break/>Commits: 
138<text:line-break/>Joined: <text:span 
text:style-name="T3">2021-02-17</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Artur Dryomov<text:line-break/>Commits: 
137<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-03-14</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Sophia Schroeder<text:line-break/>Commits: 
135<text:line-break/>Joined: <text:span 
text:style-name="T3">2018-04-07</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Serge Krot<text:line-break/>Commits: 
132<text:line-break/>Joined: <text:span 
text:style-name="T3">2015-10-25</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Mert Tumer<text:line-break/>Commits: 
132<text:line-break/>Joined: <text:span 
text:style-name="T3">2016-04-30</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Dante DM<text:line-break/>Commits: 
132<text:line-break/>Joined: <text:span 
text:style-name="T3">2020-06-22</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>panoskorovesis<text:line-break/>Commits: 
131<text:line-break/>Joined: <text:span 
text:style-name="T3">2021-06-09</text:span></text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jesús Corrius<text:line-break/>Commits: 
130<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-10-07</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Philipp 
Weissenbacher<text:line-break/>Commits: 129<text:line-break/>Joined: <text:span 
text:style-name="T3">2011-10-28</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Taichi Haradaguchi<text:line-break/>Commits: 
128<text:line-break/>Joined: <text:span 
text:style-name="T3">2022-09-06</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Taichi Haradaguchi<text:line-break/>Commits: 
129<text:line-break/>Joined: <text:span 
text:style-name="T3">2022-09-06</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents">Helge Delfs 
[hde]<text:line-break/>Commits: 126<text:line-break/>Joined: 2009-07-28</text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Ariel 
Constenla-Haile<text:line-break/>Commits: 126<text:line-break/>Joined: 
<text:span text:style-name="T3">2012-01-16</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>haochen<text:line-break/>Commits: 
126<text:line-break/>Joined: <text:span 
text:style-name="T3">2013-10-10</text:span></text:p>
       </table:table-cell>
-     </table:table-row>
-     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents">Takashi 
Ono<text:line-break/>Commits: 122<text:line-break/>Joined: 2009-12-10</text:p>
+       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jonathan Clark<text:line-break/>Commits: 
126<text:line-break/>Joined: <text:span 
text:style-name="T3">2024-04-12</text:span></text:p>
       </table:table-cell>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
-       <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Jonathan Clark<text:line-break/>Commits: 
122<text:line-break/>Joined: <text:span 
text:style-name="T3">2024-04-12</text:span></text:p>
+       <text:p text:style-name="Table_20_Contents">Takashi 
Ono<text:line-break/>Commits: 122<text:line-break/>Joined: 2009-12-10</text:p>
       </table:table-cell>
+     </table:table-row>
+     <table:table-row>
       <table:table-cell table:style-name="Tabelle1.A1" 
office:value-type="string">
        <text:p text:style-name="Table_20_Contents"><text:span 
text:style-name="T2">*</text:span>Sebastian Spaeth<text:line-break/>Commits: 
119<text:line-break/>Joined: <text:span 
text:style-name="T3">2010-09-28</text:span></text:p>
       </table:table-cell>
-e 
... etc. - the rest is truncated

Reply via email to