summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drawinglayer/source/dumper/XShapeDumper.cxx24
-rw-r--r--include/drawinglayer/XShapeDumper.hxx2
-rw-r--r--sd/qa/unit/data/xml/fdo47434_0.xml40
-rw-r--r--sd/qa/unit/data/xml/fdo71434_0.xml3
-rw-r--r--sd/qa/unit/data/xml/n593612_0.xml4
-rw-r--r--sd/qa/unit/data/xml/n762695_0.xml17
-rw-r--r--sd/qa/unit/data/xml/n762695_1.xml15
-rw-r--r--sd/qa/unit/data/xml/n819614_0.xml339
-rw-r--r--sd/qa/unit/data/xml/n820786_0.xml490
-rw-r--r--sd/qa/unit/data/xml/shapes-test_page0.xml22
-rw-r--r--sd/qa/unit/data/xml/shapes-test_page1.xml12
-rw-r--r--sd/qa/unit/data/xml/shapes-test_page2.xml18
-rw-r--r--sd/qa/unit/data/xml/shapes-test_page3.xml11
-rw-r--r--sd/qa/unit/data/xml/shapes-test_page4.xml5
-rw-r--r--sd/qa/unit/data/xml/shapes-test_page5.xml4
-rw-r--r--sd/qa/unit/data/xml/shapes-test_page7.xml1
16 files changed, 13 insertions, 994 deletions
diff --git a/drawinglayer/source/dumper/XShapeDumper.cxx b/drawinglayer/source/dumper/XShapeDumper.cxx
index accb18a84e74..43b335d47ef9 100644
--- a/drawinglayer/source/dumper/XShapeDumper.cxx
+++ b/drawinglayer/source/dumper/XShapeDumper.cxx
@@ -148,14 +148,14 @@ void dumpSizeAsAttribute(const com::sun::star::awt::Size& rSize, xmlTextWriterPt
// the rest
void dumpShapeDescriptorAsAttribute( com::sun::star::uno::Reference< com::sun::star::drawing::XShapeDescriptor > xDescr, xmlTextWriterPtr xmlWriter );
-void dumpXShape(com::sun::star::uno::Reference< com::sun::star::drawing::XShape > xShape, xmlTextWriterPtr xmlWriter);
-void dumpXShapes( com::sun::star::uno::Reference< com::sun::star::drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter );
+void dumpXShape(com::sun::star::uno::Reference< com::sun::star::drawing::XShape > xShape, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties);
+void dumpXShapes( com::sun::star::uno::Reference< com::sun::star::drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties );
void dumpTextPropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
void dumpFillPropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
void dumpLinePropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
void dumpShadowPropertiesService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
void dumpPolyPolygonDescriptorService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
-void dumpShapeService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
+void dumpShapeService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties);
void dumpPolyPolygonBezierDescriptorService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
void dumpCustomShapeService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter);
@@ -1674,7 +1674,7 @@ void dumpPolyPolygonDescriptorService(uno::Reference< beans::XPropertySet > xPro
}
}
-void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter)
+void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties)
{
uno::Reference< beans::XPropertySetInfo> xInfo = xPropSet->getPropertySetInfo();
{
@@ -1744,7 +1744,7 @@ void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWri
if(anotherAny >>= sHyperlink)
dumpHyperlinkAsAttribute(sHyperlink, xmlWriter);
}
- if(xInfo->hasPropertyByName("InteropGrabBag"))
+ if(xInfo->hasPropertyByName("InteropGrabBag") && bDumpInteropProperties)
{
uno::Any anotherAny = xPropSet->getPropertyValue("InteropGrabBag");
uno::Sequence< beans::PropertyValue> aInteropGrabBag;
@@ -1805,7 +1805,7 @@ void dumpCustomShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlT
}
}
-void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWriter)
+void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties)
{
xmlTextWriterStartElement( xmlWriter, BAD_CAST( "XShape" ) );
uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY_THROW);
@@ -1851,7 +1851,7 @@ void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWr
if(xServiceInfo->supportsService("com.sun.star.drawing.GroupShape"))
{
uno::Reference< drawing::XShapes > xShapes(xShape, uno::UNO_QUERY_THROW);
- dumpXShapes(xShapes, xmlWriter);
+ dumpXShapes(xShapes, xmlWriter, bDumpInteropProperties);
}
if(xServiceInfo->supportsService("com.sun.star.drawing.FillProperties"))
dumpFillPropertiesService(xPropSet, xmlWriter);
@@ -1866,7 +1866,7 @@ void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWr
dumpShadowPropertiesService(xPropSet, xmlWriter);
if(xServiceInfo->supportsService("com.sun.star.drawing.Shape"))
- dumpShapeService(xPropSet, xmlWriter);
+ dumpShapeService(xPropSet, xmlWriter, bDumpInteropProperties);
if(xServiceInfo->supportsService("com.sun.star.drawing.PolyPolygonBezierDescriptor"))
dumpPolyPolygonBezierDescriptorService(xPropSet, xmlWriter);
@@ -1921,7 +1921,7 @@ void dumpXShape(uno::Reference< drawing::XShape > xShape, xmlTextWriterPtr xmlWr
xmlTextWriterEndElement( xmlWriter );
}
-void dumpXShapes( uno::Reference< drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter )
+void dumpXShapes( uno::Reference< drawing::XShapes > xShapes, xmlTextWriterPtr xmlWriter, bool bDumpInteropProperties )
{
xmlTextWriterStartElement( xmlWriter, BAD_CAST( "XShapes" ) );
uno::Reference< container::XIndexAccess > xIA( xShapes, uno::UNO_QUERY_THROW);
@@ -1929,14 +1929,14 @@ void dumpXShapes( uno::Reference< drawing::XShapes > xShapes, xmlTextWriterPtr x
for (sal_Int32 i = 0; i < nLength; ++i)
{
uno::Reference< drawing::XShape > xShape( xIA->getByIndex( i ), uno::UNO_QUERY_THROW );
- dumpXShape( xShape, xmlWriter );
+ dumpXShape( xShape, xmlWriter, bDumpInteropProperties );
}
xmlTextWriterEndElement( xmlWriter );
}
} //end of namespace
-OUString XShapeDumper::dump(uno::Reference<drawing::XShapes> xPageShapes)
+OUString XShapeDumper::dump(uno::Reference<drawing::XShapes> xPageShapes, bool bDumpInteropProperties)
{
OStringBuffer aString;
@@ -1948,7 +1948,7 @@ OUString XShapeDumper::dump(uno::Reference<drawing::XShapes> xPageShapes)
try
{
- dumpXShapes( xPageShapes, xmlWriter );
+ dumpXShapes( xPageShapes, xmlWriter, bDumpInteropProperties );
}
catch (const beans::UnknownPropertyException& e)
{
diff --git a/include/drawinglayer/XShapeDumper.hxx b/include/drawinglayer/XShapeDumper.hxx
index 98d144589a18..b18de917b96e 100644
--- a/include/drawinglayer/XShapeDumper.hxx
+++ b/include/drawinglayer/XShapeDumper.hxx
@@ -46,7 +46,7 @@ class DRAWINGLAYER_DLLPUBLIC XShapeDumper
public:
XShapeDumper();
- OUString dump(com::sun::star::uno::Reference<com::sun::star::drawing::XShapes> xPageShapes);
+ OUString dump(com::sun::star::uno::Reference<com::sun::star::drawing::XShapes> xPageShapes, bool bDumpInteropProperties=false);
};
#endif
diff --git a/sd/qa/unit/data/xml/fdo47434_0.xml b/sd/qa/unit/data/xml/fdo47434_0.xml
index f091b2aae6e4..bd91804d12a7 100644
--- a/sd/qa/unit/data/xml/fdo47434_0.xml
+++ b/sd/qa/unit/data/xml/fdo47434_0.xml
@@ -23,16 +23,6 @@
<Line2 column1="0.000000" column2="2.000000" column3="4366.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
<PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
@@ -93,16 +83,6 @@
<Line2 column1="0.000000" column2="2.000000" column3="5159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
<PropertyValue name="MirroredX" value="true" handle="0" propertyState="DIRECT_VALUE"/>
@@ -163,16 +143,6 @@
<Line2 column1="0.000000" column2="2.000000" column3="4366.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
<PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
@@ -233,16 +203,6 @@
<Line2 column1="0.000000" column2="2.000000" column3="5159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="0" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="IsPostRotateAngle" value="true" handle="0" propertyState="DIRECT_VALUE"/>
<PropertyValue name="MirroredX" value="true" handle="0" propertyState="DIRECT_VALUE"/>
diff --git a/sd/qa/unit/data/xml/fdo71434_0.xml b/sd/qa/unit/data/xml/fdo71434_0.xml
index 46efeb13c295..5c58fa290095 100644
--- a/sd/qa/unit/data/xml/fdo71434_0.xml
+++ b/sd/qa/unit/data/xml/fdo71434_0.xml
@@ -6,8 +6,5 @@
<Line2 column1="0.000000" column2="19046.000000" column3="-75.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
</XShape>
</XShapes>
diff --git a/sd/qa/unit/data/xml/n593612_0.xml b/sd/qa/unit/data/xml/n593612_0.xml
index aa5d1f7f5212..5d5189b94099 100644
--- a/sd/qa/unit/data/xml/n593612_0.xml
+++ b/sd/qa/unit/data/xml/n593612_0.xml
@@ -13,10 +13,6 @@
<Line2 column1="0.000000" column2="15193.000000" column3="1324.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" value="3968147" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="SpPrSolidFillSchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
diff --git a/sd/qa/unit/data/xml/n762695_0.xml b/sd/qa/unit/data/xml/n762695_0.xml
index 7b61b2e9c768..99ce6435f18d 100644
--- a/sd/qa/unit/data/xml/n762695_0.xml
+++ b/sd/qa/unit/data/xml/n762695_0.xml
@@ -13,17 +13,6 @@
<Line2 column1="0.000000" column2="10856.000000" column3="5160.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" value="12834459" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="SpPrSolidFillSchemeClr" value="accent3" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="5210557" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -110,9 +99,6 @@
<Line2 column1="-1004.091629" column2="1026.011940" column3="7175.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
@@ -190,9 +176,6 @@
<Line2 column1="1003.384523" column2="1026.011940" column3="6171.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
diff --git a/sd/qa/unit/data/xml/n762695_1.xml b/sd/qa/unit/data/xml/n762695_1.xml
index 2cc28c2caf35..91ab1172478b 100644
--- a/sd/qa/unit/data/xml/n762695_1.xml
+++ b/sd/qa/unit/data/xml/n762695_1.xml
@@ -13,9 +13,6 @@
<Line2 column1="0.000000" column2="7620.000000" column3="7197.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -102,9 +99,6 @@
<Line2 column1="0.000000" column2="9529.000000" column3="4229.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -191,9 +185,6 @@
<Line2 column1="0.000000" column2="1274.000000" column3="5715.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
@@ -347,9 +338,6 @@
<Line2 column1="0.000000" column2="1274.000000" column3="6125.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
@@ -503,9 +491,6 @@
<Line2 column1="0.000000" column2="2672.000000" column3="6125.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues>
diff --git a/sd/qa/unit/data/xml/n819614_0.xml b/sd/qa/unit/data/xml/n819614_0.xml
index 8157412ddd5c..fb879cd1e579 100644
--- a/sd/qa/unit/data/xml/n819614_0.xml
+++ b/sd/qa/unit/data/xml/n819614_0.xml
@@ -21,7 +21,6 @@
<Line2 column1="0.000000" column2="101.000000" column3="0.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="182" positionY="2544" sizeX="25125" sizeY="16293" type="com.sun.star.drawing.GroupShape">
<XShapes>
@@ -38,9 +37,6 @@
<Line2 column1="0.000000" column2="254.000000" column3="3496.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -100,9 +96,6 @@
<Line2 column1="0.000000" column2="2072.000000" column3="5702.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -162,9 +155,6 @@
<Line2 column1="0.000000" column2="811.000000" column3="5702.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -224,9 +214,6 @@
<Line2 column1="0.000000" column2="834.000000" column3="3623.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -290,9 +277,6 @@
<Line2 column1="0.000000" column2="4509.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -352,9 +336,6 @@
<Line2 column1="0.000000" column2="3165.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -414,9 +395,6 @@
<Line2 column1="0.000000" column2="7483.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -476,9 +454,6 @@
<Line2 column1="0.000000" column2="5903.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -538,9 +513,6 @@
<Line2 column1="0.000000" column2="630.000000" column3="7078.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -600,9 +572,6 @@
<Line2 column1="0.000000" column2="741.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -662,9 +631,6 @@
<Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -728,9 +694,6 @@
<Line2 column1="0.000000" column2="3272.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -790,9 +753,6 @@
<Line2 column1="0.000000" column2="1992.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -852,9 +812,6 @@
<Line2 column1="0.000000" column2="713.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -914,9 +871,6 @@
<Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -980,9 +934,6 @@
<Line2 column1="0.000000" column2="1989.000000" column3="13817.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1042,9 +993,6 @@
<Line2 column1="0.000000" column2="737.000000" column3="13817.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1104,9 +1052,6 @@
<Line2 column1="0.000000" column2="7377.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1166,9 +1111,6 @@
<Line2 column1="0.000000" column2="5851.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1228,9 +1170,6 @@
<Line2 column1="0.000000" column2="12373.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1290,9 +1229,6 @@
<Line2 column1="0.000000" column2="11250.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1352,9 +1288,6 @@
<Line2 column1="0.000000" column2="3177.000000" column3="7232.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1414,9 +1347,6 @@
<Line2 column1="0.000000" column2="1949.000000" column3="7232.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1476,9 +1406,6 @@
<Line2 column1="0.000000" column2="728.000000" column3="7232.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1538,9 +1465,6 @@
<Line2 column1="0.000000" column2="777.000000" column3="5771.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1600,9 +1524,6 @@
<Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1666,9 +1587,6 @@
<Line2 column1="0.000000" column2="7085.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1728,9 +1646,6 @@
<Line2 column1="0.000000" column2="5830.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1790,9 +1705,6 @@
<Line2 column1="0.000000" column2="4551.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1852,9 +1764,6 @@
<Line2 column1="0.000000" column2="3272.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1914,9 +1823,6 @@
<Line2 column1="0.000000" column2="1992.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1976,9 +1882,6 @@
<Line2 column1="0.000000" column2="713.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2038,9 +1941,6 @@
<Line2 column1="0.000000" column2="906.000000" column3="3623.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2104,9 +2004,6 @@
<Line2 column1="0.000000" column2="11224.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2166,9 +2063,6 @@
<Line2 column1="0.000000" column2="9916.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2228,9 +2122,6 @@
<Line2 column1="0.000000" column2="8608.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2290,9 +2181,6 @@
<Line2 column1="0.000000" column2="781.000000" column3="12333.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2352,9 +2240,6 @@
<Line2 column1="0.000000" column2="5992.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2414,9 +2299,6 @@
<Line2 column1="0.000000" column2="4684.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2476,9 +2358,6 @@
<Line2 column1="0.000000" column2="3376.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2538,9 +2417,6 @@
<Line2 column1="0.000000" column2="2068.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2600,9 +2476,6 @@
<Line2 column1="0.000000" column2="12490.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2662,9 +2535,6 @@
<Line2 column1="0.000000" column2="713.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2724,9 +2594,6 @@
<Line2 column1="0.000000" column2="906.000000" column3="3623.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2790,9 +2657,6 @@
<Line2 column1="0.000000" column2="10863.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2852,9 +2716,6 @@
<Line2 column1="0.000000" column2="1817.000000" column3="13615.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2914,9 +2775,6 @@
<Line2 column1="0.000000" column2="657.000000" column3="13615.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2976,9 +2834,6 @@
<Line2 column1="0.000000" column2="7275.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3038,9 +2893,6 @@
<Line2 column1="0.000000" column2="6012.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3100,9 +2952,6 @@
<Line2 column1="0.000000" column2="4731.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3162,9 +3011,6 @@
<Line2 column1="0.000000" column2="3475.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3224,9 +3070,6 @@
<Line2 column1="0.000000" column2="2049.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3286,9 +3129,6 @@
<Line2 column1="0.000000" column2="12187.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3348,9 +3188,6 @@
<Line2 column1="0.000000" column2="710.000000" column3="5774.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3410,9 +3247,6 @@
<Line2 column1="0.000000" column2="906.000000" column3="3623.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3476,9 +3310,6 @@
<Line2 column1="0.000000" column2="1079.000000" column3="2544.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3543,9 +3374,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="4529.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3610,9 +3438,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="5919.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3677,10 +3502,6 @@
<Line2 column1="0.000000" column2="1223.000000" column3="17350.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3745,9 +3566,6 @@
<Line2 column1="0.000000" column2="1269.000000" column3="7189.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3812,9 +3630,6 @@
<Line2 column1="0.000000" column2="1157.000000" column3="8671.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3879,9 +3694,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="9939.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3946,9 +3758,6 @@
<Line2 column1="0.000000" column2="1152.000000" column3="11210.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4013,9 +3822,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="12483.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4080,9 +3886,6 @@
<Line2 column1="0.000000" column2="1037.000000" column3="13753.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4147,9 +3950,6 @@
<Line2 column1="0.000000" column2="1063.000000" column3="14901.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4214,9 +4014,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="16071.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4281,9 +4078,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="4529.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4348,9 +4142,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="5921.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4415,9 +4206,6 @@
<Line2 column1="0.000000" column2="1149.000000" column3="17689.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4482,9 +4270,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="7277.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4549,9 +4334,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="8585.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4616,9 +4398,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="9893.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4683,9 +4462,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="11200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4750,9 +4526,6 @@
<Line2 column1="0.000000" column2="1211.000000" column3="12508.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4817,9 +4590,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="13816.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4884,9 +4654,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="15124.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -4951,9 +4718,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="16432.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5018,9 +4782,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="4529.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5085,9 +4846,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="5921.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5152,9 +4910,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="7201.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5219,9 +4974,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="8480.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5286,9 +5038,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="9759.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5353,9 +5102,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="11039.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5420,9 +5166,6 @@
<Line2 column1="0.000000" column2="1101.000000" column3="12309.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5487,9 +5230,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="4526.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5554,9 +5294,6 @@
<Line2 column1="0.000000" column2="1366.000000" column3="5866.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5621,9 +5358,6 @@
<Line2 column1="0.000000" column2="1088.000000" column3="7416.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5688,9 +5422,6 @@
<Line2 column1="0.000000" column2="1008.000000" column3="8677.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5755,10 +5486,6 @@
<Line2 column1="0.000000" column2="925.000000" column3="9946.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5823,9 +5550,6 @@
<Line2 column1="0.000000" column2="1034.000000" column3="16505.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5890,10 +5614,6 @@
<Line2 column1="0.000000" column2="912.000000" column3="17689.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -5958,9 +5678,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="10999.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6025,9 +5742,6 @@
<Line2 column1="0.000000" column2="1338.000000" column3="12479.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6092,9 +5806,6 @@
<Line2 column1="0.000000" column2="1184.000000" column3="13962.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6159,9 +5870,6 @@
<Line2 column1="0.000000" column2="1144.000000" column3="15233.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6226,9 +5934,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="4526.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6293,9 +5998,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="5918.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6360,9 +6062,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="7198.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6427,9 +6126,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="8477.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6494,9 +6190,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="4526.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6561,9 +6254,6 @@
<Line2 column1="0.000000" column2="1131.000000" column3="5947.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6628,9 +6318,6 @@
<Line2 column1="0.000000" column2="969.000000" column3="7223.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6695,9 +6382,6 @@
<Line2 column1="0.000000" column2="1231.000000" column3="11059.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6762,10 +6446,6 @@
<Line2 column1="0.000000" column2="1422.000000" column3="12543.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" value="14539203" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="SpPrSolidFillSchemeClr" value="bg2" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6830,9 +6510,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="8371.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6897,9 +6574,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="9715.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -6964,9 +6638,6 @@
<Line2 column1="0.000000" column2="1245.000000" column3="4457.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -7031,9 +6702,6 @@
<Line2 column1="0.000000" column2="1132.000000" column3="5947.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -7098,9 +6766,6 @@
<Line2 column1="0.000000" column2="1101.000000" column3="7224.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -7165,9 +6830,6 @@
<Line2 column1="0.000000" column2="983.000000" column3="3341.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -7225,6 +6887,5 @@
<Line2 column1="0.000000" column2="16294.000000" column3="2544.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
</XShapes>
diff --git a/sd/qa/unit/data/xml/n820786_0.xml b/sd/qa/unit/data/xml/n820786_0.xml
index 81d667b70c6c..8ceec6be956f 100644
--- a/sd/qa/unit/data/xml/n820786_0.xml
+++ b/sd/qa/unit/data/xml/n820786_0.xml
@@ -13,9 +13,6 @@
<Line2 column1="1371.000000" column2="0.000000" column3="6036.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -82,9 +79,6 @@
<Line2 column1="0.000000" column2="-1058.000000" column3="12758.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -169,9 +163,6 @@
<Line2 column1="0.000000" column2="-1058.000000" column3="12758.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -249,7 +240,6 @@
<Line2 column1="0.000000" column2="1058.000000" column3="11701.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="6985" positionY="2309" sizeX="1481" sizeY="1481" type="com.sun.star.drawing.CustomShape" name="Rectangle 1" fontHeight="24.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" 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="HATCH" 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"/>
@@ -264,16 +254,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -338,16 +318,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -412,16 +382,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -486,16 +446,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -560,16 +510,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -634,16 +574,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="2309.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -708,16 +638,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -782,16 +702,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -856,16 +766,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -930,16 +830,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1004,16 +894,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1078,16 +958,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="4145.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1152,16 +1022,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1226,16 +1086,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1300,16 +1150,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1374,16 +1214,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1448,16 +1278,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1522,16 +1342,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="5981.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1596,16 +1406,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1670,16 +1470,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1744,16 +1534,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1818,16 +1598,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1892,16 +1662,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -1966,16 +1726,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="7816.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2040,16 +1790,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2114,16 +1854,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2188,16 +1918,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2262,16 +1982,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2336,16 +2046,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2410,16 +2110,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="9652.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2484,16 +2174,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2558,16 +2238,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2632,16 +2302,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2706,16 +2366,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2780,16 +2430,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2854,16 +2494,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="11488.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -2928,16 +2558,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3002,16 +2622,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3076,16 +2686,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3150,16 +2750,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3224,16 +2814,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3298,16 +2878,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="13323.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3372,16 +2942,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="15159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3446,16 +3006,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="15159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3520,16 +3070,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="15159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3594,16 +3134,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="15159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3668,16 +3198,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="15159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
@@ -3742,16 +3262,6 @@
<Line2 column1="0.000000" column2="1482.000000" column3="15159.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag>
- <PropertyValue name="OriginalSolidFillClr" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="StyleFillRef">
- <StyleFillRef>
- <PropertyValue name="SchemeClr" value="accent1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Idx" value="1" handle="0" propertyState="DIRECT_VALUE"/>
- <PropertyValue name="Color" value="52377" handle="0" propertyState="DIRECT_VALUE"/>
- </StyleFillRef>
- </PropertyValue>
- </InteropGrabBag>
<CustomShapeGeometry>
<PropertyValue name="AdjustmentValues">
<AdjustmentValues/>
diff --git a/sd/qa/unit/data/xml/shapes-test_page0.xml b/sd/qa/unit/data/xml/shapes-test_page0.xml
index 16669ffcd880..dc8ca721244f 100644
--- a/sd/qa/unit/data/xml/shapes-test_page0.xml
+++ b/sd/qa/unit/data/xml/shapes-test_page0.xml
@@ -13,7 +13,6 @@
<Line2 column1="0.000000" column2="2401.000000" column3="1200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -73,7 +72,6 @@
<Line2 column1="0.000000" column2="3001.000000" column3="1000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -158,7 +156,6 @@
<Line2 column1="0.000000" column2="2201.000000" column3="1400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -218,7 +215,6 @@
<Line2 column1="0.000000" column2="2401.000000" column3="1400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -303,7 +299,6 @@
<Line2 column1="0.000000" column2="2801.000000" column3="1200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -356,7 +351,6 @@
<Line2 column1="0.000000" column2="1201.000000" column3="2200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -409,7 +403,6 @@
<Line2 column1="0.000000" column2="3201.000000" column3="4600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="Type" value="mso-spt100" handle="0" propertyState="DIRECT_VALUE"/>
<PropertyValue name="AdjustmentValues">
@@ -472,7 +465,6 @@
<Line2 column1="0.000000" column2="2001.000000" column3="5200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -530,7 +522,6 @@
<Line2 column1="0.000000" column2="2001.000000" column3="5200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -588,7 +579,6 @@
<Line2 column1="0.000000" column2="2001.000000" column3="5000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -650,7 +640,6 @@
<Line2 column1="0.000000" column2="2801.000000" column3="5200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -712,7 +701,6 @@
<Line2 column1="0.000000" column2="2001.000000" column3="5600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -774,7 +762,6 @@
<Line2 column1="0.000000" column2="2401.000000" column3="9400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -840,7 +827,6 @@
<Line2 column1="0.000000" column2="2801.000000" column3="9400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -910,7 +896,6 @@
<Line2 column1="0.000000" column2="3201.000000" column3="9200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -990,7 +975,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="9400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1090,7 +1074,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="9400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1160,7 +1143,6 @@
<Line2 column1="0.000000" column2="5201.000000" column3="9200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1237,7 +1219,6 @@
<Line2 column1="0.000000" column2="3801.000000" column3="14600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="88" height="21600"/>
@@ -1403,7 +1384,6 @@
<Line2 column1="0.000000" column2="3001.000000" column3="14800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1515,7 +1495,6 @@
<Line2 column1="0.000000" column2="3601.000000" column3="15200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1606,7 +1585,6 @@
<Line2 column1="0.000000" column2="3201.000000" column3="15200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
diff --git a/sd/qa/unit/data/xml/shapes-test_page1.xml b/sd/qa/unit/data/xml/shapes-test_page1.xml
index 3f5391bb52d7..5908648e6a8b 100644
--- a/sd/qa/unit/data/xml/shapes-test_page1.xml
+++ b/sd/qa/unit/data/xml/shapes-test_page1.xml
@@ -13,7 +13,6 @@
<Line2 column1="0.000000" column2="1601.000000" column3="1600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -171,7 +170,6 @@
<Line2 column1="0.000000" column2="3001.000000" column3="800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -252,7 +250,6 @@
<Line2 column1="0.000000" column2="3201.000000" column3="1000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -337,7 +334,6 @@
<Line2 column1="0.000000" column2="3401.000000" column3="1000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="780" height="907"/>
@@ -429,7 +425,6 @@
<Line2 column1="0.000000" column2="3001.000000" column3="1200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -542,7 +537,6 @@
<Line2 column1="0.000000" column2="3001.000000" column3="1400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="858" height="864"/>
@@ -682,7 +676,6 @@
<Line2 column1="0.000000" column2="3401.000000" column3="4800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -923,7 +916,6 @@
<Line2 column1="0.000000" column2="4001.000000" column3="5000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="153" height="132"/>
@@ -1195,7 +1187,6 @@
<Line2 column1="0.000000" column2="4401.000000" column3="5600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1379,7 +1370,6 @@
<Line2 column1="0.000000" column2="3601.000000" column3="6200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1562,7 +1552,6 @@
<Line2 column1="0.000000" column2="4001.000000" column3="11000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="14810" height="25050"/>
@@ -2361,7 +2350,6 @@
<Line2 column1="0.000000" column2="4201.000000" column3="11000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
diff --git a/sd/qa/unit/data/xml/shapes-test_page2.xml b/sd/qa/unit/data/xml/shapes-test_page2.xml
index c63c81f7b1b6..f7ecaa648e0e 100644
--- a/sd/qa/unit/data/xml/shapes-test_page2.xml
+++ b/sd/qa/unit/data/xml/shapes-test_page2.xml
@@ -13,7 +13,6 @@
<Line2 column1="0.000000" column2="2201.000000" column3="1200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -120,7 +119,6 @@
<Line2 column1="0.000000" column2="2401.000000" column3="1000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -305,7 +303,6 @@
<Line2 column1="0.000000" column2="2201.000000" column3="1400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -404,7 +401,6 @@
<Line2 column1="0.000000" column2="3801.000000" column3="1000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="640" height="861"/>
@@ -497,7 +493,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="1400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="11200" height="11200"/>
@@ -595,7 +590,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="1400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -935,7 +929,6 @@
<Line2 column1="0.000000" column2="1601.000000" column3="5600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1464,7 +1457,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="5000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -1557,7 +1549,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="5200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="20590" height="20590"/>
@@ -2032,7 +2023,6 @@
<Line2 column1="0.000000" column2="1201.000000" column3="6000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2117,7 +2107,6 @@
<Line2 column1="0.000000" column2="2401.000000" column3="5200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2196,7 +2185,6 @@
<Line2 column1="0.000000" column2="2401.000000" column3="5400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2275,7 +2263,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="9800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2390,7 +2377,6 @@
<Line2 column1="0.000000" column2="2801.000000" column3="9800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2500,7 +2486,6 @@
<Line2 column1="0.000000" column2="3201.000000" column3="9200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2610,7 +2595,6 @@
<Line2 column1="0.000000" column2="3401.000000" column3="9600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2753,7 +2737,6 @@
<Line2 column1="0.000000" column2="2401.000000" column3="9800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -2990,7 +2973,6 @@
<Line2 column1="0.000000" column2="3001.000000" column3="9600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
diff --git a/sd/qa/unit/data/xml/shapes-test_page3.xml b/sd/qa/unit/data/xml/shapes-test_page3.xml
index 208948520014..7b45e586e8c5 100644
--- a/sd/qa/unit/data/xml/shapes-test_page3.xml
+++ b/sd/qa/unit/data/xml/shapes-test_page3.xml
@@ -21,7 +21,6 @@
<Line2 column1="0.000000" column2="2800.000000" column3="1800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="4800" positionY="3600" sizeX="1200" sizeY="200" type="com.sun.star.drawing.LineShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" 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"/>
@@ -44,7 +43,6 @@
<Line2 column1="0.000000" column2="200.000000" column3="3600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="8629" positionY="86" sizeX="7592" sizeY="7398" type="com.sun.star.drawing.OpenBezierShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" 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="cfe7f5" fillTransparence="0" fillTransparenceGradientName="">
<FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
@@ -59,7 +57,6 @@
<Line2 column1="0.000000" column2="7398.482222" column3="85.734286"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<pointSequence>
<point positionX="8632" positionY="7287" polygonFlags="NORMAL"/>
<point positionX="8587" positionY="6521" polygonFlags="CONTROL"/>
@@ -223,7 +220,6 @@
<Line2 column1="0.000000" column2="1200.000000" column3="6400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="18348" positionY="525" sizeX="8645" sizeY="6751" type="com.sun.star.drawing.ClosedBezierShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" 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="cfe7f5" fillTransparence="0" fillTransparenceGradientName="">
<FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
@@ -238,7 +234,6 @@
<Line2 column1="0.000000" column2="6751.172578" column3="525.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<pointSequence>
<point positionX="18348" positionY="7243" polygonFlags="NORMAL"/>
<point positionX="18951" positionY="7332" polygonFlags="CONTROL"/>
@@ -437,7 +432,6 @@
<Line2 column1="0.000000" column2="6913.571703" column3="7886.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<pointSequence>
<point positionX="9200" positionY="13600" polygonFlags="NORMAL"/>
<point positionX="9200" positionY="12200" polygonFlags="CONTROL"/>
@@ -510,7 +504,6 @@
<Line2 column1="0.000000" column2="4800.051183" column3="9000.190964"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="1312" positionY="8865" sizeX="5636" sizeY="6339" type="com.sun.star.drawing.OpenBezierShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" 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="cfe7f5" fillTransparence="0" fillTransparenceGradientName="">
<FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
@@ -525,7 +518,6 @@
<Line2 column1="0.000000" column2="6339.544162" column3="8864.747882"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<pointSequence>
<point positionX="1401" positionY="13600" polygonFlags="NORMAL"/>
<point positionX="2001" positionY="11200" polygonFlags="CONTROL"/>
@@ -610,7 +602,6 @@
<Line2 column1="0.000000" column2="6000.000000" column3="9800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="2200" positionY="16600" sizeX="7800" sizeY="3000" type="com.sun.star.drawing.PolyPolygonShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" 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="cfe7f5" fillTransparence="0" fillTransparenceGradientName="">
<FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
@@ -661,7 +652,6 @@
<Line2 column1="0.000000" column2="3000.000000" column3="16600.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
<XShape positionX="12400" positionY="17200" sizeX="6200" sizeY="2600" type="com.sun.star.drawing.PolyPolygonShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="true" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="CENTER" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" 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="cfe7f5" fillTransparence="0" fillTransparenceGradientName="">
<FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
@@ -720,6 +710,5 @@
<Line2 column1="0.000000" column2="2600.000000" column3="17200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
</XShapes>
diff --git a/sd/qa/unit/data/xml/shapes-test_page4.xml b/sd/qa/unit/data/xml/shapes-test_page4.xml
index af683ddb1ff8..07ecc09ba03e 100644
--- a/sd/qa/unit/data/xml/shapes-test_page4.xml
+++ b/sd/qa/unit/data/xml/shapes-test_page4.xml
@@ -13,7 +13,6 @@
<Line2 column1="0.000000" column2="7001.000000" column3="1800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="88" height="21600"/>
@@ -181,7 +180,6 @@
<Line2 column1="0.000000" column2="5601.000000" column3="2400.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -295,7 +293,6 @@
<Line2 column1="0.000000" column2="4601.000000" column3="3800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="88" height="21600"/>
@@ -461,7 +458,6 @@
<Line2 column1="0.000000" column2="3001.000000" column3="2000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -573,7 +569,6 @@
<Line2 column1="0.000000" column2="5601.000000" column3="9800.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
diff --git a/sd/qa/unit/data/xml/shapes-test_page5.xml b/sd/qa/unit/data/xml/shapes-test_page5.xml
index e06b8fff04d5..4bc47c91fe53 100644
--- a/sd/qa/unit/data/xml/shapes-test_page5.xml
+++ b/sd/qa/unit/data/xml/shapes-test_page5.xml
@@ -13,7 +13,6 @@
<Line2 column1="0.000000" column2="4201.000000" column3="3200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -156,7 +155,6 @@
<Line2 column1="0.000000" column2="4401.000000" column3="2200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -393,7 +391,6 @@
<Line2 column1="0.000000" column2="8801.000000" column3="10200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
@@ -535,7 +532,6 @@
<Line2 column1="0.000000" column2="2601.000000" column3="10200.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
<CustomShapeGeometry>
<PropertyValue name="ViewBox">
<ViewBox x="0" y="0" width="21600" height="21600"/>
diff --git a/sd/qa/unit/data/xml/shapes-test_page7.xml b/sd/qa/unit/data/xml/shapes-test_page7.xml
index 367b0549b5f1..2ebed128b549 100644
--- a/sd/qa/unit/data/xml/shapes-test_page7.xml
+++ b/sd/qa/unit/data/xml/shapes-test_page7.xml
@@ -6,6 +6,5 @@
<Line2 column1="0.000000" column2="7859.000000" column3="9000.000000"/>
<Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
</Transformation>
- <InteropGrabBag/>
</XShape>
</XShapes>