From 2adc2f19250eff393b05e17ccd4c3f62f99248f5 Mon Sep 17 00:00:00 2001 From: "Lange, Dr. Herbert" <herbert.lange@uni-hamburg.de> Date: Mon, 4 Apr 2022 11:39:32 +0200 Subject: [PATCH] update refco checker and corpus documentations --- .../validation/quest/RefcoCheckerTest.java | 109 +++--- ...entation_nisv1234_JocelynAznar_Nisvai.fods | 346 +++++++++--------- ...mentation_nisv1234_JocelynAznar_Nisvai.ods | Bin 19093 -> 20406 bytes 3 files changed, 220 insertions(+), 235 deletions(-) diff --git a/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java b/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java index 85dcbcdb..7e05330d 100644 --- a/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java +++ b/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java @@ -66,8 +66,10 @@ public class RefcoCheckerTest { // Read corpus CorpusIO cio = new CorpusIO(); URL corpusUrl = new File(resourcePath).toURI().toURL(); + Report report = new Report(); setRefcoCorpusMethod.invoke(rc, new Corpus("refcoTest", corpusUrl, - cio.read(corpusUrl))); + cio.read(corpusUrl,report))); + assertTrue(report.getRawStatistics().isEmpty()); } @AfterClass @@ -227,7 +229,7 @@ public class RefcoCheckerTest { assertNotNull("Description is null", description); assertFalse("Description is empty", description.isEmpty()); assertEquals("Unexpected description", - "checks the RefCo criteria for a corpus. Requires a RefCo corpus documentation spreadsheet.", + "Checks the RefCo criteria for a corpus. Requires a RefCo corpus documentation spreadsheet.", description); } @@ -447,10 +449,10 @@ public class RefcoCheckerTest { text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",-1); assertNotNull("Text is null for negative index", text); assertTrue("Text is not empty for negative index", text.isEmpty()); - text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",5); - assertNotNull("Text is null for valid index", text); - assertFalse("Text is empty for valid index", text.isEmpty()); - assertEquals("Unexpected text for valid index", "UpperGramLowerLex", text); +// text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",5); +// assertNotNull("Text is null for valid index", text); +// assertFalse("Text is empty for valid index", text.isEmpty()); +// assertEquals("Unexpected text for valid index", "UpperGramLowerLex", text); text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",20); assertNotNull("Text is null for index out of bounds", text); assertTrue("Text is empty for valid bounds", text.isEmpty()); @@ -537,7 +539,7 @@ public class RefcoCheckerTest { } /** - * Test for "private Report refcoGenericCheck()" + * Test for "private Report refcoGenericCheck()" NOTE: Takes 2 minutes */ @Test public void refcoGenericCheckTest() throws NoSuchMethodException, InvocationTargetException, @@ -735,7 +737,7 @@ public class RefcoCheckerTest { assertEquals("Report does not contain the expected number of elements for invalid filename", 2, report.getRawStatistics().size()); assertTrue("Report does not contain the expected item for invalid filename", - report.getFullReports().contains("File does not exist")); + report.getFullReports().contains("Check the file references in the documentation and remove the reference to the files if they have been removed intentionally")); //checkReport("invalid file name", report); // The invalid file name followed by the original valid one s.fileName = "foo," + origFileName; @@ -775,7 +777,7 @@ public class RefcoCheckerTest { } /** - * Test for "private Report refcoTierCheck()" + * Test for "private Report refcoTierCheck()" NOTE: Takes ca 1:35 min */ @Test public void refcoTierCheckTest() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { @@ -791,8 +793,6 @@ public class RefcoCheckerTest { if (f.getType() == String.class // Tier name also triggers not all tiers documented && !f.getName().equals("tierName") - // Morpheme distinction is optional for non-morphology tiers - && !f.getName().equals("morphemeDistinction") ) { String orig = (String) f.get(t); f.set(t, (String) null); @@ -858,26 +858,6 @@ public class RefcoCheckerTest { rc.getCriteria().tiers.get(0).languages = origLanguages; } - // Check morpheme distinction - { - // Backup original value - ArrayList<String> origTierFunction = - (ArrayList<String>) rc.getCriteria().tiers.get(0).tierFunctions.stream().collect(Collectors.toList()); - String origMorphemeDistinction = rc.getCriteria().tiers.get(0).morphemeDistinction; - // make sure it is a morpheme tier - rc.getCriteria().tiers.get(0).tierFunctions = new ArrayList<>(Collections.singleton("morpheme gloss")); - // null morpheme distinction - rc.getCriteria().tiers.get(0).morphemeDistinction = null; - report = (Report) refcoTierCheckMethod.invoke(rc); - checkReport("null morpheme distinction", report); - // empty morpheme distinction - rc.getCriteria().tiers.get(0).morphemeDistinction = ""; - report = (Report) refcoTierCheckMethod.invoke(rc); - checkReport("null morpheme distinction", report); - // Restore origingal - rc.getCriteria().tiers.get(0).tierFunctions = origTierFunction.stream().collect(Collectors.toList()); - rc.getCriteria().tiers.get(0).morphemeDistinction = origMorphemeDistinction; - } // Check all tiers { ArrayList<RefcoChecker.Tier> origTiers = (ArrayList<RefcoChecker.Tier>) @@ -1097,7 +1077,7 @@ public class RefcoCheckerTest { assertEquals("Report does not contain exactly one item", 1, report.getRawStatistics().size()); assertTrue("Report does not contain the positive notice", - report.getFullReports().contains("More than 99 percent of transcription characters are valid")); + report.getFullReports().contains("All characters are valid")); } // Warning about non-matched word because all-caps glosses are ignored { @@ -1136,8 +1116,7 @@ public class RefcoCheckerTest { assertNotEquals("Report is empty for all valid characters", 0, report.getRawStatistics().size()); assertTrue("Report does not contain expected item for all valid characters", - report.getRawStatistics().get(0).toString().contains("More than 99 percent of transcription " + - "characters are valid")); + report.getRawStatistics().get(0).toString().contains("All characters are valid")); } // Valid characters below threshold { @@ -1177,7 +1156,7 @@ public class RefcoCheckerTest { report.getRawStatistics().size()); assertTrue("Report does not contain the expected item", report.getRawStatistics().stream().collect(Collectors.toList()).get(0).toString() - .contains("More than 99 percent of transcription characters are valid")); + .contains("All characters are valid")); } // No documented transcription tier { @@ -1391,33 +1370,33 @@ public class RefcoCheckerTest { // ELANData cd = (ELANData) refcoCorpus.getCorpusData().stream().collect(Collectors.toList()).get(0); // // Null token // { -// RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, (String) null); +// CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, (String) null); // assertEquals("Location for empty token is unknown", -// new RefcoChecker.Location("unknown",""), location); +// new CorpusData.Location("unknown",""), location); // } // // Empty token // { -// RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, ""); +// CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, ""); // assertEquals("Location for empty token is unknown", -// new RefcoChecker.Location("unknown",""), location); +// new CorpusData.Location("unknown",""), location); // } // // Invalid token // { -// RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, "foobar"); +// CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, "foobar"); // assertEquals("Location for invalid token is unknown", -// new RefcoChecker.Location("unknown",""), location); +// new CorpusData.Location("unknown",""), location); // } // // Token in first tier // { -// RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, "Ga=vu"); +// CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, "Ga=vu"); // assertEquals("Unexpected location for token in first tier", -// new RefcoChecker.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"), location); +// new CorpusData.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"), location); // } // // Token in morphology tier // { -// RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, "ARBRE=DEI.P"); +// CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, "ARBRE=DEI.P"); // assertEquals("Unexpected location for token in third tier", -// new RefcoChecker.Location("Tier:Aven","Segment:a226, Time:00:11.800-00:12.695"), location); +// new CorpusData.Location("Tier:Aven","Segment:a226, Time:00:11.800-00:12.695"), location); // } // } @@ -1437,70 +1416,70 @@ public class RefcoCheckerTest { List<String> tierList = new ArrayList<>(Arrays.asList(new String[]{"Aven"})); // Null token { - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc,cd,tierList,(String) null); assertTrue("Locations not empty for null token", locations.isEmpty()); } // Empty token { - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc,cd,tierList,""); assertTrue("Locations not empty for empty token", locations.isEmpty()); } // Null tier list { - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc, cd, null, "Ga=vu"); assertTrue("Locations not empty for null tier list", locations.isEmpty()); } // Empty tier list { - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc, cd, new ArrayList<>(), "Ga=vu"); assertTrue("Locations not empty for empty tier list", locations.isEmpty()); } // Invalid token in a valid tier { - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc, cd, tierList, "foobar"); assertEquals("Locations not empty for invalid token in valid tier", - Collections.singletonList(new RefcoChecker.Location("Unknown", "")), locations); + Collections.singletonList(new CorpusData.Location("Unknown", "")), locations); } // [hors-texte] in Transcription tier { - List<RefcoChecker.Location> expectedLocations = Collections.singletonList( - new RefcoChecker.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300")); - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> expectedLocations = Collections.singletonList( + new CorpusData.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300")); + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc, cd, tierList, "[hors-texte]"); assertEquals("Unexpected locations for [hors-texte] in Transcription tier", expectedLocations, locations); } // [hors-texte] in Morphology tier { - List<RefcoChecker.Location> expectedLocations = Collections.singletonList( - new RefcoChecker.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607")); + List<CorpusData.Location> expectedLocations = Collections.singletonList( + new CorpusData.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607")); tierList = new ArrayList<>(Arrays.asList(new String[]{"Morphologie"})); - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc, cd, tierList, "[hors-texte]"); assertEquals("Unexpected locations for [hors-texte] in Morphology tier", expectedLocations, locations); } // [hors-texte] in both tiers { - List<RefcoChecker.Location> expectedLocations = Arrays.asList(new RefcoChecker.Location[]{ - new RefcoChecker.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300"), - new RefcoChecker.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607") + List<CorpusData.Location> expectedLocations = Arrays.asList(new CorpusData.Location[]{ + new CorpusData.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300"), + new CorpusData.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607") }); tierList.add("Aven"); - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc, cd, tierList, "[hors-texte]"); assertEquals("Unexpected locations for [hors-texte] in both tier", expectedLocations, locations); } // Legal token with several occurrences { - List<RefcoChecker.Location> expectedLocations = new ArrayList<>(Arrays.asList(new RefcoChecker.Location[]{ - new RefcoChecker.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"), - new RefcoChecker.Location("Tier:Aven","Segment:a125, Time:06:22.285-06:25.179") + List<CorpusData.Location> expectedLocations = new ArrayList<>(Arrays.asList(new CorpusData.Location[]{ + new CorpusData.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"), + new CorpusData.Location("Tier:Aven","Segment:a125, Time:06:22.285-06:25.179") })); - List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>) + List<CorpusData.Location> locations = (List<CorpusData.Location>) getLocationsMethod.invoke(rc, cd, tierList, "Ga=vu"); assertEquals("Unexpected locations for legal token with several occurrences", expectedLocations, locations); } diff --git a/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods b/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods index 825a58c2..f39fa550 100644 --- a/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods +++ b/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods @@ -1,20 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> <office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet"> - <office:meta><meta:creation-date>2021-01-04T11:07:53</meta:creation-date><dc:language>fr-FR</dc:language><dc:date>2022-01-12T15:58:55.203457723</dc:date><meta:editing-cycles>251</meta:editing-cycles><meta:editing-duration>P4DT10M30S</meta:editing-duration><meta:generator>LibreOffice/7.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="9" meta:cell-count="815" meta:object-count="0"/><meta:user-defined meta:name="AppVersion">15.0000</meta:user-defined></office:meta> + <office:meta><meta:creation-date>2021-01-04T11:07:53</meta:creation-date><dc:language>fr-FR</dc:language><dc:date>2022-02-17T12:30:29.028264437</dc:date><meta:editing-cycles>252</meta:editing-cycles><meta:editing-duration>P4DT10M46S</meta:editing-duration><meta:generator>LibreOffice/7.2.5.2.0$Linux_X86_64 LibreOffice_project/20$Build-2</meta:generator><meta:document-statistic meta:table-count="9" meta:cell-count="813" meta:object-count="0"/><meta:user-defined meta:name="AppVersion">15.0000</meta:user-defined></office:meta> <office:settings> <config:config-item-set config:name="ooo:view-settings"> <config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item> <config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item> - <config:config-item config:name="VisibleAreaWidth" config:type="int">49785</config:config-item> - <config:config-item config:name="VisibleAreaHeight" config:type="int">10583</config:config-item> + <config:config-item config:name="VisibleAreaWidth" config:type="int">29303</config:config-item> + <config:config-item config:name="VisibleAreaHeight" config:type="int">3175</config:config-item> <config:config-item-map-indexed config:name="Views"> <config:config-item-map-entry> <config:config-item config:name="ViewId" config:type="string">view1</config:config-item> <config:config-item-map-named config:name="Tables"> <config:config-item-map-entry config:name="AnnotationTiers"> - <config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item> - <config:config-item config:name="CursorPositionY" config:type="int">5</config:config-item> + <config:config-item config:name="CursorPositionX" config:type="int">2</config:config-item> + <config:config-item config:name="CursorPositionY" config:type="int">2</config:config-item> <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item> @@ -32,7 +32,7 @@ </config:config-item-map-entry> <config:config-item-map-entry config:name="CorpusComposition"> <config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item> - <config:config-item config:name="CursorPositionY" config:type="int">5</config:config-item> + <config:config-item config:name="CursorPositionY" config:type="int">1</config:config-item> <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item> @@ -139,8 +139,8 @@ <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> </config:config-item-map-entry> <config:config-item-map-entry config:name="Punctuations"> - <config:config-item config:name="CursorPositionX" config:type="int">3</config:config-item> - <config:config-item config:name="CursorPositionY" config:type="int">19</config:config-item> + <config:config-item config:name="CursorPositionX" config:type="int">0</config:config-item> + <config:config-item config:name="CursorPositionY" config:type="int">2</config:config-item> <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item> @@ -175,7 +175,7 @@ <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> </config:config-item-map-entry> </config:config-item-map-named> - <config:config-item config:name="ActiveTable" config:type="string">Glosses</config:config-item> + <config:config-item config:name="ActiveTable" config:type="string">CorpusComposition</config:config-item> <config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1461</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomValue" config:type="int">75</config:config-item> @@ -202,26 +202,23 @@ </config:config-item-map-indexed> </config:config-item-set> <config:config-item-set config:name="ooo:configuration-settings"> - <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item> + <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> + <config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item> + <config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item> + <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item> <config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item> + <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item> + <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> <config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item> <config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item> - <config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item> - <config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item> - <config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item> - <config:config-item config:name="GridColor" config:type="int">12632256</config:config-item> - <config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item> - <config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item> - <config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item> - <config:config-item config:name="PrinterSetup" config:type="base64Binary">uAH+/01GQ0wyNzEwRE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNMMjcxMEROAAAAAAAAAAAAAAAAAAAAAAAWAAMA0wAAAAAAAQAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDTDI3MTBETgpvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6QTQASW5wdXRTbG90OlRSQVkxAER1cGxleDpEdXBsZXhUdW1ibGUAABIAQ09NUEFUX0RVUExFWF9NT0RFFQBEdXBsZXhNb2RlOjpTaG9ydEVkZ2U=</config:config-item> - <config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item> - <config:config-item config:name="SyntaxStringRef" config:type="short">2</config:config-item> - <config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item> - <config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item> - <config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item> - <config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item> - <config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item> <config:config-item-map-indexed config:name="ForbiddenCharacters"> + <config:config-item-map-entry> + <config:config-item config:name="Language" config:type="string">en</config:config-item> + <config:config-item config:name="Country" config:type="string">US</config:config-item> + <config:config-item config:name="Variant" config:type="string"/> + <config:config-item config:name="BeginLine" config:type="string"/> + <config:config-item config:name="EndLine" config:type="string"/> + </config:config-item-map-entry> <config:config-item-map-entry> <config:config-item config:name="Language" config:type="string">fr</config:config-item> <config:config-item config:name="Country" config:type="string">FR</config:config-item> @@ -230,22 +227,32 @@ <config:config-item config:name="EndLine" config:type="string"/> </config:config-item-map-entry> </config:config-item-map-indexed> + <config:config-item config:name="GridColor" config:type="int">12632256</config:config-item> + <config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item> + <config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item> + <config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item> + <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item> + <config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item> + <config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item> + <config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item> + <config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item> <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item> - <config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item> - <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item> - <config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item> - <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item> <config:config-item config:name="PrinterName" config:type="string">MFCL2710DN</config:config-item> <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item> - <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item> - <config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item> - <config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item> + <config:config-item config:name="PrinterSetup" config:type="base64Binary">uQH+/01GQ0wyNzEwRE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNMMjcxMEROAAAAAAAAAAAAAAAAAAAAAAAWAAMA1AAAAAAAAQAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDTDI3MTBETgpvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmFkanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleHREYXRhCkR1cGxleDpEdXBsZXhUdW1ibGUASW5wdXRTbG90OlRSQVkxAFBhZ2VTaXplOkE0AAASAENPTVBBVF9EVVBMRVhfTU9ERRUARHVwbGV4TW9kZTo6U2hvcnRFZGdl</config:config-item> + <config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item> + <config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item> + <config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item> + <config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item> + <config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item> + <config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item> <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item> - <config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item> - <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item> + <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item> + <config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item> + <config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item> + <config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item> + <config:config-item config:name="SyntaxStringRef" config:type="short">2</config:config-item> <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item> - <config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item> - <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item> <config:config-item-map-named config:name="ScriptConfiguration"> <config:config-item-map-entry config:name="Foobar"> <config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item> @@ -286,24 +293,24 @@ </office:scripts> <office:font-face-decls> <style:font-face style:name="*" svg:font-family="*"/> - <style:font-face style:name="Liberation Sans12" svg:font-family="'Liberation Sans1'"/> - <style:font-face style:name="Liberation Sans11" svg:font-family="'Liberation Sans11'"/> - <style:font-face style:name="Times New Roman" svg:font-family="'Times New Roman'" style:font-family-generic="roman"/> - <style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans1'" style:font-family-generic="swiss"/> - <style:font-face style:name="Liberation Sans13" svg:font-family="'Liberation Sans1'" style:font-pitch="variable"/> - <style:font-face style:name="Noto Sans CJK SC1" svg:font-family="'Noto Sans CJK SC'" style:font-pitch="variable"/> - <style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif', 'Times New Roman'" style:font-family-generic="roman" style:font-pitch="variable"/> - <style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/> <style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/> <style:font-face style:name="Droid Sans Devanagari" svg:font-family="'Droid Sans Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/> <style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/> + <style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans1'"/> + <style:font-face style:name="Liberation Sans11" svg:font-family="'Liberation Sans1'" style:font-family-generic="swiss"/> + <style:font-face style:name="Liberation Sans111" svg:font-family="'Liberation Sans11'"/> + <style:font-face style:name="Liberation Sans12" svg:font-family="'Liberation Sans1'" style:font-pitch="variable"/> <style:font-face style:name="Liberation Sans2" svg:font-family="'Liberation Sans'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif', 'Times New Roman'" style:font-family-generic="roman" style:font-pitch="variable"/> <style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Noto Sans CJK SC1" svg:font-family="'Noto Sans CJK SC'" style:font-pitch="variable"/> + <style:font-face style:name="Times New Roman" svg:font-family="'Times New Roman'" style:font-family-generic="roman"/> </office:font-face-decls> <office:styles> <style:default-style style:family="table-cell"> <style:paragraph-properties style:tab-stop-distance="0.4921in"/> - <style:text-properties style:font-name="Liberation Sans" fo:language="fr" fo:country="FR" style:font-name-asian="Noto Sans CJK SC" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari" style:language-complex="hi" style:country-complex="IN"/> + <style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="fr" fo:country="FR" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN"/> </style:default-style> <number:number-style style:name="N0"> <number:number number:min-integer-digits="1"/> @@ -562,7 +569,7 @@ </number:text-style> <style:style style:name="Default" style:family="table-cell"> <style:table-cell-properties style:rotation-align="none" style:vertical-align="bottom"/> - <style:text-properties fo:color="#000000" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="12pt" style:font-size-asian="12pt" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="12pt"/> + <style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="12pt" style:font-size-asian="12pt" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="12pt"/> </style:style> <style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default"/> <style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Default"> @@ -620,62 +627,62 @@ <style:style style:name="Accent_20_1_20_5" style:display-name="Accent 1 5" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties fo:background-color="#000000" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="Accent_20_2_20_6" style:display-name="Accent 2 6" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties fo:background-color="#808080" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="Accent_20_3_20_7" style:display-name="Accent 3 7" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties fo:background-color="#dddddd" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Accent_20_4" style:display-name="Accent 4" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Error_20_8" style:display-name="Error 8" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties fo:background-color="#cc0000" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Footnote_20_9" style:display-name="Footnote 9" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#808080" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#808080" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="normal"/> </style:style> <style:style style:name="Heading_20__28_user_29__20_10" style:display-name="Heading (user) 10" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Hyperlink_20_11" style:display-name="Hyperlink 11" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="Result_20__28_user_29__20_12" style:display-name="Result (user) 12" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Status_20_13" style:display-name="Status 13" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="Text_20_14" style:display-name="Text 14" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="Warning_20_15" style:display-name="Warning 15" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#cc0000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#cc0000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="'Liberation Sans1'" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="'Liberation Sans1'" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> </office:styles> <office:automatic-styles> @@ -692,101 +699,92 @@ <style:table-column-properties fo:break-before="auto" style:column-width="1.1543in"/> </style:style> <style:style style:name="co5" style:family="table-column"> - <style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/> - </style:style> - <style:style style:name="co6" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="5.1374in"/> </style:style> - <style:style style:name="co7" style:family="table-column"> + <style:style style:name="co6" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="3.4547in"/> </style:style> - <style:style style:name="co8" style:family="table-column"> + <style:style style:name="co7" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="1.5047in"/> </style:style> - <style:style style:name="co9" style:family="table-column"> + <style:style style:name="co8" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="1.2016in"/> </style:style> - <style:style style:name="co10" style:family="table-column"> + <style:style style:name="co9" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="10.0063in"/> </style:style> - <style:style style:name="co11" style:family="table-column"> + <style:style style:name="co10" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="1.7583in"/> </style:style> - <style:style style:name="co12" style:family="table-column"> + <style:style style:name="co11" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="1.5228in"/> </style:style> - <style:style style:name="co13" style:family="table-column"> + <style:style style:name="co12" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="1.0811in"/> </style:style> - <style:style style:name="co14" style:family="table-column"> + <style:style style:name="co13" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.7016in"/> </style:style> - <style:style style:name="co15" style:family="table-column"> + <style:style style:name="co14" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.2689in"/> </style:style> - <style:style style:name="co16" style:family="table-column"> + <style:style style:name="co15" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="3.4016in"/> </style:style> - <style:style style:name="co17" style:family="table-column"> + <style:style style:name="co16" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="1.1154in"/> </style:style> - <style:style style:name="co18" style:family="table-column"> + <style:style style:name="co17" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.3201in"/> </style:style> - <style:style style:name="co19" style:family="table-column"> + <style:style style:name="co18" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.4484in"/> </style:style> - <style:style style:name="co20" style:family="table-column"> + <style:style style:name="co19" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="3.2602in"/> </style:style> - <style:style style:name="co21" style:family="table-column"> + <style:style style:name="co20" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="3.5075in"/> </style:style> - <style:style style:name="co22" style:family="table-column"> - <style:table-column-properties fo:break-before="auto" style:column-width="2.4811in"/> - </style:style> - <style:style style:name="co23" style:family="table-column"> + <style:style style:name="co21" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.3752in"/> </style:style> - <style:style style:name="co24" style:family="table-column"> + <style:style style:name="co22" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="3.4366in"/> </style:style> - <style:style style:name="co25" style:family="table-column"> + <style:style style:name="co23" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="4.1457in"/> </style:style> - <style:style style:name="co26" style:family="table-column"> + <style:style style:name="co24" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.0016in"/> </style:style> - <style:style style:name="co27" style:family="table-column"> + <style:style style:name="co25" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="4.1807in"/> </style:style> - <style:style style:name="co28" style:family="table-column"> + <style:style style:name="co26" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="5.2618in"/> </style:style> - <style:style style:name="co29" style:family="table-column"> + <style:style style:name="co27" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="6.0228in"/> </style:style> - <style:style style:name="co30" style:family="table-column"> + <style:style style:name="co28" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.1339in"/> </style:style> - <style:style style:name="co31" style:family="table-column"> + <style:style style:name="co29" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="2.1791in"/> </style:style> - <style:style style:name="co32" style:family="table-column"> + <style:style style:name="co30" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="6.8839in"/> </style:style> - <style:style style:name="co33" style:family="table-column"> + <style:style style:name="co31" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="4.7665in"/> </style:style> - <style:style style:name="co34" style:family="table-column"> + <style:style style:name="co32" style:family="table-column"> <style:table-column-properties fo:break-before="auto" style:column-width="5.7043in"/> </style:style> <style:style style:name="ro1" style:family="table-row"> <style:table-row-properties style:row-height="0.2083in" fo:break-before="auto" style:use-optimal-row-height="true"/> </style:style> - <style:style style:name="ro2" style:family="table-row"> - <style:table-row-properties style:row-height="0.2209in" fo:break-before="auto" style:use-optimal-row-height="true"/> - </style:style> <style:style style:name="ta1" style:family="table" style:master-page-name="PageStyle_5f_Gloss-Abbrev_5f_"> <style:table-properties table:display="true" style:writing-mode="lr-tb"/> </style:style> @@ -819,11 +817,11 @@ </number:text-style> <style:style style:name="ce35" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce36" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="ce37" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties fo:wrap-option="wrap"/> @@ -834,26 +832,26 @@ </style:style> <style:style style:name="ce39" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="DejaVu Sans" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="DejaVu Sans" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> </style:style> <style:style style:name="ce40" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties style:font-name="Liberation Sans12" style:font-name-complex="Liberation Sans12"/> + <style:text-properties style:font-name="Liberation Sans1" style:font-name-complex="Liberation Sans1"/> </style:style> <style:style style:name="ce41" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> </style:style> <style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties fo:text-align="center" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce43" style:family="table-cell" style:parent-style-name="Default"> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce44" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> - <style:text-properties style:font-name="Liberation Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> + <style:text-properties style:font-name="Liberation Sans11" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce45" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> @@ -865,30 +863,30 @@ </style:style> <style:style style:name="ce47" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans11" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans11" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans111" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans111" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce48" style:family="table-cell" style:parent-style-name="Hyperlink_20_11"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="ce49" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties fo:text-align="center" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce50" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties fo:text-align="center" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="ce51" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/> <style:paragraph-properties fo:text-align="start" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> <style:style style:name="ce52" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100"> <style:table-cell-properties style:rotation-align="none"/> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="ce53" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N158"> <style:table-cell-properties style:rotation-align="none"/> @@ -905,20 +903,11 @@ <style:paragraph-properties fo:text-align="justify"/> <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC1" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> </style:style> - <style:style style:name="ce57" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"> - <style:table-cell-properties fo:background-color="transparent"/> - <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> - </style:style> - <style:style style:name="ce58" style:family="table-cell" style:parent-style-name="Default"> - <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/> - <style:paragraph-properties fo:text-align="justify"/> - <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC1" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> - </style:style> <style:style style:name="ce60" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties style:font-name="Liberation Sans12" style:font-name-complex="Liberation Sans12"/> + <style:text-properties style:font-name="Liberation Sans1" style:font-name-complex="Liberation Sans1"/> </style:style> <style:style style:name="ce82" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> + <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/> </style:style> <style:style style:name="ce83" style:family="table-cell" style:parent-style-name="Default"> <style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/> @@ -934,7 +923,7 @@ <style:style style:name="ce90" style:family="table-cell" style:parent-style-name="Default"> <style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:language="en" fo:country="US" style:font-name-asian="Noto Sans CJK SC1" style:font-name-complex="Liberation Serif"/> </style:style> - <style:style style:name="ce31" style:family="table-cell" style:parent-style-name="Default"> + <style:style style:name="ce29" style:family="table-cell" style:parent-style-name="Default"> <style:table-cell-properties style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="none" style:rotation-align="none"/> </style:style> <style:page-layout style:name="pm1"> @@ -981,7 +970,7 @@ <style:text-properties fo:font-size="12pt" style:letter-kerning="true" fo:language="en" fo:country="US" style:language-asian="zh" style:country-asian="CN" style:language-complex="hi" style:country-complex="IN" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:font-size-complex="12pt"/> </style:style> <style:style style:name="T5" style:family="text"> - <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Liberation Sans13" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans13" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> + <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> </office:automatic-styles> <office:master-styles> @@ -990,10 +979,12 @@ <text:p><text:sheet-name>???</text:sheet-name></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p>Page <text:page-number>1</text:page-number></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="Report" style:page-layout-name="pm2"> <style:header> @@ -1001,94 +992,112 @@ <text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p> </style:region-left> <style:region-right> - <text:p><text:date style:data-style-name="N2" text:date-value="2022-01-12">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="15:19:45.493405173">00:00:00</text:time></text:p> + <text:p><text:date style:data-style-name="N2" text:date-value="2022-02-17">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="15:05:16.846482135">00:00:00</text:time></text:p> </style:region-right> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_Gloss-Abbrev_5f_" style:display-name="PageStyle_Gloss-Abbrev_" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_Punctuations" style:display-name="PageStyle_Punctuations" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_AnnotationTiers" style:display-name="PageStyle_AnnotationTiers" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_Transcription" style:display-name="PageStyle_Transcription" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_CorpusComposition" style:display-name="PageStyle_CorpusComposition" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_Overview" style:display-name="PageStyle_Overview" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_CorpusOpenDescription" style:display-name="PageStyle_CorpusOpenDescription" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> <style:master-page style:name="PageStyle_5f_Glossary" style:display-name="PageStyle_Glossary" style:page-layout-name="pm3"> <style:header> <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p> </style:header> <style:header-left style:display="false"/> + <style:header-first style:display="false"/> <style:footer> <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p> </style:footer> <style:footer-left style:display="false"/> + <style:footer-first style:display="false"/> </style:master-page> </office:master-styles> <office:body> @@ -2577,9 +2586,9 @@ </table:table-row> </table:table> <table:table table:name="Overview" table:style-name="ta2"> + <table:table-column table:style-name="co5" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co6" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co7" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co8" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co4" table:number-columns-repeated="61" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce8" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="3" table:number-rows-spanned="1"> @@ -2790,16 +2799,17 @@ </table:table-row> </table:table> <table:table table:name="CorpusComposition" table:style-name="ta3"> + <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> + <table:table-column table:style-name="co8" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co9" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co10" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co11" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co12" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co13" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co14" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co15" table:default-cell-style-name="ce54"/> - <table:table-column table:style-name="co16" table:default-cell-style-name="ce38"/> + <table:table-column table:style-name="co14" table:default-cell-style-name="ce54"/> + <table:table-column table:style-name="co15" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co4" table:number-columns-repeated="1014" table:default-cell-style-name="Default"/> - <table:table-column table:style-name="co17" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/> + <table:table-column table:style-name="co16" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/> <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string"> <text:p>Sessions</text:p> @@ -2893,13 +2903,13 @@ </table:table-row> </table:table> <table:table table:name="AnnotationTiers" table:style-name="ta4"> + <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> + <table:table-column table:style-name="co17" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co18" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co19" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co20" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co21" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co22" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co4" table:number-columns-repeated="1017" table:default-cell-style-name="Default"/> - <table:table-column table:style-name="co17" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/> + <table:table-column table:style-name="co16" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/> <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string"> <text:p>Names</text:p> @@ -2913,9 +2923,6 @@ <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string"> <text:p>Languages</text:p> </table:table-cell> - <table:table-cell table:style-name="ce57" office:value-type="string" calcext:value-type="string"> - <text:p>MorphemeDistinction</text:p> - </table:table-cell> <table:table-cell table:style-name="ce35"/> <table:table-cell table:number-columns-repeated="1018"/> </table:table-row> @@ -2932,9 +2939,6 @@ <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>French</text:p> </table:table-cell> - <table:table-cell table:style-name="ce58" office:value-type="string" calcext:value-type="string"> - <text:p>UpperGramLowerLex</text:p> - </table:table-cell> <table:table-cell table:number-columns-repeated="1019"/> </table:table-row> <table:table-row table:style-name="ro1"> @@ -2950,7 +2954,7 @@ <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>French, bisl1239, nisv1234</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="1020"/> + <table:table-cell table:number-columns-repeated="1019"/> </table:table-row> <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> @@ -2965,7 +2969,7 @@ <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>French</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="1020"/> + <table:table-cell table:number-columns-repeated="1019"/> </table:table-row> <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> @@ -2980,7 +2984,7 @@ <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>French</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="1020"/> + <table:table-cell table:number-columns-repeated="1019"/> </table:table-row> <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> @@ -2995,19 +2999,20 @@ <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>nisv1234</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="1020"/> + <table:table-cell table:number-columns-repeated="1019"/> </table:table-row> <table:table-row table:style-name="ro1" table:number-rows-repeated="1048569"> - <table:table-cell table:number-columns-repeated="1024"/> + <table:table-cell table:number-columns-repeated="1023"/> </table:table-row> <table:table-row table:style-name="ro1"> - <table:table-cell table:number-columns-repeated="1024"/> + <table:table-cell table:number-columns-repeated="1023"/> </table:table-row> </table:table> <table:table table:name="Transcription" table:style-name="ta5"> + <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> + <table:table-column table:style-name="co21" table:default-cell-style-name="ce38"/> + <table:table-column table:style-name="co22" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co23" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co24" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co25" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co4" table:number-columns-repeated="61" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce45" office:value-type="string" calcext:value-type="string"> @@ -3568,7 +3573,6 @@ </table:table-row> </table:table> <table:table table:name="Glosses" table:style-name="ta1"> - <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> <table:table-column table:style-name="co1" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co2" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co3" table:default-cell-style-name="ce38"/> @@ -3653,7 +3657,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>DEF</text:p> </table:table-cell> @@ -3666,7 +3670,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>INTR</text:p> </table:table-cell> @@ -3705,7 +3709,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>COO</text:p> </table:table-cell> @@ -3731,7 +3735,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>T</text:p> </table:table-cell> @@ -3848,7 +3852,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>R</text:p> </table:table-cell> @@ -3861,7 +3865,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>A</text:p> </table:table-cell> @@ -3887,7 +3891,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>INT</text:p> </table:table-cell> @@ -3926,7 +3930,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>INST</text:p> </table:table-cell> @@ -3939,7 +3943,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>OP</text:p> </table:table-cell> @@ -3952,7 +3956,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>DET</text:p> </table:table-cell> @@ -3965,7 +3969,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"> <text:p>C</text:p> </table:table-cell> @@ -3978,7 +3982,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>TMP</text:p> </table:table-cell> @@ -3991,7 +3995,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>INTER</text:p> </table:table-cell> @@ -4199,7 +4203,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>I</text:p> </table:table-cell> @@ -4212,7 +4216,7 @@ </table:table-cell> <table:table-cell table:number-columns-repeated="60"/> </table:table-row> - <table:table-row table:style-name="ro2"> + <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>PN</text:p> </table:table-cell> @@ -4393,11 +4397,11 @@ </table:table> <table:table table:name="Punctuations" table:style-name="ta6"> <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> + <table:table-column table:style-name="co24" table:default-cell-style-name="ce38"/> + <table:table-column table:style-name="co25" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co26" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co27" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co28" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co29" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co30" table:default-cell-style-name="Default"/> + <table:table-column table:style-name="co28" table:default-cell-style-name="Default"/> <table:table-column table:style-name="co4" table:number-columns-repeated="59" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string"> @@ -4735,8 +4739,9 @@ </table:table-row> </table:table> <table:table table:name="CorpusOpenDescription" table:style-name="ta7"> - <table:table-column table:style-name="co31" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co32" table:default-cell-style-name="ce38"/> + <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> + <table:table-column table:style-name="co29" table:default-cell-style-name="ce38"/> + <table:table-column table:style-name="co30" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co4" table:number-columns-repeated="62" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string"> @@ -4760,8 +4765,8 @@ <table:table-cell table:number-columns-repeated="64"/> </table:table-row> <table:table-row table:style-name="ro1"> - <table:table-cell table:style-name="ce31" table:number-columns-spanned="2" table:number-rows-spanned="1"/> - <table:covered-table-cell table:style-name="ce31"/> + <table:table-cell table:style-name="ce29" table:number-columns-spanned="2" table:number-rows-spanned="1"/> + <table:covered-table-cell table:style-name="ce29"/> <table:table-cell table:number-columns-repeated="62"/> </table:table-row> <table:table-row table:style-name="ro1" table:number-rows-repeated="1048568"> @@ -4772,8 +4777,9 @@ </table:table-row> </table:table> <table:table table:name="Glossary" table:style-name="ta8"> - <table:table-column table:style-name="co33" table:default-cell-style-name="ce38"/> - <table:table-column table:style-name="co34" table:default-cell-style-name="ce38"/> + <office:forms form:automatic-focus="false" form:apply-design-mode="false"/> + <table:table-column table:style-name="co31" table:default-cell-style-name="ce38"/> + <table:table-column table:style-name="co32" table:default-cell-style-name="ce38"/> <table:table-column table:style-name="co4" table:number-columns-repeated="62" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string"> @@ -4785,8 +4791,8 @@ <table:table-cell table:number-columns-repeated="62"/> </table:table-row> <table:table-row table:style-name="ro1"> - <table:table-cell table:style-name="ce31" table:number-columns-spanned="2" table:number-rows-spanned="1"/> - <table:covered-table-cell table:style-name="ce31"/> + <table:table-cell table:style-name="ce29" table:number-columns-spanned="2" table:number-rows-spanned="1"/> + <table:covered-table-cell table:style-name="ce29"/> <table:table-cell table:number-columns-repeated="62"/> </table:table-row> <table:table-row table:style-name="ro1" table:number-rows-repeated="1048573"> diff --git a/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.ods b/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.ods index cebbca49a442cf945dbebb3fbb6da28bd0fdf0ab..c42156d7093ae5e9cdf93502362c5f640cff064c 100644 GIT binary patch delta 18533 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%0DUi}vlmx^Hf(&<|eqeV;_8?)ir&Ro<OAeB!0U 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 delta 17133 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 NhEx^?1}QfX4*)3ZxjFy< -- GitLab