Miscellaneous updates:

- Open 1.1 version (_pre2)
- Add the mailing list to the abstract
- Add support for starting a new local project
- Add "git init" workaround to Troubleshooting for JAR dependency on git.
- Move "Understanding" section forward in document.
- Clarify "Workgroup POM" terminology.
- Further cleanup of "Master Template" naming change to "Document Development Guide".
- Additional explanation about publishing of documents, including flow charts
- Add recommendation of installation of Croscore fonts in new Install fonts section
- Include a policy on document versioning
- Add examples of special docbook extensions available in our tooling
- Increase the number of levels of sections in the TOC

Signed-off-by: Jeff Scheel <scheel@us.ibm.com>
master
Jeff Scheel 7 years ago
parent 7e57f86263
commit 284b440273

@ -22,7 +22,7 @@
document and should not be changed. Use of this value is in
in the Abstract section in this file. -->
<!DOCTYPE book [
<!ENTITY template_version "1.0.0">
<!ENTITY template_version "1.1.0">
]>

<book xmlns="http://docbook.org/ns/docbook"
@ -50,18 +50,18 @@
</author>
<copyright>
<!-- TODO: Set copyright year -->
<year>2015, 2016</year>
<year>2015, 2016, 2017</year>
<holder>OpenPOWER Foundation</holder>
</copyright>
<!-- TODO: Set the correct document releaseinfo -->
<releaseinfo>Revision 1.0.1</releaseinfo>
<releaseinfo>Revision 1.1.0_pre2</releaseinfo>
<productname>OpenPOWER</productname>
<pubdate/>

<!-- TODO: Select one of the two following legalnotice role= values:
"apache2" for an Apache V2 license or
"opfExternal" for an official OpenPOWER Foundation external license text.
If you don't know which one to select, leave as "apache2" -->
If you don't know which one to select, change to "opfExternal" and ask your TSC representative. -->
<legalnotice role="apache2">
<!--legalnotice role="opfExternal"-->

@ -80,11 +80,42 @@
<para>This document is a Non-standard Track, Work Group Note work product owned by the
System Software Workgroup and handled in compliance with the requirements outlined in the
<citetitle>OpenPOWER Foundation Work Group (WG) Process</citetitle> document. It was
created using the <citetitle>Master Template Guide</citetitle> version &template_version;.</para>
created using the <citetitle>Document Development Guide</citetitle> version &template_version;.
Comments, questions, etc. can be submitted to the public mailing list for this document at
<email>syssw-doc_devel_guide@mailinglist.openpowerfoundation.org</email>. Additionally,
the #doc-devel channel in the OpenPOWER Foundation Slack room
(<link xlink:href="https://openpowerfoundation.slack.com/">openpowerfoundation.slack.com</link>)
can be used to answer more interactive questions.</para>
</abstract>

<revhistory>
<!-- TODO: Set the initial version information and clear any old information out -->
<revision>
<date>2017-02-17</date>
<revdescription>
<para>Version 1.1.0 updates:
<itemizedlist spacing="compact">
<listitem>
<para>Enhancements document creation to address project creation and update process.</para>
</listitem>
<listitem>
<para>Add "git" error to troubleshooting sections until JAR dependency removed.</para>
</listitem>
<listitem>
<para>Add optional font installation step to getting started.</para>
</listitem>
<listitem>
<para>Provide example usage of OPF Docbook extensions.</para>
</listitem>
<listitem>
<para>Extend explanation of versioning policy.</para>
</listitem>
<listitem>
<para>Correct, improve miscellenous wording and grammar.</para>
</listitem>
</itemizedlist></para>
</revdescription>
</revision>
<revision>
<date>2016-09-13</date>
<revdescription>

@ -215,6 +215,48 @@ main()
<para>If code formatting is not quite what you need, simply displaying text "literally" may suffice as follows: <literal>This is my literal
text. It ignores whitespace.</literal></para>
</section>
<xi:include href="sec_example.xml"/>
<section>
<title>Examples of OpenPOWER Foundation Docbook extensions</title>
<para>The OpenPOWER Foundation Maven Plugin supports a number of extensions that are not pure Docbook. These are:</para>

<simplesect>
<title>Setting text color explicitly</title>
<para>Text color can be controlled using <literal>&lt;phrase role="color"&gt;</literal> tags. For example, this
text:<programlisting><![CDATA[<para><phrase role="red">A red sentence.</phrase></para>]]></programlisting> produces this sentence:</para>
<para><phrase role="red">A red sentence.</phrase></para>
<para>Valid colors include either a keyword color name or a numerical RGB specification. Keyword names are common with the HTML 4 specificiation:
<literal>aqua</literal>, <literal>black</literal>, <literal>blue</literal>, <literal>fuchsia</literal>, <literal>gray</literal>,
<literal>green</literal>, <literal>lime</literal>, <literal>maroon</literal>, <literal>navy</literal>, <literal>olive</literal>,
<literal>purple</literal>, <literal>red</literal>, <literal>silver</literal>, <literal>teal</literal>, <literal>white</literal>,
and <literal>yellow</literal>. Additionally, RGB values can be <literal>#nnnnnn</literal> where <literal>nnnnnn</literal> is a hexidecimal color value or
<literal>rgb(n1, n2, n3)</literal> where <literal>n1</literal>, <literal>n2</literal>, and <literal>n3</literal> are intergers 0-255.</para>
</simplesect>
<simplesect>
<title>Inserting line breaks</title>
<para>Line breaks can be introduced using <literal>&lt;?linebreak?&gt;</literal> tags. For example, this
text:<programlisting><![CDATA[<para>A line break <?linebreak?> in the middle of text</para>]]></programlisting> produces this sentence:</para>
<para>A line break <?linebreak?> in the middle of text</para>
<para>This tag becomes useful in table text spacing.</para>
</simplesect>
<simplesect>
<title>Inserting page breaks</title>
<para>Page breaks can be introduced using <literal>&lt;?hard-pagebreak?&gt;</literal> tags. For example, this
text:<programlisting><![CDATA[<para>A page break</para> <?hard-pagebreak?> <para>Between two paragraphs</para>]]></programlisting> produces this sentence:</para>
<para>A page break</para> <?hard-pagebreak?> <para>Between two paragraphs</para>
<para>This tag becomes useful in placing tables on page. Placing this statement before a large table may prevent it from spanning a page.</para>
<warning><para>Because the XSL template behind the Processing Instruction generates
a <programlisting><![CDATA[<fo:block break-after='page'/>]]></programlisting> in
the book FO output, this instruction should be used in the outer most blocks of a section to work effectively. Use inside lists and other structural
components may result in the text after the break being dropped. <emphasis role="bold">User beware!</emphasis>.</para></warning>
</simplesect>
</section>

</section>
</chapter>

@ -21,8 +21,9 @@ xmlns:xlink="http://www.w3.org/1999/xlink">

<para>The <emphasis>OpenPOWER Foundation Documentation Development Guide</emphasis>
provides a framework for OpenPOWER public and private
documentation. The goal of the template and this writeup is to promote community contributions
to OpenPOWER documenation and to enable new contributions within a common look and feel. </para>
documentation. The goal of the document is to describe the documentation development
process, to promote community contributions to OpenPOWER documenation and to enable new
contributions with a common look and feel. </para>

<para>The major sections of this document addresses the following topics:</para>
<itemizedlist>
@ -31,6 +32,11 @@ xmlns:xlink="http://www.w3.org/1999/xlink">
This section details tools and commands used to contribute to OpenPOWER documentation.
All users who are new to OpenPOWER Foundation documentation should start here.</para>
</listitem>
<listitem>
<para><xref linkend="section_template_structure" endterm="section_template_structure_title"/>:
This section provides detailed descriptions of the various project
components and their roles in the documentation creation process.</para>
</listitem>
<listitem>
<para><xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>:
This section provides step-by-step instructions on how to create a new document
@ -51,15 +57,10 @@ xmlns:xlink="http://www.w3.org/1999/xlink">
This section explains key document types and the appropriate work flow for publishing OpenPOWER Foundation
documents.</para>
</listitem>
<listitem>
<para><xref linkend="section_template_structure" endterm="section_template_structure_title"/>:
This section provides detailed descriptions of the various project
components and their roles in the documentation creation process.</para>
</listitem>
<listitem>
<para><xref linkend="section_template_policies" endterm="section_template_policies_title"/>: This section contains
the generally accepted guidelines for creating OpenPOWER documentation. Use this section as a reference
for documentation style beyond template provided features.</para>
for documentation source contruction and community process.</para>
</listitem>
<listitem>
<para><xref linkend="section_template_faq" endterm="section_template_faq_title"/>:
@ -82,11 +83,11 @@ xmlns:xlink="http://www.w3.org/1999/xlink">
provides examples of common documenation constructs in XML.</para>

<xi:include href="sec_template_getting_started.xml"/>
<xi:include href="sec_template_structure.xml"/>
<xi:include href="sec_template_new_document.xml"/>
<xi:include href="sec_template_existing_document.xml"/>
<xi:include href="sec_template_debugging.xml"/>
<xi:include href="sec_template_process.xml"/>
<xi:include href="sec_template_structure.xml"/>
<xi:include href="sec_template_policies.xml"/>
<xi:include href="sec_template_faq.xml"/>
<xi:include href="sec_template_git_commands.xml"/>

