-
Notifications
You must be signed in to change notification settings - Fork 7
/
vml-main.xsd
1733 lines (1733 loc) · 65.9 KB
/
vml-main.xsd
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
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema targetNamespace="urn:schemas-microsoft-com:vml" xmlns="urn:schemas-microsoft-com:vml" xmlns:p="urn:schemas-microsoft-com:office:powerpoint" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wvml="urn:schemas-microsoft-com:office:word" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:x="urn:schemas-microsoft-com:office:excel">
<xsd:import namespace="urn:schemas-microsoft-com:office:office" schemaLocation="vml-officeDrawing.xsd" />
<xsd:import namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="wml.xsd" />
<xsd:import namespace="urn:schemas-microsoft-com:office:word" schemaLocation="vml-wordprocessingDrawing.xsd" />
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd" />
<xsd:import namespace="urn:schemas-microsoft-com:office:excel" schemaLocation="vml-spreadsheetDrawing.xsd" />
<xsd:import namespace="urn:schemas-microsoft-com:office:powerpoint" schemaLocation="vml-presentationDrawing.xsd" />
<xsd:attributeGroup name="AG_Id">
<xsd:attribute name="id" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Unique Identifier</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_Style">
<xsd:attribute name="style" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Styling Properties</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_Type">
<xsd:attribute name="type" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Type Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_Adj">
<xsd:attribute name="adj" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Adjustment Parameters</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_Path">
<xsd:attribute name="path" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Edge Path</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_Fill">
<xsd:attribute name="filled" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Fill Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="fillcolor" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_Chromakey">
<xsd:attribute name="chromakey" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Image Transparency Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_Ext">
<xsd:attribute name="ext" form="qualified" type="ST_Ext">
<xsd:annotation>
<xsd:documentation>VML Extension Handling Behavior</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_CoreAttributes">
<xsd:attributeGroup ref="AG_Id" />
<xsd:attributeGroup ref="AG_Style" />
<xsd:attribute name="href" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Hyperlink Target</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="target" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Hyperlink Display Target</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="class" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>CSS Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="title" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Title</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="alt" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Alternate Text</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="coordsize" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Coordinate Space Size</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="coordorigin" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Coordinate Space Origin</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="wrapcoords" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Bounding Polygon</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="print" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Print Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_ShapeAttributes">
<xsd:attributeGroup ref="AG_Chromakey" />
<xsd:attributeGroup ref="AG_Fill" />
<xsd:attribute name="opacity" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Color Opacity</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="stroked" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Stroke Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="strokecolor" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Stroke Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="strokeweight" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Shape Stroke Weight</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="insetpen" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Inset Border From Path</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_OfficeCoreAttributes">
<xsd:attribute ref="o:spid">
<xsd:annotation>
<xsd:documentation>Optional String</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:oned">
<xsd:annotation>
<xsd:documentation>Shape Handle Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:regroupid">
<xsd:annotation>
<xsd:documentation>Regroup ID</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:doubleclicknotify">
<xsd:annotation>
<xsd:documentation>Double-click Notification Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:button">
<xsd:annotation>
<xsd:documentation>Button Behavior Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:userhidden">
<xsd:annotation>
<xsd:documentation>Hide Script Anchors</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:bullet">
<xsd:annotation>
<xsd:documentation>Graphical Bullet</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:hr">
<xsd:annotation>
<xsd:documentation>Horizontal Rule Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:hrstd">
<xsd:annotation>
<xsd:documentation>Horizontal Rule Standard Display Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:hrnoshade">
<xsd:annotation>
<xsd:documentation>Horizontal Rule 3D Shading Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:hrpct">
<xsd:annotation>
<xsd:documentation>Horizontal Rule Length Percentage</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:hralign">
<xsd:annotation>
<xsd:documentation>Horizontal Rule Alignment</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:allowincell">
<xsd:annotation>
<xsd:documentation>Allow in Table Cell</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:allowoverlap">
<xsd:annotation>
<xsd:documentation>Allow Shape Overlap</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:userdrawn">
<xsd:annotation>
<xsd:documentation>Exists In Master Slide</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:bordertopcolor">
<xsd:annotation>
<xsd:documentation>Border Top Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:borderleftcolor">
<xsd:annotation>
<xsd:documentation>Border Left Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:borderbottomcolor">
<xsd:annotation>
<xsd:documentation>Bottom Border Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:borderrightcolor">
<xsd:annotation>
<xsd:documentation>Border Right Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:dgmlayout">
<xsd:annotation>
<xsd:documentation>Diagram Node Layout Identifier</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:dgmnodekind">
<xsd:annotation>
<xsd:documentation>Diagram Node Identifier</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:dgmlayoutmru">
<xsd:annotation>
<xsd:documentation>Diagram Node Recent Layout Identifier</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:insetmode">
<xsd:annotation>
<xsd:documentation>Text Inset Mode</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_OfficeShapeAttributes">
<xsd:attribute ref="o:spt">
<xsd:annotation>
<xsd:documentation>Optional Number</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:connectortype">
<xsd:annotation>
<xsd:documentation>Shape Connector Type</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:bwmode">
<xsd:annotation>
<xsd:documentation>Black-and-White Mode</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:bwpure">
<xsd:annotation>
<xsd:documentation>Pure Black-and-White Mode</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:bwnormal">
<xsd:annotation>
<xsd:documentation>Normal Black-and-White Mode</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:forcedash">
<xsd:annotation>
<xsd:documentation>Force Dashed Outline</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:oleicon">
<xsd:annotation>
<xsd:documentation>Embedded Object Icon Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:ole">
<xsd:annotation>
<xsd:documentation>Embedded Object Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:preferrelative">
<xsd:annotation>
<xsd:documentation>Relative Resize Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:cliptowrap">
<xsd:annotation>
<xsd:documentation>Clip to Wrapping Polygon</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:clip">
<xsd:annotation>
<xsd:documentation>Clipping Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_AllCoreAttributes">
<xsd:attributeGroup ref="AG_CoreAttributes" />
<xsd:attributeGroup ref="AG_OfficeCoreAttributes" />
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_AllShapeAttributes">
<xsd:attributeGroup ref="AG_ShapeAttributes" />
<xsd:attributeGroup ref="AG_OfficeShapeAttributes" />
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_ImageAttributes">
<xsd:attribute name="src" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Source</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="cropleft" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Left Crop</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="croptop" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Top Crop</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="cropright" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Right Crop</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="cropbottom" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Bottom Crop</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="gain" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Intensity</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="blacklevel" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Brightness</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="gamma" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Image Gamma Correction</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="grayscale" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Image Grayscale Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="bilevel" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Image Bilevel Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="AG_StrokeAttributes">
<xsd:attribute name="on" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="weight" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Weight</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="color" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="opacity" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Opacity</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="linestyle" type="ST_StrokeLineStyle" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Line Style</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="miterlimit" type="xsd:decimal" use="optional">
<xsd:annotation>
<xsd:documentation>Miter Joint Limit</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="joinstyle" type="ST_StrokeJoinStyle" use="optional">
<xsd:annotation>
<xsd:documentation>Line End Join Style</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="endcap" type="ST_StrokeEndCap" use="optional">
<xsd:annotation>
<xsd:documentation>Line End Cap</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="dashstyle" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Dash Pattern</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="filltype" type="ST_FillType" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Image Style</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="src" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Image Location</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="imageaspect" type="ST_ImageAspect" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Image Aspect Ratio</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="imagesize" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Image Size</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="imagealignshape" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Stoke Image Alignment</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="color2" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Stroke Alternate Pattern Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="startarrow" type="ST_StrokeArrowType" use="optional">
<xsd:annotation>
<xsd:documentation>Line Start Arrowhead</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="startarrowwidth" type="ST_StrokeArrowWidth" use="optional">
<xsd:annotation>
<xsd:documentation>Line Start Arrowhead Width</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="startarrowlength" type="ST_StrokeArrowLength" use="optional">
<xsd:annotation>
<xsd:documentation>Line Start Arrowhead Length</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="endarrow" type="ST_StrokeArrowType" use="optional">
<xsd:annotation>
<xsd:documentation>Line End Arrowhead</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="endarrowwidth" type="ST_StrokeArrowWidth" use="optional">
<xsd:annotation>
<xsd:documentation>Line End Arrowhead Width</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="endarrowlength" type="ST_StrokeArrowLength" use="optional">
<xsd:annotation>
<xsd:documentation>Line End Arrowhead Length</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:href">
<xsd:annotation>
<xsd:documentation>Original Image Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:althref">
<xsd:annotation>
<xsd:documentation>Alternate Image Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:title">
<xsd:annotation>
<xsd:documentation>Stroke Title</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:forcedash">
<xsd:annotation>
<xsd:documentation>Force Dashed Outline</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="r:id" use="optional">
<xsd:annotation>
<xsd:documentation>Relationship</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="insetpen" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Inset Border From Path</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:relid">
<xsd:annotation>
<xsd:documentation>Relationship to Part</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:group name="EG_ShapeElements">
<xsd:choice>
<xsd:element ref="path" />
<xsd:element ref="formulas" />
<xsd:element ref="handles" />
<xsd:element ref="fill" />
<xsd:element ref="stroke" />
<xsd:element ref="shadow" />
<xsd:element ref="textbox" />
<xsd:element ref="textpath" />
<xsd:element ref="imagedata" />
<xsd:element ref="o:skew" />
<xsd:element ref="o:extrusion" />
<xsd:element ref="o:callout" />
<xsd:element ref="o:lock" />
<xsd:element ref="o:clippath" />
<xsd:element ref="o:signatureline" />
<xsd:element ref="wvml:wrap" />
<xsd:element ref="wvml:anchorlock" />
<xsd:element ref="wvml:bordertop" />
<xsd:element ref="wvml:borderbottom" />
<xsd:element ref="wvml:borderleft" />
<xsd:element ref="wvml:borderright" />
<xsd:element ref="x:ClientData" minOccurs="0" />
<xsd:element ref="p:textdata" minOccurs="0" />
</xsd:choice>
</xsd:group>
<xsd:element name="shape" type="CT_Shape">
<xsd:annotation>
<xsd:documentation>Shape Definition</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="shapetype" type="CT_Shapetype">
<xsd:annotation>
<xsd:documentation>Shape Template</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="group" type="CT_Group">
<xsd:annotation>
<xsd:documentation>Shape Group</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="background" type="CT_Background">
<xsd:annotation>
<xsd:documentation>Document Background</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="CT_Shape">
<xsd:choice maxOccurs="unbounded">
<xsd:group ref="EG_ShapeElements" />
<xsd:element ref="o:ink" />
<xsd:element ref="p:iscomment" />
</xsd:choice>
<xsd:attributeGroup ref="AG_AllCoreAttributes" />
<xsd:attributeGroup ref="AG_AllShapeAttributes" />
<xsd:attributeGroup ref="AG_Type" />
<xsd:attributeGroup ref="AG_Adj" />
<xsd:attributeGroup ref="AG_Path" />
<xsd:attribute ref="o:gfxdata">
<xsd:annotation>
<xsd:documentation>Encoded Package</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="equationxml" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Storage for Alternate Math Content</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_Shapetype">
<xsd:sequence>
<xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded" />
<xsd:element ref="o:complex" minOccurs="0" />
</xsd:sequence>
<xsd:attributeGroup ref="AG_AllCoreAttributes" />
<xsd:attributeGroup ref="AG_AllShapeAttributes" />
<xsd:attributeGroup ref="AG_Adj" />
<xsd:attributeGroup ref="AG_Path" />
<xsd:attribute ref="o:master">
<xsd:annotation>
<xsd:documentation>Master Element Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_Group">
<xsd:choice maxOccurs="unbounded">
<xsd:group ref="EG_ShapeElements" />
<xsd:element ref="group" />
<xsd:element ref="shape" />
<xsd:element ref="shapetype" />
<xsd:element ref="arc" />
<xsd:element ref="curve" />
<xsd:element ref="image" />
<xsd:element ref="line" />
<xsd:element ref="oval" />
<xsd:element ref="polyline" />
<xsd:element ref="rect" />
<xsd:element ref="roundrect" />
<xsd:element ref="o:diagram" />
</xsd:choice>
<xsd:attributeGroup ref="AG_AllCoreAttributes" />
<xsd:attributeGroup ref="AG_Fill" />
<xsd:attribute name="editas" type="ST_EditAs" use="optional">
<xsd:annotation>
<xsd:documentation>Group Diagram Type</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:tableproperties">
<xsd:annotation>
<xsd:documentation>Table Properties</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:tablelimits">
<xsd:annotation>
<xsd:documentation>Table Row Height Limits</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_Background">
<xsd:sequence>
<xsd:element ref="fill" minOccurs="0" />
</xsd:sequence>
<xsd:attributeGroup ref="AG_Id" />
<xsd:attributeGroup ref="AG_Fill" />
<xsd:attribute ref="o:bwmode">
<xsd:annotation>
<xsd:documentation>Black-and-White Mode</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:bwpure">
<xsd:annotation>
<xsd:documentation>Pure Black-and-White Mode</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:bwnormal">
<xsd:annotation>
<xsd:documentation>Normal Black-and-White Mode</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:targetscreensize">
<xsd:annotation>
<xsd:documentation>Target Screen Size</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:element name="fill" type="CT_Fill">
<xsd:annotation>
<xsd:documentation>Shape Fill Properties</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="formulas" type="CT_Formulas">
<xsd:annotation>
<xsd:documentation>Set of Formulas</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="handles" type="CT_Handles">
<xsd:annotation>
<xsd:documentation>Set of Handles</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="imagedata" type="CT_ImageData">
<xsd:annotation>
<xsd:documentation>Image Data</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="path" type="CT_Path">
<xsd:annotation>
<xsd:documentation>Shape Path</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="textbox" type="CT_Textbox">
<xsd:annotation>
<xsd:documentation>Text Box</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="shadow" type="CT_Shadow">
<xsd:annotation>
<xsd:documentation>Shadow Effect</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="stroke" type="CT_Stroke">
<xsd:annotation>
<xsd:documentation>Line Stroke Settings</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="textpath" type="CT_TextPath">
<xsd:annotation>
<xsd:documentation>Text Layout Path</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="CT_Fill">
<xsd:sequence>
<xsd:element ref="o:fill" minOccurs="0" />
</xsd:sequence>
<xsd:attributeGroup ref="AG_Id" />
<xsd:attribute name="type" type="ST_FillType" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Type</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="on" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="color" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Primary Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="opacity" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Primary Color Opacity</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="color2" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Secondary Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="src" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Image Source</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:href">
<xsd:annotation>
<xsd:documentation>Hyperlink Target</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:althref">
<xsd:annotation>
<xsd:documentation>Alternate Image Reference Location</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="size" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Image Size</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="origin" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Image Origin</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="position" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Fill Image Position</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="aspect" type="ST_ImageAspect" use="optional">
<xsd:annotation>
<xsd:documentation>Image Aspect Ratio</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="colors" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Intermediate Colors</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="angle" type="xsd:decimal" use="optional">
<xsd:annotation>
<xsd:documentation>Gradient Angle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="alignshape" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Align Image With Shape</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="focus" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Gradient Center</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="focussize" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Radial Gradient Size</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="focusposition" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Radial Gradient Center</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="method" type="ST_FillMethod" use="optional">
<xsd:annotation>
<xsd:documentation>Gradient Fill Method</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:detectmouseclick">
<xsd:annotation>
<xsd:documentation>Detect Mouse Click</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:title">
<xsd:annotation>
<xsd:documentation>Title</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:opacity2">
<xsd:annotation>
<xsd:documentation>Secondary Color Opacity</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="recolor" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Recolor Fill as Picture</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="rotate" type="ST_TrueFalse" use="optional">
<xsd:annotation>
<xsd:documentation>Rotate Fill with Shape</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="r:id" use="optional">
<xsd:annotation>
<xsd:documentation>Relationship to Part</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:relid" use="optional">
<xsd:annotation>
<xsd:documentation>Relationship to Part</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_Formulas">
<xsd:sequence>
<xsd:element name="f" type="CT_F" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Single Formula</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CT_F">
<xsd:attribute name="eqn" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Equation</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_Handles">
<xsd:sequence>
<xsd:element name="h" type="CT_H" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Shape Handle</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CT_H">
<xsd:attribute name="position" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Handle Position</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="polar" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Handle Polar Center</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="map" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Handle Coordinate Mapping</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="invx" type="ST_TrueFalse">
<xsd:annotation>
<xsd:documentation>Invert Handle's X Position</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="invy" type="ST_TrueFalse">
<xsd:annotation>
<xsd:documentation>Invert Handle's Y Position</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="switch" type="ST_TrueFalseBlank">
<xsd:annotation>
<xsd:documentation>Handle Inversion Toggle</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="xrange" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Handle X Position Range</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="yrange" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Handle Y Position Range</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="radiusrange" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Handle Polar Radius Range</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_ImageData">
<xsd:attributeGroup ref="AG_Id" />
<xsd:attributeGroup ref="AG_ImageAttributes" />
<xsd:attributeGroup ref="AG_Chromakey" />
<xsd:attribute name="embosscolor" type="ST_ColorType" use="optional">
<xsd:annotation>
<xsd:documentation>Embossed Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="recolortarget" type="ST_ColorType">
<xsd:annotation>
<xsd:documentation>Black Recoloring Color</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:href">
<xsd:annotation>
<xsd:documentation>Original Image Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:althref">
<xsd:annotation>
<xsd:documentation>Alternate Image Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:title">
<xsd:annotation>
<xsd:documentation>Image Data Title</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:oleid">
<xsd:annotation>
<xsd:documentation>Image Embedded Object ID</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:detectmouseclick">
<xsd:annotation>
<xsd:documentation>Detect Mouse Click</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:movie">
<xsd:annotation>
<xsd:documentation>Movie Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="o:relid">
<xsd:annotation>
<xsd:documentation>Relationship to Part</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="r:id">
<xsd:annotation>
<xsd:documentation>Explicit Relationship to Image Data</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="r:pict">
<xsd:annotation>
<xsd:documentation>Explicit Relationship to Alternate Image Data</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="r:href">
<xsd:annotation>
<xsd:documentation>Explicit Relationship to Hyperlink Target</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_Path">
<xsd:attributeGroup ref="AG_Id" />
<xsd:attribute name="v" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Path Definition</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="limo" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>Limo Stretch Point</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="textboxrect" type="xsd:string" use="optional">
<xsd:annotation>