File size: 120,823 Bytes
3315103 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 | $ hwp5odt --help
usage: hwp5odt [-h] [--version] [--loglevel LOGLEVEL] [--logfile LOGFILE]
[--output OUTPUT] [--styles | --content | --document]
[--embed-image | --no-embed-image]
<hwp5file>
HWPv5 to odt converter
positional arguments:
<hwp5file> .hwp file to convert
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exit
--loglevel LOGLEVEL Set log level.
--logfile LOGFILE Set log file.
--output OUTPUT Output file
--styles Generate styles.xml
--content Generate content.xml
--document Generate .fodt
--embed-image Embed images in output xml.
--no-embed-image Do not embed images in output xml.
$ rm -rf sample-5017
$ hwp5odt samples/sample-5017.hwp >/dev/null 2>/dev/null
$ unzip -q sample-5017.odt -d sample-5017
$ find sample-5017 -type f | grep -v 'manifest.rdf\|manifest.xml\|content.xml\|styles.xml' | sort | xargs sha1sum
a651496e95dd70a7a5c3ae08f8829cecd5e6ed7b sample-5017/bindata/BIN0002.jpg
e0f44117bf675d77297a86a322bd9eaa96543c37 sample-5017/bindata/BIN0002.png
e0f44117bf675d77297a86a322bd9eaa96543c37 sample-5017/bindata/BIN0003.png
90103cbc494e4481329d458fbebd5bcd9286de1c sample-5017/mimetype
$ cat sample-5017/META-INF/manifest.xml | xmllint --c14n - | xmllint --format -
<?xml version="1.0"?>
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.2">
<manifest:file-entry manifest:full-path="/" manifest:media-type="application/vnd.oasis.opendocument.text" manifest:version="1.2"/>
<manifest:file-entry manifest:full-path="styles.xml" manifest:media-type="text/xml"/>
<manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
<manifest:file-entry manifest:full-path="manifest.rdf" manifest:media-type="application/rdf+xml"/>
<manifest:file-entry manifest:full-path="bindata/BIN0002.jpg" manifest:media-type="application/octet-stream"/>
<manifest:file-entry manifest:full-path="bindata/BIN0002.png" manifest:media-type="application/octet-stream"/>
<manifest:file-entry manifest:full-path="bindata/BIN0003.png" manifest:media-type="application/octet-stream"/>
</manifest:manifest>
$ cat sample-5017/manifest.rdf | xmllint --c14n - | xmllint --format -
<?xml version="1.0"?>
<rdf:RDF xmlns:odf="http://docs.oasis-open.org/ns/office/1.2/meta/odf#" xmlns:pkg="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<pkg:Document rdf:about="">
<pkg:hasPart rdf:resource="content.xml"/>
<pkg:hasPart rdf:resource="styles.xml"/>
</pkg:Document>
<odf:ContentFile rdf:about="content.xml"/>
<odf:StylesFile rdf:about="styles.xml"/>
</rdf:RDF>
$ cat sample-5017/content.xml | xmllint --c14n - | xmllint --format -
<?xml version="1.0"?>
<office:document-content xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:rpt="http://openoffice.org/2005/report" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl" office:version="1.2">
<office:scripts/>
<office:font-face-decls/>
<office:automatic-styles>
<style:style style:class="text" style:family="paragraph" style:master-page-name="MasterPage-1" style:name="Paragraph-1" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:family="text" style:name="p1-1-1">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt"/>
</style:style>
<style:style style:family="text" style:name="p1-1-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt" fo:font-weight="bold"/>
</style:style>
<style:style style:family="text" style:name="p1-1-3">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt"/>
</style:style>
<style:style style:family="text" style:name="p1-1-4">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:font-style-asian="italic" style:font-style-complex="italic" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt" fo:font-style="italic"/>
</style:style>
<style:style style:family="text" style:name="p1-1-5">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-2" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-3" style:parent-style-name="머리말">
<style:paragraph-properties fo:line-height="150%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-4" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:family="text" style:name="p5-1-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt" fo:font-weight="bold"/>
</style:style>
<style:style style:family="text" style:name="p6-3-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt" fo:font-weight="bold"/>
</style:style>
<style:style style:family="text" style:name="p22-1-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-23" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-24" style:parent-style-name="미주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="13.1pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="-13.1pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-25" style:parent-style-name="각주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-26" style:parent-style-name="바탕글">
<style:paragraph-properties fo:break-before="page" fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:family="table" style:name="Table-1">
<style:table-properties style:width="142.71mm" table:align="margins" table:border-model="collapsing" fo:margin-bottom="1mm" fo:margin-left="1mm" fo:margin-right="1mm" fo:margin-top="1mm"/>
</style:style>
<style:style style:family="table" style:name="Table-2">
<style:table-properties style:width="143.01mm" table:align="margins" table:border-model="collapsing" fo:margin-bottom="1mm" fo:margin-left="1mm" fo:margin-right="1mm" fo:margin-top="1mm"/>
</style:style>
<style:style style:family="table" style:name="Table-3">
<style:table-properties style:width="142.71mm" table:align="margins" table:border-model="collapsing" fo:margin-bottom="4mm" fo:margin-left="1mm" fo:margin-right="3mm" fo:margin-top="2mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-1-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-1-2">
<style:table-cell-properties fo:border-bottom="0.4mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-2-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.4mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-2-2">
<style:table-cell-properties fo:background-color="#99ccff" fo:border-bottom="0.4mm solid #000000" fo:border-left="0.4mm solid #000000" fo:border-right="0.4mm solid #000000" fo:border-top="0.4mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-2-1-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-1-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-1-2">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-2-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-2-2">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="graphic" style:name="Shape-1">
<style:graphic-properties draw:fill="none" style:horizontal-pos="from-left" style:horizontal-rel="page-content" style:vertical-pos="from-top" style:vertical-rel="paragraph" style:wrap="none" fo:margin-bottom="0mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-top="0mm"/>
</style:style>
<style:style style:family="graphic" style:name="Shape-2">
<style:graphic-properties draw:fill="none" style:vertical-pos="top" style:vertical-rel="baseline" fo:margin-bottom="0mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-top="0mm"/>
</style:style>
</office:automatic-styles>
<office:body>
<office:text>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="Paragraph-1">
<text:span text:style-name="p1-1-1">한글 </text:span>
<text:span text:style-name="p1-1-2">2005</text:span>
<text:span text:style-name="p1-1-3"> </text:span>
<text:span text:style-name="p1-1-4">예제</text:span>
<text:span text:style-name="p1-1-5"> 파일입니다.</text:span>
</text:p>
<text:p text:style-name="Paragraph-2"/>
<text:p text:style-name="Paragraph-3">
<text:span>머리말입니다</text:span>
</text:p>
<text:p text:style-name="Paragraph-4"/>
<text:p text:style-name="본문">
<text:span>본문 </text:span>
<text:span text:style-name="p5-1-2">내용</text:span>
<text:span>입니다. 본 문서는 </text:span>
<text:span></text:span>
<text:span>글 워드 프로세서의 파일 저장 형식 중, </text:span>
<text:span></text:span>
<text:span>글 2002 이후 </text:span>
<text:span>제품에서 사용되는 </text:span>
<text:span></text:span>
<text:span>글 문서 파일 형식 5.0 및 </text:span>
<text:span></text:span>
<text:span>글 97 문서 파일 형식, </text:span>
<text:span>HWPML</text:span>
<text:span>에 관</text:span>
<text:span>하여 설명한다.</text:span>
</text:p>
<text:p text:style-name="본문">
<text:span>표</text:span>
<text:span>표</text:span>
<text:span text:style-name="p6-3-2">끝</text:span>
</text:p>
<table:table table:style-name="Table-1">
<table:table-column table:number-columns-repeated="2"/>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-1-1">
<text:p text:style-name="바탕글">
<text:span>A0</text:span>
</text:p>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-1-2">
<text:p text:style-name="바탕글">
<text:span>B0</text:span>
</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-2-1">
<text:p text:style-name="바탕글">
<text:span>A1</text:span>
</text:p>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-2-2">
<text:p text:style-name="바탕글">
<text:span>B10</text:span>
</text:p>
<text:p text:style-name="바탕글">
<text:span>B11</text:span>
</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<table:table table:style-name="Table-2">
<table:table-column table:number-columns-repeated="1"/>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-2-1-1">
<text:p text:style-name="바탕글">
<text:span>table2</text:span>
</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="본문"/>
<table:table table:style-name="Table-3">
<table:table-column table:number-columns-repeated="2"/>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-1-1">
<text:p text:style-name="바탕글"/>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-1-2">
<text:p text:style-name="바탕글"/>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-2-1">
<text:p text:style-name="바탕글"/>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-2-2">
<text:p text:style-name="바탕글"/>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="본문">
<text:span>다음 문단</text:span>
</text:p>
<text:p text:style-name="본문"/>
<text:p text:style-name="본문">
<text:span>본 </text:span>
<text:span text:style-name="p22-1-2">문서</text:span>
<text:span>는 먼저 </text:span>
<text:span></text:span>
<text:span>글 문서 파일 형식 5.0에 관하여 설명한 후, </text:span>
<text:span></text:span>
<text:span>글 97 문서 파</text:span>
<text:span>일 형식, </text:span>
<text:span>HWPML</text:span>
<text:span>에 관하여 설명한다. 각 형식에 대한 설명은 문서 파일 형식 내의 주요</text:span>
<text:span>한 자료 형식 및 파일 구조, 레코드 구조에 대해서 설명한다.</text:span>
</text:p>
<text:p text:style-name="Paragraph-23">
<draw:frame draw:style-name="Shape-1" draw:transform=" translate (-39.42mm -1.73mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) translate (39.42mm 1.73mm)" draw:z-index="2" svg:height="34.61mm" svg:width="57.68mm" svg:x="111.73pt" svg:y="4.9pt" text:anchor-type="paragraph">
<draw:image xlink:actuate="onLoad" xlink:href="bindata/BIN0002.jpg" xlink:show="embed" xlink:type="simple"/>
</draw:frame>
</text:p>
<text:p text:style-name="Paragraph-24">
<text:span>미주입니다.</text:span>
</text:p>
<text:p text:style-name="Paragraph-25">
<text:span>이건 각주이지요.</text:span>
</text:p>
<text:p text:style-name="Paragraph-26">
<text:span>다음 페이지</text:span>
<draw:frame draw:style-name="Shape-2" draw:transform=" translate (0mm 0mm) matrix (0.7434944237918215 0.0 0.0 0.7434944237918215 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) translate (0mm 0mm)" draw:z-index="4" svg:height="5.69mm" svg:width="5.69mm" text:anchor-type="as-char">
<draw:image xlink:actuate="onLoad" xlink:href="bindata/BIN0003.png" xlink:show="embed" xlink:type="simple"/>
</draw:frame>
</text:p>
</office:text>
</office:body>
</office:document-content>
$ cat sample-5017/styles.xml | xmllint --c14n - | xmllint --format -
<?xml version="1.0"?>
<office:document-styles xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:rpt="http://openoffice.org/2005/report" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl" office:version="1.2">
<office:font-face-decls>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="serif" svg:font-family="'Times New Roman'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="sans-serif" svg:font-family="'Arial'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="명조" svg:font-family="'은 바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="고딕" svg:font-family="'은 돋움'"/>
<style:font-face style:font-family-generic="system" style:font-pitch="variable" style:name="Lohit Hindi" svg:font-family="'Lohit Hindi'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
</office:font-face-decls>
<office:styles>
<style:default-style style:family="graphic">
<style:graphic-properties draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" style:flow-with-text="false"/>
<style:paragraph-properties style:font-independent-line-spacing="false" style:line-break="strict" style:text-autospace="ideograph-alpha" style:writing-mode="lr-tb">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:country-asian="KR" style:country-complex="IN" style:font-size-asian="10pt" style:font-size-complex="10pt" style:language-asian="ko" style:language-complex="hi" style:letter-kerning="true" style:use-window-font-color="true" fo:country="US" fo:font-size="10pt" fo:language="en"/>
</style:default-style>
<style:default-style style:family="paragraph">
<style:paragraph-properties style:line-break="strict" style:punctuation-wrap="hanging" style:tab-stop-distance="1.251cm" style:text-autospace="ideograph-alpha" style:writing-mode="page" fo:hyphenation-ladder-count="no-limit"/>
<style:text-properties style:country-asian="KR" style:country-complex="IN" style:font-name="sans-serif" style:font-name-asian="고딕" style:font-name-complex="Lohit Hindi" style:font-size-asian="10pt" style:font-size-complex="10pt" style:language-asian="ko" style:language-complex="hi" style:letter-kerning="true" style:use-window-font-color="true" fo:country="US" fo:font-size="10pt" fo:hyphenate="false" fo:hyphenation-push-char-count="2" fo:hyphenation-remain-char-count="2" fo:language="en"/>
</style:default-style>
<style:default-style style:family="table">
<style:table-properties table:border-model="collapsing"/>
</style:default-style>
<style:default-style style:family="table-row">
<style:table-row-properties fo:keep-together="auto"/>
</style:default-style>
<style:style style:class="text" style:family="paragraph" style:name="Standard">
<style:paragraph-properties style:text-autospace="none"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Heading" style:next-style-name="Text_20_body" style:parent-style-name="Standard">
<style:paragraph-properties fo:keep-with-next="always" fo:margin-bottom="0.212cm" fo:margin-top="0.423cm"/>
<style:text-properties style:font-name="sans-serif" style:font-name-asian="고딕" style:font-name-complex="Lohit Hindi" style:font-size-asian="14pt" style:font-size-complex="14pt" fo:font-size="14pt"/>
</style:style>
<style:style style:class="text" style:display-name="Text body" style:family="paragraph" style:name="Text_20_body" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-bottom="0.212cm" fo:margin-top="0cm"/>
</style:style>
<style:style style:class="list" style:family="paragraph" style:name="List" style:parent-style-name="Text_20_body">
<style:text-properties/>
</style:style>
<style:style style:class="extra" style:family="paragraph" style:name="Caption" style:parent-style-name="Standard">
<style:paragraph-properties text:line-number="0" text:number-lines="false" fo:margin-bottom="0.212cm" fo:margin-top="0.212cm"/>
<style:text-properties style:font-size-asian="12pt" style:font-size-complex="12pt" style:font-style-asian="italic" style:font-style-complex="italic" fo:font-size="12pt" fo:font-style="italic"/>
</style:style>
<style:style style:class="index" style:family="paragraph" style:name="Index" style:parent-style-name="Standard">
<style:paragraph-properties text:line-number="0" text:number-lines="false"/>
<style:text-properties/>
</style:style>
<style:style style:class="extra" style:display-name="Table Contents" style:family="paragraph" style:name="Table_20_Contents" style:parent-style-name="Standard">
<style:paragraph-properties text:line-number="0" text:number-lines="false"/>
</style:style>
<style:style style:family="graphic" style:name="Graphics">
<style:graphic-properties style:horizontal-pos="center" style:horizontal-rel="paragraph" style:number-wrapped-paragraphs="no-limit" style:vertical-pos="top" style:vertical-rel="paragraph" style:wrap="dynamic" style:wrap-contour="false" svg:x="0cm" svg:y="0cm" text:anchor-type="paragraph"/>
</style:style>
<text:outline-style style:name="Outline">
<text:outline-level-style style:num-format="" text:level="1">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.762cm" fo:margin-left="0.762cm" fo:text-indent="-0.762cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="2">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.016cm" fo:margin-left="1.016cm" fo:text-indent="-1.016cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="3">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.27cm" fo:margin-left="1.27cm" fo:text-indent="-1.27cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="4">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.524cm" fo:margin-left="1.524cm" fo:text-indent="-1.524cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="5">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.778cm" fo:margin-left="1.778cm" fo:text-indent="-1.778cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="6">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.032cm" fo:margin-left="2.032cm" fo:text-indent="-2.032cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="7">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.286cm" fo:margin-left="2.286cm" fo:text-indent="-2.286cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="8">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.54cm" fo:margin-left="2.54cm" fo:text-indent="-2.54cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="9">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.794cm" fo:margin-left="2.794cm" fo:text-indent="-2.794cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="10">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.048cm" fo:margin-left="3.048cm" fo:text-indent="-3.048cm"/>
</style:list-level-properties>
</text:outline-level-style>
</text:outline-style>
<text:notes-configuration style:num-format="1" text:footnotes-position="page" text:note-class="footnote" text:start-numbering-at="document" text:start-value="0"/>
<text:notes-configuration style:num-format="i" text:note-class="endnote" text:start-value="0"/>
<text:linenumbering-configuration style:num-format="1" text:increment="5" text:number-lines="false" text:number-position="left" text:offset="0.499cm"/>
<style:style style:class="text" style:family="paragraph" style:name="바탕글" style:next-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="본문" style:next-style-name="본문">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="10pt" fo:margin-left="15pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_1" style:next-style-name="개요_1">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="10pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_2" style:next-style-name="개요_2">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="20pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_3" style:next-style-name="개요_3">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="30pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_4" style:next-style-name="개요_4">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="40pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_5" style:next-style-name="개요_5">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="50pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_6" style:next-style-name="개요_6">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="60pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_7" style:next-style-name="개요_7">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="70pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="쪽_번호" style:next-style-name="쪽_번호">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="굴림" style:font-name-asian="굴림" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="머리말" style:next-style-name="머리말">
<style:paragraph-properties fo:line-height="150%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="굴림" style:font-name-asian="굴림" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="각주" style:next-style-name="각주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="13.1pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="-13.1pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="미주" style:next-style-name="미주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="13.1pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="-13.1pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="메모" style:next-style-name="메모">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="굴림" style:font-name-asian="굴림" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
</office:styles>
<office:automatic-styles>
<style:page-layout style:name="PageLayout-1">
<style:page-layout-properties style:print-orientation="portrait" fo:margin-bottom="1.5cm" fo:margin-left="3cm" fo:margin-right="3cm" fo:margin-top="2cm" fo:page-height="29.7cm" fo:page-width="21cm">
<style:footnote-sep style:adjustment="left" style:color="#000000" style:distance-after-sep="0.101cm" style:distance-before-sep="0.101cm" style:rel-width="25%" style:width="0.018cm"/>
</style:page-layout-properties>
<style:header-style/>
<style:footer-style/>
</style:page-layout>
</office:automatic-styles>
<office:master-styles>
<style:master-page style:name="MasterPage-1" style:page-layout-name="PageLayout-1"/>
</office:master-styles>
</office:document-styles>
$ rm -rf sample-5017
$ hwp5odt --embed-image samples/sample-5017.hwp >/dev/null 2>/dev/null
$ unzip -q sample-5017.odt -d sample-5017
$ find sample-5017 -type f | grep -v 'manifest.rdf\|manifest.xml\|content.xml\|styles.xml' | sort | xargs sha1sum
a651496e95dd70a7a5c3ae08f8829cecd5e6ed7b sample-5017/bindata/BIN0002.jpg
e0f44117bf675d77297a86a322bd9eaa96543c37 sample-5017/bindata/BIN0002.png
e0f44117bf675d77297a86a322bd9eaa96543c37 sample-5017/bindata/BIN0003.png
90103cbc494e4481329d458fbebd5bcd9286de1c sample-5017/mimetype
$ xmllint --c14n sample-5017/content.xml | xmllint --format -
<?xml version="1.0"?>
<office:document-content xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:rpt="http://openoffice.org/2005/report" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl" office:version="1.2">
<office:scripts/>
<office:font-face-decls/>
<office:automatic-styles>
<style:style style:class="text" style:family="paragraph" style:master-page-name="MasterPage-1" style:name="Paragraph-1" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:family="text" style:name="p1-1-1">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt"/>
</style:style>
<style:style style:family="text" style:name="p1-1-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt" fo:font-weight="bold"/>
</style:style>
<style:style style:family="text" style:name="p1-1-3">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt"/>
</style:style>
<style:style style:family="text" style:name="p1-1-4">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:font-style-asian="italic" style:font-style-complex="italic" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt" fo:font-style="italic"/>
</style:style>
<style:style style:family="text" style:name="p1-1-5">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="20pt" style:font-size-complex="20pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="20pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-2" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-3" style:parent-style-name="머리말">
<style:paragraph-properties fo:line-height="150%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-4" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:family="text" style:name="p5-1-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt" fo:font-weight="bold"/>
</style:style>
<style:style style:family="text" style:name="p6-3-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="bold" style:font-weight-complex="bold" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt" fo:font-weight="bold"/>
</style:style>
<style:style style:family="text" style:name="p22-1-2">
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-23" style:parent-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-24" style:parent-style-name="미주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="13.1pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="-13.1pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-25" style:parent-style-name="각주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Paragraph-26" style:parent-style-name="바탕글">
<style:paragraph-properties fo:break-before="page" fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
</style:style>
<style:style style:family="table" style:name="Table-1">
<style:table-properties style:width="142.71mm" table:align="margins" table:border-model="collapsing" fo:margin-bottom="1mm" fo:margin-left="1mm" fo:margin-right="1mm" fo:margin-top="1mm"/>
</style:style>
<style:style style:family="table" style:name="Table-2">
<style:table-properties style:width="143.01mm" table:align="margins" table:border-model="collapsing" fo:margin-bottom="1mm" fo:margin-left="1mm" fo:margin-right="1mm" fo:margin-top="1mm"/>
</style:style>
<style:style style:family="table" style:name="Table-3">
<style:table-properties style:width="142.71mm" table:align="margins" table:border-model="collapsing" fo:margin-bottom="4mm" fo:margin-left="1mm" fo:margin-right="3mm" fo:margin-top="2mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-1-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-1-2">
<style:table-cell-properties fo:border-bottom="0.4mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-2-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.4mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-1-2-2">
<style:table-cell-properties fo:background-color="#99ccff" fo:border-bottom="0.4mm solid #000000" fo:border-left="0.4mm solid #000000" fo:border-right="0.4mm solid #000000" fo:border-top="0.4mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-2-1-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-1-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-1-2">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-2-1">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="table-cell" style:name="Table-3-2-2">
<style:table-cell-properties fo:border-bottom="0.12mm solid #000000" fo:border-left="0.12mm solid #000000" fo:border-right="0.12mm solid #000000" fo:border-top="0.12mm solid #000000" fo:padding-bottom="0.5mm" fo:padding-left="0.5mm" fo:padding-right="0.5mm" fo:padding-top="0.5mm"/>
</style:style>
<style:style style:family="graphic" style:name="Shape-1">
<style:graphic-properties draw:fill="none" style:horizontal-pos="from-left" style:horizontal-rel="page-content" style:vertical-pos="from-top" style:vertical-rel="paragraph" style:wrap="none" fo:margin-bottom="0mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-top="0mm"/>
</style:style>
<style:style style:family="graphic" style:name="Shape-2">
<style:graphic-properties draw:fill="none" style:vertical-pos="top" style:vertical-rel="baseline" fo:margin-bottom="0mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-top="0mm"/>
</style:style>
</office:automatic-styles>
<office:body>
<office:text>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="Paragraph-1">
<text:span text:style-name="p1-1-1">한글 </text:span>
<text:span text:style-name="p1-1-2">2005</text:span>
<text:span text:style-name="p1-1-3"> </text:span>
<text:span text:style-name="p1-1-4">예제</text:span>
<text:span text:style-name="p1-1-5"> 파일입니다.</text:span>
</text:p>
<text:p text:style-name="Paragraph-2"/>
<text:p text:style-name="Paragraph-3">
<text:span>머리말입니다</text:span>
</text:p>
<text:p text:style-name="Paragraph-4"/>
<text:p text:style-name="본문">
<text:span>본문 </text:span>
<text:span text:style-name="p5-1-2">내용</text:span>
<text:span>입니다. 본 문서는 </text:span>
<text:span></text:span>
<text:span>글 워드 프로세서의 파일 저장 형식 중, </text:span>
<text:span></text:span>
<text:span>글 2002 이후 </text:span>
<text:span>제품에서 사용되는 </text:span>
<text:span></text:span>
<text:span>글 문서 파일 형식 5.0 및 </text:span>
<text:span></text:span>
<text:span>글 97 문서 파일 형식, </text:span>
<text:span>HWPML</text:span>
<text:span>에 관</text:span>
<text:span>하여 설명한다.</text:span>
</text:p>
<text:p text:style-name="본문">
<text:span>표</text:span>
<text:span>표</text:span>
<text:span text:style-name="p6-3-2">끝</text:span>
</text:p>
<table:table table:style-name="Table-1">
<table:table-column table:number-columns-repeated="2"/>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-1-1">
<text:p text:style-name="바탕글">
<text:span>A0</text:span>
</text:p>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-1-2">
<text:p text:style-name="바탕글">
<text:span>B0</text:span>
</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-2-1">
<text:p text:style-name="바탕글">
<text:span>A1</text:span>
</text:p>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-1-2-2">
<text:p text:style-name="바탕글">
<text:span>B10</text:span>
</text:p>
<text:p text:style-name="바탕글">
<text:span>B11</text:span>
</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<table:table table:style-name="Table-2">
<table:table-column table:number-columns-repeated="1"/>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-2-1-1">
<text:p text:style-name="바탕글">
<text:span>table2</text:span>
</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="본문"/>
<table:table table:style-name="Table-3">
<table:table-column table:number-columns-repeated="2"/>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-1-1">
<text:p text:style-name="바탕글"/>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-1-2">
<text:p text:style-name="바탕글"/>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-2-1">
<text:p text:style-name="바탕글"/>
</table:table-cell>
<table:table-cell table:number-columns-spanned="1" table:number-rows-spanned="1" table:style-name="Table-3-2-2">
<text:p text:style-name="바탕글"/>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="본문">
<text:span>다음 문단</text:span>
</text:p>
<text:p text:style-name="본문"/>
<text:p text:style-name="본문">
<text:span>본 </text:span>
<text:span text:style-name="p22-1-2">문서</text:span>
<text:span>는 먼저 </text:span>
<text:span></text:span>
<text:span>글 문서 파일 형식 5.0에 관하여 설명한 후, </text:span>
<text:span></text:span>
<text:span>글 97 문서 파</text:span>
<text:span>일 형식, </text:span>
<text:span>HWPML</text:span>
<text:span>에 관하여 설명한다. 각 형식에 대한 설명은 문서 파일 형식 내의 주요</text:span>
<text:span>한 자료 형식 및 파일 구조, 레코드 구조에 대해서 설명한다.</text:span>
</text:p>
<text:p text:style-name="Paragraph-23">
<draw:frame draw:style-name="Shape-1" draw:transform=" translate (-39.42mm -1.73mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) translate (39.42mm 1.73mm)" draw:z-index="2" svg:height="34.61mm" svg:width="57.68mm" svg:x="111.73pt" svg:y="4.9pt" text:anchor-type="paragraph">
<draw:image>
<office:binary-data>
/9j/4AAQSkZJRgABAQAAAQABAAD//gA+Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1
c2luZyBJSkcgSlBFRyB2NjIpLCBkZWZhdWx0IHF1YWxpdHkK/9sAQwAIBgYHBgUI
BwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8n
OT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIy
MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgBLAH0AwEiAAIRAQMR
Af/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMF
BQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYX
GBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6
g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV
1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAAB
AgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXET
IjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJ
SlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWm
p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5
+v/aAAwDAQACEQMRAD8A68L9KeBQBS1zlCAe1OApQKdigBuKUKKdQBQAmKAKUD86
WgBAtGKcBS4oAMUbeaXFOAoC4wLRtFOxS4pDG7fajbinYoxQAmPajFOx7UUANxSY
pxozQA3FLtFOz70lSK4m2m4p5FFAXGbaCBTqXFAXGYFKBTsUCgLigVIKaBmnqOKt
BcUCpABTQtOAq0K4Y4pQKXFOAqriuAFAFAGKdVCEA4pcUvagUwYoFLigUtMkbz60
vFLmlxVBzDeaOadiigOYTFGKXn1owaLhcTFGKUgetGDRcLiYoxRijFMLibfakKj0
p2KM+9AXG4pDTjS0CGGkp2KMUAN20mKfikIoGRmkIpxFBoERkdaaQKeRSEUAR49q
Kfj60UAZQFOAoFOFcZsIBTqAKAKADFOxQBS4oAMUUYpcUAIKcKXFAoAQDilFLn3o
xQAgFLilFLQAm2loxQRQAnpS0UUAM+lFLiikMSjPvRRQAUGlz70Z96kVxMUUufek
FAXAUA0Ad6VaaHceOlPHSmjpT1HFUiWOxThSDtSgVoiRwGKUUCkFOIDhQKKDVIBR
ThSClFUhMBS0gpaoQuacKbmnCgBKUUtIBQK4UUtFAXG5ozS5ozTAbto207PvRigB
MUlONGKAGkUhFPppHSgBKKWkNADTSEU7FJQA00hFONIRQA000in4ppHFADaKWigD
KApwFAFKK5DcAKcBQBSigBAKXFFL/wABoAAKXFGKXHpQAClFFLtoAAKWjFLn3oAS
ijPvRn3pCDPvRn3ooz70ALikpc+9BoASilNJQAUUfSk/hoAbiilNJSGGc0Z4paKA
DPvQKM+9KKkVx4608fepgp461ohMkApR1ptPFWiQHalFB6UCriA6lpKWhALn3pRS
Cl5qiRKWilz71QC0UooFArh2pR/Oilz70BcbijPvRn3paYCZ96Wl70lABRiiigAo
xRiigAIppp2KKAExSEU/PvSUARkUhpxFIRQAGkIpxpDQAwimmnkU00AJiijFFAGU
KeKQUoFcpsApwoFKO1AABQKXPvRQAYpdtFL2pDAUUufejPvQAZ96M+9FFABRRRQA
UUUUAFGfeiikIM+9GfeijPvQAlFLn3pKAExSUp60lIYUlLSUAFKKSlFAEgp4pgp4
qluIeOlPpopxrREAKcKQcGnY4qkAgpaSgUxDhS0gpRViHUuKSlFACjpSim04UCuH
elz70gpwoC42iil/hpgJS4paKAFoFHvS596AEoozRmmA00UppOKACkNOoPWkA0ik
NKRQRQA0im08000AIaYaeaaaAG80UUUwMsUooFKK5jcBThQKAKAAClx1oxTs+9Ik
MUufejPvRSGFKKSigApaKKACiij+GkMSilooAbRS0GkISjPvRQaADPvRRn3oz70A
FFLn3pKAG0lLQaQxKUUlKOtAEgp4pY4i3II+lSeSw45ya0jF7mbkhBThzRtI60oH
cVaQAKdSAc0uMdaaQCUopwXdnGeKAjnoCavlJckIGp+aURsByOKChHJNHKxc8e4n
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
miu+5kf/2Q==
</office:binary-data>
</draw:image>
</draw:frame>
</text:p>
<text:p text:style-name="Paragraph-24">
<text:span>미주입니다.</text:span>
</text:p>
<text:p text:style-name="Paragraph-25">
<text:span>이건 각주이지요.</text:span>
</text:p>
<text:p text:style-name="Paragraph-26">
<text:span>다음 페이지</text:span>
<draw:frame draw:style-name="Shape-2" draw:transform=" translate (0mm 0mm) matrix (0.7434944237918215 0.0 0.0 0.7434944237918215 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) matrix (1.0 0.0 0.0 1.0 0mm 0mm) translate (0mm 0mm)" draw:z-index="4" svg:height="5.69mm" svg:width="5.69mm" text:anchor-type="as-char">
<draw:image>
<office:binary-data>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5
Q7t/AAAACXBIWXMAAA3WAAAN1gGQb3mcAAAACXZwQWcAAAAQAAAAEABcxq3DAAAC
V0lEQVQ4y32TMU9UQRDHf7tvOY47uAgel4tBhUKIJoZE0YbSSiBoQW2hFQnfwEjH
F7CHjg6auwIaGm20wwYS6AUSNCdwB++93RmLd4AK+E+2mp2Z339n1szPzyMiuZmZ
mTelUmlIVZV/1Gg04u97e6tTk5Nb09PT1Ov1i5grFos453qq1epcX1/fqIj8lWyM
oVwu09vb+2pjY2OuVqt9mZh4ydraelYgu6ZGVW0cxxwfHXEFAegqFJ4Oj4ws1ur1
tysrq1/Hx8fZ3NzEqiqqioggISDBo8Ejf5zgPa1mE+fco8H7gx+Xl5eHFxYWMgJV
RUWREGgGy4GWMBiczTp3O6En8qTHx+zu7HJycvK8Uql8WFpafDc7O5s4VUHUggR2
G8r6foHIGMoFcEa519Hkcf4EVaVcvk2l0o/3fnRs7FkpSZJDJ6JYq/gg2NY+xZ+H
EPWgSYGunhLdnZDr6ECBrnyefD5Po9HAGINzUduCCiLCj4M9vn3+hNoctrNIrrsf
/3CIgQe3EBGstVhrCSG0cxSnKqha0jTlbnWA1y+msJHD2ggbWaqlDpwD0YjIWkQE
7z3njV02ASX1nr5iJ08GctkYVQBB8bRagDFYazHGEEJAJJueU1HUKiEEkjTlLEnh
6jISRREG8N7jQ5tAFCcqWL3EclHETVLNGgXffoNzCypZIE1T4ji+NtkYk1EYkxFc
WGhvYkYgOOduKMCF/4ygXSCOY3zkpdVqnlprUiDwf0WtVvP07OxMfAi4nZ1dUP3V
lc+/z+Vyd5Rr/9IlCZg4Sfa2trePQPkN6rGAJMLKdHsAAAAldEVYdGRhdGU6Y3Jl
YXRlADIwMTAtMDUtMjRUMDc6NDI6MTctMDY6MDB3nikDAAAAJXRFWHRkYXRlOm1v
ZGlmeQAyMDEwLTA1LTI0VDA3OjQyOjE3LTA2OjAwBsORvwAAADV0RVh0TGljZW5z
ZQBodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9saWNlbnNlcy9MR1BMLzIuMS87
wbQYAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAA90RVh0
U291cmNlAG51b3ZlWFQy6iA23AAAACJ0RVh0U291cmNlX1VSTABodHRwOi8vbnVv
dmV4dC5wd3NwLm5ldJGJxy0AAAAASUVORK5CYII=
</office:binary-data>
</draw:image>
</draw:frame>
</text:p>
</office:text>
</office:body>
</office:document-content>
$ xmllint --c14n sample-5017/styles.xml | xmllint --format -
<?xml version="1.0"?>
<office:document-styles xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:rpt="http://openoffice.org/2005/report" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl" office:version="1.2">
<office:font-face-decls>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="serif" svg:font-family="'Times New Roman'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="sans-serif" svg:font-family="'Arial'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="명조" svg:font-family="'은 바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="고딕" svg:font-family="'은 돋움'"/>
<style:font-face style:font-family-generic="system" style:font-pitch="variable" style:name="Lohit Hindi" svg:font-family="'Lohit Hindi'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
<style:font-face style:font-family-generic="swiss" style:font-pitch="variable" style:name="굴림" svg:font-family="'굴림'"/>
<style:font-face style:font-family-generic="roman" style:font-pitch="variable" style:name="바탕" svg:font-family="'바탕'"/>
</office:font-face-decls>
<office:styles>
<style:default-style style:family="graphic">
<style:graphic-properties draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" style:flow-with-text="false"/>
<style:paragraph-properties style:font-independent-line-spacing="false" style:line-break="strict" style:text-autospace="ideograph-alpha" style:writing-mode="lr-tb">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:country-asian="KR" style:country-complex="IN" style:font-size-asian="10pt" style:font-size-complex="10pt" style:language-asian="ko" style:language-complex="hi" style:letter-kerning="true" style:use-window-font-color="true" fo:country="US" fo:font-size="10pt" fo:language="en"/>
</style:default-style>
<style:default-style style:family="paragraph">
<style:paragraph-properties style:line-break="strict" style:punctuation-wrap="hanging" style:tab-stop-distance="1.251cm" style:text-autospace="ideograph-alpha" style:writing-mode="page" fo:hyphenation-ladder-count="no-limit"/>
<style:text-properties style:country-asian="KR" style:country-complex="IN" style:font-name="sans-serif" style:font-name-asian="고딕" style:font-name-complex="Lohit Hindi" style:font-size-asian="10pt" style:font-size-complex="10pt" style:language-asian="ko" style:language-complex="hi" style:letter-kerning="true" style:use-window-font-color="true" fo:country="US" fo:font-size="10pt" fo:hyphenate="false" fo:hyphenation-push-char-count="2" fo:hyphenation-remain-char-count="2" fo:language="en"/>
</style:default-style>
<style:default-style style:family="table">
<style:table-properties table:border-model="collapsing"/>
</style:default-style>
<style:default-style style:family="table-row">
<style:table-row-properties fo:keep-together="auto"/>
</style:default-style>
<style:style style:class="text" style:family="paragraph" style:name="Standard">
<style:paragraph-properties style:text-autospace="none"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="Heading" style:next-style-name="Text_20_body" style:parent-style-name="Standard">
<style:paragraph-properties fo:keep-with-next="always" fo:margin-bottom="0.212cm" fo:margin-top="0.423cm"/>
<style:text-properties style:font-name="sans-serif" style:font-name-asian="고딕" style:font-name-complex="Lohit Hindi" style:font-size-asian="14pt" style:font-size-complex="14pt" fo:font-size="14pt"/>
</style:style>
<style:style style:class="text" style:display-name="Text body" style:family="paragraph" style:name="Text_20_body" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-bottom="0.212cm" fo:margin-top="0cm"/>
</style:style>
<style:style style:class="list" style:family="paragraph" style:name="List" style:parent-style-name="Text_20_body">
<style:text-properties/>
</style:style>
<style:style style:class="extra" style:family="paragraph" style:name="Caption" style:parent-style-name="Standard">
<style:paragraph-properties text:line-number="0" text:number-lines="false" fo:margin-bottom="0.212cm" fo:margin-top="0.212cm"/>
<style:text-properties style:font-size-asian="12pt" style:font-size-complex="12pt" style:font-style-asian="italic" style:font-style-complex="italic" fo:font-size="12pt" fo:font-style="italic"/>
</style:style>
<style:style style:class="index" style:family="paragraph" style:name="Index" style:parent-style-name="Standard">
<style:paragraph-properties text:line-number="0" text:number-lines="false"/>
<style:text-properties/>
</style:style>
<style:style style:class="extra" style:display-name="Table Contents" style:family="paragraph" style:name="Table_20_Contents" style:parent-style-name="Standard">
<style:paragraph-properties text:line-number="0" text:number-lines="false"/>
</style:style>
<style:style style:family="graphic" style:name="Graphics">
<style:graphic-properties style:horizontal-pos="center" style:horizontal-rel="paragraph" style:number-wrapped-paragraphs="no-limit" style:vertical-pos="top" style:vertical-rel="paragraph" style:wrap="dynamic" style:wrap-contour="false" svg:x="0cm" svg:y="0cm" text:anchor-type="paragraph"/>
</style:style>
<text:outline-style style:name="Outline">
<text:outline-level-style style:num-format="" text:level="1">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.762cm" fo:margin-left="0.762cm" fo:text-indent="-0.762cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="2">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.016cm" fo:margin-left="1.016cm" fo:text-indent="-1.016cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="3">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.27cm" fo:margin-left="1.27cm" fo:text-indent="-1.27cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="4">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.524cm" fo:margin-left="1.524cm" fo:text-indent="-1.524cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="5">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.778cm" fo:margin-left="1.778cm" fo:text-indent="-1.778cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="6">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.032cm" fo:margin-left="2.032cm" fo:text-indent="-2.032cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="7">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.286cm" fo:margin-left="2.286cm" fo:text-indent="-2.286cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="8">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.54cm" fo:margin-left="2.54cm" fo:text-indent="-2.54cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="9">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.794cm" fo:margin-left="2.794cm" fo:text-indent="-2.794cm"/>
</style:list-level-properties>
</text:outline-level-style>
<text:outline-level-style style:num-format="" text:level="10">
<style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
<style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.048cm" fo:margin-left="3.048cm" fo:text-indent="-3.048cm"/>
</style:list-level-properties>
</text:outline-level-style>
</text:outline-style>
<text:notes-configuration style:num-format="1" text:footnotes-position="page" text:note-class="footnote" text:start-numbering-at="document" text:start-value="0"/>
<text:notes-configuration style:num-format="i" text:note-class="endnote" text:start-value="0"/>
<text:linenumbering-configuration style:num-format="1" text:increment="5" text:number-lines="false" text:number-position="left" text:offset="0.499cm"/>
<style:style style:class="text" style:family="paragraph" style:name="바탕글" style:next-style-name="바탕글">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="본문" style:next-style-name="본문">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="10pt" fo:margin-left="15pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_1" style:next-style-name="개요_1">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="10pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_2" style:next-style-name="개요_2">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="20pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_3" style:next-style-name="개요_3">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="30pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_4" style:next-style-name="개요_4">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="40pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_5" style:next-style-name="개요_5">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="50pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_6" style:next-style-name="개요_6">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="60pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="개요_7" style:next-style-name="개요_7">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="70pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="쪽_번호" style:next-style-name="쪽_번호">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="굴림" style:font-name-asian="굴림" style:font-size-asian="10pt" style:font-size-complex="10pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="10pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="머리말" style:next-style-name="머리말">
<style:paragraph-properties fo:line-height="150%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="굴림" style:font-name-asian="굴림" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="각주" style:next-style-name="각주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="13.1pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="-13.1pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="미주" style:next-style-name="미주">
<style:paragraph-properties fo:line-height="130%" fo:margin-bottom="0pt" fo:margin-left="13.1pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="-13.1pt"/>
<style:text-properties style:font-name="바탕" style:font-name-asian="바탕" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
<style:style style:class="text" style:family="paragraph" style:name="메모" style:next-style-name="메모">
<style:paragraph-properties fo:line-height="160%" fo:margin-bottom="0pt" fo:margin-left="0pt" fo:margin-right="0pt" fo:margin-top="0pt" fo:text-align="justify" fo:text-indent="0pt"/>
<style:text-properties style:font-name="굴림" style:font-name-asian="굴림" style:font-size-asian="9pt" style:font-size-complex="9pt" style:text-line-through-type="none" style:text-overline-type="none" style:text-underline-type="none" fo:font-size="9pt"/>
</style:style>
</office:styles>
<office:automatic-styles>
<style:page-layout style:name="PageLayout-1">
<style:page-layout-properties style:print-orientation="portrait" fo:margin-bottom="1.5cm" fo:margin-left="3cm" fo:margin-right="3cm" fo:margin-top="2cm" fo:page-height="29.7cm" fo:page-width="21cm">
<style:footnote-sep style:adjustment="left" style:color="#000000" style:distance-after-sep="0.101cm" style:distance-before-sep="0.101cm" style:rel-width="25%" style:width="0.018cm"/>
</style:page-layout-properties>
<style:header-style/>
<style:footer-style/>
</style:page-layout>
</office:automatic-styles>
<office:master-styles>
<style:master-page style:name="MasterPage-1" style:page-layout-name="PageLayout-1"/>
</office:master-styles>
</office:document-styles>
|