@ -0,0 +1,546 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="152.4mm" height="186.69mm" viewBox="0 0 15240 18669" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="15240" height="18669"/>
</clipPath>
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="y" horiz-adv-x="1033" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 430,-425 336,-402 266,-356 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,953 828,1003 831,1053 833,1078 836,1078 L 1007,1078 C 1003,1042 1001,968 1001,855 L 1001,30 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 956,222 912,138 837,75 762,12 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,114 312,71 309,27 307,5 306,5 L 132,5 C 136,41 138,115 138,227 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,67 114,124 87,204 87,304 87,417 124,504 198,564 271,625 390,655 554,655 L 797,655 797,715 C 797,804 778,868 741,907 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,189 723,230 753,282 782,334 797,388 797,443 L 797,531 600,531 C 515,531 451,523 408,507 364,491 330,466 307,432 284,399 272,355 272,300 272,241 288,196 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="Y" horiz-adv-x="1298" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
<glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
<glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
<glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
<glyph unicode="?" horiz-adv-x="980" d="M 1063,1032 C 1063,982 1056,937 1041,898 1026,859 1005,822 978,789 951,756 906,716 844,671 L 764,612 C 716,577 680,541 657,503 634,464 622,422 621,377 L 446,377 C 447,423 455,463 468,498 481,533 497,563 518,590 539,617 562,641 588,662 614,683 640,703 667,722 694,741 720,760 746,779 771,798 794,819 814,842 834,865 850,892 863,921 875,950 881,985 881,1024 881,1100 855,1160 804,1204 752,1248 679,1270 586,1270 493,1270 419,1247 364,1202 309,1156 277,1093 268,1014 L 84,1014 C 101,1148 153,1251 240,1322 327,1394 441,1430 584,1430 733,1430 850,1395 935,1325 1020,1254 1063,1157 1063,1032 Z M 438,0 L 438,201 633,201 633,0 438,0 Z"/>
<glyph unicode="&gt;" horiz-adv-x="1033" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
<glyph unicode="&lt;" horiz-adv-x="1033" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
<glyph unicode="/" horiz-adv-x="583" d="M 0,-20 L 411,1484 569,1484 162,-20 0,-20 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_2" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="italic" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1113" d="M 622,-14 L 516,-14 233,778 51,778 51,895 321,895 563,205 993,1620 1122,1620 622,-14 Z"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_3" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
<glyph unicode="w" horiz-adv-x="1641" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
<glyph unicode="u" horiz-adv-x="1006" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
<glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
<glyph unicode="p" horiz-adv-x="1033" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
<glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
<glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
<glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
<glyph unicode="g" horiz-adv-x="1033" d="M 596,-434 C 464,-434 358,-409 278,-359 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
<glyph unicode="f" horiz-adv-x="663" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1050 946,946 1028,843 1069,691 1069,491 L 1069,491 375,491 C 375,384 395,304 434,250 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
<glyph unicode="d" horiz-adv-x="1033" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
<glyph unicode="c" horiz-adv-x="1007" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1069 914,1004 997,939 1050,849 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1069,291 1043,224 1000,165 957,106 900,60 830,28 760,-4 681,-20 594,-20 Z"/>
<glyph unicode="b" horiz-adv-x="1033" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,204 60,307 60,420 97,506 170,565 243,624 348,653 487,653 L 720,653 720,709 C 720,780 708,833 683,868 658,903 618,920 562,920 510,920 472,909 448,886 423,864 408,826 402,774 L 109,774 C 127,882 175,963 254,1019 332,1074 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,498 L 576,498 C 511,498 464,492 437,480 410,469 389,451 375,426 360,402 353,370 353,329 353,278 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,235 668,268 689,310 710,352 720,397 720,444 L 720,498 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1567,0 L 1217,0 1026,815 C 1003,911 983,1011 967,1116 951,1029 938,962 928,917 918,871 847,565 715,0 L 365,0 2,1409 301,1409 505,499 551,279 C 570,372 588,460 606,545 623,629 690,917 805,1409 L 1135,1409 1313,659 C 1327,603 1351,476 1384,279 L 1409,395 1462,625 1632,1409 1931,1409 1567,0 Z"/>
<glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 1009,1409 1139,1373 1230,1301 1321,1228 1367,1124 1367,989 1367,890 1339,805 1283,734 1227,662 1151,615 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1112 983,1180 810,1180 L 432,1180 432,764 818,764 C 901,764 963,783 1006,820 1049,857 1070,910 1070,977 Z"/>
<glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,872 1275,791 1234,720 1193,649 1134,594 1057,555 980,516 888,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 939,1409 1069,1370 1160,1293 1251,1215 1296,1105 1296,963 Z M 999,958 C 999,1106 912,1180 737,1180 L 432,1180 432,723 745,723 C 826,723 889,743 933,784 977,824 999,882 999,958 Z"/>
<glyph unicode="M" horiz-adv-x="1430" d="M 1307,0 L 1307,854 C 1307,873 1307,893 1308,912 1308,931 1311,1014 1317,1161 1270,982 1235,857 1212,786 L 958,0 748,0 494,786 387,1161 C 395,1006 399,904 399,854 L 399,0 137,0 137,1409 532,1409 784,621 806,545 854,356 917,582 1176,1409 1569,1409 1569,0 1307,0 Z"/>
<glyph unicode="G" horiz-adv-x="1404" d="M 806,211 C 883,211 957,222 1029,245 1101,267 1157,295 1196,330 L 1196,525 852,525 852,743 1466,743 1466,225 C 1391,148 1294,88 1175,45 1055,2 929,-20 798,-20 569,-20 392,44 269,171 146,298 84,478 84,711 84,943 146,1121 270,1245 394,1368 572,1430 805,1430 1136,1430 1346,1308 1436,1063 L 1164,981 C 1135,1052 1089,1106 1026,1143 963,1180 890,1198 805,1198 666,1198 561,1156 489,1072 417,988 381,868 381,711 381,552 418,429 493,342 567,255 671,211 806,211 Z"/>
<glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
<glyph unicode="A" horiz-adv-x="1404" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 739,1192 L 733,1170 C 726,1146 718,1119 709,1088 700,1057 642,889 537,582 L 942,582 803,987 760,1123 739,1192 Z"/>
<glyph unicode="?" horiz-adv-x="1060" d="M 1133,1026 C 1133,961 1119,903 1090,852 1061,801 1006,747 927,690 L 851,635 C 806,602 772,569 750,536 727,503 715,466 713,426 L 446,426 C 450,494 469,555 504,608 538,661 588,711 655,758 726,807 777,851 806,889 835,926 850,968 850,1014 850,1073 831,1119 793,1153 754,1187 700,1204 629,1204 562,1204 505,1185 460,1147 414,1108 387,1058 379,995 L 94,995 C 112,1132 168,1239 261,1315 354,1392 476,1430 625,1430 783,1430 907,1394 998,1323 1088,1251 1133,1152 1133,1026 Z M 438,0 L 438,270 727,270 727,0 438,0 Z"/>
<glyph unicode=":" horiz-adv-x="319" d="M 197,752 L 197,1034 485,1034 485,752 197,752 Z M 197,0 L 197,281 485,281 485,0 197,0 Z"/>
<glyph unicode="." horiz-adv-x="319" d="M 139,0 L 139,305 428,305 428,0 139,0 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_4" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1165" d="M 746,-25 L 578,-25 308,729 124,729 124,895 435,895 654,260 1066,1620 1252,1620 746,-25 Z"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56 id57 id58 id59"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
</defs>
<defs class="TextEmbeddedBitmaps"/>
<g>
<g id="id2" class="Master_Slide">
<g id="bg-id2" class="Background"/>
<g id="bo-id2" class="BackgroundObjects"/>
</g>
</g>
<g class="SlideGroup">
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="6593" y="1499" width="205" height="1227"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6696,1500 L 6695,2434"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6695,2725 L 6797,2421 6594,2420 6695,2725 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="6934" y="1395" width="6451" height="1206"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7184" y="1778"><tspan fill="rgb(0,0,0)" stroke="none">&lt;workProduct&gt;workgroupNotes&lt;/workProduct&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7184" y="2096"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7184" y="2414"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;workgroupConfidential&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="6595" y="3771" width="205" height="637"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6698,3772 L 6697,4116"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6697,4407 L 6799,4103 6596,4102 6697,4407 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="4725" y="2733" width="3940" height="1019"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6695,3750 L 4726,3750 4726,2734 8663,2734 8663,3750 6695,3750 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6695,3750 L 4726,3750 4726,2734 8663,2734 8663,3750 6695,3750 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="5084" y="2725" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5334" y="3168"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6316" y="3562"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="4724" y="13857" width="3940" height="1019"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6694,14874 L 4725,14874 4725,13858 8662,13858 8662,14874 6694,14874 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6694,14874 L 4725,14874 4725,13858 8662,13858 8662,14874 6694,14874 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="5083" y="13997" width="3229" height="762"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5334" y="14499"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="4725" y="5861" width="3940" height="1019"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 6695,6878 L 4726,6878 4726,5862 8663,5862 8663,6878 6695,6878 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6695,6878 L 4726,6878 4726,5862 8663,5862 8663,6878 6695,6878 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="5084" y="5853" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5334" y="6296"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5692" y="6690"><tspan fill="rgb(0,0,0)" stroke="none">Review Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="6924" y="5230" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7174" y="5613"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="6251" y="4405" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6696,4406 L 7141,4850 6696,5295 6252,4850 6696,4406 6696,4406 Z M 6252,4406 L 6252,4406 Z M 7142,5296 L 7142,5296 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6696,4406 L 7141,4850 6696,5295 6252,4850 6696,4406 6696,4406 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6252,4406 L 6252,4406 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7142,5296 L 7142,5296 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="6340" y="4539" width="719" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="6591" y="4983"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="6594" y="5295" width="205" height="559"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6697,5296 L 6696,5562"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6695,5853 L 6798,5549 6595,5548 6695,5853 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="3909" y="4850" width="2346" height="1629"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6253,4851 L 3910,4851 3910,6376 4436,6376"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 4727,6376 L 4423,6275 4423,6478 4727,6376 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="2324" y="4331" width="4275" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2575" y="4714"><tspan fill="rgb(0,174,0)" stroke="none">Public review of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="5709" y="5222" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5965" y="5605"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="3026" y="5233" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="3277" y="5616"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id20">
<rect class="BoundingBox" stroke="none" fill="none" x="6595" y="6899" width="205" height="582"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6695,6900 L 6697,7189"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6699,7480 L 6798,7175 6595,7176 6699,7480 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id21">
<rect class="BoundingBox" stroke="none" fill="none" x="6924" y="11850" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7174" y="12233"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id22">
<rect class="BoundingBox" stroke="none" fill="none" x="1380" y="9355" width="4938" height="3599"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6246,9356 L 1381,9356 1381,12851 6026,12851"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6317,12851 L 6013,12750 6013,12953 6317,12851 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id23">
<rect class="BoundingBox" stroke="none" fill="none" x="5686" y="11432" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5942" y="11815"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id24">
<rect class="BoundingBox" stroke="none" fill="none" x="6934" y="3796" width="6167" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7184" y="4179"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;review&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id25">
<rect class="BoundingBox" stroke="none" fill="none" x="6934" y="13097" width="6561" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7184" y="13480"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;published&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id26">
<rect class="BoundingBox" stroke="none" fill="none" x="6934" y="996" width="6451" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="7184" y="1379"><tspan fill="rgb(0,0,0)" stroke="none">Document pom.xml variable changes:</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id27">
<rect class="BoundingBox" stroke="none" fill="none" x="6594" y="14873" width="205" height="735"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6694,14874 L 6696,15316"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6698,15607 L 6798,15302 6595,15303 6698,15607 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id28">
<rect class="BoundingBox" stroke="none" fill="none" x="6925" y="16030" width="6019" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7175" y="16413"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;workgroupConfidential&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id29">
<rect class="BoundingBox" stroke="none" fill="none" x="6252" y="15605" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6697,15606 L 7142,16050 6697,16495 6253,16050 6697,15606 6697,15606 Z M 6253,15606 L 6253,15606 Z M 7143,16496 L 7143,16496 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6697,15606 L 7142,16050 6697,16495 6253,16050 6697,15606 6697,15606 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6253,15606 L 6253,15606 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7143,16496 L 7143,16496 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id30">
<rect class="BoundingBox" stroke="none" fill="none" x="6341" y="15739" width="719" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="6592" y="16183"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id31">
<rect class="BoundingBox" stroke="none" fill="none" x="1457" y="15531" width="5143" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1708" y="15914"><tspan fill="rgb(0,174,0)" stroke="none">Public development of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id32">
<rect class="BoundingBox" stroke="none" fill="none" x="5687" y="16532" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5943" y="16915"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id33">
<rect class="BoundingBox" stroke="none" fill="none" x="7050" y="15460" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7301" y="15843"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id34">
<rect class="BoundingBox" stroke="none" fill="none" x="6935" y="14997" width="5917" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7185" y="15380"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id35">
<rect class="BoundingBox" stroke="none" fill="none" x="6925" y="17131" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7175" y="17514"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id36">
<rect class="BoundingBox" stroke="none" fill="none" x="6697" y="3146" width="7132" height="14040"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6698,16496 L 6698,17184 13827,17184 13827,3248 8955,3248"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8664,3248 L 8969,3350 8969,3147 8664,3248 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id37">
<rect class="BoundingBox" stroke="none" fill="none" x="7142" y="3146" width="6687" height="12907"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7143,16051 L 13827,16051 13827,3248 8955,3248"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8664,3248 L 8969,3350 8969,3147 8664,3248 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id38">
<rect class="BoundingBox" stroke="none" fill="none" x="6316" y="12469" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6540,12470 L 6856,12470 7080,12693 7080,13009 6856,13233 6540,13233 6317,13009 6317,12693 6540,12470 Z M 6317,12470 L 6317,12470 Z M 7080,13233 L 7080,13233 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6540,12470 L 6856,12470 7080,12693 7080,13009 6856,13233 6540,13233 6317,13009 6317,12693 6540,12470 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6317,12470 L 6317,12470 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7080,13233 L 7080,13233 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id39">
<rect class="BoundingBox" stroke="none" fill="none" x="6340" y="12536" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="6599" y="12980"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id40">
<rect class="BoundingBox" stroke="none" fill="none" x="6594" y="13231" width="205" height="628"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6698,13232 L 6696,13567"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6694,13858 L 6797,13554 6594,13553 6694,13858 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id41">
<rect class="BoundingBox" stroke="none" fill="none" x="6967" y="12566" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7217" y="12949"><tspan fill="rgb(255,0,0)" stroke="none">Work Group Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id42">
<rect class="BoundingBox" stroke="none" fill="none" x="6244" y="8910" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6689,8911 L 7134,9355 6689,9800 6245,9355 6689,8911 6689,8911 Z M 6245,8911 L 6245,8911 Z M 7135,9801 L 7135,9801 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6689,8911 L 7134,9355 6689,9800 6245,9355 6689,8911 6689,8911 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6245,8911 L 6245,8911 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7135,9801 L 7135,9801 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id43">
<rect class="BoundingBox" stroke="none" fill="none" x="6343" y="9044" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6594" y="9488"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id44">
<rect class="BoundingBox" stroke="none" fill="none" x="6588" y="9800" width="205" height="630"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6690,9801 L 6690,10138"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6690,10429 L 6792,10125 6589,10125 6690,10429 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id45">
<rect class="BoundingBox" stroke="none" fill="none" x="6917" y="10806" width="6019" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7167" y="11189"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;workgroupConfidential&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id46">
<rect class="BoundingBox" stroke="none" fill="none" x="6244" y="10427" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6689,10428 L 7134,10872 6689,11317 6245,10872 6689,10428 6689,10428 Z M 6245,10428 L 6245,10428 Z M 7135,11318 L 7135,11318 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6689,10428 L 7134,10872 6689,11317 6245,10872 6689,10428 6689,10428 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6245,10428 L 6245,10428 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7135,11318 L 7135,11318 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id47">
<rect class="BoundingBox" stroke="none" fill="none" x="6343" y="10561" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6594" y="11005"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id48">
<rect class="BoundingBox" stroke="none" fill="none" x="1449" y="10253" width="5143" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2475" y="10636"><tspan fill="rgb(0,174,0)" stroke="none">Public release of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id49">
<rect class="BoundingBox" stroke="none" fill="none" x="7042" y="10282" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7293" y="10665"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id50">
<rect class="BoundingBox" stroke="none" fill="none" x="6927" y="9719" width="5917" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7177" y="10102"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id51">
<rect class="BoundingBox" stroke="none" fill="none" x="2461" y="8654" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2780" y="9037"><tspan fill="rgb(0,174,0)" stroke="none"> </tspan><tspan fill="rgb(0,174,0)" stroke="none">Material updates needed?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id52">
<rect class="BoundingBox" stroke="none" fill="none" x="5779" y="9655" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="6035" y="10038"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id53">
<rect class="BoundingBox" stroke="none" fill="none" x="5342" y="9283" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5593" y="9666"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id54">
<rect class="BoundingBox" stroke="none" fill="none" x="6317" y="7479" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6541,7480 L 6857,7480 7081,7703 7081,8019 6857,8243 6541,8243 6318,8019 6318,7703 6541,7480 Z M 6318,7480 L 6318,7480 Z M 7081,8243 L 7081,8243 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6541,7480 L 6857,7480 7081,7703 7081,8019 6857,8243 6541,8243 6318,8019 6318,7703 6541,7480 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6318,7480 L 6318,7480 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7081,8243 L 7081,8243 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id55">
<rect class="BoundingBox" stroke="none" fill="none" x="6341" y="7546" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="6600" y="7990"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id56">
<rect class="BoundingBox" stroke="none" fill="none" x="6985" y="7580" width="3322" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7235" y="7963"><tspan fill="rgb(255,0,0)" stroke="none">Review</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id57">
<rect class="BoundingBox" stroke="none" fill="none" x="6592" y="8241" width="205" height="672"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6699,8242 L 6694,8621"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6690,8912 L 6796,8609 6593,8606 6690,8912 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id58">
<rect class="BoundingBox" stroke="none" fill="none" x="7134" y="3146" width="6695" height="7729"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7135,10873 L 13827,10873 13827,3248 8955,3248"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8664,3248 L 8969,3350 8969,3147 8664,3248 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id59">
<rect class="BoundingBox" stroke="none" fill="none" x="6689" y="3146" width="7140" height="8778"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6690,11318 L 6690,11922 13827,11922 13827,3248 8955,3248"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8664,3248 L 8969,3350 8969,3147 8664,3248 Z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 59 KiB

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<svg version="1.2" baseProfile="tiny" width="152.4mm" height="101.6mm" viewBox="0 0 15240 10160" preserveAspectRatio="xMidYMid" fill-rule="evenodd" clip-path="url(#presentation_clip_path)" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="152.4mm" height="101.6mm" viewBox="0 0 15240 10160" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="15240" height="10160"/>
@ -8,7 +8,7 @@
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="450"/>
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
@ -17,26 +17,16 @@
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 956,222 912,138 837,75 762,12 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,67 114,124 87,204 87,304 87,417 124,504 198,564 271,625 390,655 554,655 L 797,655 797,715 C 797,804 778,868 741,907 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,189 723,230 753,282 782,334 797,388 797,443 L 797,531 600,531 C 515,531 451,523 408,507 364,491 330,466 307,432 284,399 272,355 272,300 272,241 288,196 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
<glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
<glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
<glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
<glyph unicode="M" horiz-adv-x="1377" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
<glyph unicode="," horiz-adv-x="239" d="M 385,219 L 385,51 C 385,-20 379,-79 366,-126 353,-173 334,-219 307,-262 L 184,-262 C 247,-171 278,-84 278,0 L 190,0 190,219 385,219 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
@ -83,65 +73,85 @@
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="com.sun.star.drawing.RectangleShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id3">
<path fill="rgb(51,153,255)" stroke="none" d="M 7640,3170 L 5688,3176 5656,1790 9561,1779 9593,3165 7640,3170 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7640,3170 L 5688,3176 5656,1790 9561,1779 9593,3165 7640,3170 Z"/>
<rect class="BoundingBox" stroke="none" fill="none" x="7505" y="995" width="205" height="768"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7605,996 L 7607,1471"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7608,1762 L 7708,1457 7505,1458 7608,1762 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.RectangleShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id4">
<path fill="rgb(51,153,255)" stroke="none" d="M 7716,9148 L 5764,9154 5732,7768 9637,7757 9669,9143 7716,9148 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7716,9148 L 5764,9154 5732,7768 9637,7757 9669,9143 7716,9148 Z"/>
<rect class="BoundingBox" stroke="none" fill="none" x="7506" y="3158" width="205" height="1653"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7608,3159 L 7608,4519"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7608,4810 L 7710,4506 7507,4506 7608,4810 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.RectangleShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id5">
<path fill="rgb(207,231,229)" stroke="none" d="M 7674,6156 L 5722,6162 5690,4776 9595,4765 9627,6151 7674,6156 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7674,6156 L 5722,6162 5690,4776 9595,4765 9627,6151 7674,6156 Z"/>
<rect class="BoundingBox" stroke="none" fill="none" x="7505" y="6206" width="205" height="1553"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7608,6207 L 7607,7467"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7607,7758 L 7709,7454 7506,7453 7607,7758 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id6">
<path fill="none" stroke="rgb(0,0,0)" d="M 7596,1000 L 7604,1494"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7608,1785 L 7705,1479 7502,1482 7608,1785 Z"/>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="5638" y="1760" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 7608,3158 L 5639,3158 5639,1761 9576,1761 9576,3158 7608,3158 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7608,3158 L 5639,3158 5639,1761 9576,1761 9576,3158 7608,3158 Z"/>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id7">
<path fill="none" stroke="rgb(0,0,0)" d="M 7640,3170 L 7642,4480"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7642,4771 L 7743,4466 7540,4467 7642,4771 Z"/>
<g class="com.sun.star.drawing.TextShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="5997" y="1953" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6247" y="2396"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="7229" y="2790"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id8">
<path fill="none" stroke="rgb(0,0,0)" d="M 7674,6156 L 7682,7472"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7684,7763 L 7784,7458 7581,7459 7684,7763 Z"/>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="5637" y="7756" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 7607,9154 L 5638,9154 5638,7757 9575,7757 9575,9154 7607,9154 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7607,9154 L 5638,9154 5638,7757 9575,7757 9575,9154 7607,9154 Z"/>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id9">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7884" y="3877"><tspan fill="rgb(0,0,0)" stroke="none">Public, Member Confidential,</tspan></tspan><tspan class="TextPosition" x="7884" y="4199"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Confidential</tspan></tspan></tspan></text>
<g class="com.sun.star.drawing.TextShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="5996" y="7949" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6247" y="8594"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id10">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7884" y="6878"><tspan fill="rgb(0,0,0)" stroke="none">Public, Member Confidential,</tspan></tspan><tspan class="TextPosition" x="7884" y="7200"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Confidential</tspan></tspan></tspan></text>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="5638" y="4808" width="3940" height="1400"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 7608,6206 L 5639,6206 5639,4809 9576,4809 9576,6206 7608,6206 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7608,6206 L 5639,6206 5639,4809 9576,4809 9576,6206 7608,6206 Z"/>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id11">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6255" y="2412"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="7237" y="2810"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
<g class="com.sun.star.drawing.TextShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="5997" y="5001" width="3229" height="1048"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 7611,6048 L 5997,6048 5997,5001 9225,5001 9225,6048 7611,6048 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6247" y="5444"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6605" y="5838"><tspan fill="rgb(0,0,0)" stroke="none">Review Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id12">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6279" y="5397"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6637" y="5795"><tspan fill="rgb(0,0,0)" stroke="none">Review Draft</tspan></tspan></tspan></text>
<rect class="BoundingBox" stroke="none" fill="none" x="9576" y="2358" width="1586" height="3152"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9577,5508 L 11160,5508 11160,2460 9868,2460"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 9577,2460 L 9882,2562 9882,2359 9577,2460 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id13">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6315" y="8574"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Note</tspan></tspan></tspan></text>
<rect class="BoundingBox" stroke="none" fill="none" x="9575" y="2358" width="1587" height="6100"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9576,8456 L 11160,8456 11160,2460 9868,2460"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 9577,2460 L 9882,2562 9882,2359 9577,2460 Z"/>
</g>
</g>
</g>

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 15 KiB

@ -0,0 +1,420 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="152.4mm" height="165.1mm" viewBox="0 0 15240 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="15240" height="16510"/>
</clipPath>
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="y" horiz-adv-x="1033" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 430,-425 336,-402 266,-356 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,953 828,1003 831,1053 833,1078 836,1078 L 1007,1078 C 1003,1042 1001,968 1001,855 L 1001,30 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 956,222 912,138 837,75 762,12 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,114 312,71 309,27 307,5 306,5 L 132,5 C 136,41 138,115 138,227 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,67 114,124 87,204 87,304 87,417 124,504 198,564 271,625 390,655 554,655 L 797,655 797,715 C 797,804 778,868 741,907 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,189 723,230 753,282 782,334 797,388 797,443 L 797,531 600,531 C 515,531 451,523 408,507 364,491 330,466 307,432 284,399 272,355 272,300 272,241 288,196 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="Y" horiz-adv-x="1298" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
<glyph unicode="T" horiz-adv-x="1192" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
<glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
<glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
<glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
<glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
<glyph unicode="F" horiz-adv-x="1006" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
<glyph unicode="E" horiz-adv-x="1138" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
<glyph unicode="?" horiz-adv-x="980" d="M 1063,1032 C 1063,982 1056,937 1041,898 1026,859 1005,822 978,789 951,756 906,716 844,671 L 764,612 C 716,577 680,541 657,503 634,464 622,422 621,377 L 446,377 C 447,423 455,463 468,498 481,533 497,563 518,590 539,617 562,641 588,662 614,683 640,703 667,722 694,741 720,760 746,779 771,798 794,819 814,842 834,865 850,892 863,921 875,950 881,985 881,1024 881,1100 855,1160 804,1204 752,1248 679,1270 586,1270 493,1270 419,1247 364,1202 309,1156 277,1093 268,1014 L 84,1014 C 101,1148 153,1251 240,1322 327,1394 441,1430 584,1430 733,1430 850,1395 935,1325 1020,1254 1063,1157 1063,1032 Z M 438,0 L 438,201 633,201 633,0 438,0 Z"/>
<glyph unicode="&gt;" horiz-adv-x="1033" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
<glyph unicode="&lt;" horiz-adv-x="1033" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
<glyph unicode="/" horiz-adv-x="583" d="M 0,-20 L 411,1484 569,1484 162,-20 0,-20 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_2" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="italic" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1113" d="M 622,-14 L 516,-14 233,778 51,778 51,895 321,895 563,205 993,1620 1122,1620 622,-14 Z"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_3" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1139" d="M 624,-25 L 456,-25 186,729 2,729 2,895 313,895 532,260 944,1620 1130,1620 624,-25 Z"/>
<glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
<glyph unicode="w" horiz-adv-x="1641" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
<glyph unicode="u" horiz-adv-x="1006" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
<glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
<glyph unicode="p" horiz-adv-x="1033" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
<glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
<glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
<glyph unicode="g" horiz-adv-x="1033" d="M 596,-434 C 464,-434 358,-409 278,-359 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
<glyph unicode="f" horiz-adv-x="663" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1050 946,946 1028,843 1069,691 1069,491 L 1069,491 375,491 C 375,384 395,304 434,250 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
<glyph unicode="d" horiz-adv-x="1033" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
<glyph unicode="c" horiz-adv-x="1007" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1069 914,1004 997,939 1050,849 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1069,291 1043,224 1000,165 957,106 900,60 830,28 760,-4 681,-20 594,-20 Z"/>
<glyph unicode="b" horiz-adv-x="1033" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,204 60,307 60,420 97,506 170,565 243,624 348,653 487,653 L 720,653 720,709 C 720,780 708,833 683,868 658,903 618,920 562,920 510,920 472,909 448,886 423,864 408,826 402,774 L 109,774 C 127,882 175,963 254,1019 332,1074 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,498 L 576,498 C 511,498 464,492 437,480 410,469 389,451 375,426 360,402 353,370 353,329 353,278 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,235 668,268 689,310 710,352 720,397 720,444 L 720,498 Z"/>
<glyph unicode="S" horiz-adv-x="1244" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
<glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 1009,1409 1139,1373 1230,1301 1321,1228 1367,1124 1367,989 1367,890 1339,805 1283,734 1227,662 1151,615 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1112 983,1180 810,1180 L 432,1180 432,764 818,764 C 901,764 963,783 1006,820 1049,857 1070,910 1070,977 Z"/>
<glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,872 1275,791 1234,720 1193,649 1134,594 1057,555 980,516 888,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 939,1409 1069,1370 1160,1293 1251,1215 1296,1105 1296,963 Z M 999,958 C 999,1106 912,1180 737,1180 L 432,1180 432,723 745,723 C 826,723 889,743 933,784 977,824 999,882 999,958 Z"/>
<glyph unicode="M" horiz-adv-x="1430" d="M 1307,0 L 1307,854 C 1307,873 1307,893 1308,912 1308,931 1311,1014 1317,1161 1270,982 1235,857 1212,786 L 958,0 748,0 494,786 387,1161 C 395,1006 399,904 399,854 L 399,0 137,0 137,1409 532,1409 784,621 806,545 854,356 917,582 1176,1409 1569,1409 1569,0 1307,0 Z"/>
<glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
<glyph unicode="B" horiz-adv-x="1271" d="M 1386,402 C 1386,274 1338,175 1242,105 1146,35 1013,0 842,0 L 137,0 137,1409 782,1409 C 954,1409 1084,1379 1173,1320 1261,1260 1305,1172 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,557 995,623 806,623 L 432,623 432,219 817,219 C 912,219 981,236 1025,271 1068,305 1090,356 1090,425 Z"/>
<glyph unicode="A" horiz-adv-x="1404" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 739,1192 L 733,1170 C 726,1146 718,1119 709,1088 700,1057 642,889 537,582 L 942,582 803,987 760,1123 739,1192 Z"/>
<glyph unicode="?" horiz-adv-x="1060" d="M 1133,1026 C 1133,961 1119,903 1090,852 1061,801 1006,747 927,690 L 851,635 C 806,602 772,569 750,536 727,503 715,466 713,426 L 446,426 C 450,494 469,555 504,608 538,661 588,711 655,758 726,807 777,851 806,889 835,926 850,968 850,1014 850,1073 831,1119 793,1153 754,1187 700,1204 629,1204 562,1204 505,1185 460,1147 414,1108 387,1058 379,995 L 94,995 C 112,1132 168,1239 261,1315 354,1392 476,1430 625,1430 783,1430 907,1394 998,1323 1088,1251 1133,1152 1133,1026 Z M 438,0 L 438,270 727,270 727,0 438,0 Z"/>
<glyph unicode=":" horiz-adv-x="319" d="M 197,752 L 197,1034 485,1034 485,752 197,752 Z M 197,0 L 197,281 485,281 485,0 197,0 Z"/>
<glyph unicode="." horiz-adv-x="319" d="M 139,0 L 139,305 428,305 428,0 139,0 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
</defs>
<defs class="TextEmbeddedBitmaps"/>
<g>
<g id="id2" class="Master_Slide">
<g id="bg-id2" class="Background"/>
<g id="bo-id2" class="BackgroundObjects"/>
</g>
</g>
<g class="SlideGroup">
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="4677" y="9556" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6647,10954 L 4678,10954 4678,9557 8615,9557 8615,10954 6647,10954 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6647,10954 L 4678,10954 4678,9557 8615,9557 8615,10954 6647,10954 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="5036" y="9549" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5706" y="9993"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5657" y="10387"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6269" y="10781"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="4669" y="14018" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6639,15416 L 4670,15416 4670,14019 8607,14019 8607,15416 6639,15416 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6639,15416 L 4670,15416 4670,14019 8607,14019 8607,15416 6639,15416 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="5028" y="14211" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5550" y="14659"><tspan fill="rgb(0,0,0)" stroke="none">OpenPOWER</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5931" y="15053"><tspan fill="rgb(0,0,0)" stroke="none">Standard</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="4670" y="3122" width="3940" height="1400"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 6640,4520 L 4671,4520 4671,3123 8608,3123 8608,4520 6640,4520 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6640,4520 L 4671,4520 4671,3123 8608,3123 8608,4520 6640,4520 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="5029" y="3122" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5845" y="3566"><tspan fill="rgb(0,0,0)" stroke="none">Candidate</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5551" y="3960"><tspan fill="rgb(0,0,0)" stroke="none">OpenPOWER</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5932" y="4354"><tspan fill="rgb(0,0,0)" stroke="none">Standard</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="6538" y="4554" width="205" height="644"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6640,4555 L 6640,4906"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6640,5197 L 6742,4893 6539,4893 6640,5197 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="6193" y="6548" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6638,6549 L 7083,6993 6638,7438 6194,6993 6638,6549 6638,6549 Z M 6194,6549 L 6194,6549 Z M 7084,7439 L 7084,7439 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6638,6549 L 7083,6993 6638,7438 6194,6993 6638,6549 6638,6549 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6194,6549 L 6194,6549 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7084,7439 L 7084,7439 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="6292" y="6682" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6543" y="7126"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="6537" y="7438" width="205" height="630"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6639,7439 L 6639,7776"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6639,8067 L 6741,7763 6538,7763 6639,8067 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="6866" y="8390" width="6019" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7116" y="8773"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;workgroupConfidential&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="6193" y="8065" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6638,8066 L 7083,8510 6638,8955 6194,8510 6638,8066 6638,8066 Z M 6194,8066 L 6194,8066 Z M 7084,8956 L 7084,8956 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6638,8066 L 7083,8510 6638,8955 6194,8510 6638,8066 6638,8066 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6194,8066 L 6194,8066 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7084,8956 L 7084,8956 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="6292" y="8199" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6543" y="8643"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="1398" y="7891" width="5143" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1649" y="8274"><tspan fill="rgb(0,174,0)" stroke="none">Public development of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="5628" y="8892" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5884" y="9275"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="6991" y="7920" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7242" y="8303"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="6876" y="7291" width="5917" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7126" y="7674"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id20">
<rect class="BoundingBox" stroke="none" fill="none" x="6866" y="8891" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7116" y="9274"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id21">
<rect class="BoundingBox" stroke="none" fill="none" x="2410" y="6292" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2809" y="6675"><tspan fill="rgb(0,174,0)" stroke="none">Material updates needed?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id22">
<rect class="BoundingBox" stroke="none" fill="none" x="5728" y="7293" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5984" y="7676"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id23">
<rect class="BoundingBox" stroke="none" fill="none" x="1380" y="6993" width="4890" height="6089"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6195,6994 L 1381,6994 1381,12979 5978,12979"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6269,12979 L 5965,12878 5965,13081 6269,12979 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id24">
<rect class="BoundingBox" stroke="none" fill="none" x="6876" y="13524" width="6933" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7126" y="13907"><tspan fill="rgb(0,0,0)" stroke="none">&lt;workProduct&gt;openpowerStandard&lt;/workProduct&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id25">
<rect class="BoundingBox" stroke="none" fill="none" x="7083" y="8510" width="6746" height="1858"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7084,8511 L 13827,8511 13827,10265 8907,10265"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8616,10265 L 8921,10367 8921,10164 8616,10265 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id26">
<rect class="BoundingBox" stroke="none" fill="none" x="6268" y="12597" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6492,12598 L 6808,12598 7032,12821 7032,13137 6808,13361 6492,13361 6269,13137 6269,12821 6492,12598 Z M 6269,12598 L 6269,12598 Z M 7032,13361 L 7032,13361 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6492,12598 L 6808,12598 7032,12821 7032,13137 6808,13361 6492,13361 6269,13137 6269,12821 6492,12598 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6269,12598 L 6269,12598 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7032,13361 L 7032,13361 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id27">
<rect class="BoundingBox" stroke="none" fill="none" x="6292" y="12664" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="6551" y="13108"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id28">
<rect class="BoundingBox" stroke="none" fill="none" x="6936" y="12718" width="2383" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7189" y="13101"><tspan fill="rgb(255,0,0)" stroke="none">BoD Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id29">
<rect class="BoundingBox" stroke="none" fill="none" x="6542" y="13359" width="205" height="662"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6650,13360 L 6644,13729"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6639,14020 L 6746,13717 6543,13714 6639,14020 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id30">
<rect class="BoundingBox" stroke="none" fill="none" x="5290" y="6902" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5541" y="7285"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id31">
<rect class="BoundingBox" stroke="none" fill="none" x="6885" y="1896" width="7323" height="1206"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7135" y="2279"><tspan fill="rgb(0,0,0)" stroke="none">&lt;workProduct&gt;candidateStandard&lt;/workProduct&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7135" y="2597"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;published&lt;/documentStatus&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7135" y="2915"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id32">
<rect class="BoundingBox" stroke="none" fill="none" x="6885" y="1497" width="6451" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="7135" y="1880"><tspan fill="rgb(0,0,0)" stroke="none">Document pom.xml variable changes:</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id33">
<rect class="BoundingBox" stroke="none" fill="none" x="6538" y="1684" width="205" height="1439"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6641,1685 L 6640,2831"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6640,3122 L 6742,2818 6539,2817 6640,3122 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id34">
<rect class="BoundingBox" stroke="none" fill="none" x="3842" y="1116" width="5600" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="4666" y="1499"><tspan fill="rgb(0,69,134)" stroke="none">From Work Group Specification</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id35">
<rect class="BoundingBox" stroke="none" fill="none" x="6541" y="8955" width="205" height="595"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6639,8956 L 6643,9258"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6647,9549 L 6744,9243 6541,9246 6647,9549 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id36">
<rect class="BoundingBox" stroke="none" fill="none" x="3743" y="11698" width="5790" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="3993" y="12081"><tspan fill="rgb(0,69,134)" stroke="none">To Work Group Specification Review Draft</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id37">
<rect class="BoundingBox" stroke="none" fill="none" x="6542" y="10981" width="205" height="670"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6647,10982 L 6644,11359"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6641,11650 L 6745,11346 6542,11345 6641,11650 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id38">
<rect class="BoundingBox" stroke="none" fill="none" x="6258" y="5196" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6482,5197 L 6798,5197 7022,5420 7022,5736 6798,5960 6482,5960 6259,5736 6259,5420 6482,5197 Z M 6259,5197 L 6259,5197 Z M 7022,5960 L 7022,5960 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6482,5197 L 6798,5197 7022,5420 7022,5736 6798,5960 6482,5960 6259,5736 6259,5420 6482,5197 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6259,5197 L 6259,5197 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7022,5960 L 7022,5960 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id39">
<rect class="BoundingBox" stroke="none" fill="none" x="6282" y="5263" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="6541" y="5707"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id40">
<rect class="BoundingBox" stroke="none" fill="none" x="6926" y="5297" width="2785" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7176" y="5680"><tspan fill="rgb(255,0,0)" stroke="none">Standard Review</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id41">
<rect class="BoundingBox" stroke="none" fill="none" x="6538" y="5958" width="205" height="593"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6640,5959 L 6639,6259"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6639,6550 L 6741,6246 6538,6245 6639,6550 Z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 52 KiB

