[Libreoffice-commits] core.git: 2 commits - chart2/CppunitTest_chart2_xshape.mk chart2/Module_chart2.mk chart2/qa config_host.mk.in configure.ac test/source

Markus Mohrhard markus.mohrhard at collabora.co.uk
Wed Apr 2 16:13:41 PDT 2014


 chart2/CppunitTest_chart2_xshape.mk                 |  130 +
 chart2/Module_chart2.mk                             |    7 
 chart2/qa/extras/xshape/chart2xshape.cxx            |   86 +
 chart2/qa/extras/xshape/data/ods/fdo75075.ods       |binary
 chart2/qa/extras/xshape/data/reference/fdo75075.xml | 1690 ++++++++++++++++++++
 config_host.mk.in                                   |    1 
 configure.ac                                        |   17 
 test/source/diff/diff.cxx                           |    9 
 8 files changed, 1937 insertions(+), 3 deletions(-)

New commits:
commit d8ae59e097b3fca29f071d1a792cdb98ad8139cf
Author: Markus Mohrhard <markus.mohrhard at collabora.co.uk>
Date:   Thu Apr 3 01:05:29 2014 +0200

    add concept for chart xshape tests
    
    will be run on a tinderbox for now that will be the reference for
    anything related to it
    
    Change-Id: Ib795b53f74e9207d0272342f12d426bbc21164b4

diff --git a/chart2/CppunitTest_chart2_xshape.mk b/chart2/CppunitTest_chart2_xshape.mk
new file mode 100644
index 0000000..f2b3c15
--- /dev/null
+++ b/chart2/CppunitTest_chart2_xshape.mk
@@ -0,0 +1,130 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*************************************************************************
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*************************************************************************
+
+$(eval $(call gb_CppunitTest_CppunitTest,chart2_xshape))
+
+$(eval $(call gb_CppunitTest_use_externals,chart2_xshape, \
+	boost_headers \
+	libxml2 \
+))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,chart2_xshape, \
+    chart2/qa/extras/xshape/chart2xshape \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,chart2_xshape, \
+    avmedia \
+    basegfx \
+    comphelper \
+    cppu \
+    cppuhelper \
+    drawinglayer \
+    editeng \
+    for \
+    forui \
+    i18nlangtag \
+    msfilter \
+    vcl \
+    oox \
+    sal \
+    salhelper \
+    sax \
+    sb \
+    sc \
+    sw \
+    sd \
+    sfx \
+    sot \
+    svl \
+    svt \
+    svx \
+    svxcore \
+    test \
+    tl \
+    tk \
+    ucbhelper \
+    unotest \
+    utl \
+    vbahelper \
+    xo \
+    sw \
+    $(gb_UWINAPI) \
+))
+
+$(eval $(call gb_CppunitTest_set_include,chart2_xshape,\
+	-I$(SRCDIR)/chart2/qa/extras \
+    $$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,chart2_xshape,\
+    offapi \
+    udkapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,chart2_xshape))
+
+$(eval $(call gb_CppunitTest_use_components,chart2_xshape,\
+    basic/util/sb \
+    animations/source/animcore/animcore \
+    chart2/source/controller/chartcontroller \
+    chart2/source/chartcore \
+    comphelper/util/comphelp \
+    configmgr/source/configmgr \
+    dtrans/util/mcnttype \
+    embeddedobj/util/embobj \
+    eventattacher/source/evtatt \
+    filter/source/config/cache/filterconfig1 \
+    forms/util/frm \
+    framework/util/fwk \
+    i18npool/util/i18npool \
+    linguistic/source/lng \
+    oox/util/oox \
+    package/source/xstor/xstor \
+    package/util/package2 \
+    sax/source/expatwrap/expwrap \
+    sc/util/sc \
+    sc/util/scd \
+    sc/util/scfilt \
+    sw/util/sw \
+    sw/util/swd \
+    sw/util/msword \
+    sd/util/sd \
+    sd/util/sdfilt \
+    sd/util/sdd \
+    $(if $(filter TRUE,$(DISABLE_SCRIPTING)),, \
+	    sc/util/vbaobj) \
+    scaddins/source/analysis/analysis \
+    scaddins/source/datefunc/date \
+    scripting/source/basprov/basprov \
+    scripting/util/scriptframe \
+    sfx2/util/sfx \
+    sot/util/sot \
+    svl/source/fsstor/fsstorage \
+    svl/util/svl \
+    svtools/util/svt \
+    svx/util/svx \
+    svx/util/svxcore \
+    toolkit/util/tk \
+    ucb/source/core/ucb1 \
+    ucb/source/ucp/file/ucpfile1 \
+    ucb/source/ucp/tdoc/ucptdoc1 \
+    unotools/util/utl \
+    unoxml/source/rdf/unordf \
+    unoxml/source/service/unoxml \
+    writerfilter/util/writerfilter \
+    xmloff/util/xo \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,chart2_xshape))
+
+$(eval $(call gb_CppunitTest_use_unittest_configuration,chart2_xshape))
+
+# vim: set noet sw=4 ts=4:
diff --git a/chart2/Module_chart2.mk b/chart2/Module_chart2.mk
index 611e699..dba9506 100644
--- a/chart2/Module_chart2.mk
+++ b/chart2/Module_chart2.mk
@@ -28,6 +28,13 @@ $(eval $(call gb_Module_add_slowcheck_targets,chart2,\
     CppunitTest_chart2_import \
 ))
 
+ifeq ($(ENABLE_CHART_TESTS),TRUE)
+$(eval $(call gb_Module_add_slowcheck_targets,chart2,\
+    CppunitTest_chart2_xshape \
+))
+
+endif
+
 $(eval $(call gb_Module_add_subsequentcheck_targets,chart2,\
     JunitTest_chart2_unoapi \
 ))