@ -0,0 +1,382 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="152.4mm" height="127mm" viewBox="0 0 15240 12700" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="15240" height="12700"/>
</clipPath>
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="y" horiz-adv-x="1033" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 430,-425 336,-402 266,-356 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,953 828,1003 831,1053 833,1078 836,1078 L 1007,1078 C 1003,1042 1001,968 1001,855 L 1001,30 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 956,222 912,138 837,75 762,12 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,114 312,71 309,27 307,5 306,5 L 132,5 C 136,41 138,115 138,227 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,67 114,124 87,204 87,304 87,417 124,504 198,564 271,625 390,655 554,655 L 797,655 797,715 C 797,804 778,868 741,907 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,189 723,230 753,282 782,334 797,388 797,443 L 797,531 600,531 C 515,531 451,523 408,507 364,491 330,466 307,432 284,399 272,355 272,300 272,241 288,196 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="Y" horiz-adv-x="1298" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
<glyph unicode="T" horiz-adv-x="1192" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
<glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
<glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
<glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
<glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
<glyph unicode="F" horiz-adv-x="1006" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
<glyph unicode="E" horiz-adv-x="1138" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
<glyph unicode="?" horiz-adv-x="980" d="M 1063,1032 C 1063,982 1056,937 1041,898 1026,859 1005,822 978,789 951,756 906,716 844,671 L 764,612 C 716,577 680,541 657,503 634,464 622,422 621,377 L 446,377 C 447,423 455,463 468,498 481,533 497,563 518,590 539,617 562,641 588,662 614,683 640,703 667,722 694,741 720,760 746,779 771,798 794,819 814,842 834,865 850,892 863,921 875,950 881,985 881,1024 881,1100 855,1160 804,1204 752,1248 679,1270 586,1270 493,1270 419,1247 364,1202 309,1156 277,1093 268,1014 L 84,1014 C 101,1148 153,1251 240,1322 327,1394 441,1430 584,1430 733,1430 850,1395 935,1325 1020,1254 1063,1157 1063,1032 Z M 438,0 L 438,201 633,201 633,0 438,0 Z"/>
<glyph unicode="&gt;" horiz-adv-x="1033" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
<glyph unicode="&lt;" horiz-adv-x="1033" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
<glyph unicode="/" horiz-adv-x="583" d="M 0,-20 L 411,1484 569,1484 162,-20 0,-20 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_2" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1139" d="M 624,-25 L 456,-25 186,729 2,729 2,895 313,895 532,260 944,1620 1130,1620 624,-25 Z"/>
<glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
<glyph unicode="w" horiz-adv-x="1641" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
<glyph unicode="u" horiz-adv-x="1006" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
<glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
<glyph unicode="p" horiz-adv-x="1033" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
<glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
<glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
<glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
<glyph unicode="g" horiz-adv-x="1033" d="M 596,-434 C 464,-434 358,-409 278,-359 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
<glyph unicode="f" horiz-adv-x="663" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1050 946,946 1028,843 1069,691 1069,491 L 1069,491 375,491 C 375,384 395,304 434,250 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
<glyph unicode="d" horiz-adv-x="1033" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
<glyph unicode="c" horiz-adv-x="1007" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1069 914,1004 997,939 1050,849 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1069,291 1043,224 1000,165 957,106 900,60 830,28 760,-4 681,-20 594,-20 Z"/>
<glyph unicode="b" horiz-adv-x="1033" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,204 60,307 60,420 97,506 170,565 243,624 348,653 487,653 L 720,653 720,709 C 720,780 708,833 683,868 658,903 618,920 562,920 510,920 472,909 448,886 423,864 408,826 402,774 L 109,774 C 127,882 175,963 254,1019 332,1074 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,498 L 576,498 C 511,498 464,492 437,480 410,469 389,451 375,426 360,402 353,370 353,329 353,278 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,235 668,268 689,310 710,352 720,397 720,444 L 720,498 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1567,0 L 1217,0 1026,815 C 1003,911 983,1011 967,1116 951,1029 938,962 928,917 918,871 847,565 715,0 L 365,0 2,1409 301,1409 505,499 551,279 C 570,372 588,460 606,545 623,629 690,917 805,1409 L 1135,1409 1313,659 C 1327,603 1351,476 1384,279 L 1409,395 1462,625 1632,1409 1931,1409 1567,0 Z"/>
<glyph unicode="T" horiz-adv-x="1245" d="M 773,1181 L 773,0 478,0 478,1181 23,1181 23,1409 1229,1409 1229,1181 773,1181 Z"/>
<glyph unicode="S" horiz-adv-x="1244" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
<glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,872 1275,791 1234,720 1193,649 1134,594 1057,555 980,516 888,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 939,1409 1069,1370 1160,1293 1251,1215 1296,1105 1296,963 Z M 999,958 C 999,1106 912,1180 737,1180 L 432,1180 432,723 745,723 C 826,723 889,743 933,784 977,824 999,882 999,958 Z"/>
<glyph unicode="G" horiz-adv-x="1404" d="M 806,211 C 883,211 957,222 1029,245 1101,267 1157,295 1196,330 L 1196,525 852,525 852,743 1466,743 1466,225 C 1391,148 1294,88 1175,45 1055,2 929,-20 798,-20 569,-20 392,44 269,171 146,298 84,478 84,711 84,943 146,1121 270,1245 394,1368 572,1430 805,1430 1136,1430 1346,1308 1436,1063 L 1164,981 C 1135,1052 1089,1106 1026,1143 963,1180 890,1198 805,1198 666,1198 561,1156 489,1072 417,988 381,868 381,711 381,552 418,429 493,342 567,255 671,211 806,211 Z"/>
<glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
<glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
<glyph unicode="B" horiz-adv-x="1271" d="M 1386,402 C 1386,274 1338,175 1242,105 1146,35 1013,0 842,0 L 137,0 137,1409 782,1409 C 954,1409 1084,1379 1173,1320 1261,1260 1305,1172 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,557 995,623 806,623 L 432,623 432,219 817,219 C 912,219 981,236 1025,271 1068,305 1090,356 1090,425 Z"/>
<glyph unicode="A" horiz-adv-x="1404" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 739,1192 L 733,1170 C 726,1146 718,1119 709,1088 700,1057 642,889 537,582 L 942,582 803,987 760,1123 739,1192 Z"/>
<glyph unicode="?" horiz-adv-x="1060" d="M 1133,1026 C 1133,961 1119,903 1090,852 1061,801 1006,747 927,690 L 851,635 C 806,602 772,569 750,536 727,503 715,466 713,426 L 446,426 C 450,494 469,555 504,608 538,661 588,711 655,758 726,807 777,851 806,889 835,926 850,968 850,1014 850,1073 831,1119 793,1153 754,1187 700,1204 629,1204 562,1204 505,1185 460,1147 414,1108 387,1058 379,995 L 94,995 C 112,1132 168,1239 261,1315 354,1392 476,1430 625,1430 783,1430 907,1394 998,1323 1088,1251 1133,1152 1133,1026 Z M 438,0 L 438,270 727,270 727,0 438,0 Z"/>
<glyph unicode=":" horiz-adv-x="319" d="M 197,752 L 197,1034 485,1034 485,752 197,752 Z M 197,0 L 197,281 485,281 485,0 197,0 Z"/>
<glyph unicode="." horiz-adv-x="319" d="M 139,0 L 139,305 428,305 428,0 139,0 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
</defs>
<defs class="TextEmbeddedBitmaps"/>
<g>
<g id="id2" class="Master_Slide">
<g id="bg-id2" class="Background"/>
<g id="bo-id2" class="BackgroundObjects"/>
</g>
</g>
<g class="SlideGroup">
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="4677" y="2956" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6647,4354 L 4678,4354 4678,2957 8615,2957 8615,4354 6647,4354 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6647,4354 L 4678,4354 4678,2957 8615,2957 8615,4354 6647,4354 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="5036" y="2949" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5706" y="3393"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5657" y="3787"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6269" y="4181"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="4671" y="8922" width="3940" height="1400"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 6641,10320 L 4672,10320 4672,8923 8609,8923 8609,10320 6641,10320 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6641,10320 L 4672,10320 4672,8923 8609,8923 8609,10320 6641,10320 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="5030" y="8922" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5700" y="9366"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5651" y="9760"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5638" y="10154"><tspan fill="rgb(0,0,0)" stroke="none">Review Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="6544" y="1602" width="205" height="1348"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6641,1603 L 6646,2658"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6647,2949 L 6747,2644 6544,2645 6647,2949 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="6884" y="1796" width="7323" height="1206"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7134" y="2179"><tspan fill="rgb(0,0,0)" stroke="none">&lt;workProduct&gt;workgroupSpecification&lt;/workProduct&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7134" y="2497"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7134" y="2815"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;workgroupConfidential&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="6884" y="1397" width="6451" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="7134" y="1780"><tspan fill="rgb(0,0,0)" stroke="none">Document pom.xml variable changes:</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="6924" y="8230" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7174" y="8613"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="6208" y="7305" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6653,7306 L 7098,7750 6653,8195 6209,7750 6653,7306 6653,7306 Z M 6209,7306 L 6209,7306 Z M 7099,8196 L 7099,8196 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6653,7306 L 7098,7750 6653,8195 6209,7750 6653,7306 6653,7306 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6209,7306 L 6209,7306 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7099,8196 L 7099,8196 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="6307" y="7439" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6558" y="7883"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="2324" y="7031" width="4275" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2575" y="7414"><tspan fill="rgb(0,174,0)" stroke="none">Public review of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="5609" y="8222" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5865" y="8605"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="3092" y="8233" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="3343" y="8616"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="6934" y="6696" width="6167" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7184" y="7079"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;review&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="3158" y="7750" width="3054" height="1991"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6210,7751 L 3159,7751 3159,9638 4382,9638"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 4673,9638 L 4369,9537 4369,9740 4673,9638 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="2565" y="5160" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 2789,5161 L 3105,5161 3329,5384 3329,5700 3105,5924 2789,5924 2566,5700 2566,5384 2789,5161 Z M 2566,5161 L 2566,5161 Z M 3329,5924 L 3329,5924 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 2789,5161 L 3105,5161 3329,5384 3329,5700 3105,5924 2789,5924 2566,5700 2566,5384 2789,5161 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 2566,5161 L 2566,5161 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 3329,5924 L 3329,5924 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="2589" y="5227" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="2848" y="5671"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id20">
<rect class="BoundingBox" stroke="none" fill="none" x="863" y="5886" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1465" y="6269"><tspan fill="rgb(255,0,0)" stroke="none">Work Group Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id21">
<rect class="BoundingBox" stroke="none" fill="none" x="6265" y="5161" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6489,5162 L 6805,5162 7029,5385 7029,5701 6805,5925 6489,5925 6266,5701 6266,5385 6489,5162 Z M 6266,5162 L 6266,5162 Z M 7029,5925 L 7029,5925 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6489,5162 L 6805,5162 7029,5385 7029,5701 6805,5925 6489,5925 6266,5701 6266,5385 6489,5162 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6266,5162 L 6266,5162 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7029,5925 L 7029,5925 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id22">
<rect class="BoundingBox" stroke="none" fill="none" x="6289" y="5228" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="6548" y="5672"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id23">
<rect class="BoundingBox" stroke="none" fill="none" x="5439" y="5882" width="2370" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5692" y="6265"><tspan fill="rgb(255,0,0)" stroke="none">TSC Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id24">
<rect class="BoundingBox" stroke="none" fill="none" x="10165" y="5162" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 10389,5163 L 10705,5163 10929,5386 10929,5702 10705,5926 10389,5926 10166,5702 10166,5386 10389,5163 Z M 10166,5163 L 10166,5163 Z M 10929,5926 L 10929,5926 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10389,5163 L 10705,5163 10929,5386 10929,5702 10705,5926 10389,5926 10166,5702 10166,5386 10389,5163 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10166,5163 L 10166,5163 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10929,5926 L 10929,5926 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id25">
<rect class="BoundingBox" stroke="none" fill="none" x="10189" y="5229" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="10448" y="5673"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id26">
<rect class="BoundingBox" stroke="none" fill="none" x="9319" y="5876" width="2448" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9605" y="6259"><tspan fill="rgb(255,0,0)" stroke="none">BoD Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id27">
<rect class="BoundingBox" stroke="none" fill="none" x="6544" y="8195" width="205" height="728"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6654,8196 L 6646,8631"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6641,8922 L 6748,8619 6545,8616 6641,8922 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id28">
<rect class="BoundingBox" stroke="none" fill="none" x="7027" y="5442" width="3140" height="205"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7028,5543 L 9875,5544"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 10166,5544 L 9862,5442 9861,5645 10166,5544 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id29">
<rect class="BoundingBox" stroke="none" fill="none" x="3327" y="5441" width="2940" height="205"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 3328,5542 L 5975,5543"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6266,5543 L 5962,5441 5961,5644 6266,5543 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id30">
<rect class="BoundingBox" stroke="none" fill="none" x="6552" y="5543" width="5372" height="1765"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 10928,5544 L 11922,5544 11922,6616 6654,6616 6654,7016"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6654,7307 L 6756,7003 6553,7003 6654,7307 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id31">
<rect class="BoundingBox" stroke="none" fill="none" x="6543" y="10354" width="205" height="762"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6641,10355 L 6645,10824"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6648,11115 L 6747,10810 6544,10811 6648,11115 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id32">
<rect class="BoundingBox" stroke="none" fill="none" x="4575" y="11131" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="4825" y="11514"><tspan fill="rgb(0,69,134)" stroke="none">To Work Group Specification</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id33">
<rect class="BoundingBox" stroke="none" fill="none" x="8616" y="3563" width="4334" height="205"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 12948,3658 L 8907,3665"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8616,3665 L 8921,3766 8920,3563 8616,3665 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id34">
<rect class="BoundingBox" stroke="none" fill="none" x="9336" y="3652" width="5003" height="888"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="9586" y="4035"><tspan fill="rgb(0,69,134)" stroke="none">From Work Group Specification and</tspan></tspan><tspan class="TextPosition" x="9586" y="4353"><tspan fill="rgb(0,69,134)" stroke="none">Candidate OpenPOWER Standard</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id35">
<rect class="BoundingBox" stroke="none" fill="none" x="4576" y="1034" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="4826" y="1417"><tspan fill="rgb(0,69,134)" stroke="none">From New Document</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id36">
<rect class="BoundingBox" stroke="none" fill="none" x="2846" y="4364" width="3797" height="793"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6641,4365 L 6641,4554 4001,4554 2948,4554 2948,4865"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 2948,5156 L 3050,4852 2847,4852 2948,5156 Z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 102 KiB

@ -0,0 +1,553 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="152.4mm" height="196.85mm" viewBox="0 0 15240 19685" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="15240" height="19685"/>
</clipPath>
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="y" horiz-adv-x="1033" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 430,-425 336,-402 266,-356 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,953 828,1003 831,1053 833,1078 836,1078 L 1007,1078 C 1003,1042 1001,968 1001,855 L 1001,30 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 956,222 912,138 837,75 762,12 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,114 312,71 309,27 307,5 306,5 L 132,5 C 136,41 138,115 138,227 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,67 114,124 87,204 87,304 87,417 124,504 198,564 271,625 390,655 554,655 L 797,655 797,715 C 797,804 778,868 741,907 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,189 723,230 753,282 782,334 797,388 797,443 L 797,531 600,531 C 515,531 451,523 408,507 364,491 330,466 307,432 284,399 272,355 272,300 272,241 288,196 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="Y" horiz-adv-x="1298" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
<glyph unicode="T" horiz-adv-x="1192" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
<glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
<glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
<glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
<glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
<glyph unicode="F" horiz-adv-x="1006" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
<glyph unicode="E" horiz-adv-x="1138" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
<glyph unicode="?" horiz-adv-x="980" d="M 1063,1032 C 1063,982 1056,937 1041,898 1026,859 1005,822 978,789 951,756 906,716 844,671 L 764,612 C 716,577 680,541 657,503 634,464 622,422 621,377 L 446,377 C 447,423 455,463 468,498 481,533 497,563 518,590 539,617 562,641 588,662 614,683 640,703 667,722 694,741 720,760 746,779 771,798 794,819 814,842 834,865 850,892 863,921 875,950 881,985 881,1024 881,1100 855,1160 804,1204 752,1248 679,1270 586,1270 493,1270 419,1247 364,1202 309,1156 277,1093 268,1014 L 84,1014 C 101,1148 153,1251 240,1322 327,1394 441,1430 584,1430 733,1430 850,1395 935,1325 1020,1254 1063,1157 1063,1032 Z M 438,0 L 438,201 633,201 633,0 438,0 Z"/>
<glyph unicode="&gt;" horiz-adv-x="1033" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
<glyph unicode="&lt;" horiz-adv-x="1033" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
<glyph unicode="/" horiz-adv-x="583" d="M 0,-20 L 411,1484 569,1484 162,-20 0,-20 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_2" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="italic" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1113" d="M 622,-14 L 516,-14 233,778 51,778 51,895 321,895 563,205 993,1620 1122,1620 622,-14 Z"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_3" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1139" d="M 624,-25 L 456,-25 186,729 2,729 2,895 313,895 532,260 944,1620 1130,1620 624,-25 Z"/>
<glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
<glyph unicode="w" horiz-adv-x="1641" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
<glyph unicode="u" horiz-adv-x="1006" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
<glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
<glyph unicode="p" horiz-adv-x="1033" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
<glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
<glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
<glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
<glyph unicode="g" horiz-adv-x="1033" d="M 596,-434 C 464,-434 358,-409 278,-359 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
<glyph unicode="f" horiz-adv-x="663" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1050 946,946 1028,843 1069,691 1069,491 L 1069,491 375,491 C 375,384 395,304 434,250 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
<glyph unicode="d" horiz-adv-x="1033" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
<glyph unicode="c" horiz-adv-x="1007" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1069 914,1004 997,939 1050,849 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1069,291 1043,224 1000,165 957,106 900,60 830,28 760,-4 681,-20 594,-20 Z"/>
<glyph unicode="b" horiz-adv-x="1033" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,204 60,307 60,420 97,506 170,565 243,624 348,653 487,653 L 720,653 720,709 C 720,780 708,833 683,868 658,903 618,920 562,920 510,920 472,909 448,886 423,864 408,826 402,774 L 109,774 C 127,882 175,963 254,1019 332,1074 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,498 L 576,498 C 511,498 464,492 437,480 410,469 389,451 375,426 360,402 353,370 353,329 353,278 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,235 668,268 689,310 710,352 720,397 720,444 L 720,498 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1567,0 L 1217,0 1026,815 C 1003,911 983,1011 967,1116 951,1029 938,962 928,917 918,871 847,565 715,0 L 365,0 2,1409 301,1409 505,499 551,279 C 570,372 588,460 606,545 623,629 690,917 805,1409 L 1135,1409 1313,659 C 1327,603 1351,476 1384,279 L 1409,395 1462,625 1632,1409 1931,1409 1567,0 Z"/>
<glyph unicode="T" horiz-adv-x="1245" d="M 773,1181 L 773,0 478,0 478,1181 23,1181 23,1409 1229,1409 1229,1181 773,1181 Z"/>
<glyph unicode="S" horiz-adv-x="1244" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
<glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 1009,1409 1139,1373 1230,1301 1321,1228 1367,1124 1367,989 1367,890 1339,805 1283,734 1227,662 1151,615 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1112 983,1180 810,1180 L 432,1180 432,764 818,764 C 901,764 963,783 1006,820 1049,857 1070,910 1070,977 Z"/>
<glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,872 1275,791 1234,720 1193,649 1134,594 1057,555 980,516 888,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 939,1409 1069,1370 1160,1293 1251,1215 1296,1105 1296,963 Z M 999,958 C 999,1106 912,1180 737,1180 L 432,1180 432,723 745,723 C 826,723 889,743 933,784 977,824 999,882 999,958 Z"/>
<glyph unicode="M" horiz-adv-x="1430" d="M 1307,0 L 1307,854 C 1307,873 1307,893 1308,912 1308,931 1311,1014 1317,1161 1270,982 1235,857 1212,786 L 958,0 748,0 494,786 387,1161 C 395,1006 399,904 399,854 L 399,0 137,0 137,1409 532,1409 784,621 806,545 854,356 917,582 1176,1409 1569,1409 1569,0 1307,0 Z"/>
<glyph unicode="G" horiz-adv-x="1404" d="M 806,211 C 883,211 957,222 1029,245 1101,267 1157,295 1196,330 L 1196,525 852,525 852,743 1466,743 1466,225 C 1391,148 1294,88 1175,45 1055,2 929,-20 798,-20 569,-20 392,44 269,171 146,298 84,478 84,711 84,943 146,1121 270,1245 394,1368 572,1430 805,1430 1136,1430 1346,1308 1436,1063 L 1164,981 C 1135,1052 1089,1106 1026,1143 963,1180 890,1198 805,1198 666,1198 561,1156 489,1072 417,988 381,868 381,711 381,552 418,429 493,342 567,255 671,211 806,211 Z"/>
<glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
<glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
<glyph unicode="B" horiz-adv-x="1271" d="M 1386,402 C 1386,274 1338,175 1242,105 1146,35 1013,0 842,0 L 137,0 137,1409 782,1409 C 954,1409 1084,1379 1173,1320 1261,1260 1305,1172 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,557 995,623 806,623 L 432,623 432,219 817,219 C 912,219 981,236 1025,271 1068,305 1090,356 1090,425 Z"/>
<glyph unicode="A" horiz-adv-x="1404" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 739,1192 L 733,1170 C 726,1146 718,1119 709,1088 700,1057 642,889 537,582 L 942,582 803,987 760,1123 739,1192 Z"/>
<glyph unicode="?" horiz-adv-x="1060" d="M 1133,1026 C 1133,961 1119,903 1090,852 1061,801 1006,747 927,690 L 851,635 C 806,602 772,569 750,536 727,503 715,466 713,426 L 446,426 C 450,494 469,555 504,608 538,661 588,711 655,758 726,807 777,851 806,889 835,926 850,968 850,1014 850,1073 831,1119 793,1153 754,1187 700,1204 629,1204 562,1204 505,1185 460,1147 414,1108 387,1058 379,995 L 94,995 C 112,1132 168,1239 261,1315 354,1392 476,1430 625,1430 783,1430 907,1394 998,1323 1088,1251 1133,1152 1133,1026 Z M 438,0 L 438,270 727,270 727,0 438,0 Z"/>
<glyph unicode=":" horiz-adv-x="319" d="M 197,752 L 197,1034 485,1034 485,752 197,752 Z M 197,0 L 197,281 485,281 485,0 197,0 Z"/>
<glyph unicode="." horiz-adv-x="319" d="M 139,0 L 139,305 428,305 428,0 139,0 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56 id57 id58 id59"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
</defs>
<defs class="TextEmbeddedBitmaps"/>
<g>
<g id="id2" class="Master_Slide">
<g id="bg-id2" class="Background"/>
<g id="bo-id2" class="BackgroundObjects"/>
</g>
</g>
<g class="SlideGroup">
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="4670" y="16185" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6640,17583 L 4671,17583 4671,16186 8608,16186 8608,17583 6640,17583 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6640,17583 L 4671,17583 4671,16186 8608,16186 8608,17583 6640,17583 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="5029" y="16378" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5699" y="16826"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5650" y="17220"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="4671" y="2822" width="3940" height="1400"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 6641,4220 L 4672,4220 4672,2823 8609,2823 8609,4220 6641,4220 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6641,4220 L 4672,4220 4672,2823 8609,2823 8609,4220 6641,4220 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="5030" y="2822" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5700" y="3266"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5651" y="3660"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5638" y="4054"><tspan fill="rgb(0,0,0)" stroke="none">Review Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="6925" y="15549" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7175" y="15932"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="6192" y="14724" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6637,14725 L 7082,15169 6637,15614 6193,15169 6637,14725 6637,14725 Z M 6193,14725 L 6193,14725 Z M 7083,15615 L 7083,15615 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6637,14725 L 7082,15169 6637,15614 6193,15169 6637,14725 6637,14725 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6193,14725 L 6193,14725 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7083,15615 L 7083,15615 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="6291" y="14858" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6542" y="15302"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="6537" y="15614" width="205" height="574"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6638,15615 L 6639,15896"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6640,16187 L 6740,15882 6537,15883 6640,16187 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="3158" y="15169" width="3038" height="1819"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6194,15170 L 3159,15170 3159,16885 4381,16885"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 4672,16885 L 4368,16784 4368,16987 4672,16885 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="2232" y="14450" width="4368" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2483" y="14833"><tspan fill="rgb(0,174,0)" stroke="none">Public release of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="5587" y="15551" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5843" y="15934"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="6935" y="14216" width="6561" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7185" y="14599"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;published&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="6537" y="17583" width="205" height="615"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6640,17584 L 6639,17906"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6638,18197 L 6740,17893 6537,17892 6638,18197 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="6541" y="1701" width="205" height="1122"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6649,1702 L 6643,2531"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6641,2822 L 6745,2518 6542,2517 6641,2822 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="2566" y="12512" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 2790,12513 L 3106,12513 3330,12736 3330,13052 3106,13276 2790,13276 2567,13052 2567,12736 2790,12513 Z M 2567,12513 L 2567,12513 Z M 3330,13276 L 3330,13276 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 2790,12513 L 3106,12513 3330,12736 3330,13052 3106,13276 2790,13276 2567,13052 2567,12736 2790,12513 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 2567,12513 L 2567,12513 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 3330,13276 L 3330,13276 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="2590" y="12579" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="2849" y="13023"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="864" y="13238" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1466" y="13621"><tspan fill="rgb(255,0,0)" stroke="none">Work Group Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id20">
<rect class="BoundingBox" stroke="none" fill="none" x="6266" y="12513" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6490,12514 L 6806,12514 7030,12737 7030,13053 6806,13277 6490,13277 6267,13053 6267,12737 6490,12514 Z M 6267,12514 L 6267,12514 Z M 7030,13277 L 7030,13277 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6490,12514 L 6806,12514 7030,12737 7030,13053 6806,13277 6490,13277 6267,13053 6267,12737 6490,12514 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6267,12514 L 6267,12514 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7030,13277 L 7030,13277 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id21">
<rect class="BoundingBox" stroke="none" fill="none" x="6290" y="12580" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="6549" y="13024"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id22">
<rect class="BoundingBox" stroke="none" fill="none" x="5440" y="13234" width="2370" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5693" y="13617"><tspan fill="rgb(255,0,0)" stroke="none">TSC Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id23">
<rect class="BoundingBox" stroke="none" fill="none" x="10166" y="12514" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 10390,12515 L 10706,12515 10930,12738 10930,13054 10706,13278 10390,13278 10167,13054 10167,12738 10390,12515 Z M 10167,12515 L 10167,12515 Z M 10930,13278 L 10930,13278 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10390,12515 L 10706,12515 10930,12738 10930,13054 10706,13278 10390,13278 10167,13054 10167,12738 10390,12515 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10167,12515 L 10167,12515 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10930,13278 L 10930,13278 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id24">
<rect class="BoundingBox" stroke="none" fill="none" x="10190" y="12581" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="10449" y="13025"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id25">
<rect class="BoundingBox" stroke="none" fill="none" x="9320" y="13228" width="2448" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9606" y="13611"><tspan fill="rgb(255,0,0)" stroke="none">BoD Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id26">
<rect class="BoundingBox" stroke="none" fill="none" x="7028" y="12794" width="3140" height="205"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7029,12895 L 9876,12896"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 10167,12896 L 9863,12794 9862,12997 10167,12896 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id27">
<rect class="BoundingBox" stroke="none" fill="none" x="3328" y="12793" width="2940" height="205"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 3329,12894 L 5976,12895"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6267,12895 L 5963,12793 5962,12996 6267,12895 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id28">
<rect class="BoundingBox" stroke="none" fill="none" x="6536" y="12895" width="5261" height="1832"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 10929,12896 L 11795,12896 11795,14002 6638,14002 6638,14435"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6638,14726 L 6740,14422 6537,14422 6638,14726 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id29">
<rect class="BoundingBox" stroke="none" fill="none" x="5290" y="15069" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5541" y="15452"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id30">
<rect class="BoundingBox" stroke="none" fill="none" x="4023" y="18299" width="5236" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="4273" y="18682"><tspan fill="rgb(0,69,134)" stroke="none">To Candidate OpenPOWER Standard</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id31">
<rect class="BoundingBox" stroke="none" fill="none" x="4076" y="1133" width="5147" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="4326" y="1516"><tspan fill="rgb(0,69,134)" stroke="none">From Work Group Specification Draft</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id32">
<rect class="BoundingBox" stroke="none" fill="none" x="6884" y="1896" width="7323" height="888"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7134" y="2279"><tspan fill="rgb(0,0,0)" stroke="none">&lt;workProduct&gt;workgroupSpecification&lt;/workProduct&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7134" y="2597"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;review&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id33">
<rect class="BoundingBox" stroke="none" fill="none" x="6884" y="1497" width="6451" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="7134" y="1880"><tspan fill="rgb(0,0,0)" stroke="none">Document pom.xml variable changes:</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id34">
<rect class="BoundingBox" stroke="none" fill="none" x="4660" y="9413" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6630,10811 L 4661,10811 4661,9414 8598,9414 8598,10811 6630,10811 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6630,10811 L 4661,10811 4661,9414 8598,9414 8598,10811 6630,10811 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id35">
<rect class="BoundingBox" stroke="none" fill="none" x="5019" y="9406" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5689" y="9850"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5640" y="10244"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6252" y="10638"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id36">
<rect class="BoundingBox" stroke="none" fill="none" x="6193" y="6228" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6638,6229 L 7083,6673 6638,7118 6194,6673 6638,6229 6638,6229 Z M 6194,6229 L 6194,6229 Z M 7084,7119 L 7084,7119 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6638,6229 L 7083,6673 6638,7118 6194,6673 6638,6229 6638,6229 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6194,6229 L 6194,6229 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7084,7119 L 7084,7119 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id37">
<rect class="BoundingBox" stroke="none" fill="none" x="6292" y="6362" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6543" y="6806"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id38">
<rect class="BoundingBox" stroke="none" fill="none" x="6537" y="7118" width="205" height="630"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6639,7119 L 6639,7456"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6639,7747 L 6741,7443 6538,7443 6639,7747 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id39">
<rect class="BoundingBox" stroke="none" fill="none" x="6866" y="8124" width="6019" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7116" y="8507"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;workgroupConfidential&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id40">
<rect class="BoundingBox" stroke="none" fill="none" x="6193" y="7745" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6638,7746 L 7083,8190 6638,8635 6194,8190 6638,7746 6638,7746 Z M 6194,7746 L 6194,7746 Z M 7084,8636 L 7084,8636 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6638,7746 L 7083,8190 6638,8635 6194,8190 6638,7746 6638,7746 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6194,7746 L 6194,7746 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7084,8636 L 7084,8636 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id41">
<rect class="BoundingBox" stroke="none" fill="none" x="6292" y="7879" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6543" y="8323"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id42">
<rect class="BoundingBox" stroke="none" fill="none" x="1398" y="7571" width="5143" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1649" y="7954"><tspan fill="rgb(0,174,0)" stroke="none">Public development of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id43">
<rect class="BoundingBox" stroke="none" fill="none" x="5628" y="8672" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5884" y="9055"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id44">
<rect class="BoundingBox" stroke="none" fill="none" x="6991" y="7600" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7242" y="7983"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id45">
<rect class="BoundingBox" stroke="none" fill="none" x="6876" y="6977" width="5917" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7126" y="7360"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id46">
<rect class="BoundingBox" stroke="none" fill="none" x="6866" y="8698" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7116" y="9081"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id47">
<rect class="BoundingBox" stroke="none" fill="none" x="2410" y="5972" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2809" y="6355"><tspan fill="rgb(0,174,0)" stroke="none">Material updates needed?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id48">
<rect class="BoundingBox" stroke="none" fill="none" x="5728" y="6973" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5984" y="7356"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id49">
<rect class="BoundingBox" stroke="none" fill="none" x="7083" y="8190" width="6239" height="2035"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7084,8191 L 13320,8191 13320,10122 8890,10122"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8599,10122 L 8904,10224 8904,10021 8599,10122 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id50">
<rect class="BoundingBox" stroke="none" fill="none" x="5291" y="6601" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5542" y="6984"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id51">
<rect class="BoundingBox" stroke="none" fill="none" x="3726" y="11515" width="5790" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="3976" y="11898"><tspan fill="rgb(0,69,134)" stroke="none">To Work Group Specification Review Draft</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id52">
<rect class="BoundingBox" stroke="none" fill="none" x="6534" y="10838" width="205" height="613"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6630,10839 L 6636,11159"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6641,11450 L 6737,11144 6534,11147 6641,11450 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id53">
<rect class="BoundingBox" stroke="none" fill="none" x="6532" y="8635" width="205" height="772"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6639,8636 L 6633,9115"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6630,9406 L 6735,9103 6532,9100 6630,9406 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id54">
<rect class="BoundingBox" stroke="none" fill="none" x="6268" y="4899" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6492,4900 L 6808,4900 7032,5123 7032,5439 6808,5663 6492,5663 6269,5439 6269,5123 6492,4900 Z M 6269,4900 L 6269,4900 Z M 7032,5663 L 7032,5663 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6492,4900 L 6808,4900 7032,5123 7032,5439 6808,5663 6492,5663 6269,5439 6269,5123 6492,4900 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6269,4900 L 6269,4900 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7032,5663 L 7032,5663 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id55">
<rect class="BoundingBox" stroke="none" fill="none" x="6292" y="4966" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="6551" y="5410"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id56">
<rect class="BoundingBox" stroke="none" fill="none" x="6936" y="5000" width="3322" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7186" y="5383"><tspan fill="rgb(255,0,0)" stroke="none">Specification Review</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id57">
<rect class="BoundingBox" stroke="none" fill="none" x="6543" y="5661" width="205" height="570"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6650,5662 L 6645,5939"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6639,6230 L 6746,5928 6543,5924 6639,6230 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id58">
<rect class="BoundingBox" stroke="none" fill="none" x="6544" y="4254" width="205" height="647"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6641,4255 L 6646,4609"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6650,4900 L 6747,4594 6544,4597 6650,4900 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id59">
<rect class="BoundingBox" stroke="none" fill="none" x="1380" y="6673" width="4817" height="6324"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6195,6674 L 1381,6674 1381,12894 2276,12894"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 2567,12894 L 2263,12793 2263,12996 2567,12894 Z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 62 KiB