diff --git a/chart2/qa/extras/xshape/chart2xshape.cxx b/chart2/qa/extras/xshape/chart2xshape.cxx
new file mode 100644
index 0000000..ba100a6
--- /dev/null
+++ b/chart2/qa/extras/xshape/chart2xshape.cxx
@@ -0,0 +1,86 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include "charttest.hxx"
+#include <com/sun/star/style/XStyleFamiliesSupplier.hpp>
+#include <com/sun/star/chart2/CurveStyle.hpp>
+#include <com/sun/star/chart/ErrorBarStyle.hpp>
+#include <com/sun/star/chart2/XChartDocument.hpp>
+#include <com/sun/star/chart/XChartDocument.hpp>
+#include <com/sun/star/chart/XChartData.hpp>
+#include <com/sun/star/chart2/XInternalDataProvider.hpp>
+#include <com/sun/star/chart/XChartDataArray.hpp>
+
+#include <com/sun/star/qa/XDumper.hpp>
+
+#include <test/xmldiff.hxx>
+
+#include <fstream>
+
+class Chart2XShapeTest : public ChartTest
+{
+public:
+
+    void testFdo75075();
+
+    CPPUNIT_TEST_SUITE(Chart2XShapeTest);
+    CPPUNIT_TEST(testFdo75075);
+    CPPUNIT_TEST_SUITE_END();
+
+private:
+
+    void compareAgainstReference(const OUString& rReferenceFile, bool bCreateReference = false);
+
+};
+
+namespace {
+
+bool checkDumpAgainstFile( const OUString& rDump, const OUString aFilePath)
+{
+    OString aOFile = OUStringToOString(aFilePath, RTL_TEXTENCODING_UTF8);
+
+    CPPUNIT_ASSERT_MESSAGE("dump is empty", !rDump.isEmpty());
+
+    OString aDump = OUStringToOString(rDump, RTL_TEXTENCODING_UTF8);
+    return doXMLDiff(aOFile.getStr(), aDump.getStr(),
+            static_cast<int>(rDump.getLength()), NULL);
+}
+
+}
+
+void Chart2XShapeTest::compareAgainstReference(const OUString& rReferenceFile, bool bCreateReference)
+{
+    uno::Reference< chart::XChartDocument > xChartDoc ( getChartCompFromSheet( 0, mxComponent ), UNO_QUERY_THROW);
+    uno::Reference< qa::XDumper > xDumper( xChartDoc, UNO_QUERY_THROW );
+    OUString aDump = xDumper->dump();
+    OUString aReference = getPathFromSrc("/chart2/qa/extras/xshape/data/reference/") + rReferenceFile;
+    if(bCreateReference)
+    {
+        OString aOFile = OUStringToOString(aReference, RTL_TEXTENCODING_UTF8);
+        OString aODump = OUStringToOString(aDump, RTL_TEXTENCODING_UTF8);
+        std::ofstream aReferenceFile(aOFile.getStr());
+        aReferenceFile << aODump.getStr();
+    }
+    else
+    {
+        checkDumpAgainstFile(aDump, aReference);
+    }
+}
+
+void Chart2XShapeTest::testFdo75075()
+{
+    load("chart2/qa/extras/xshape/data/ods/", "fdo75075.ods");
+    compareAgainstReference("fdo75075.xml");
+}
+
+CPPUNIT_TEST_SUITE_REGISTRATION(Chart2XShapeTest);
+
+CPPUNIT_PLUGIN_IMPLEMENT();
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/chart2/qa/extras/xshape/data/ods/fdo75075.ods b/chart2/qa/extras/xshape/data/ods/fdo75075.ods
new file mode 100644
index 0000000..d2a1be4
Binary files /dev/null and b/chart2/qa/extras/xshape/data/ods/fdo75075.ods differ
diff --git a/chart2/qa/extras/xshape/data/reference/fdo75075.xml b/chart2/qa/extras/xshape/data/reference/fdo75075.xml
new file mode 100644
index 0000000..3857248
--- /dev/null
+++ b/chart2/qa/extras/xshape/data/reference/fdo75075.xml
@@ -0,0 +1,1690 @@
+<?xml version="1.0"?>
+<XShapes>
+ <XShape positionX="0" positionY="0" sizeX="16000" sizeY="9000" type="com.sun.star.drawing.RectangleShape" name="CID/Page=" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+  <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+  <FillBitmap/>
+  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+  <LineStart/>
+  <LineEnd/>
+  <Transformation>
+   <Line1 column1="16001.000000" column2="0.000000" column3="0.000000"/>
+   <Line2 column1="0.000000" column2="9001.000000" column3="0.000000"/>
+   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+  </Transformation>
+ </XShape>
+ <XShape positionX="770" positionY="855" sizeX="12108" sizeY="7545" type="com.sun.star.drawing.GroupShape" name="CID/D=0">
+  <XShapes>
+   <XShape positionX="1947" positionY="1055" sizeX="9647" sizeY="6698" type="com.sun.star.drawing.RectangleShape" name="MarkHandles" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
+    <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+    <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+    <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+    <FillBitmap/>
+    <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+    <LineStart/>
+    <LineEnd/>
+    <Transformation>
+     <Line1 column1="9648.000000" column2="0.000000" column3="1947.000000"/>
+     <Line2 column1="0.000000" column2="6699.000000" column3="1055.000000"/>
+     <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+    </Transformation>
+   </XShape>
+   <XShape positionX="770" positionY="855" sizeX="12108" sizeY="7545" type="com.sun.star.drawing.RectangleShape" name="PlotAreaIncludingAxes" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
+    <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+    <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+    <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+    <FillBitmap/>
+    <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+    <LineStart/>
+    <LineEnd/>
+    <Transformation>
+     <Line1 column1="12109.000000" column2="0.000000" column3="770.000000"/>
+     <Line2 column1="0.000000" column2="7546.000000" column3="855.000000"/>
+     <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+    </Transformation>
+   </XShape>
+   <XShape positionX="770" positionY="855" sizeX="12108" sizeY="7545" type="com.sun.star.drawing.GroupShape">
+    <XShapes>
+     <XShape positionX="1797" positionY="1053" sizeX="9947" sizeY="6849" type="com.sun.star.drawing.GroupShape">
+      <XShapes>
+       <XShape positionX="1947" positionY="1055" sizeX="9647" sizeY="6698" type="com.sun.star.drawing.GroupShape" name="PlotAreaExcludingAxes">
+        <XShapes>
+         <XShape positionX="1947" positionY="1055" sizeX="9647" sizeY="6698" type="com.sun.star.drawing.RectangleShape" name="CID/DiagramWall=" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="e6e6e6" fillTransparence="0" fillTransparenceGradientName="">
+          <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+          <FillBitmap/>
+          <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+          <LineStart/>
+          <LineEnd/>
+          <Transformation>
+           <Line1 column1="9648.000000" column2="0.000000" column3="1947.000000"/>
+           <Line2 column1="0.000000" column2="6699.000000" column3="1055.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+        </XShapes>
+        <Transformation>
+         <Line1 column1="9648.000000" column2="0.000000" column3="1947.000000"/>
+         <Line2 column1="0.000000" column2="6699.000000" column3="1055.000000"/>
+         <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+        </Transformation>
+       </XShape>
+       <XShape positionX="1797" positionY="1053" sizeX="9947" sizeY="6849" type="com.sun.star.drawing.GroupShape" name="testonly;CooContainer=XXX_CID">
+        <XShapes>
+         <XShape positionX="1947" positionY="1054" sizeX="9647" sizeY="6698" type="com.sun.star.drawing.GroupShape">
+          <XShapes>
+           <XShape positionX="1947" positionY="1054" sizeX="9647" sizeY="6698" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:Axis=1,0:Grid=0">
+            <XShapes>
+             <XShape positionX="1947" positionY="1054" sizeX="9647" sizeY="6698" type="com.sun.star.drawing.PolyLineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="11594" positionY="7752"/>
+                <point positionX="1947" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="6914"/>
+                <point positionX="1947" positionY="6914"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="6077"/>
+                <point positionX="1947" positionY="6077"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="5240"/>
+                <point positionX="1947" positionY="5240"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="4403"/>
+                <point positionX="1947" positionY="4403"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="3565"/>
+                <point positionX="1947" positionY="3565"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="2728"/>
+                <point positionX="1947" positionY="2728"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="1891"/>
+                <point positionX="1947" positionY="1891"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="1054"/>
+                <point positionX="1947" positionY="1054"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="9647" positionY="6698"/>
+                <point positionX="0" positionY="6698"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="5860"/>
+                <point positionX="0" positionY="5860"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="5023"/>
+                <point positionX="0" positionY="5023"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="4186"/>
+                <point positionX="0" positionY="4186"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="3349"/>
+                <point positionX="0" positionY="3349"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="2511"/>
+                <point positionX="0" positionY="2511"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="1674"/>
+                <point positionX="0" positionY="1674"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="837"/>
+                <point positionX="0" positionY="837"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="9647.000000" column2="0.000000" column3="1947.000000"/>
+               <Line2 column1="0.000000" column2="6698.000000" column3="1054.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="1947" positionY="1054" sizeX="0" sizeY="6698" type="com.sun.star.drawing.PolyLineShape" name="HandlesOnly" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="NONE">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="1947" positionY="7752"/>
+                <point positionX="1947" positionY="6914"/>
+                <point positionX="1947" positionY="6077"/>
+                <point positionX="1947" positionY="5240"/>
+                <point positionX="1947" positionY="4403"/>
+                <point positionX="1947" positionY="3565"/>
+                <point positionX="1947" positionY="2728"/>
+                <point positionX="1947" positionY="1891"/>
+                <point positionX="1947" positionY="1054"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="6698"/>
+                <point positionX="0" positionY="5860"/>
+                <point positionX="0" positionY="5023"/>
+                <point positionX="0" positionY="4186"/>
+                <point positionX="0" positionY="3349"/>
+                <point positionX="0" positionY="2511"/>
+                <point positionX="0" positionY="1674"/>
+                <point positionX="0" positionY="837"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="0.000000" column2="0.000000" column3="1947.000000"/>
+               <Line2 column1="0.000000" column2="6698.000000" column3="1054.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+            </XShapes>
+            <Transformation>
+             <Line1 column1="9648.000000" column2="0.000000" column3="1947.000000"/>
+             <Line2 column1="0.000000" column2="6699.000000" column3="1054.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+          </XShapes>
+          <Transformation>
+           <Line1 column1="9648.000000" column2="0.000000" column3="1947.000000"/>
+           <Line2 column1="0.000000" column2="6699.000000" column3="1054.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="1797" positionY="1053" sizeX="9947" sizeY="6849" type="com.sun.star.drawing.GroupShape">
+          <XShapes>
+           <XShape positionX="1947" positionY="7752" sizeX="9647" sizeY="150" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:Axis=0,0">
+            <XShapes>
+             <XShape positionX="1947" positionY="7752" sizeX="9647" sizeY="150" type="com.sun.star.drawing.PolyLineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="1947" positionY="7902"/>
+                <point positionX="1947" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1947" positionY="7902"/>
+                <point positionX="1947" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="3876" positionY="7902"/>
+                <point positionX="3876" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="3876" positionY="7902"/>
+                <point positionX="3876" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="5805" positionY="7902"/>
+                <point positionX="5805" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="5805" positionY="7902"/>
+                <point positionX="5805" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="7735" positionY="7902"/>
+                <point positionX="7735" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="7735" positionY="7902"/>
+                <point positionX="7735" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9664" positionY="7902"/>
+                <point positionX="9664" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9664" positionY="7902"/>
+                <point positionX="9664" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="7902"/>
+                <point positionX="11594" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11594" positionY="7902"/>
+                <point positionX="11594" positionY="7752"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="150"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="150"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1929" positionY="150"/>
+                <point positionX="1929" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1929" positionY="150"/>
+                <point positionX="1929" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="3858" positionY="150"/>
+                <point positionX="3858" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="3858" positionY="150"/>
+                <point positionX="3858" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="5788" positionY="150"/>
+                <point positionX="5788" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="5788" positionY="150"/>
+                <point positionX="5788" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="7717" positionY="150"/>
+                <point positionX="7717" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="7717" positionY="150"/>
+                <point positionX="7717" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="150"/>
+                <point positionX="9647" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="9647" positionY="150"/>
+                <point positionX="9647" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="9647.000000" column2="0.000000" column3="1947.000000"/>
+               <Line2 column1="0.000000" column2="150.000000" column3="7752.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="1947" positionY="7752" sizeX="9647" sizeY="0" type="com.sun.star.drawing.LineShape" name="MarkHandles" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="1947" positionY="7752"/>
+                <point positionX="11594" positionY="7752"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="0"/>
+                <point positionX="9647" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="9647.000000" column2="0.000000" column3="1947.000000"/>
+               <Line2 column1="0.000000" column2="0.000000" column3="7752.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+            </XShapes>
+            <Transformation>
+             <Line1 column1="9648.000000" column2="0.000000" column3="1947.000000"/>
+             <Line2 column1="0.000000" column2="151.000000" column3="7752.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+           <XShape positionX="1797" positionY="1054" sizeX="150" sizeY="6698" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:Axis=1,0">
+            <XShapes>
+             <XShape positionX="1797" positionY="1054" sizeX="150" sizeY="6698" type="com.sun.star.drawing.PolyLineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="1797" positionY="7752"/>
+                <point positionX="1947" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="7752"/>
+                <point positionX="1947" positionY="7752"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="6914"/>
+                <point positionX="1947" positionY="6914"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="6914"/>
+                <point positionX="1947" positionY="6914"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="6077"/>
+                <point positionX="1947" positionY="6077"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="6077"/>
+                <point positionX="1947" positionY="6077"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="5240"/>
+                <point positionX="1947" positionY="5240"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="5240"/>
+                <point positionX="1947" positionY="5240"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="4403"/>
+                <point positionX="1947" positionY="4403"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="4403"/>
+                <point positionX="1947" positionY="4403"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="3565"/>
+                <point positionX="1947" positionY="3565"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="3565"/>
+                <point positionX="1947" positionY="3565"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="2728"/>
+                <point positionX="1947" positionY="2728"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="2728"/>
+                <point positionX="1947" positionY="2728"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="1891"/>
+                <point positionX="1947" positionY="1891"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="1891"/>
+                <point positionX="1947" positionY="1891"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="1054"/>
+                <point positionX="1947" positionY="1054"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="1797" positionY="1054"/>
+                <point positionX="1947" positionY="1054"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="6698"/>
+                <point positionX="150" positionY="6698"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="6698"/>
+                <point positionX="150" positionY="6698"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="5860"/>
+                <point positionX="150" positionY="5860"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="5860"/>
+                <point positionX="150" positionY="5860"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="5023"/>
+                <point positionX="150" positionY="5023"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="5023"/>
+                <point positionX="150" positionY="5023"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="4186"/>
+                <point positionX="150" positionY="4186"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="4186"/>
+                <point positionX="150" positionY="4186"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="3349"/>
+                <point positionX="150" positionY="3349"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="3349"/>
+                <point positionX="150" positionY="3349"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="2511"/>
+                <point positionX="150" positionY="2511"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="2511"/>
+                <point positionX="150" positionY="2511"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="1674"/>
+                <point positionX="150" positionY="1674"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="1674"/>
+                <point positionX="150" positionY="1674"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="837"/>
+                <point positionX="150" positionY="837"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="837"/>
+                <point positionX="150" positionY="837"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="0"/>
+                <point positionX="150" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="0" positionY="0"/>
+                <point positionX="150" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="150.000000" column2="0.000000" column3="1797.000000"/>
+               <Line2 column1="0.000000" column2="6698.000000" column3="1054.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="1947" positionY="1054" sizeX="0" sizeY="6698" type="com.sun.star.drawing.LineShape" name="MarkHandles" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="1947" positionY="7752"/>
+                <point positionX="1947" positionY="1054"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="6698"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="0.000000" column2="0.000000" column3="1947.000000"/>
+               <Line2 column1="0.000000" column2="6698.000000" column3="1054.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+            </XShapes>
+            <Transformation>
+             <Line1 column1="151.000000" column2="0.000000" column3="1797.000000"/>
+             <Line2 column1="0.000000" column2="6699.000000" column3="1054.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+           <XShape positionX="11594" positionY="1053" sizeX="150" sizeY="6698" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:Axis=1,1">
+            <XShapes>
+             <XShape positionX="11594" positionY="1053" sizeX="150" sizeY="6698" type="com.sun.star.drawing.PolyLineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="11744" positionY="7751"/>
+                <point positionX="11594" positionY="7751"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="7751"/>
+                <point positionX="11594" positionY="7751"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="6795"/>
+                <point positionX="11594" positionY="6795"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="6795"/>
+                <point positionX="11594" positionY="6795"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="5838"/>
+                <point positionX="11594" positionY="5838"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="5838"/>
+                <point positionX="11594" positionY="5838"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="4881"/>
+                <point positionX="11594" positionY="4881"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="4881"/>
+                <point positionX="11594" positionY="4881"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="3924"/>
+                <point positionX="11594" positionY="3924"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="3924"/>
+                <point positionX="11594" positionY="3924"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="2967"/>
+                <point positionX="11594" positionY="2967"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="2967"/>
+                <point positionX="11594" positionY="2967"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="2010"/>
+                <point positionX="11594" positionY="2010"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="2010"/>
+                <point positionX="11594" positionY="2010"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="1053"/>
+                <point positionX="11594" positionY="1053"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="11744" positionY="1053"/>
+                <point positionX="11594" positionY="1053"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="150" positionY="6698"/>
+                <point positionX="0" positionY="6698"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="6698"/>
+                <point positionX="0" positionY="6698"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="5742"/>
+                <point positionX="0" positionY="5742"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="5742"/>
+                <point positionX="0" positionY="5742"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="4785"/>
+                <point positionX="0" positionY="4785"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="4785"/>
+                <point positionX="0" positionY="4785"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="3828"/>
+                <point positionX="0" positionY="3828"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="3828"/>
+                <point positionX="0" positionY="3828"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="2871"/>
+                <point positionX="0" positionY="2871"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="2871"/>
+                <point positionX="0" positionY="2871"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="1914"/>
+                <point positionX="0" positionY="1914"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="1914"/>
+                <point positionX="0" positionY="1914"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="957"/>
+                <point positionX="0" positionY="957"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="957"/>
+                <point positionX="0" positionY="957"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+               <pointSequence>
+                <point positionX="150" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="150.000000" column2="0.000000" column3="11594.000000"/>
+               <Line2 column1="0.000000" column2="6698.000000" column3="1053.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="11594" positionY="1053" sizeX="0" sizeY="6698" type="com.sun.star.drawing.LineShape" name="MarkHandles" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="11594" positionY="7751"/>
+                <point positionX="11594" positionY="1053"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="6698"/>
+                <point positionX="0" positionY="0"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="0.000000" column2="0.000000" column3="11594.000000"/>
+               <Line2 column1="0.000000" column2="6698.000000" column3="1053.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+            </XShapes>
+            <Transformation>
+             <Line1 column1="151.000000" column2="0.000000" column3="11594.000000"/>
+             <Line2 column1="0.000000" column2="6699.000000" column3="1053.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+          </XShapes>
+          <Transformation>
+           <Line1 column1="9948.000000" column2="0.000000" column3="1797.000000"/>
+           <Line2 column1="0.000000" column2="6850.000000" column3="1053.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="2429" positionY="1803" sizeX="8682" sizeY="5949" type="com.sun.star.drawing.GroupShape">
+          <XShapes>
+           <XShape positionX="2429" positionY="1803" sizeX="8682" sizeY="5949" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:CT=0:Series=0">
+            <XShapes>
+             <XShape positionX="10146" positionY="2966" sizeX="965" sizeY="4786" type="com.sun.star.drawing.PolyPolygonShape" name="CID/MultiClick/D=0:CS=0:CT=0:Series=0:Point=4" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="004586" fillTransparence="0" fillTransparenceGradientName="">
+              <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+              <FillBitmap/>
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="10146" positionY="7752"/>
+                <point positionX="11111" positionY="7752"/>
+                <point positionX="11111" positionY="2966"/>
+                <point positionX="10146" positionY="2966"/>
+                <point positionX="10146" positionY="7752"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="4786"/>
+                <point positionX="965" positionY="4786"/>
+                <point positionX="965" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+                <point positionX="0" positionY="4786"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="965.000000" column2="0.000000" column3="10146.000000"/>
+               <Line2 column1="0.000000" column2="4786.000000" column3="2966.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="8217" positionY="2039" sizeX="965" sizeY="5713" type="com.sun.star.drawing.PolyPolygonShape" name="CID/MultiClick/D=0:CS=0:CT=0:Series=0:Point=3" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="004586" fillTransparence="0" fillTransparenceGradientName="">
+              <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+              <FillBitmap/>
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="8217" positionY="7752"/>
+                <point positionX="9182" positionY="7752"/>
+                <point positionX="9182" positionY="2039"/>
+                <point positionX="8217" positionY="2039"/>
+                <point positionX="8217" positionY="7752"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="5713"/>
+                <point positionX="965" positionY="5713"/>
+                <point positionX="965" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+                <point positionX="0" positionY="5713"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="965.000000" column2="0.000000" column3="8217.000000"/>
+               <Line2 column1="0.000000" column2="5713.000000" column3="2039.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="6288" positionY="1803" sizeX="964" sizeY="5949" type="com.sun.star.drawing.PolyPolygonShape" name="CID/MultiClick/D=0:CS=0:CT=0:Series=0:Point=2" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="004586" fillTransparence="0" fillTransparenceGradientName="">
+              <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+              <FillBitmap/>
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="6288" positionY="7752"/>
+                <point positionX="7252" positionY="7752"/>
+                <point positionX="7252" positionY="1803"/>
+                <point positionX="6288" positionY="1803"/>
+                <point positionX="6288" positionY="7752"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="5949"/>
+                <point positionX="964" positionY="5949"/>
+                <point positionX="964" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+                <point positionX="0" positionY="5949"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="964.000000" column2="0.000000" column3="6288.000000"/>
+               <Line2 column1="0.000000" column2="5949.000000" column3="1803.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="4358" positionY="2442" sizeX="965" sizeY="5310" type="com.sun.star.drawing.PolyPolygonShape" name="CID/MultiClick/D=0:CS=0:CT=0:Series=0:Point=1" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="004586" fillTransparence="0" fillTransparenceGradientName="">
+              <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+              <FillBitmap/>
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="4358" positionY="7752"/>
+                <point positionX="5323" positionY="7752"/>
+                <point positionX="5323" positionY="2442"/>
+                <point positionX="4358" positionY="2442"/>
+                <point positionX="4358" positionY="7752"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="5310"/>
+                <point positionX="965" positionY="5310"/>
+                <point positionX="965" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+                <point positionX="0" positionY="5310"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="965.000000" column2="0.000000" column3="4358.000000"/>
+               <Line2 column1="0.000000" column2="5310.000000" column3="2442.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="2429" positionY="3965" sizeX="965" sizeY="3787" type="com.sun.star.drawing.PolyPolygonShape" name="CID/MultiClick/D=0:CS=0:CT=0:Series=0:Point=0" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="004586" fillTransparence="0" fillTransparenceGradientName="">
+              <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+              <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+              <FillBitmap/>
+              <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+              <LineStart/>
+              <LineEnd/>
+              <PolyPolygon>
+               <pointSequence>
+                <point positionX="2429" positionY="7752"/>
+                <point positionX="3394" positionY="7752"/>
+                <point positionX="3394" positionY="3965"/>
+                <point positionX="2429" positionY="3965"/>
+                <point positionX="2429" positionY="7752"/>
+               </pointSequence>
+              </PolyPolygon>
+              <Geometry>
+               <pointSequence>
+                <point positionX="0" positionY="3787"/>
+                <point positionX="965" positionY="3787"/>
+                <point positionX="965" positionY="0"/>
+                <point positionX="0" positionY="0"/>
+                <point positionX="0" positionY="3787"/>
+               </pointSequence>
+              </Geometry>
+              <Transformation>
+               <Line1 column1="965.000000" column2="0.000000" column3="2429.000000"/>
+               <Line2 column1="0.000000" column2="3787.000000" column3="3965.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+            </XShapes>
+            <Transformation>
+             <Line1 column1="8683.000000" column2="0.000000" column3="2429.000000"/>
+             <Line2 column1="0.000000" column2="5950.000000" column3="1803.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+          </XShapes>
+          <Transformation>
+           <Line1 column1="8683.000000" column2="0.000000" column3="2429.000000"/>
+           <Line2 column1="0.000000" column2="5950.000000" column3="1803.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="2911" positionY="1485" sizeX="7718" sizeY="3568" type="com.sun.star.drawing.GroupShape">
+          <XShapes>
+           <XShape positionX="2911" positionY="1485" sizeX="7718" sizeY="3568" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:CT=1:Series=0">
+            <XShapes>
+             <XShape positionX="2911" positionY="4631" sizeX="0" sizeY="422" type="com.sun.star.drawing.GroupShape" name="CID/MultiClick/D=0:CS=0:CT=1:Series=0:Point=0">
+              <XShapes>
+               <XShape positionX="2911" positionY="4631" sizeX="0" sizeY="422" type="com.sun.star.drawing.LineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+                <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+                <LineStart/>
+                <LineEnd/>
+                <PolyPolygon>
+                 <pointSequence>
+                  <point positionX="2911" positionY="5053"/>
+                  <point positionX="2911" positionY="4631"/>
+                 </pointSequence>
+                </PolyPolygon>
+                <Geometry>
+                 <pointSequence>
+                  <point positionX="0" positionY="422"/>
+                  <point positionX="0" positionY="0"/>
+                 </pointSequence>
+                </Geometry>
+                <Transformation>
+                 <Line1 column1="0.000000" column2="0.000000" column3="2911.000000"/>
+                 <Line2 column1="0.000000" column2="422.000000" column3="4631.000000"/>
+                 <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+                </Transformation>
+               </XShape>
+              </XShapes>
+              <Transformation>
+               <Line1 column1="1.000000" column2="0.000000" column3="2911.000000"/>
+               <Line2 column1="0.000000" column2="423.000000" column3="4631.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="4841" positionY="4056" sizeX="0" sizeY="911" type="com.sun.star.drawing.GroupShape" name="CID/MultiClick/D=0:CS=0:CT=1:Series=0:Point=1">
+              <XShapes>
+               <XShape positionX="4841" positionY="4056" sizeX="0" sizeY="911" type="com.sun.star.drawing.LineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+                <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+                <LineStart/>
+                <LineEnd/>
+                <PolyPolygon>
+                 <pointSequence>
+                  <point positionX="4841" positionY="4967"/>
+                  <point positionX="4841" positionY="4056"/>
+                 </pointSequence>
+                </PolyPolygon>
+                <Geometry>
+                 <pointSequence>
+                  <point positionX="0" positionY="911"/>
+                  <point positionX="0" positionY="0"/>
+                 </pointSequence>
+                </Geometry>
+                <Transformation>
+                 <Line1 column1="0.000000" column2="0.000000" column3="4841.000000"/>
+                 <Line2 column1="0.000000" column2="911.000000" column3="4056.000000"/>
+                 <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+                </Transformation>
+               </XShape>
+              </XShapes>
+              <Transformation>
+               <Line1 column1="1.000000" column2="0.000000" column3="4841.000000"/>
+               <Line2 column1="0.000000" column2="912.000000" column3="4056.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="6770" positionY="2981" sizeX="0" sizeY="1665" type="com.sun.star.drawing.GroupShape" name="CID/MultiClick/D=0:CS=0:CT=1:Series=0:Point=2">
+              <XShapes>
+               <XShape positionX="6770" positionY="2981" sizeX="0" sizeY="1665" type="com.sun.star.drawing.LineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+                <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+                <LineStart/>
+                <LineEnd/>
+                <PolyPolygon>
+                 <pointSequence>
+                  <point positionX="6770" positionY="4646"/>
+                  <point positionX="6770" positionY="2981"/>
+                 </pointSequence>
+                </PolyPolygon>
+                <Geometry>
+                 <pointSequence>
+                  <point positionX="0" positionY="1665"/>
+                  <point positionX="0" positionY="0"/>
+                 </pointSequence>
+                </Geometry>
+                <Transformation>
+                 <Line1 column1="0.000000" column2="0.000000" column3="6770.000000"/>
+                 <Line2 column1="0.000000" column2="1665.000000" column3="2981.000000"/>
+                 <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+                </Transformation>
+               </XShape>
+              </XShapes>
+              <Transformation>
+               <Line1 column1="1.000000" column2="0.000000" column3="6770.000000"/>
+               <Line2 column1="0.000000" column2="1666.000000" column3="2981.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="8699" positionY="2275" sizeX="0" sizeY="773" type="com.sun.star.drawing.GroupShape" name="CID/MultiClick/D=0:CS=0:CT=1:Series=0:Point=3">
+              <XShapes>
+               <XShape positionX="8699" positionY="2275" sizeX="0" sizeY="773" type="com.sun.star.drawing.LineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+                <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+                <LineStart/>
+                <LineEnd/>
+                <PolyPolygon>
+                 <pointSequence>
+                  <point positionX="8699" positionY="3048"/>
+                  <point positionX="8699" positionY="2275"/>
+                 </pointSequence>
+                </PolyPolygon>
+                <Geometry>
+                 <pointSequence>
+                  <point positionX="0" positionY="773"/>
+                  <point positionX="0" positionY="0"/>
+                 </pointSequence>
+                </Geometry>
+                <Transformation>
+                 <Line1 column1="0.000000" column2="0.000000" column3="8699.000000"/>
+                 <Line2 column1="0.000000" column2="773.000000" column3="2275.000000"/>
+                 <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+                </Transformation>
+               </XShape>
+              </XShapes>
+              <Transformation>
+               <Line1 column1="1.000000" column2="0.000000" column3="8699.000000"/>
+               <Line2 column1="0.000000" column2="774.000000" column3="2275.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+             <XShape positionX="10629" positionY="1485" sizeX="0" sizeY="1067" type="com.sun.star.drawing.GroupShape" name="CID/MultiClick/D=0:CS=0:CT=1:Series=0:Point=4">
+              <XShapes>
+               <XShape positionX="10629" positionY="1485" sizeX="0" sizeY="1067" type="com.sun.star.drawing.LineShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" lineStyle="SOLID">
+                <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+                <LineStart/>
+                <LineEnd/>
+                <PolyPolygon>
+                 <pointSequence>
+                  <point positionX="10629" positionY="2552"/>
+                  <point positionX="10629" positionY="1485"/>
+                 </pointSequence>
+                </PolyPolygon>
+                <Geometry>
+                 <pointSequence>
+                  <point positionX="0" positionY="1067"/>
+                  <point positionX="0" positionY="0"/>
+                 </pointSequence>
+                </Geometry>
+                <Transformation>
+                 <Line1 column1="0.000000" column2="0.000000" column3="10629.000000"/>
+                 <Line2 column1="0.000000" column2="1067.000000" column3="1485.000000"/>
+                 <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+                </Transformation>
+               </XShape>
+              </XShapes>
+              <Transformation>
+               <Line1 column1="1.000000" column2="0.000000" column3="10629.000000"/>
+               <Line2 column1="0.000000" column2="1068.000000" column3="1485.000000"/>
+               <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+              </Transformation>
+             </XShape>
+            </XShapes>
+            <Transformation>
+             <Line1 column1="7719.000000" column2="0.000000" column3="2911.000000"/>
+             <Line2 column1="0.000000" column2="3569.000000" column3="1485.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+          </XShapes>
+          <Transformation>
+           <Line1 column1="7719.000000" column2="0.000000" column3="2911.000000"/>
+           <Line2 column1="0.000000" column2="3569.000000" column3="1485.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="2429" positionY="4792" sizeX="964" sizeY="81" type="com.sun.star.drawing.GroupShape" name="CID/StockLoss=">
+          <XShapes>
+           <XShape positionX="2429" positionY="4792" sizeX="964" sizeY="81" type="com.sun.star.drawing.RectangleShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="000000" fillTransparence="0" fillTransparenceGradientName="">
+            <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+            <FillBitmap/>
+            <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+            <LineStart/>
+            <LineEnd/>
+            <Transformation>
+             <Line1 column1="965.000000" column2="0.000000" column3="2429.000000"/>
+             <Line2 column1="0.000000" column2="82.000000" column3="4792.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+          </XShapes>
+          <Transformation>
+           <Line1 column1="965.000000" column2="0.000000" column3="2429.000000"/>
+           <Line2 column1="0.000000" column2="82.000000" column3="4792.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="4358" positionY="1565" sizeX="6752" sizeY="3308" type="com.sun.star.drawing.GroupShape" name="CID/StockGain=">
+          <XShapes>
+           <XShape positionX="4358" positionY="4414" sizeX="964" sizeY="459" type="com.sun.star.drawing.RectangleShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+            <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+            <FillBitmap/>
+            <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+            <LineStart/>
+            <LineEnd/>
+            <Transformation>
+             <Line1 column1="965.000000" column2="0.000000" column3="4358.000000"/>
+             <Line2 column1="0.000000" column2="460.000000" column3="4414.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+           <XShape positionX="6288" positionY="3024" sizeX="964" sizeY="1390" type="com.sun.star.drawing.RectangleShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+            <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+            <FillBitmap/>
+            <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+            <LineStart/>
+            <LineEnd/>
+            <Transformation>
+             <Line1 column1="965.000000" column2="0.000000" column3="6288.000000"/>
+             <Line2 column1="0.000000" column2="1391.000000" column3="3024.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+           <XShape positionX="8217" positionY="2429" sizeX="964" sizeY="595" type="com.sun.star.drawing.RectangleShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+            <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+            <FillBitmap/>
+            <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+            <LineStart/>
+            <LineEnd/>
+            <Transformation>
+             <Line1 column1="965.000000" column2="0.000000" column3="8217.000000"/>
+             <Line2 column1="0.000000" column2="596.000000" column3="2429.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+           <XShape positionX="10146" positionY="1565" sizeX="964" sizeY="864" type="com.sun.star.drawing.RectangleShape" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="CENTER" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="SOLID" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+            <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+            <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+            <FillBitmap/>
+            <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+            <LineStart/>
+            <LineEnd/>
+            <Transformation>
+             <Line1 column1="965.000000" column2="0.000000" column3="10146.000000"/>
+             <Line2 column1="0.000000" column2="865.000000" column3="1565.000000"/>
+             <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+            </Transformation>
+           </XShape>
+          </XShapes>
+          <Transformation>
+           <Line1 column1="6753.000000" column2="0.000000" column3="4358.000000"/>
+           <Line2 column1="0.000000" column2="3309.000000" column3="1565.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+        </XShapes>
+        <Transformation>
+         <Line1 column1="9948.000000" column2="0.000000" column3="1797.000000"/>
+         <Line2 column1="0.000000" column2="6850.000000" column3="1053.000000"/>
+         <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+        </Transformation>
+       </XShape>
+      </XShapes>
+      <Transformation>
+       <Line1 column1="9948.000000" column2="0.000000" column3="1797.000000"/>
+       <Line2 column1="0.000000" column2="6850.000000" column3="1053.000000"/>
+       <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+      </Transformation>
+     </XShape>
+     <XShape positionX="770" positionY="855" sizeX="12108" sizeY="7545" type="com.sun.star.drawing.GroupShape">
+      <XShapes>
+       <XShape positionX="2064" positionY="8002" sizeX="9413" sizeY="398" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:Axis=0,0">
+        <XShapes>
+         <XShape positionX="2064" positionY="8002" sizeX="1695" sizeY="398" type="com.sun.star.drawing.TextShape" text="2014.02.10" fontHeight="10.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="true" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="TOP" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="1" textMinimumFrameWidth="1" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+          <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+          <FillBitmap/>
+          <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+          <LineStart/>
+          <LineEnd/>
+          <Transformation>
+           <Line1 column1="1696.000000" column2="0.000000" column3="2064.000000"/>
+           <Line2 column1="0.000000" column2="399.000000" column3="8002.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="4007" positionY="8002" sizeX="1669" sizeY="398" type="com.sun.star.drawing.TextShape" text="2014.02.11" fontHeight="10.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="true" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="TOP" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="1" textMinimumFrameWidth="1" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+          <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+          <FillBitmap/>
+          <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+          <LineStart/>
+          <LineEnd/>
+          <Transformation>
+           <Line1 column1="1670.000000" column2="0.000000" column3="4007.000000"/>
+           <Line2 column1="0.000000" column2="399.000000" column3="8002.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="5923" positionY="8002" sizeX="1695" sizeY="398" type="com.sun.star.drawing.TextShape" text="2014.02.12" fontHeight="10.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="true" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="TOP" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="1" textMinimumFrameWidth="1" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+          <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+          <FillBitmap/>
+          <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+          <LineStart/>
+          <LineEnd/>
+          <Transformation>
+           <Line1 column1="1696.000000" column2="0.000000" column3="5923.000000"/>
+           <Line2 column1="0.000000" column2="399.000000" column3="8002.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="7852" positionY="8002" sizeX="1695" sizeY="398" type="com.sun.star.drawing.TextShape" text="2014.02.13" fontHeight="10.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="true" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="TOP" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="1" textMinimumFrameWidth="1" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+          <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+          <FillBitmap/>
+          <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+          <LineStart/>
+          <LineEnd/>
+          <Transformation>
+           <Line1 column1="1696.000000" column2="0.000000" column3="7852.000000"/>
+           <Line2 column1="0.000000" column2="399.000000" column3="8002.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+         <XShape positionX="9782" positionY="8002" sizeX="1695" sizeY="398" type="com.sun.star.drawing.TextShape" text="2014.02.14" fontHeight="10.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="true" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="CENTER" textVerticalAdjust="TOP" textLeftDistance="0" textRightDistance="0" textUpperDistance="0" textLowerDistance="0" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="1" textMinimumFrameWidth="1" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="ffffff" fillTransparence="0" fillTransparenceGradientName="">
+          <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
+          <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
+          <FillBitmap/>
+          <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
+          <LineStart/>
+          <LineEnd/>
+          <Transformation>
+           <Line1 column1="1696.000000" column2="0.000000" column3="9782.000000"/>
+           <Line2 column1="0.000000" column2="399.000000" column3="8002.000000"/>
+           <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+          </Transformation>
+         </XShape>
+        </XShapes>
+        <Transformation>
+         <Line1 column1="9414.000000" column2="0.000000" column3="2064.000000"/>
+         <Line2 column1="0.000000" column2="399.000000" column3="8002.000000"/>
+         <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
+        </Transformation>
+       </XShape>
+       <XShape positionX="770" positionY="856" sizeX="928" sizeY="7096" type="com.sun.star.drawing.GroupShape" name="CID/D=0:CS=0:Axis=1,0">
+        <XShapes>

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list