@ -0,0 +1,459 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="152.4mm" height="175.26mm" viewBox="0 0 15240 17526" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="15240" height="17526"/>
</clipPath>
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="y" horiz-adv-x="1033" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 430,-425 336,-402 266,-356 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,953 828,1003 831,1053 833,1078 836,1078 L 1007,1078 C 1003,1042 1001,968 1001,855 L 1001,30 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 956,222 912,138 837,75 762,12 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,114 312,71 309,27 307,5 306,5 L 132,5 C 136,41 138,115 138,227 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,67 114,124 87,204 87,304 87,417 124,504 198,564 271,625 390,655 554,655 L 797,655 797,715 C 797,804 778,868 741,907 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,189 723,230 753,282 782,334 797,388 797,443 L 797,531 600,531 C 515,531 451,523 408,507 364,491 330,466 307,432 284,399 272,355 272,300 272,241 288,196 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="Y" horiz-adv-x="1298" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
<glyph unicode="T" horiz-adv-x="1192" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
<glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
<glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
<glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
<glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
<glyph unicode="F" horiz-adv-x="1006" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
<glyph unicode="E" horiz-adv-x="1138" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
<glyph unicode="?" horiz-adv-x="980" d="M 1063,1032 C 1063,982 1056,937 1041,898 1026,859 1005,822 978,789 951,756 906,716 844,671 L 764,612 C 716,577 680,541 657,503 634,464 622,422 621,377 L 446,377 C 447,423 455,463 468,498 481,533 497,563 518,590 539,617 562,641 588,662 614,683 640,703 667,722 694,741 720,760 746,779 771,798 794,819 814,842 834,865 850,892 863,921 875,950 881,985 881,1024 881,1100 855,1160 804,1204 752,1248 679,1270 586,1270 493,1270 419,1247 364,1202 309,1156 277,1093 268,1014 L 84,1014 C 101,1148 153,1251 240,1322 327,1394 441,1430 584,1430 733,1430 850,1395 935,1325 1020,1254 1063,1157 1063,1032 Z M 438,0 L 438,201 633,201 633,0 438,0 Z"/>
<glyph unicode="&gt;" horiz-adv-x="1033" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
<glyph unicode="&lt;" horiz-adv-x="1033" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
<glyph unicode="/" horiz-adv-x="583" d="M 0,-20 L 411,1484 569,1484 162,-20 0,-20 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs>
<font id="EmbeddedFont_2" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="√" horiz-adv-x="1139" d="M 624,-25 L 456,-25 186,729 2,729 2,895 313,895 532,260 944,1620 1130,1620 624,-25 Z"/>
<glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
<glyph unicode="u" horiz-adv-x="1006" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
<glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
<glyph unicode="p" horiz-adv-x="1033" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
<glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
<glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
<glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
<glyph unicode="g" horiz-adv-x="1033" d="M 596,-434 C 464,-434 358,-409 278,-359 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
<glyph unicode="f" horiz-adv-x="663" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1050 946,946 1028,843 1069,691 1069,491 L 1069,491 375,491 C 375,384 395,304 434,250 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
<glyph unicode="d" horiz-adv-x="1033" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
<glyph unicode="c" horiz-adv-x="1007" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1069 914,1004 997,939 1050,849 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1069,291 1043,224 1000,165 957,106 900,60 830,28 760,-4 681,-20 594,-20 Z"/>
<glyph unicode="b" horiz-adv-x="1033" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,204 60,307 60,420 97,506 170,565 243,624 348,653 487,653 L 720,653 720,709 C 720,780 708,833 683,868 658,903 618,920 562,920 510,920 472,909 448,886 423,864 408,826 402,774 L 109,774 C 127,882 175,963 254,1019 332,1074 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,498 L 576,498 C 511,498 464,492 437,480 410,469 389,451 375,426 360,402 353,370 353,329 353,278 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,235 668,268 689,310 710,352 720,397 720,444 L 720,498 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1567,0 L 1217,0 1026,815 C 1003,911 983,1011 967,1116 951,1029 938,962 928,917 918,871 847,565 715,0 L 365,0 2,1409 301,1409 505,499 551,279 C 570,372 588,460 606,545 623,629 690,917 805,1409 L 1135,1409 1313,659 C 1327,603 1351,476 1384,279 L 1409,395 1462,625 1632,1409 1931,1409 1567,0 Z"/>
<glyph unicode="T" horiz-adv-x="1245" d="M 773,1181 L 773,0 478,0 478,1181 23,1181 23,1409 1229,1409 1229,1181 773,1181 Z"/>
<glyph unicode="S" horiz-adv-x="1244" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
<glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,872 1275,791 1234,720 1193,649 1134,594 1057,555 980,516 888,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 939,1409 1069,1370 1160,1293 1251,1215 1296,1105 1296,963 Z M 999,958 C 999,1106 912,1180 737,1180 L 432,1180 432,723 745,723 C 826,723 889,743 933,784 977,824 999,882 999,958 Z"/>
<glyph unicode="M" horiz-adv-x="1430" d="M 1307,0 L 1307,854 C 1307,873 1307,893 1308,912 1308,931 1311,1014 1317,1161 1270,982 1235,857 1212,786 L 958,0 748,0 494,786 387,1161 C 395,1006 399,904 399,854 L 399,0 137,0 137,1409 532,1409 784,621 806,545 854,356 917,582 1176,1409 1569,1409 1569,0 1307,0 Z"/>
<glyph unicode="G" horiz-adv-x="1404" d="M 806,211 C 883,211 957,222 1029,245 1101,267 1157,295 1196,330 L 1196,525 852,525 852,743 1466,743 1466,225 C 1391,148 1294,88 1175,45 1055,2 929,-20 798,-20 569,-20 392,44 269,171 146,298 84,478 84,711 84,943 146,1121 270,1245 394,1368 572,1430 805,1430 1136,1430 1346,1308 1436,1063 L 1164,981 C 1135,1052 1089,1106 1026,1143 963,1180 890,1198 805,1198 666,1198 561,1156 489,1072 417,988 381,868 381,711 381,552 418,429 493,342 567,255 671,211 806,211 Z"/>
<glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
<glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
<glyph unicode="B" horiz-adv-x="1271" d="M 1386,402 C 1386,274 1338,175 1242,105 1146,35 1013,0 842,0 L 137,0 137,1409 782,1409 C 954,1409 1084,1379 1173,1320 1261,1260 1305,1172 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,557 995,623 806,623 L 432,623 432,219 817,219 C 912,219 981,236 1025,271 1068,305 1090,356 1090,425 Z"/>
<glyph unicode="A" horiz-adv-x="1404" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 739,1192 L 733,1170 C 726,1146 718,1119 709,1088 700,1057 642,889 537,582 L 942,582 803,987 760,1123 739,1192 Z"/>
<glyph unicode="?" horiz-adv-x="1060" d="M 1133,1026 C 1133,961 1119,903 1090,852 1061,801 1006,747 927,690 L 851,635 C 806,602 772,569 750,536 727,503 715,466 713,426 L 446,426 C 450,494 469,555 504,608 538,661 588,711 655,758 726,807 777,851 806,889 835,926 850,968 850,1014 850,1073 831,1119 793,1153 754,1187 700,1204 629,1204 562,1204 505,1185 460,1147 414,1108 387,1058 379,995 L 94,995 C 112,1132 168,1239 261,1315 354,1392 476,1430 625,1430 783,1430 907,1394 998,1323 1088,1251 1133,1152 1133,1026 Z M 438,0 L 438,270 727,270 727,0 438,0 Z"/>
<glyph unicode=":" horiz-adv-x="319" d="M 197,752 L 197,1034 485,1034 485,752 197,752 Z M 197,0 L 197,281 485,281 485,0 197,0 Z"/>
<glyph unicode="." horiz-adv-x="319" d="M 139,0 L 139,305 428,305 428,0 139,0 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
</defs>
<defs class="TextEmbeddedBitmaps"/>
<g>
<g id="id2" class="Master_Slide">
<g id="bg-id2" class="Background"/>
<g id="bo-id2" class="BackgroundObjects"/>
</g>
</g>
<g class="SlideGroup">
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="4659" y="8213" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6629,9611 L 4660,9611 4660,8214 8597,8214 8597,9611 6629,9611 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6629,9611 L 4660,9611 4660,8214 8597,8214 8597,9611 6629,9611 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="5018" y="8206" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5688" y="8650"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5639" y="9044"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6251" y="9438"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="4670" y="2818" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 6640,4216 L 4671,4216 4671,2819 8608,2819 8608,4216 6640,4216 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6640,4216 L 4671,4216 4671,2819 8608,2819 8608,4216 6640,4216 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="5029" y="3011" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5699" y="3459"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5650" y="3853"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="4670" y="13722" width="3940" height="1400"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 6640,15120 L 4671,15120 4671,13723 8608,13723 8608,15120 6640,15120 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6640,15120 L 4671,15120 4671,13723 8608,13723 8608,15120 6640,15120 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="5029" y="13722" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5845" y="14166"><tspan fill="rgb(0,0,0)" stroke="none">Candidate</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5551" y="14560"><tspan fill="rgb(0,0,0)" stroke="none">OpenPOWER</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5932" y="14954"><tspan fill="rgb(0,0,0)" stroke="none">Standard</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="6884" y="1896" width="7323" height="888"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7134" y="2279"><tspan fill="rgb(0,0,0)" stroke="none">&lt;workProduct&gt;workgroupSpecification&lt;/workProduct&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7134" y="2597"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;published&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="6884" y="1497" width="6451" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="7134" y="1880"><tspan fill="rgb(0,0,0)" stroke="none">Document pom.xml variable changes:</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="6541" y="1684" width="205" height="1137"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6652,1685 L 6643,2529"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6640,2820 L 6745,2517 6542,2514 6640,2820 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="6537" y="4216" width="205" height="615"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6640,4217 L 6639,4539"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6638,4830 L 6740,4526 6537,4525 6638,4830 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="6192" y="4828" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6637,4829 L 7082,5273 6637,5718 6193,5273 6637,4829 6637,4829 Z M 6193,4829 L 6193,4829 Z M 7083,5719 L 7083,5719 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6637,4829 L 7082,5273 6637,5718 6193,5273 6637,4829 6637,4829 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6193,4829 L 6193,4829 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7083,5719 L 7083,5719 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="6291" y="4962" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6542" y="5406"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="6536" y="5718" width="205" height="630"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6638,5719 L 6638,6056"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6638,6347 L 6740,6043 6537,6043 6638,6347 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="6865" y="6724" width="6019" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7115" y="7107"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;workgroupConfidential&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="6192" y="6345" width="893" height="893"/>
<path fill="rgb(0,174,0)" stroke="none" d="M 6637,6346 L 7082,6790 6637,7235 6193,6790 6637,6346 6637,6346 Z M 6193,6346 L 6193,6346 Z M 7083,7236 L 7083,7236 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6637,6346 L 7082,6790 6637,7235 6193,6790 6637,6346 6637,6346 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6193,6346 L 6193,6346 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7083,7236 L 7083,7236 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="6291" y="6479" width="698" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6542" y="6923"><tspan fill="rgb(0,0,0)" stroke="none">?</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="1397" y="6171" width="5143" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1648" y="6554"><tspan fill="rgb(0,174,0)" stroke="none">Public development of document?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id20">
<rect class="BoundingBox" stroke="none" fill="none" x="5627" y="7372" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5883" y="7755"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id21">
<rect class="BoundingBox" stroke="none" fill="none" x="6990" y="6200" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7241" y="6583"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id22">
<rect class="BoundingBox" stroke="none" fill="none" x="6875" y="5577" width="5917" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7125" y="5960"><tspan fill="rgb(0,0,0)" stroke="none">&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id23">
<rect class="BoundingBox" stroke="none" fill="none" x="6865" y="7398" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7115" y="7781"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id24">
<rect class="BoundingBox" stroke="none" fill="none" x="2409" y="4572" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2808" y="4955"><tspan fill="rgb(0,174,0)" stroke="none">Material updates needed?</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id25">
<rect class="BoundingBox" stroke="none" fill="none" x="5727" y="5573" width="969" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5983" y="5956"><tspan fill="rgb(0,174,0)" stroke="none">Yes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id26">
<rect class="BoundingBox" stroke="none" fill="none" x="1380" y="5273" width="4816" height="6708"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6194,5274 L 1381,5274 1381,11878 2277,11878"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 2568,11878 L 2264,11777 2264,11980 2568,11878 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id27">
<rect class="BoundingBox" stroke="none" fill="none" x="6875" y="12938" width="6768" height="888"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7125" y="13321"><tspan fill="rgb(0,0,0)" stroke="none">&lt;workProduct&gt;candidateStandard&lt;/workProduct&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7125" y="13639"><tspan fill="rgb(0,0,0)" stroke="none">&lt;security&gt;public&lt;/security&gt;</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id28">
<rect class="BoundingBox" stroke="none" fill="none" x="7082" y="6790" width="6239" height="2235"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7083,6791 L 13319,6791 13319,8922 8889,8922"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8598,8922 L 8903,9024 8903,8821 8598,8922 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id29">
<rect class="BoundingBox" stroke="none" fill="none" x="5290" y="5201" width="863" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5541" y="5584"><tspan fill="rgb(0,174,0)" stroke="none">No</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id30">
<rect class="BoundingBox" stroke="none" fill="none" x="6538" y="15154" width="205" height="597"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6640,15155 L 6639,15459"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6639,15750 L 6741,15446 6538,15445 6639,15750 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id31">
<rect class="BoundingBox" stroke="none" fill="none" x="2567" y="11496" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 2791,11497 L 3107,11497 3331,11720 3331,12036 3107,12260 2791,12260 2568,12036 2568,11720 2791,11497 Z M 2568,11497 L 2568,11497 Z M 3331,12260 L 3331,12260 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 2791,11497 L 3107,11497 3331,11720 3331,12036 3107,12260 2791,12260 2568,12036 2568,11720 2791,11497 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 2568,11497 L 2568,11497 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 3331,12260 L 3331,12260 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id32">
<rect class="BoundingBox" stroke="none" fill="none" x="2591" y="11563" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="2850" y="12007"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id33">
<rect class="BoundingBox" stroke="none" fill="none" x="865" y="12222" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1467" y="12605"><tspan fill="rgb(255,0,0)" stroke="none">Work Group Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id34">
<rect class="BoundingBox" stroke="none" fill="none" x="6267" y="11497" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 6491,11498 L 6807,11498 7031,11721 7031,12037 6807,12261 6491,12261 6268,12037 6268,11721 6491,11498 Z M 6268,11498 L 6268,11498 Z M 7031,12261 L 7031,12261 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6491,11498 L 6807,11498 7031,11721 7031,12037 6807,12261 6491,12261 6268,12037 6268,11721 6491,11498 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 6268,11498 L 6268,11498 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7031,12261 L 7031,12261 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id35">
<rect class="BoundingBox" stroke="none" fill="none" x="6291" y="11564" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="6550" y="12008"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id36">
<rect class="BoundingBox" stroke="none" fill="none" x="5441" y="12218" width="2370" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5694" y="12601"><tspan fill="rgb(255,0,0)" stroke="none">TSC Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id37">
<rect class="BoundingBox" stroke="none" fill="none" x="10167" y="11498" width="766" height="766"/>
<path fill="rgb(255,0,0)" stroke="none" d="M 10391,11499 L 10707,11499 10931,11722 10931,12038 10707,12262 10391,12262 10168,12038 10168,11722 10391,11499 Z M 10168,11499 L 10168,11499 Z M 10931,12262 L 10931,12262 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10391,11499 L 10707,11499 10931,11722 10931,12038 10707,12262 10391,12262 10168,12038 10168,11722 10391,11499 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10168,11499 L 10168,11499 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 10931,12262 L 10931,12262 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id38">
<rect class="BoundingBox" stroke="none" fill="none" x="10191" y="11565" width="715" height="646"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="10450" y="12009"><tspan fill="rgb(0,0,0)" stroke="none">√</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id39">
<rect class="BoundingBox" stroke="none" fill="none" x="9321" y="12212" width="2448" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9607" y="12595"><tspan fill="rgb(255,0,0)" stroke="none">BoD Approval</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id40">
<rect class="BoundingBox" stroke="none" fill="none" x="7029" y="11778" width="3140" height="205"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7030,11879 L 9877,11880"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 10168,11880 L 9864,11778 9863,11981 10168,11880 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id41">
<rect class="BoundingBox" stroke="none" fill="none" x="3329" y="11777" width="2940" height="205"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 3330,11878 L 5977,11879"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6268,11879 L 5964,11777 5963,11980 6268,11879 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id42">
<rect class="BoundingBox" stroke="none" fill="none" x="6538" y="11879" width="5259" height="1844"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 10930,11880 L 11795,11880 11795,12993 6640,12993 6640,13431"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6640,13722 L 6742,13418 6539,13418 6640,13722 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id43">
<rect class="BoundingBox" stroke="none" fill="none" x="3725" y="10315" width="5790" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="3975" y="10698"><tspan fill="rgb(0,69,134)" stroke="none">To Work Group Specification Review Draft</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id44">
<rect class="BoundingBox" stroke="none" fill="none" x="3575" y="1116" width="6155" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="3825" y="1499"><tspan fill="rgb(0,69,134)" stroke="none">From Work Group Specification Review Draft</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id45">
<rect class="BoundingBox" stroke="none" fill="none" x="6533" y="9638" width="205" height="613"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6629,9639 L 6635,9959"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6640,10250 L 6736,9944 6533,9947 6640,10250 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id46">
<rect class="BoundingBox" stroke="none" fill="none" x="4577" y="15916" width="4131" height="570"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="4959" y="16299"><tspan fill="rgb(0,69,134)" stroke="none">To OpenPOWER Standard</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id47">
<rect class="BoundingBox" stroke="none" fill="none" x="6530" y="7235" width="205" height="972"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 6638,7236 L 6632,7915"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6629,8206 L 6733,7902 6530,7901 6629,8206 Z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 56 KiB

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<svg version="1.2" baseProfile="tiny" width="152.4mm" height="146.05mm" viewBox="0 0 15240 14605" preserveAspectRatio="xMidYMid" fill-rule="evenodd" clip-path="url(#presentation_clip_path)" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="152.4mm" height="146.05mm" viewBox="0 0 15240 14605" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="15240" height="14605"/>
@ -8,7 +8,7 @@
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="450"/>
<font-face font-family="Arimo embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
@ -18,32 +18,27 @@
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 956,222 912,138 837,75 762,12 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,67 114,124 87,204 87,304 87,417 124,504 198,564 271,625 390,655 554,655 L 797,655 797,715 C 797,804 778,868 741,907 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,189 723,230 753,282 782,334 797,388 797,443 L 797,531 600,531 C 515,531 451,523 408,507 364,491 330,466 307,432 284,399 272,355 272,300 272,241 288,196 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="W" horiz-adv-x="1932" d="M 1511,0 L 1283,0 1039,895 C 1023,951 1000,1051 969,1196 952,1119 937,1054 925,1002 913,950 822,616 652,0 L 424,0 9,1409 208,1409 461,514 C 491,402 519,287 544,168 560,241 579,321 600,408 621,495 713,828 877,1409 L 1060,1409 1305,532 C 1342,389 1372,267 1393,168 L 1402,203 C 1420,280 1435,342 1446,391 1457,439 1551,778 1727,1409 L 1926,1409 1511,0 Z"/>
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
<glyph unicode="R" horiz-adv-x="1244" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
<glyph unicode="P" horiz-adv-x="1112" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
<glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
<glyph unicode="M" horiz-adv-x="1377" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,940 164,1117 287,1242 410,1367 582,1430 804,1430 960,1430 1087,1404 1184,1351 1281,1298 1356,1214 1409,1098 L 1227,1044 C 1187,1124 1132,1182 1062,1219 991,1256 904,1274 799,1274 636,1274 512,1225 426,1127 340,1028 297,890 297,711 297,533 343,393 434,290 525,187 652,135 813,135 905,135 991,149 1071,177 1150,205 1215,243 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1365,143 1274,84 1166,43 1057,1 940,-20 813,-20 666,-20 539,9 432,68 325,127 244,211 188,322 131,432 103,562 103,711 Z"/>
<glyph unicode="E" horiz-adv-x="1138" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
<glyph unicode="," horiz-adv-x="239" d="M 385,219 L 385,51 C 385,-20 379,-79 366,-126 353,-173 334,-219 307,-262 L 184,-262 C 247,-171 278,-84 278,0 L 190,0 190,219 385,219 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23"/>
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
@ -85,120 +80,135 @@
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="com.sun.star.drawing.RectangleShape">
<g id="id3">
<path fill="rgb(51,153,255)" stroke="none" d="M 7640,3188 L 5688,3194 5656,1808 9561,1797 9593,3183 7640,3188 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7640,3188 L 5688,3194 5656,1808 9561,1797 9593,3183 7640,3188 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.RectangleShape">
<g id="id4">
<path fill="rgb(51,153,255)" stroke="none" d="M 7708,8366 L 5756,8372 5724,6986 9629,6975 9661,8361 7708,8366 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7708,8366 L 5756,8372 5724,6986 9629,6975 9661,8361 7708,8366 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.RectangleShape">
<g id="id5">
<path fill="rgb(207,231,229)" stroke="none" d="M 7674,5774 L 5722,5780 5690,4394 9595,4383 9627,5769 7674,5774 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7674,5774 L 5722,5780 5690,4394 9595,4383 9627,5769 7674,5774 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.RectangleShape">
<g id="id6">
<path fill="rgb(207,231,229)" stroke="none" d="M 7749,10975 L 5797,10981 5765,9595 9670,9584 9702,10970 7749,10975 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7749,10975 L 5797,10981 5765,9595 9670,9584 9702,10970 7749,10975 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id7">
<path fill="none" stroke="rgb(0,0,0)" d="M 7596,1018 L 7604,1512"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7608,1803 L 7705,1497 7502,1500 7608,1803 Z"/>
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="7504" y="995" width="205" height="768"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7604,996 L 7606,1471"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7607,1762 L 7707,1457 7504,1458 7607,1762 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id8">
<path fill="none" stroke="rgb(0,0,0)" d="M 7640,3188 L 7642,4098"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7642,4389 L 7743,4084 7540,4085 7642,4389 Z"/>
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="7505" y="3158" width="205" height="1253"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7607,3159 L 7607,4119"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7607,4410 L 7709,4106 7506,4106 7607,4410 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id9">
<path fill="none" stroke="rgb(0,0,0)" d="M 7674,5774 L 7676,6690"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7676,6981 L 7777,6676 7574,6677 7676,6981 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id10">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7884" y="3732"><tspan fill="rgb(0,0,0)" stroke="none">Public, Member Confidential,</tspan></tspan><tspan class="TextPosition" x="7884" y="4054"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Confidential</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id11">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7884" y="6333"><tspan fill="rgb(0,0,0)" stroke="none">Public, Member Confidential,</tspan></tspan><tspan class="TextPosition" x="7884" y="6655"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Confidential</tspan></tspan></tspan></text>
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="7504" y="5806" width="205" height="1153"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7607,5807 L 7606,6667"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7606,6958 L 7708,6654 7505,6653 7606,6958 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="5637" y="1776" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 7607,3174 L 5638,3174 5638,1777 9575,1777 9575,3174 7607,3174 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7607,3174 L 5638,3174 5638,1777 9575,1777 9575,3174 7607,3174 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="5996" y="1769" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6666" y="2213"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6617" y="2607"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="7229" y="3001"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="5636" y="6956" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 7606,8354 L 5637,8354 5637,6957 9574,6957 9574,8354 7606,8354 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7606,8354 L 5637,8354 5637,6957 9574,6957 9574,8354 7606,8354 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="5995" y="7149" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6665" y="7597"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6616" y="7991"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="5637" y="4360" width="3940" height="1400"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 7607,5758 L 5638,5758 5638,4361 9575,4361 9575,5758 7607,5758 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7607,5758 L 5638,5758 5638,4361 9575,4361 9575,5758 7607,5758 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="5996" y="4360" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6666" y="4804"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6617" y="5198"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6604" y="5592"><tspan fill="rgb(0,0,0)" stroke="none">Review Draft</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id12">
<path fill="none" stroke="rgb(0,0,0)" d="M 7708,8366 L 7715,9299"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7717,9590 L 7816,9285 7613,9286 7717,9590 Z"/>
<rect class="BoundingBox" stroke="none" fill="none" x="7504" y="8354" width="205" height="1207"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7606,8355 L 7606,9269"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7606,9560 L 7708,9256 7505,9256 7606,9560 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id13">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7884" y="8934"><tspan fill="rgb(0,0,0)" stroke="none">Public</tspan></tspan></tspan></text>
<rect class="BoundingBox" stroke="none" fill="none" x="7503" y="11006" width="205" height="1153"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7606,11007 L 7605,11867"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7605,12158 L 7707,11854 7504,11853 7605,12158 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.RectangleShape">
<g id="id14">
<path fill="rgb(51,153,255)" stroke="none" d="M 7787,13567 L 5835,13573 5803,12187 9708,12176 9740,13562 7787,13567 Z"/>
<path fill="none" stroke="rgb(52,101,164)" d="M 7787,13567 L 5835,13573 5803,12187 9708,12176 9740,13562 7787,13567 Z"/>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="5635" y="12156" width="3940" height="1400"/>
<path fill="rgb(0,153,255)" stroke="none" d="M 7605,13554 L 5636,13554 5636,12157 9573,12157 9573,13554 7605,13554 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7605,13554 L 5636,13554 5636,12157 9573,12157 9573,13554 7605,13554 Z"/>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id15">
<path fill="none" stroke="rgb(0,0,0)" d="M 7749,10975 L 7754,11891"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7755,12182 L 7855,11877 7652,11878 7755,12182 Z"/>
<g class="com.sun.star.drawing.TextShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="5994" y="12349" width="3229" height="1048"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6516" y="12797"><tspan fill="rgb(0,0,0)" stroke="none">OpenPOWER</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6897" y="13191"><tspan fill="rgb(0,0,0)" stroke="none">Standard</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id16">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7870" y="11534"><tspan fill="rgb(0,0,0)" stroke="none">Public</tspan></tspan></tspan></text>
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="5636" y="9560" width="3940" height="1400"/>
<path fill="rgb(204,255,255)" stroke="none" d="M 7606,10958 L 5637,10958 5637,9561 9574,9561 9574,10958 7606,10958 Z"/>
<path fill="none" stroke="rgb(0,69,134)" d="M 7606,10958 L 5637,10958 5637,9561 9574,9561 9574,10958 7606,10958 Z"/>
</g>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id17">
<path fill="none" stroke="rgb(0,0,0)" d="M 5740,7679 L 4683,7679 4683,5087 5415,5087"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 5706,5087 L 5402,4986 5402,5189 5706,5087 Z"/>
<g class="com.sun.star.drawing.TextShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="5995" y="9560" width="3229" height="1434"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6811" y="10004"><tspan fill="rgb(0,0,0)" stroke="none">Candidate</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6517" y="10398"><tspan fill="rgb(0,0,0)" stroke="none">OpenPOWER</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6898" y="10792"><tspan fill="rgb(0,0,0)" stroke="none">Standard</tspan></tspan></tspan></text>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id18">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="3539" y="6134"><tspan fill="rgb(0,0,0)" stroke="none">Public, </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="1783" y="6456"><tspan fill="rgb(0,0,0)" stroke="none">Member Confidential,</tspan></tspan><tspan class="TextPosition" x="1385" y="6778"><tspan fill="rgb(0,0,0)" stroke="none">Work Group Confidential</tspan></tspan></tspan></text>
<rect class="BoundingBox" stroke="none" fill="none" x="9575" y="2383" width="1587" height="2695"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9576,5076 L 11160,5076 11160,2485 9867,2485"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 9576,2485 L 9881,2587 9881,2384 9576,2485 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id19">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6662" y="2226"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6613" y="2624"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="7225" y="3022"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
<rect class="BoundingBox" stroke="none" fill="none" x="9574" y="2383" width="1588" height="5275"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9575,7656 L 11160,7656 11160,2485 9867,2485"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 9576,2485 L 9881,2587 9881,2384 9576,2485 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id20">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6687" y="4809"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6014" y="5207"><tspan fill="rgb(0,0,0)" stroke="none">Specification Review</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="7250" y="5605"><tspan fill="rgb(0,0,0)" stroke="none">Draft</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id21">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6727" y="7609"><tspan fill="rgb(0,0,0)" stroke="none">Work Group</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6678" y="8007"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id22">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6903" y="10210"><tspan fill="rgb(0,0,0)" stroke="none">Candidate</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5897" y="10608"><tspan fill="rgb(0,0,0)" stroke="none">OpenPOWERStandard</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id23">
<text class="TextShape"><tspan class="TextParagraph" font-family="Arimo, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5944" y="13011"><tspan fill="rgb(0,0,0)" stroke="none">OpenPOWERStandard</tspan></tspan></tspan></text>
<rect class="BoundingBox" stroke="none" fill="none" x="9574" y="2383" width="1588" height="7895"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9575,10276 L 11160,10276 11160,2485 9867,2485"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 9576,2485 L 9881,2587 9881,2384 9576,2485 Z"/>
</g>
</g>
</g>

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 23 KiB

@ -80,14 +80,14 @@
</generateToc>
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
<sectionAutolabel>1</sectionAutolabel>
<tocSectionDepth>1</tocSectionDepth>
<tocSectionDepth>3</tocSectionDepth>
<sectionLabelIncludesComponentLabel>1</sectionLabelIncludesComponentLabel>

<!-- TODO: Rename the webhelpDirname field to the new directory for new document -->
<webhelpDirname>template-guide</webhelpDirname>
<webhelpDirname>doc-devel-guide</webhelpDirname>

<!-- TODO: Rename the pdfFilenameBase field to the PDF name for new document -->
<pdfFilenameBase>template-guide</pdfFilenameBase>
<pdfFilenameBase>doc-devel-guide</pdfFilenameBase>

<!-- TODO: Define the appropriate work product type. These values are defined by the IPR Policy.
Consult with the Work Group Chair or a Technical Steering Committee member if you have

@ -0,0 +1,25 @@
<!--
Copyright (c) 2016 OpenPOWER Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<section version="5.0" xml:lang="en" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_example">

<title>Sample section include </title>
<para>This section was developed in a separate file but included in the document by using the following
text:<programlisting><![CDATA[ <xi:include href="sec_example.xml"/>]]></programlisting>
where <literal>sec_example.xml</literal> is the source file name.</para>

</section>

@ -91,6 +91,10 @@ lineNumber: 272; columnNumber: 70; text not allowed here; expected element "add
</listitem>
<listitem>
<para>The location within the file of the syntax error. For the above example, the key information is "<literal>lineNumber: 272; columnNumber: 70</literal>.</para>
<note><para>In some XML validation failure scenarios, the <literal>lineNumber</literal> or
<literal>colNumber</literal> values are not specified or are <literal>-1</literal>. If you encounter such a situation,
please post to the Documentation Development mailing list at <email>syssw-doc_devel_guide@mailinglist.openpowerfoundation.org</email>
so they can assist in identifying the exact location of the failure.</para></note>
</listitem>
<listitem>
<para>An explanation of the failure. This information in the above error reads, "text not allowed here; expected element "address", ...".</para>
@ -102,7 +106,7 @@ lineNumber: 272; columnNumber: 70; text not allowed here; expected element "add
<section xml:id="section_template_debug_build_failure">
<title xml:id="section_template_debug_build_failure_title">Build failures</title>
<para>Build errors are easily identified as well. Below is an example:
<para>Build errors are easily identified as well. Below is the most common example:
<screen>...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
@ -131,6 +135,14 @@ lineNumber: 272; columnNumber: 70; text not allowed here; expected element "add

<para>With these details in hand for either error, one simply locates the offending syntax and makes the appropriate
correction. Online resources such as those listed in <xref linkend="section_template_references"/> may be helpful.</para>
<para>When creating new documentation projects, you may encounter the following error during
your first build:<screen>...
[ERROR] Failed to execute goal org.openpowerfoundation.docs:openpowerdocs-maven-plugin:1.0.5:generate-webhelp (generate-webhelp) on project openpower-vector-programming-guide: Execution generate-webhelp of goal org.openpowerfoundation.docs:openpowerdocs-maven-plugin:1.0.5:generate-webhelp failed: One of setGitDir or setWorkTree must be called. -> [Help 1]
...</screen></para>

<para>This error results from interactions of the maven build process and git. It may be
circumvented by issuing the <userinput>git init</userinput> command in your directory.</para>
</section>

<section xml:id="section_template_debug_fo_validation_error">
@ -154,25 +166,26 @@ Error
...</screen></para>

<para>The "<literal>org.apache.fop.fo.ValidationException</literal>" text indicates that this error was during FO validation. The key pieces of information are as follows:</para>
<orderedlist>
<listitem>
<para>The error type is indicated in the text following the exception indictor. In our case, the error statement is:
<literal>"{http://www.w3.org/1999/XSL/Format}block" is not a valid child of "fo:list-block"!</literal>. This error clearly
has something to do with the nesting of a "fo:block" statement in a "fo:list-block" statement.</para>
</listitem>
<listitem>
<para>The location of the validation error is given in the statement
"<literal>See position 70:-1</literal>". These two values are the line number and character number of the error. So, our sample
error occurs on line 70, but the character number
of <literal>-1</literal> is an indication that the line is too long to effectively point.</para>
</listitem>
</orderedlist>

<orderedlist>
<listitem>
<para>The error type is indicated in the text following the exception indictor. In our case, the error statement is:
<literal>"{http://www.w3.org/1999/XSL/Format}block" is not a valid child of "fo:list-block"!</literal>. This error clearly
has something to do with the nesting of a "fo:block" statement in a "fo:list-block" statement.</para>
</listitem>
<listitem>
<para>The location of the validation error is given in the statement
"<literal>See position 70:-1</literal>". These two values are the line number and character number of the error. So, our sample
error occurs on line 70, but the character number
of <literal>-1</literal> is an indication that the line is too long to effectively point.</para>
</listitem>
</orderedlist>

<para>What this information fails to detail is which file has the problem. To find the particular offending file, one must understand
the Docbook build process. This process begins by collecting all XML into a working copy of the main book file. The build failure error
in <xref linkend="section_template_debug_docbook_validation_error"/> includes a reference to this file which will be found in the
<literal>.../target/</literal> directory. It generally has the same name as the main book file of the document, which if copied
from the <citetitle>Master Template Guide</citetitle> project, will be <literal>bk_main.xml</literal>. When in doubt about
from the <citetitle>Documentation Development Guide</citetitle> project, will be <literal>bk_main.xml</literal>. When in doubt about
this file name, you will find it in the <literal>&lt;includes></literal> tag in the <literal>pom.xml</literal> file.</para>
<para>Once all information has been pulled into the working XML file, the XML statements are transformed into FO statements
@ -219,7 +232,10 @@ javax.xml.transform.TransformerException: org.apache.fop.fo.ValidationException:
DocBook (XML) file. With this information, one can inspect the document source to decide if the error is bad DocBook syntax or a tooling bug. If the latter,
please save the newly formatted .fo file and include it in the bug writeup.</para>
<note><para>Fully understanding the error, may require knowing more about XSL FO syntax. Many such web sites exist for this, but
<note><para>This error generally indicates a problem with documentation tooling. If you encounter such a situation,
please post to the Documentation Development mailing list at <email>syssw-doc_devel_guide@mailinglist.openpowerfoundation.org</email>
so they can assist in identifying the exact cause of the failure.</para>
<para>If you wish to fully understanding the error, you may require knowing more about XSL FO syntax. Many such web sites exist for this, but
the <citetitle>XSL Formatting Objects Summary</citetitle> from W3C (World Wide Web Consortium) provides a good starting reference online at
<link xlink:href="https://www.w3.org/2002/08/XSLFOsummary.html">https://www.w3.org/2002/08/XSLFOsummary.html</link>.</para></note>


@ -23,7 +23,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_existing_doc
the specific document project. Begin by cloning the master document as described in <xref linkend="section_cloning_master_doc"/>.</para>
<para>Once complete, obtain a copy of the desired document by cloning its project. For example, to clone this document,
<citetitle>Master Template Guide</citetitle>, from the
<citetitle>Documentation Development Guide</citetitle>, from the
public OpenPOWER Foundation git repository, use this
command:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Template.git</userinput>
Cloning into 'Docs-Template'...
@ -36,7 +36,7 @@ Unpacking objects: 100% (62/62), done.
Checking connectivity... done.
<prompt>$ </prompt></screen></para>

<para>To build a specific document such as the template guide, follow these steps from the directory where
<para>To build a specific document such as this guide, follow these steps from the directory where
you just cloned:<screen><prompt>$ </prompt><userinput>cd Docs-Template/template</userinput>
<prompt>$ </prompt><userinput>mvn clean</userinput>
[INFO] Scanning for projects...
@ -84,7 +84,7 @@ Checking connectivity... done.
<note><para>Projects may contain multiple documents. While specific documents can be built by executing a
<literal>mvn clean generate-sources</literal> in the specific document directory, executing this command in
the base project directory will build all projects identified in the <literal>&lt;module></literal> list in the
top-level <literal>pom.xml</literal> file, known as the "workgroup-pom".</para></note>
top-level <literal>pom.xml</literal> file, known as the "Workgroup POM".</para></note>
<para>You are now ready to begin making updates. Before diving deeply into new text,
you may want to review

@ -21,13 +21,16 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_getting_star
<para>To begin contributing to the OpenPOWER Foundation documentation, the following steps must be completed:
<orderedlist>
<listitem>
<para>Installing tools</para>
<para><xref linkend="section_installing_tools" endterm="section_installing_tools_title"/></para>
</listitem>
<listitem>
<para>Creating accounts</para>
<para><xref linkend="section_installing_fonts" endterm="section_installing_fonts_title"/></para>
</listitem>
<listitem>
<para>Cloning master document information</para>
<para><xref linkend="section_creating_accounts" endterm="section_creating_accounts_title"/></para>
</listitem>
<listitem>
<para><xref linkend="section_cloning_master_doc" endterm="section_cloning_master_doc_title"/></para>
</listitem>
</orderedlist>
</para>
@ -35,8 +38,8 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_getting_star
<para>Once complete, you can proceed to either <xref linkend="section_template_new_document"/> or
<xref linkend="section_template_existing_document"/> as needed.</para>

<section>
<title>Installing tools</title>
<section xml:id="section_installing_tools">
<title xml:id="section_installing_tools_title">Installing tools</title>
<para>Only two tools are required to update documentation, git and maven. Git manages the documentation
source and maven provides the build framework to create the published content in PDF and html form.
Installation steps for these tools varies by operating system.</para>
@ -69,8 +72,26 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_getting_star
can be found at <link xlink:href="http://bluefish.openoffice.nl/index.html">http://bluefish.openoffice.nl/index.html</link>.</para></note>
</section>

<section xml:id="section_installing_fonts">
<title xml:id="section_installing_fonts_title">Installing fonts</title>
<para>The OpenPOWER Foundation documentation utilizes opensource fonts known as the
<emphasis role="bold">Chrome OS core fonts</emphasis> or <emphasis role="bold">Croscore fonts</emphasis>.
The three TrueType fonts (TTFs) in this family Arimo (sans-serif), Tinos (serif), and Cousine (monospace). While
not strictly required to have these fonts on your system, it can be helpful when designing graphics and
other images to have them installed on your development system.</para>
<para>Only two tools are required to update documentation, git and maven. Git manages the documentation
source and maven provides the build framework to create the published content in PDF and html form.
Installation steps for these tools varies by operating system.</para>
<para>On Debian-based Linux operating systems (Ubuntu and Debian), install Croscore fonts as follows:
<screen><prompt># </prompt><userinput>apt-get install fonts-croscore</userinput></screen></para>
<para>On RPM-based Linux operating systems (Fedora, RHEL, openSUSE, SLES), install Croscore fonts as follows:
<screen><prompt># </prompt><userinput>yum install google-croscore-fonts</userinput></screen></para>
<para>On Mac OS X and Windows systems, use a font website to download and install the Croscore fonts individually. Most of
these sites provide directions for Mac OS and Windows.</para>
</section>

<section xml:id="section_creating_accounts">
<title>Creating accounts</title>
<title xml:id="section_creating_accounts_title">Creating accounts</title>
<para>All OpenPOWER project documentation is maintained in GitHub trees, public and private. The first
step to creating documentation will be joining the GitHub community.</para>
<para>To join the GitHub community,
@ -86,10 +107,11 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_getting_star
</section>

<section xml:id="section_cloning_master_doc">
<title>Cloning master document information</title>
<title xml:id="section_cloning_master_doc_title">Cloning master document information</title>
<para>To successfully build OpenPOWER Foundation documents, common document files must be in place in addition to the specific
document files. These common files are obtained by cloning the OpenPOWER Foundation public project <literal>Docs-Master</literal>.</para>
<para>To clone the master template document framework use the clone git command:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Master.git</userinput>
<para>To clone the OpenPOWER Foundation master document framework,
use the clone git command:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Master.git</userinput>
Cloning into 'Docs-Master'...
remote: Counting objects: 24, done.
remote: Compressing objects: 100% (18/18), done.

@ -21,166 +21,260 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_new_document
<para>Creating a new document from scratch follows four simple steps:</para>
<orderedlist>
<listitem>
<para>Cloning the project source.</para>
<para><xref linkend="section_cloning_project" endterm="section_cloning_project_title"/></para>
</listitem>
<listitem>
<para>Finding a document framework.</para>
<para><xref linkend="section_finding_framework" endterm="section_finding_framework_title"/></para>
</listitem>
<listitem>
<para>Modifying core project files.</para>
<para><xref linkend="section_modifying_project" endterm="section_modifying_project_title"/></para>
</listitem>
<listitem>
<para>Adding new document content.</para>
<para><xref linkend="section_adding_content" endterm="section_adding_content_title"/></para>
</listitem>
</orderedlist>
<para>Before undertaking one of these activities, it may be helpful to read the
<xref linkend="section_template_structure" endterm="section_template_structure_title"/>
section to learn the basics about the documentation project structure.</para>

<section>
<title>Clone the project source.</title>
<para>All documentation projects reside in a project directory maintained in GitHub, just like the
<literal>Docs-Master</literal> framework described in <xref linkend="section_cloning_master_doc"/>. In the same directory
where the <literal>Docs-Master</literal> project has been cloned, you will need to
clone the documentation source for your project. A list of the OpenPOWER Foundation projects can be found at
<link xlink:href="https://github.com/OpenPOWERFoundation/">https://github.com/OpenPOWERFoundation/</link>. Select
the project from this list.</para>
<note><para>If you do not see the project for which you are looking, you may not be authorized to it. See
<xref linkend="section_creating_accounts"/> for details about joining the OpenPOWER Foundation private projects. If you
feel that you need a new GitHub project, work with the
Technical Steering Committee Chair, <email>tsc-chair@openpowerfoundation.org</email>, to request and get this setup.</para></note>
<section xml:id="section_cloning_project">
<title xml:id="section_cloning_project_title">Cloning a project</title>
<para>All documentation projects reside in a Git project directory, either locally or in the cloud at GitHub.
As described in <xref linkend="section_cloning_master_doc"/>, your document project directory must reside locally in the
same directory as the <literal>Docs-Master</literal> framework.</para>
<para>To clone an OpenPOWER Foundation project like <literal>Docs-Template</literal> issue the following
command:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Template.git</userinput>
<para>To clone a project in which to work, select from one of the two approaches below:</para>
<itemizedlist>
<listitem><para><xref linkend="section_clone_existing_project" endterm="section_clone_existing_project_title"/></para>
</listitem>
<listitem><para><xref linkend="section_creating_new_project" endterm="section_creating_new_project_title"/></para>
</listitem>
</itemizedlist>
<para>Complete the project cloning and then continue with the next step in
<xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>.</para>

<section xml:id="section_clone_existing_project">
<title xml:id="section_clone_existing_project_title">Cloning an existing project</title>

<para>To work in an existing OpenPOWER Foundation project like the <citetitle>Documentation Development
Guide</citetitle> (<literal>Docs-Template</literal>),
use the following command in the same directory that contains
<literal>Docs-Master</literal>:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Template.git</userinput>
Cloning into 'Docs-Template'...
Username for 'https://github.com': <userinput>my_userid</userinput>
Password for 'https://my_userid@github.com': <userinput>my_password</userinput>
remote: Counting objects: 62, done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 62 (delta 2), reused 0 (delta 0), pack-reused 52
Unpacking objects: 100% (62/62), done.
remote: Counting objects: 163, done.
remote: Total 163 (delta 0), reused 0 (delta 0), pack-reused 163
Receiving objects: 100% (163/163), 275.60 KiB | 494.00 KiB/s, done.
Resolving deltas: 100% (96/96), done.
Checking connectivity... done.
<prompt>$ </prompt></screen> The results should look roughly something like above with actual numbers of objects, files, etc. varying
for different projects.</para>
for different projects.</para>

<note><para>Private projects prompt for a GitHub userid and and password immediately following the "Cloning into..." message.
When cloning public projects such as <literal>Docs-Template</literal>, these prompts are skipped.</para></note>

<para>A list of additional OpenPOWER Foundation projects can be found at
<link xlink:href="https://github.com/OpenPOWERFoundation/">https://github.com/OpenPOWERFoundation/</link>. To work
on an existing project, note its name it the list and apply the above steps replacing <literal>Docs-Template</literal>
with your preferred project from the list.</para>
<note><para>If you do not see the project for which you are looking, you may not be authorized to it. See
<xref linkend="section_creating_accounts"/> for details about joining the OpenPOWER Foundation private projects. If you
feel that you need a new GitHub project, work with the
Technical Steering Committee Chair, <email>tsc-chair@openpowerfoundation.org</email>, to request and get this setup.</para></note>
<para>The existing project should now be cloned. Continue with the next step in
<xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>.</para>
</section>

<section xml:id="section_creating_new_project">
<title xml:id="section_creating_new_project_title">Creating a new project locally</title>

<para>To create a new project locally, the simplest way is to clone the <citetitle>Documentation Development
Guide</citetitle> (<literal>Docs-Template</literal>) into a new project. In
our directions, <literal>my_project</literal> will be our new project name.
Use the following command in the same directory that contains
<literal>Docs-Master</literal>:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Template.git my_project</userinput>
Cloning into 'my_project'...
remote: Counting objects: 163, done.
remote: Total 163 (delta 0), reused 0 (delta 0), pack-reused 163
Receiving objects: 100% (163/163), 275.60 KiB | 494.00 KiB/s, done.
Resolving deltas: 100% (96/96), done.
Checking connectivity... done.
<prompt>$ </prompt></screen> The results should look roughly something like above with actual numbers of objects, files, etc. varying
for different projects.</para>

<para>The new project should now be generally setup. Continue with the next step in
<xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>.</para>
</section>

<note><para>Private projects prompt for a GitHub userid and and password. When cloning public projects, these prompts
are skipped.</para></note>
<para>The base project has now been cloned.</para>
</section>
<section>
<title>Finding a document framework</title>
<para>If this is your first document, in a brand new project (git tree), you have the fewest number of steps
to perform because your project should have been primed with a single project based on <literal>Docs-Template</literal>.
You can verify this by inspecting
the files in your project directory. A new project will contain a <literal>template</literal> directory, a <literal>pom.xml
</literal> file, a <literal>LICENSE</literal> file, and a <literal>README.md</literal> file. If this is the case, you simply
need to perform the following three steps:</para>
<section xml:id="section_finding_framework">
<title xml:id="section_finding_framework_title">Finding a document framework</title>

<para>When creating a new document, the simplest way to start is to use an existing document. This ensures
that you have a basic document structure and allows you to start with a working document from which to make
changes. Select from one of the following scenarios for detailed directions on creating your document framework:</para>
<orderedlist>
<listitem>
<para>Navigate down to your project directory, called <literal>my_project</literal> for this example. This can be achieved
using the <literal>cd</literal> command:
<screen><prompt>$ </prompt><userinput>cd ~/my_project</userinput>
<prompt>$ </prompt></screen></para>
<para>This directory should contain the <literal>template</literal> folder used to prime the project.</para>
<itemizedlist>
<listitem>
<para>If your project exits on GitHub in the OpenPOWER Foundation area and it contains a <literal>template</literal> directory,
then follow the directions in
<xref linkend="section_moving_template_document" endterm="section_moving_template_document_title"/>
to use this document as a base.</para>
</listitem>
<listitem>
<para>Rename the <literal>template</literal> document directory to something new like <literal>my_doc</literal>.
To accomplish this, use the <literal>mv</literal> command::
<screen><prompt>$ </prompt><userinput>mv template/ my_doc</userinput></screen></para>
<para>If you have an existing document in your project that you want to use as a
base for your new document, then follow the directions in
<xref linkend="section_copying_existing_document" endterm="section_copying_existing_document_title"/>
to establish your base document.</para>
</listitem>
<listitem>
<para>Change the project name in the workgroup POM.xml file. Using your editor, change this line
between the &lt;modules> and the &lt;/modules> tags near the top of the
file:<programlisting><![CDATA[<module>template</module>
<para>Otherwise, the instructions in
<xref linkend="section_copying_template_document" endterm="section_copying_template_document_title"/>
will clone and copy this document as a base.</para>
</listitem>
</itemizedlist>
<section xml:id="section_moving_template_document">
<title xml:id="section_moving_template_document_title">Moving the template document into your new document framework</title>
<para>If this is your first document, in a brand new OpenPOWER Foundation project (on GitHub), you have the fewest number of steps
to perform because your project should have been primed with a single project based on <literal>Docs-Template</literal>.
You can verify this by inspecting
the files in your project directory. A new project will contain a <literal>template</literal> directory, a <literal>pom.xml
</literal> file, a <literal>LICENSE</literal> file, and a <literal>README.md</literal> file. If this is the case, you simply
need to perform the following three steps:</para>
<orderedlist>
<listitem>
<para>Navigate down to your project directory, called <literal>my_project</literal> for this example. This can be achieved
using the <literal>cd</literal> command:
<screen><prompt>$ </prompt><userinput>cd ~/my_project</userinput>
<prompt>$ </prompt></screen></para>
<para>This directory should contain the <literal>template</literal> folder used to prime the project.</para>
</listitem>
<listitem>
<para>Rename the <literal>template</literal> document directory to something new like <literal>my_doc</literal>.
To accomplish this, use the <literal>mv</literal> command::
<screen><prompt>$ </prompt><userinput>mv template/ my_doc</userinput></screen></para>
</listitem>
<listitem>
<para>Change the project name in the Workgroup POM file (<literal>my_project/pom.xml</literal>). Using your editor, change this line
between the &lt;modules> and the &lt;/modules> tags near the top of the
file:<programlisting><![CDATA[<module>template</module>
]]></programlisting> to read like this:<programlisting><![CDATA[<module>my_doc</module>
]]></programlisting></para>
</listitem>
</orderedlist>
</listitem>
</orderedlist>
<para>Your new document frameword has been copied from the <citetitle>Document Development Guide</citetitle>.
Continue with the next step in
<xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>.</para>

</section>
<para>If this is not the first document in the project, then you can either begin by copying an existing document or by cloning the
<literal>Docs-Template</literal> project. To copy an existing project, follow these steps:</para>
<orderedlist>
<listitem>
<para>Navigate down to your project directory, called <literal>my_project</literal> for this example.
This can be achieved using the <literal>cd</literal> command:
<section xml:id="section_copying_existing_document">
<title xml:id="section_copying_existing_document_title">Copying an existing document as a new document framework</title>

<para>If you have another document within your project that would serve as a good base for your new one,
you can copy the existing document as the source for your new document. Follow these steps:</para>
<orderedlist>
<listitem>
<para>Navigate down to your project directory, called <literal>my_project</literal> for this example.
This can be achieved using the <literal>cd</literal> command:
<screen><prompt>$ </prompt><userinput>cd ~/my_project</userinput>
<prompt>$ </prompt></screen></para>
<para>This directory should contain the folder name of the document wishing to be copied, called <literal>source_doc</literal>
for clarity in these directions.</para>
</listitem>
<listitem>
<para>To create a new document directory, simply create a new directory and copy the contents of the <literal>source_doc</literal>
directory. If creating a new directory named <literal>my_doc</literal> via a command line, the command
sequence would look like this:
<para>This directory should contain the folder name of the document wishing to be copied, called <literal>source_doc</literal>
for clarity in these directions.</para>
</listitem>
<listitem>
<para>To create a new document directory, simply create a new directory and copy the contents of the <literal>source_doc</literal>
directory. If creating a new directory named <literal>my_doc</literal> via a command line, the command
sequence would look like this:
<screen><prompt>$ </prompt><userinput>mkdir my_doc</userinput>
<prompt>$ </prompt><userinput>cp -r source_doc/* my_doc</userinput>
<prompt>$ </prompt><userinput>cp -r source_doc/*.* my_doc</userinput>
<prompt>$ </prompt></screen></para>
</listitem>
<listitem>
<para>Add the new project to the workgroup POM.xml file. Using your editor, add the following lines
between the &lt;modules> and the &lt;/modules> tags near the top of the file:<programlisting><![CDATA[<module>my_doc</module>
</listitem>
<listitem>
<para>Add the new project to the Workgroup POM file (<literal>my_project/pom.xml</literal>).
Using your editor, add the following lines
between the &lt;modules> and the &lt;/modules> tags near the top of the file:<programlisting><![CDATA[<module>my_doc</module>
]]></programlisting></para>
</listitem>
</orderedlist>
</listitem>
</orderedlist>
<para>Instead of copying an existing document, you may want to start with the template document source. The steps to do this
are similar to those above, but with a few more commands. The following commands will create a new document based on the
the master template:</para>
<note><para>Before committing the project back to git, you will need to add the new directory to the git repository. This can
be performed using the <literal>git add my_doc/</literal> command on the whole directory.</para></note>

<para>You are now ready to begin making updates to your new document. Continue with the next step in
<xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>.</para>

</section>

<section xml:id="section_copying_template_document">
<title xml:id="section_copying_template_document_title">Copying the Document Development Guide as a new document framework</title>
<orderedlist>
<listitem>
<para>Navigate down to your project directory, called <literal>my_project</literal> for this example.
This can be achieved using the <literal>cd</literal> command:
<para>Instead of copying an existing document, you may want to start with the <citetitle>Document Development Guide</citetitle>
(<literal>Doces-Template</literal>) source. The steps to do this are similar to those above, but with a few more commands.
The following commands will create a new document based on this guide:</para>
<orderedlist>
<listitem>
<para>Navigate down to your project directory, called <literal>my_project</literal> for this example.
This can be achieved using the <literal>cd</literal> command:
<screen><prompt>$ </prompt><userinput>cd ~/my_project</userinput>
<prompt>$ </prompt></screen></para>
<para>This directory should contain any existing document folders along with at least a <literal>pom.xml</literal> file, a
<literal>LICENSE</literal> file, and a <literal>README.md</literal> file.</para>
</listitem>
<listitem>
<para>Clone the the template project into your working directory with this
command:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Template.git</userinput>
<para>This directory should contain any existing document folders along with at least a <literal>pom.xml</literal> file, a
<literal>LICENSE</literal> file, and a <literal>README.md</literal> file.</para>
</listitem>
<listitem>
<para>Clone the the <citetitle>Documentation Development Guide</citetitle>
(<literal>Docs-Template</literal>) project into your working directory with this
command:<screen><prompt>$ </prompt><userinput>git clone https://github.com/OpenPOWERFoundation/Docs-Template.git</userinput>
Cloning into 'Docs-Template'...
Username for 'https://github.com': <userinput>my_userid</userinput>
Password for 'https://my_userid@github.com': <userinput>my_password</userinput>
remote: Counting objects: 62, done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 62 (delta 2), reused 0 (delta 0), pack-reused 52
Unpacking objects: 100% (62/62), done.
remote: Counting objects: 163, done.
remote: Total 163 (delta 0), reused 0 (delta 0), pack-reused 163
Receiving objects: 100% (163/163), 275.60 KiB | 0 bytes/s, done.
Resolving deltas: 100% (96/96), done.
Checking connectivity... done.
<prompt>$ </prompt></screen></para>
</listitem>
<listitem>
<para>To create a new project directory, simply create a new directory and copy the contents of the <literal>Docs-Template/template</literal>
directory. If creating a new project named <literal>my_doc</literal> via a command line, the command
sequence would look like this:
</listitem>
<listitem>
<para>To create a new project directory, simply create a new directory and copy the contents of the <literal>Docs-Template/template</literal>
directory. If creating a new project named <literal>my_doc</literal> via a command line, the command
sequence would look like this:
<screen><prompt>$ </prompt><userinput>mkdir my_doc</userinput>
<prompt>$ </prompt><userinput>cp -r Docs-Template/template/* my_doc</userinput>
<prompt>$ </prompt></screen></para>
</listitem>
<listitem>
<para>Once copied, the Docs-Template directory and all its contents should be removed from your project so that it does not
accidentally get included in your project. The command <userinput>rm -rf Docs-Template</userinput></para>
</listitem>
<listitem>
<para>Finally, add the new project to the workgroup POM.xml file. Using your editor, add the following lines
between the &lt;modules> and the &lt;/modules> tags near the top of the file:<programlisting><![CDATA[<module>my_doc</module>
]]></programlisting></para>
</listitem>
</orderedlist>
</listitem>
<listitem>
<para>Once copied, the Docs-Template directory and all its contents should be removed from your project so that it does not
accidentally get included in your project. The command <userinput>rm -rf Docs-Template</userinput></para>
</listitem>
<listitem>
<para>Finally, add the new project to the Workgroup POM file (<literal>my_project/pom.xml</literal>).
Using your editor, add the following lines
between the &lt;modules> and the &lt;/modules> tags near the top of the file:<programlisting><![CDATA[<module>my_doc</module>
]]></programlisting></para>
</listitem>
</orderedlist>

<note><para>Before committing the project back to git, you will need to add the new directory to the git repository. This can
be performed using the <literal>git add my_doc/</literal> command on the whole directory.</para></note>

<note><para>Before committing the project back to git, you will need to add the new directory to the git repository. This can
be performed using the <literal>git add my_doc/</literal> command on the whole directory.</para></note>
<para>You are now ready to begin making updates to your new document. Continue with the next step in
<xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>.</para>

<warning><para></para></warning>
<para>You are now ready to begin making updates to your new document. The next section will provided detailed steps of where to
get started.</para>
</section>
</section>

<section xml:id="section_modifying_project">
<title>Modifying core project files</title>
<title xml:id="section_modifying_project_title">Modifying core project files</title>
<para>The first step to customizing a new project is to modify two core project files--<literal>pom.xml</literal>
and <literal>bk_main.xml</literal>. Within these two files are XML comment tags that begin "<literal>&lt;!-- TODO:</literal>"
to identify places which need customization. The surrounding comments will provide guidance on what needs to change and how
@ -195,7 +289,7 @@ Checking connectivity... done.
<note><para>Be sure to remember two key values you used in the <literal>pom.xml</literal> file, <literal>&lt;webhelpDirname&gt;</literal>
and <literal>&lt;pdfFilenameBase&gt;</literal>, as these will be used to locate your generated document.</para></note>
<para>When ready, build your new document using standard maven commands like
this:<screen><prompt>$ </prompt><userinput>cd my_proj/my_doc</userinput>
this:<screen><prompt>$ </prompt><userinput>cd my_project/my_doc</userinput>
<prompt>$ </prompt><userinput>mvn clean</userinput>
[INFO] Scanning for projects...
[INFO]
@ -237,10 +331,14 @@ Checking connectivity... done.
<note><para>The permutations of Maven invocations may be combined into one operation where the parameters are specified in the order
in which one wishes to execute them. Thus, the command <literal>mvn clean generate-sources</literal> would accomplish the
same thing as the above sequence of commands.</para></note>

<para>You have completed updates to core project files for your new document. Continue with the next step in
<xref linkend="section_template_new_document" endterm="section_template_new_document_title"/>.</para>

</section>

<section>
<title>Adding new content</title>
<section xml:id="section_adding_content">
<title xml:id="section_adding_content_title">Adding new content</title>

<para>The starting point for book content is the <literal>bk_main.xml</literal> file (or whatever to which it was renamed
in the previous step). Removal and additions of the main chapter files will be controlled by entries near the
@ -267,7 +365,6 @@ Checking connectivity... done.

<note><para>When creating new files for the project, remember to use the <literal>git add &lt;file name&gt;</literal> command to
add new files to the git tree.</para></note>

</section>

</section>

@ -18,7 +18,7 @@
xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_policies">

<title xml:id="section_template_policies_title">Policies and conventions</title>
<para>Most document style policies are established simply by using the template documentation framework. However,
<para>Most document style policies are established simply by using the provided documentation framework. However,
by applying some conventions to the document source structure, community members will be able to work across more d
ocumentation projects.</para>
<para>The recommended documentation structure guidelines are as follows:
@ -27,8 +27,26 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_policies">
<para>The head book file should be named with the prefix "bk_".</para>
</listitem>
<listitem>
<para>The document versioning as defined by the <literal>releaseinfo</literal> tag in the main book
file <literal>bk_xxx</literal> should be named "Revision N.N", not "Version N.N" or simply "N.N"</para>
<para>The document versioning as defined by the <literal>&lt;releaseinfo&gt;</literal> tag in the main book
file <literal>bk_xxx</literal> should be named "Revision V.R.M", not "Version V.R.M" or simply "V.R.M" where:</para>
<itemizedlist>
<listitem>
<para>Significant updates increment the <literal>V</literal> (Version) value while reseting the <literal>R</literal> and
<literal>M</literal> values to <literal>0</literal>,</para>
</listitem>
<listitem>
<para>Material, but small, updates increment the <literal>R</literal> (Release) value and reset the <literal>M</literal>
to <literal>0</literal>, and</para>
</listitem>
<listitem>
<para>Trivial updates (such as typos and grammatical changes) only need to increment the <literal>M</literal> (Modifier)
value.</para>
</listitem>
</itemizedlist>
<note><para>Numbering of "pre-release" versions or draft versions of a document may be handled in multiple ways such as
incrementing the previous modifier level until publication and then updating appropriately, setting the releases to
the anticipated level and then appending a "_preN" suffix where "N" can be incremented during drafting. Each Work Group
may set their own policy here.</para></note>
</listitem>
<listitem>
<para>Chapters files should be named with the prefix "ch_".</para>

@ -20,23 +20,48 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_process">
<title xml:id="section_template_process_title">Publishing OpenPOWER Documents</title>
<para>The <citetitle>OpenPOWER Foundation Work Group (WG) Process</citetitle> document
found in the OpenPOWER Foundation Members Community documents is the definitive guide for understanding
OpenPOWER Foundation documents and their work flow. The section strives to
OpenPOWER Foundation documents and their work flow. Details such as the duration and types of reviews as
well as approval voting specifics are found in this document.</para>
<para>This section of the guide does not attempt to provide process details, but instead strives to
provide an overview to help writers understand enough of the basics to know how to prepare their
document and what to expect as they proceed through various stages of document development from first
draft to specification publish.</para>
draft to publication.</para>
<para>The first key concept to understand about OpenPOWER Foundation documents and the first
decision to make when creating a new document is available document types or "Work Products".
These fall into one of two categories -- Standards Track or Non-standards Track -- with the simple
distinguishing factor being use. If the purpose of a document is to define a specification or standard
for hardware or software, then the document is "Standards Track". Everything else is "Non-standards
Track." For example, this document is a non-stardard work product.</para>
Track." For example, this document is a Non-Stardard Work Product as noted on the title page
and the lower right corner of every subsequent page.</para>
<para>Non-standard Track Work Products exist simply as Work Group Notes. Their document
lifecycle follows this simplified workflow:</para>
<figure pgwide="1" xml:id="project_process_non-std_track_label">
<title>Overview of Non-standard Track Work Products</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_non-std_track_graphic.svg" format="SVG" scalefit="1" width="100%" />
</imageobject>
</mediaobject>
</figure>

<para>Non-standard Track, Work Group Notes begin as Drafts and drop the "Draft" annotation once reviewed. As shown
in the figure, the document lifecycle always returns to a "Draft" form for updates and new versions as needed.</para>
<para>At any step in cycle, these documents may have security classifications as Public (non-confidential), Members-only
(OpenPOWER Foundation Confidential), or Work-Group only (OpenPOWER Work Group Confidential) which will
in turn dictate the review context (public or private).</para>

<?hard-pagebreak?>
<para>Standards Track Work Products begin their life as Work Group Specification and may ultimately
become an OpenPOWER Standard. Their document lifecycle is defined in the following illustration:</para>

<figure pgwide="1" xml:id="project_process_std_track_label">
<title>Document work flow for Standard Track Work Products</title>
<title>Overview of Standard Track Work Products</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_std_track_graphic.svg" format="SVG" scalefit="1" width="100%" />
@ -51,32 +76,42 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_process">
Only Work Group Specifications classified as Public may proceed into OpenPOWER Standard Documents. Confidential
documents will remain Work Group Specifications.</para>
<para>Non-standard Track Work Products exist simply as Work Group Notes. Their document
lifecycle follows this simplified workflow:</para>
<figure pgwide="1" xml:id="project_process_non-std_track_label">
<title>Document work flow for Non-standard Track Work Products</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_non-std_track_graphic.svg" format="SVG" scalefit="1" width="100%" />
</imageobject>
</mediaobject>
</figure>

<para>Non-standard Track, Work Group Notes begin as Drafts and drop the "Draft" annotation once reviewed. Like
Standard Track Work Products, they may have security classifications as Public (non-confidential), Members-only
(OpenPOWER Foundation Confidential), or Work-Group only (OpenPOWER Work Group Confidential) which will
in turn dictate the review context (public or private).</para>
<para>The following sections will provide additional details about how to control the document markings
and what the process that dictates those markings:</para>
<para>Once these decisions have been made, then they can be reflected into the document in the following ways:</para>
<itemizedlist>
<listitem>
<para><xref linkend="section_template_process_pom" endterm="section_template_process_pom_title"/></para>
</listitem>
<listitem>
<para><xref linkend="section_template_process_flowchart" endterm="section_template_process_flowchart_title"/></para>
</listitem>
<listitem>
<para><xref linkend="section_template_process_stdWP_steps" endterm="section_template_process_stdWP_steps_title"/></para>
</listitem>
</itemizedlist>
<orderedlist>
<section xml:id="section_template_process_pom">

<listitem>
<para>The document Work Product type is defined in the document <literal>pom.xml</literal> file with the
<literal>&lt;workProduct></literal> variable. Valid settings are <literal>workgroupNotes</literal>,
<literal>workgroupSpecification</literal>, <literal>candidateStandard</literal>, and <literal>openpowerStandard</literal>.
Select the appropriate setting in the following section:
<title xml:id="section_template_process_pom_title">Understanding document marking variables in the pom.xml file</title>
<para>Once the document type decision has been made (Work Group Note or Work Group Specification),
two additional markings must be considered during the documentation process: the document confidentiality and
the document status. The next section,
<xref linkend="section_template_process_flowchart" endterm="section_template_process_flowchart_title"/>,
details how these values will change during the publishing process. But, before diving into the process,
let us see what values in the document <literal>pom.xml</literal> file play a role in the document
development process.</para>
<para>The document Work Product categorization, security classification, and document status are reflected
in the following ways:</para>
<orderedlist>

<listitem>
<para>The document Work Product type is defined in the document <literal>pom.xml</literal> file with the
<literal>&lt;workProduct></literal> variable. Valid settings are <literal>workgroupNotes</literal>,
<literal>workgroupSpecification</literal>, <literal>candidateStandard</literal>, and <literal>openpowerStandard</literal>.
Select the appropriate setting in the following section:
<programlisting><![CDATA[<!-- TODO: Define the appropriate work product type. These values are defined by the
IPR Policy. Consult with the Work Group Chair or a Technical Steering
Committee member if you have questions about which value to select.
@ -87,13 +122,13 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_process">
<!-- workProduct>workgroupSpecification</workProduct -->
<!-- workProduct>candidateStandard</workProduct -->
<!-- workProduct>openpowerStandard</workProduct -->]]></programlisting></para>
</listitem>
</listitem>

<listitem>
<para>The document security is set in the document <literal>pom.xml</literal> file with the
<literal>&lt;security></literal> variable. Valid settings are <literal>public</literal>,
<literal>foundationConfidential</literal>, and <literal>workgroupConfidential</literal>.
Select the appropriate setting in the following section:
<listitem>
<para>The document security is set in the document <literal>pom.xml</literal> file with the
<literal>&lt;security></literal> variable. Valid settings are <literal>public</literal>,
<literal>foundationConfidential</literal>, and <literal>workgroupConfidential</literal>.
Select the appropriate setting in the following section:
<programlisting><![CDATA[<!-- TODO: Set the appropriate security policy for the document. For documents
which are not "public" this will affect the document title page and
create a vertical running ribbon on the internal margin of the
@ -114,13 +149,13 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_process">
<security>workgroupConfidential</security>
<!-- security>foundationConfidential</security -->
<!-- security>public</security -->]]></programlisting></para>
</listitem>
</listitem>

<listitem>
<para>The document work flow status is set in the document <literal>pom.xml</literal> file with the
<literal>&lt;documentStatus></literal> variable. Valid settings are <literal>draft</literal>,
<literal>review</literal>, and <literal>published</literal>.
Select the appropriate setting in the following section:
<listitem>
<para>The document work flow status is set in the document <literal>pom.xml</literal> file with the
<literal>&lt;documentStatus></literal> variable. Valid settings are <literal>draft</literal>,
<literal>review</literal>, and <literal>published</literal>.
Select the appropriate setting in the following section:
<programlisting><![CDATA[<!-- TODO: Set the appropriate work flow status for the document. For documents
which are not "published" this will affect the document title page
and create a vertical running ribbon on the internal margin of the
@ -137,18 +172,18 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_process">
<documentStatus>draft</documentStatus>
<!-- documentStatus>review</documentStatus -->
<!-- documentStatus>publish</documentStatus -->]]></programlisting></para>
</listitem>
</listitem>

<listitem>
<para>The final place to make updates to a new document is in the <literal>&lt;abstract></literal> section of
the <literal>bk_main.xml</literal> file for the document. This section needs to be updated with the appropriate
work group information and document information. Typical text appears as follows:
<listitem>
<para>The final place to make updates to a new document is in the <literal>&lt;abstract></literal> section of
the <literal>bk_main.xml</literal> file for the document. This section needs to be updated with the appropriate
work group information and document information. Typical text appears as follows:
<programlisting><![CDATA[<!-- TODO: Update the following text with the correct document description (first
paragraph), Work Group name, and Work Product track (both in second
paragraph). -->
<abstract>
<para>The purpose of the Master Template Guide document is to provide a guide
for OpenPOWER documentation writers. As such, it provides directions, policies,
<para>The purpose of this document is to provide a guide for OpenPOWER
documentation writers. As such, it provides directions, policies,
references, and examples of the XML Docbook environment. It is intended to be
used both in final product form (PDF and html) as a document and in source form
as a template for new documents.</para>
@ -157,13 +192,234 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_process">
requirements outlined in the <citetitle>OpenPOWER Foundation Work Group (WG)
Process</citetitle> document.</para>
</abstract>]]></programlisting></para>
<para>As stated in the comment text of the book file, the first paragraph provides a typical abstract
statement about your particular document. The second paragraph provides more structured
text which should be updated with the appropriate Work Group name, Work Product type,
and Work Product process. The rest of the information in this paragraph should remain as-is.</para>
</listitem>
<para>As stated in the comment text of the book file, the first paragraph provides a typical abstract
statement about your particular document. The second paragraph provides more structured
text which should be updated with the appropriate Work Group name, Work Product type,
and Work Product process. The rest of the information in this paragraph should remain as-is.</para>
</listitem>

</orderedlist>

</section>

<section xml:id="section_template_process_flowchart">

<title xml:id="section_template_process_flowchart_title">Navigating the OpenPOWER Foundation
documentation publishing process</title>
<para>As described in the previous section,
<xref linkend="section_template_process_pom"/>, document
markings for work product, document confidentiality, and document status are set by the
<literal>&lt;workProduct&gt;</literal>, <literal>&lt;security&gt;</literal>, and
<literal>&lt;documentStatus&gt;</literal> variables respectively. Selecting the appropriate value
for each variable, however, generally depends on the status of the document in the development process.</para>

<para>The following figures and sub-sections provide detailed information about variable settings and process
steps. For these figures, the following standards are used:</para>
<itemizedlist>
<listitem>
<para>Rectangle boxes in various shades of blue represent the work product states previous introduced in
<xref linkend="section_template_process"/>.</para>
</listitem>
<listitem>
<para>Green diamonds containing question marks,
represent decision points with their key questions in bold green and the answers in standard green text.</para>
</listitem>
<listitem>
<para>Red octagons represent actions required in the process such as reviews or approvals.
Specific descriptions are noted in bold red text beside the octagon.</para>
</listitem>
<listitem>
<para>Black text along the right side of the connecting lines, indicates changes to the
various variables in the document <literal>pom.xml</literal> file.</para>
</listitem>
</itemizedlist>
<?hard-pagebreak?>

<para>This flowchart expands upon the Non-Standard Track Work Product lifecycle
first introduced in <xref linkend="project_process_non-std_track_label"/>. Document markings and key
process decisions and approvals occur as shown.</para>

<figure pgwide="1" xml:id="project_process_non-std_track_doc_variables_label">
<title>Document work flow for Non-Standard Track Work Products</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_non-std_track_doc_variables_graphic.svg" format="SVG" scalefit="1" width="80%" align="center" />
</imageobject>
</mediaobject>
</figure>
<para>The only Non-Standard Track Work Product <literal>&lt;workProduct&gt;</literal> setting is <literal>workgroupNotes</literal>.
Documents in this track have this value set and never changed.</para>
<para>During the work flow progression of the document, a common decision point for the Non-Standard Track Work Product
centers on <literal>&lt;security&gt;</literal> settings. Documents may be marked as <literal>public</literal>
just prior to review or prior to approval. Each work
group will need to review their charter and determine whether public release of their work products is expected or allowed.</para>
<para>The <literal>&lt;documentStatus&gt;</literal> variable tracks quite simply through the work flow, beginning as
<literal>draft</literal>, transitioning to <literal>review</literal>, and finishing as <literal>published</literal> when finished.</para>
<para>A feature which makes a Non-Standard Track document unique is that the Work Group is the only approver prior to publish
as a Work Group Note. As will be seen in the next figure, Standard Track Work Products often require multiple reviews.</para>
<para>The following flowchart expands upon the Standard Track Work Product lifecycle
first introduced in <xref linkend="project_process_std_track_label"/>. Document markings and key
process decisions and approvals reflect a more complex process than the previous one for Non-Standard Work Products.</para>

<?hard-pagebreak?>

<figure pgwide="1" xml:id="project_process_std_track_doc_variables_label">
<title>Document work flow for Standard Track Work Products</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_std_track_doc_variables_graphic.svg" format="SVG" scalefit="1" width="58%" align="center" />
</imageobject>
</mediaobject>
</figure>
<para>Like Non-Standard Track Work Products, Standard Track documents frequently evaluate the appropriate security setting.
Unlike them, Standard Track Work Products involve many more steps, require numerous approval cycles, and ultimately create
a public document (<literal>&lt;security&gt;public&lt;/security&gt;</literal>) when they become a
Candidate OpenPOWER Standard Work Product.</para>

<para>While the <literal>&lt;workProduct&gt;</literal> type has a value of <literal>workgroupSpecification</literal>,
the <literal>&lt;documentStatus&gt;</literal> variable progress as expected -- beginning as
<literal>draft</literal>, transitioning to <literal>review</literal>, and finishing as <literal>published</literal>.</para>
<para>Unlike the Non-Standard Work Product, the <literal>&lt;workProduct&gt;</literal> variable begins as
<literal>workgroupSpecification</literal>, but may
transition to <literal>candidateStandard</literal> as it is proposed to be a Candidate OpenPOWER Standard Work Product
and ultimately becomes <literal>openpowerStandard</literal> if the document is approved as an OpenPOWER Standard Work Product.
In these latter work flow stages, the <literal>&lt;documentStatus&gt;</literal> and <literal>&lt;security&gt;</literal>remain as
<literal>published</literal> and <literal>public</literal> respectively and never change.
However, it is work noting that a document may simply exist as a Work Group Specification Work Product for its whole
lifecycle. Progression through Candidate OpenPOWER Standard to OpenPOWER Standard is an optional step.</para>
<para>For a deeper look at the process, see the next section,
<xref linkend="section_template_process_stdWP_steps" endterm="section_template_process_stdWP_steps_title"/>, for step-by-step
descriptions of the Standard Product work flow.</para>
</section>

<section xml:id="section_template_process_stdWP_steps">

<title xml:id="section_template_process_stdWP_steps_title">Understanding the specific steps of Standard Work Product documents</title>
<para><xref linkend="section_template_process_flowchart"/> provides an overview of the work flow of both Non-Standard and
Standard Work Products. While <xref linkend="project_process_non-std_track_doc_variables_label"/> is rather straightforward,
<xref linkend="project_process_std_track_doc_variables_label"/> is larger and more complex. In an attempt to simplify
the process, the following figures
decompose each state into just the actions needed to progress to the next step for Standard Track Work Products.</para>
<para>For detailed assistance with the development of Standard Track Work Products,
select the figure which reflects your current document state. Then, follow the work flow to understand both
the document settings and actions needed to progress to the next document state.</para>
<?hard-pagebreak?>
<para>For documents either getting started as Work Group Specification Draft or having returned to this state for updates,
reference the following figure. Documents in this state will have
<literal>&lt;workProduct&gt;workgroupSpecification&lt;/workProduct&gt;</literal> and
<literal>&lt;documentStatus&gt;draft&lt;/documentStatus&gt;</literal> in their document POM (<literal>pom.xml</literal>).</para>

<figure pgwide="1" xml:id="project_process_std_track_doc_variables_draft_graphic_label">
<title>Document work flow for Standard Track Work Products in the Specification Draft State</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_std_track_doc_variables_draft_graphic.svg" format="SVG" scalefit="1" width="80%" align="center" />
</imageobject>
</mediaobject>
</figure>
<para>To proceed from a Work Group Specification Draft to a Work Group Specification Review Draft, a document requires 3 approvals, in this
order: sponsoring Work Group, Technical Steering Committee, and Board of Directors. Following these three approvals,
the document POM (<literal>pom.xml</literal>) variable
<literal>&lt;documentStatus&gt;</literal> should be set to <literal>review</literal>. In addition, the
<literal>&lt;security&gt;</literal> variable may be set to <literal>public</literal> if the review is targeted to be public.</para>
<?hard-pagebreak?>

<para>For documents currently in Work Group Specification Review Draft state
(<literal>&lt;workProduct&gt;workgroupSpecification&lt;/workProduct&gt;</literal> and
<literal>&lt;documentStatus&gt;review&lt;/documentStatus&gt;</literal>),
consult this figure.</para>

<figure pgwide="1" xml:id="project_process_std_track_doc_variables_review_draft_graphic_label">
<title>Document work flow for Standard Track Work Products in the Specification Review Draft State</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_std_track_doc_variables_review_draft_graphic.svg" format="SVG" scalefit="1" width="80%" align="center" />
</imageobject>
</mediaobject>
</figure>
<para>To proceed from a Work Group Specification Review Draft to a Work Group Specification, a document requires
a successful review and 3 approvals in this
order: sponsoring Work Group, Technical Steering Committee, and Board of Directors. Following these three approvals,
the document POM (<literal>pom.xml</literal>) variable
<literal>&lt;documentStatus&gt;</literal> should be set to <literal>published</literal>. In addition, the
<literal>&lt;security&gt;</literal> variable should be set to <literal>public</literal> if for public specifications.</para>
<?hard-pagebreak?>

<para>For Work Group Specifications marked
<literal>&lt;workProduct&gt;workgroupSpecification&lt;/workProduct&gt;</literal> and
<literal>&lt;documentStatus&gt;published&lt;/documentStatus&gt;</literal>,
see the next figure.</para>

<figure pgwide="1" xml:id="project_process_std_track_doc_variables_specification_graphic_label">
<title>Document work flow for Standard Track Work Products in the Specification State</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_std_track_doc_variables_specification_graphic.svg" format="SVG" scalefit="1" width="80%" align="center" />
</imageobject>
</mediaobject>
</figure>
<para>A document in the Work Group Specification state may return to a Work Group Specification Draft or
proceed as a Candidate OpenPOWER Standard.</para>

<para>To make updates, the document returns to the Work Group Specification Draft state. To
accomplish this, the <literal>&lt;documentStatus&gt;</literal> variable should be set to <literal>draft</literal> and
<literal>&lt;security&gt;</literal> should be set to either <literal>public</literal> or
<literal>workgroupConfidential</literal>.</para>
<para>To proceed to a Candidate OpenPOWER Standard, a document requires 3 approvals, in this
order: sponsoring Work Group, Technical Steering Committee, and Board of Directors. Following these three approvals,
the <literal>&lt;workProduct&gt;</literal> variable should be set to <literal>candidateStandard</literal> and
<literal>&lt;security&gt;</literal> should be set to <literal>public</literal>.</para>

<?hard-pagebreak?>

<para>For documents currently in Work Group Candidate OpenPOWER Standard state
(<literal>&lt;workProduct&gt;candidateStandard&lt;/workProduct&gt;</literal> and
<literal>&lt;documentStatus&gt;published&lt;/documentStatus&gt;</literal>),
reference the following figure.</para>

<figure pgwide="1" xml:id="project_process_std_track_doc_variables_candidate_graphic_label">
<title>Document work flow for Standard Track Work Products in the Candidate OpenPOWER Standard State</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/project_process_std_track_doc_variables_candidate_graphic.svg" format="SVG" scalefit="1" width="80%" align="center" />
</imageobject>
</mediaobject>
</figure>
<para>A document in the Work Group Candidate OpenPOWER Standard state may proceed in two directions, back to a Work Group Specification Draft or on to a
Candidate OpenPOWER Standard.</para>

<para>To make updates to a Work Group Candidate OpenPOWER Standard document, the document returns to the Work Group Specification Draft state. To
accomplish this, the <literal>&lt;documentStatus&gt;</literal> variable should be set to <literal>draft</literal> and
<literal>&lt;security&gt;</literal> should be set to either <literal>public</literal> or
<literal>workgroupConfidential</literal> depending on how the Work Group handles document drafts.</para>
<para>To proceed to an OpenPOWER Standard, a document requires a successful review and a single approval from the Board of Directors.
Following this approval, the document POM (<literal>pom.xml</literal>) variable
<literal>&lt;workProduct&gt;</literal> should be set to <literal>openpowerStandard</literal>.</para>
</section>

</section>

@ -19,7 +19,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_structure">

<title xml:id="section_template_structure_title">Understanding the project structure</title>
<para>The OpenPOWER Foundation documentation build process involves dependency on a common
framework and shared files. As such a deeper explanation about the relationships of key projects and their
framework and shared files. As such, a deeper explanation about the relationships of key projects and their
components may be helpful to prevent and diagnose documentation build problems. This section
provides a pictorial layout of key files and explains their roles and relationships.</para>

@ -31,8 +31,8 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_structure">
<literal>Docs-Master</literal> project.</para></listitem>
</orderedlist>
<para>To begin to understand why, let us use a picture. The following graphic illustrates
the directory structure of three projects -- two
<literal>Docs-Master</literal> and <literal>Docs-Template</literal>, both existing OpenPOWER Foundation GitHub projects and a
the directory structure of three projects: two existing OpenPOWER Foundation GitHub projects,
<literal>Docs-Master</literal> and <literal>Docs-Template</literal>, and a
hypothetical new project named <literal>my_project</literal>.</para>
<figure pgwide="1" xml:id="project_structure_label">
@ -58,8 +58,9 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_structure">
<para>Inside the <literal>Docs-Master</literal>project directory, the two most important pieces are a
<literal>commmon</literal> directory
and a <literal>pom.xml</literal> file. The directory contains common files used by all projects such as the common preface
(<literal>ch_preface.xml</literal>) and the common appendix (<literal>app_foundation.xml</literal>. The <literal>pom.xml</literal> file
in this directory serves as the "Master POM" for all builds. This file references the OpenPOWER Maven Plugin JAR
(<literal>ch_preface.xml</literal>) and the common appendix (<literal>app_foundation.xml</literal>). The <literal>pom.xml</literal> file
in this directory serves as the "Master POM" (POM stands for Program Object Model and serves as the main configuration file)
for all builds. This file references the OpenPOWER Maven Plugin JAR
(found in the OpenPOWER Foundation Repository at
<link xlink:href="http://openpowerfoundation.org/repo.openpowerfoundation.org/">http://openpowerfoundation.org/repo.openpowerfoundation.org/</link>)
used to control the OpenPOWER
@ -78,7 +79,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="section_template_structure">
contains all the Docbook source, directly or through include statements (<literal>&lt;xi:include href="..."</literal>),
to build the document.</para>
<para>For completeness of understanding, a hypothetical project <literal>my_project</literal> is also depected in red. Like all
<para>For completeness of understanding, a hypothetical project <literal>my_project</literal> is also depicted in red. Like all
OpenPOWER Foundation projects, it is cloned at the correct level, equal to <literal>Docs-Master</literal>. Like the
<literal>Docs-Template</literal> project, it has a "Workgroup POM" which will differ only in the <literal>&lt;modules></literal>
section where it will describe two document projects, <literal>my_doc_1</literal> and <literal>my_doc_2</literal>. But, each

Loading…
Cancel
Save