python-pptx2 2.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (175) hide show
  1. pptx2/__init__.py +152 -0
  2. pptx2/_color.py +75 -0
  3. pptx2/_slide_importer.py +597 -0
  4. pptx2/_svg.py +155 -0
  5. pptx2/_template_applier.py +292 -0
  6. pptx2/_textstyle.py +187 -0
  7. pptx2/accessibility.py +365 -0
  8. pptx2/action.py +270 -0
  9. pptx2/animation.py +2237 -0
  10. pptx2/api.py +49 -0
  11. pptx2/audit.py +258 -0
  12. pptx2/chart/__init__.py +0 -0
  13. pptx2/chart/analytics.py +381 -0
  14. pptx2/chart/axis.py +543 -0
  15. pptx2/chart/category.py +200 -0
  16. pptx2/chart/chart.py +670 -0
  17. pptx2/chart/data.py +864 -0
  18. pptx2/chart/datalabel.py +406 -0
  19. pptx2/chart/legend.py +86 -0
  20. pptx2/chart/marker.py +70 -0
  21. pptx2/chart/palettes.py +129 -0
  22. pptx2/chart/plot.py +462 -0
  23. pptx2/chart/point.py +101 -0
  24. pptx2/chart/quick_layouts.py +325 -0
  25. pptx2/chart/series.py +334 -0
  26. pptx2/chart/xlsx.py +272 -0
  27. pptx2/chart/xmlwriter.py +1845 -0
  28. pptx2/compose/__init__.py +28 -0
  29. pptx2/compose/from_spec.py +1094 -0
  30. pptx2/design/__init__.py +8 -0
  31. pptx2/design/components.py +607 -0
  32. pptx2/design/figures.py +389 -0
  33. pptx2/design/layout.py +370 -0
  34. pptx2/design/recipes.py +1967 -0
  35. pptx2/design/style.py +209 -0
  36. pptx2/design/tokens.py +915 -0
  37. pptx2/diagrams.py +754 -0
  38. pptx2/dml/__init__.py +0 -0
  39. pptx2/dml/chtfmt.py +40 -0
  40. pptx2/dml/color.py +496 -0
  41. pptx2/dml/effect.py +909 -0
  42. pptx2/dml/fill.py +691 -0
  43. pptx2/dml/line.py +287 -0
  44. pptx2/dml/picture.py +212 -0
  45. pptx2/dml/three_d.py +381 -0
  46. pptx2/enum/__init__.py +0 -0
  47. pptx2/enum/action.py +71 -0
  48. pptx2/enum/animation.py +31 -0
  49. pptx2/enum/base.py +218 -0
  50. pptx2/enum/chart.py +574 -0
  51. pptx2/enum/dml.py +740 -0
  52. pptx2/enum/lang.py +685 -0
  53. pptx2/enum/presentation.py +133 -0
  54. pptx2/enum/shapes.py +1029 -0
  55. pptx2/enum/text.py +230 -0
  56. pptx2/exc.py +42 -0
  57. pptx2/formats.py +139 -0
  58. pptx2/geometry.py +420 -0
  59. pptx2/inherit.py +109 -0
  60. pptx2/lint.py +2256 -0
  61. pptx2/math.py +177 -0
  62. pptx2/media.py +197 -0
  63. pptx2/opc/__init__.py +0 -0
  64. pptx2/opc/constants.py +332 -0
  65. pptx2/opc/oxml.py +188 -0
  66. pptx2/opc/package.py +762 -0
  67. pptx2/opc/packuri.py +109 -0
  68. pptx2/opc/serialized.py +296 -0
  69. pptx2/opc/shared.py +20 -0
  70. pptx2/opc/spec.py +45 -0
  71. pptx2/oxml/__init__.py +555 -0
  72. pptx2/oxml/action.py +53 -0
  73. pptx2/oxml/chart/__init__.py +0 -0
  74. pptx2/oxml/chart/axis.py +337 -0
  75. pptx2/oxml/chart/chart.py +481 -0
  76. pptx2/oxml/chart/datalabel.py +253 -0
  77. pptx2/oxml/chart/legend.py +72 -0
  78. pptx2/oxml/chart/marker.py +61 -0
  79. pptx2/oxml/chart/plot.py +365 -0
  80. pptx2/oxml/chart/series.py +425 -0
  81. pptx2/oxml/chart/shared.py +220 -0
  82. pptx2/oxml/coreprops.py +288 -0
  83. pptx2/oxml/dml/__init__.py +0 -0
  84. pptx2/oxml/dml/color.py +135 -0
  85. pptx2/oxml/dml/effect.py +213 -0
  86. pptx2/oxml/dml/fill.py +316 -0
  87. pptx2/oxml/dml/line.py +12 -0
  88. pptx2/oxml/dml/three_d.py +110 -0
  89. pptx2/oxml/ns.py +135 -0
  90. pptx2/oxml/presentation.py +313 -0
  91. pptx2/oxml/shapes/__init__.py +19 -0
  92. pptx2/oxml/shapes/autoshape.py +467 -0
  93. pptx2/oxml/shapes/connector.py +107 -0
  94. pptx2/oxml/shapes/graphfrm.py +347 -0
  95. pptx2/oxml/shapes/groupshape.py +329 -0
  96. pptx2/oxml/shapes/picture.py +270 -0
  97. pptx2/oxml/shapes/shared.py +577 -0
  98. pptx2/oxml/simpletypes.py +1027 -0
  99. pptx2/oxml/slide.py +563 -0
  100. pptx2/oxml/table.py +650 -0
  101. pptx2/oxml/text.py +815 -0
  102. pptx2/oxml/theme.py +36 -0
  103. pptx2/oxml/xmlchemy.py +717 -0
  104. pptx2/package.py +222 -0
  105. pptx2/parts/__init__.py +0 -0
  106. pptx2/parts/chart.py +95 -0
  107. pptx2/parts/coreprops.py +167 -0
  108. pptx2/parts/diagram.py +37 -0
  109. pptx2/parts/embeddedpackage.py +93 -0
  110. pptx2/parts/image.py +275 -0
  111. pptx2/parts/media.py +37 -0
  112. pptx2/parts/presentation.py +136 -0
  113. pptx2/parts/slide.py +371 -0
  114. pptx2/presentation.py +408 -0
  115. pptx2/py.typed +0 -0
  116. pptx2/render.py +586 -0
  117. pptx2/section.py +272 -0
  118. pptx2/shapes/__init__.py +26 -0
  119. pptx2/shapes/autoshape.py +442 -0
  120. pptx2/shapes/base.py +1078 -0
  121. pptx2/shapes/connector.py +297 -0
  122. pptx2/shapes/freeform.py +337 -0
  123. pptx2/shapes/graphfrm.py +316 -0
  124. pptx2/shapes/group.py +264 -0
  125. pptx2/shapes/picture.py +422 -0
  126. pptx2/shapes/placeholder.py +468 -0
  127. pptx2/shapes/shapetree.py +2027 -0
  128. pptx2/shared.py +82 -0
  129. pptx2/skill/SKILL.md +450 -0
  130. pptx2/skill/__init__.py +78 -0
  131. pptx2/skill/__main__.py +64 -0
  132. pptx2/skill/references/animations.md +189 -0
  133. pptx2/skill/references/basics.md +421 -0
  134. pptx2/skill/references/charts.md +254 -0
  135. pptx2/skill/references/compose.md +234 -0
  136. pptx2/skill/references/design.md +366 -0
  137. pptx2/skill/references/effects.md +249 -0
  138. pptx2/skill/references/end-to-end-deck.md +231 -0
  139. pptx2/skill/references/geometry-and-arrows.md +334 -0
  140. pptx2/skill/references/lint.md +275 -0
  141. pptx2/skill/references/math.md +86 -0
  142. pptx2/skill/references/picture-effects.md +129 -0
  143. pptx2/skill/references/render.md +151 -0
  144. pptx2/skill/references/smart-art.md +75 -0
  145. pptx2/skill/references/space-aware-authoring.md +249 -0
  146. pptx2/skill/references/tables.md +244 -0
  147. pptx2/skill/references/theme.md +127 -0
  148. pptx2/skill/references/three-d.md +109 -0
  149. pptx2/skill/references/transitions.md +100 -0
  150. pptx2/slide.py +1244 -0
  151. pptx2/smart_art.py +220 -0
  152. pptx2/spec.py +633 -0
  153. pptx2/table.py +1181 -0
  154. pptx2/table_styles.py +184 -0
  155. pptx2/templates/default.pptx +0 -0
  156. pptx2/templates/docx-icon.emf +0 -0
  157. pptx2/templates/generic-icon.emf +0 -0
  158. pptx2/templates/notes.xml +23 -0
  159. pptx2/templates/notesMaster.xml +352 -0
  160. pptx2/templates/pptx-icon.emf +0 -0
  161. pptx2/templates/theme.xml +321 -0
  162. pptx2/templates/xlsx-icon.emf +0 -0
  163. pptx2/text/__init__.py +0 -0
  164. pptx2/text/fonts.py +482 -0
  165. pptx2/text/layout.py +374 -0
  166. pptx2/text/text.py +1272 -0
  167. pptx2/theme.py +721 -0
  168. pptx2/types.py +36 -0
  169. pptx2/util.py +263 -0
  170. python_pptx2-2.13.0.dist-info/METADATA +351 -0
  171. python_pptx2-2.13.0.dist-info/RECORD +175 -0
  172. python_pptx2-2.13.0.dist-info/WHEEL +5 -0
  173. python_pptx2-2.13.0.dist-info/entry_points.txt +3 -0
  174. python_pptx2-2.13.0.dist-info/licenses/LICENSE +22 -0
  175. python_pptx2-2.13.0.dist-info/top_level.txt +1 -0
pptx2/table_styles.py ADDED
@@ -0,0 +1,184 @@
1
+ """Friendly-name → GUID mapping for PowerPoint's built-in table styles.
2
+
3
+ PowerPoint ships a fixed, published set of built-in table styles (the
4
+ "table style gallery"). Each is identified by a stable GUID that
5
+ PowerPoint recognizes *intrinsically* — a deck only needs to reference the
6
+ GUID via ``<a:tblPr><a:tableStyleId>{GUID}</a:tableStyleId>``; nothing has
7
+ to be added to ``ppt/tableStyles.xml``.
8
+
9
+ This module exposes :data:`TABLE_STYLES`, a mapping of human-friendly name
10
+ (as shown in PowerPoint's UI, e.g. ``"Medium Style 2 - Accent 1"``) to its
11
+ GUID string, so callers can discover the valid names::
12
+
13
+ from pptx2.table_styles import TABLE_STYLES
14
+ print(sorted(TABLE_STYLES))
15
+
16
+ Every GUID below is taken verbatim from Microsoft's published list
17
+ ("Programmatically Working with Table Styles in PowerPoint 2010",
18
+ https://learn.microsoft.com/en-us/previous-versions/office/developer/
19
+ office-2010/hh273476(v=office.14)), the canonical reference for the
20
+ built-in style ids. A GUID outside this set is schema-valid but makes
21
+ PowerPoint silently apply *no* styling, so nothing here is guessed.
22
+
23
+ Coverage (the full 74-entry built-in gallery):
24
+
25
+ * ``No Style, No Grid`` and ``No Style, Table Grid``
26
+ * ``Table Grid`` (alias for ``No Style, Table Grid``)
27
+ * ``Themed Style 1`` / ``Themed Style 2`` — Accent 1–6
28
+ * ``Light Style 1`` / ``Light Style 2`` / ``Light Style 3`` — base and
29
+ Accent 1–6
30
+ * ``Medium Style 1`` … ``Medium Style 4`` — base and Accent 1–6
31
+ * ``Dark Style 1`` — base and Accent 1–6; ``Dark Style 2`` — base and the
32
+ paired-accent variants PowerPoint exposes
33
+ """
34
+
35
+ from __future__ import annotations
36
+
37
+ import difflib
38
+ from typing import Mapping
39
+
40
+ __all__ = [
41
+ "TABLE_STYLES",
42
+ "DEFAULT_TABLE_STYLE_GUID",
43
+ "guid_for_name",
44
+ "name_for_guid",
45
+ ]
46
+
47
+ # The GUID that ``slide.shapes.add_table(...)`` stamps onto a new table by
48
+ # default ("Medium Style 2 - Accent 1").
49
+ DEFAULT_TABLE_STYLE_GUID = "{5C22544A-7EE6-4342-B048-85BDC9FD1C3A}"
50
+
51
+
52
+ # Friendly name -> GUID. Keys match PowerPoint's UI labels. GUIDs are
53
+ # verbatim from Microsoft's hh273476 list; do not edit by hand without
54
+ # re-checking against that source — an unknown GUID silently applies no
55
+ # styling at all.
56
+ TABLE_STYLES: Mapping[str, str] = {
57
+ # -- no-style / plain grid ------------------------------------------
58
+ "No Style, No Grid": "{2D5ABB26-0587-4C30-8999-92F81FD0307C}",
59
+ "Table Grid": "{5940675A-B579-460E-94D1-54222C63F5DA}",
60
+ "No Style, Table Grid": "{5940675A-B579-460E-94D1-54222C63F5DA}",
61
+ # -- Themed Style 1 (Accent 1-6) ------------------------------------
62
+ "Themed Style 1 - Accent 1": "{3C2FFA5D-87B4-456A-9821-1D502468CF0F}",
63
+ "Themed Style 1 - Accent 2": "{284E427A-3D55-4303-BF80-6455036E1DE7}",
64
+ "Themed Style 1 - Accent 3": "{69C7853C-536D-4A76-A0AE-DD22124D55A5}",
65
+ "Themed Style 1 - Accent 4": "{775DCB02-9BB8-47FD-8907-85C794F793BA}",
66
+ "Themed Style 1 - Accent 5": "{35758FB7-9AC5-4552-8A53-C91805E547FA}",
67
+ "Themed Style 1 - Accent 6": "{08FB837D-C827-4EFA-A057-4D05807E0F7C}",
68
+ # -- Themed Style 2 (Accent 1-6) ------------------------------------
69
+ "Themed Style 2 - Accent 1": "{D113A9D2-9D6B-4929-AA2D-F23B5EE8CBE7}",
70
+ "Themed Style 2 - Accent 2": "{18603FDC-E32A-4AB5-989C-0864C3EAD2B8}",
71
+ "Themed Style 2 - Accent 3": "{306799F8-075E-4A3A-A7F6-7FBC6576F1A4}",
72
+ "Themed Style 2 - Accent 4": "{E269D01E-BC32-4049-B463-5C60D7B0CCD2}",
73
+ "Themed Style 2 - Accent 5": "{327F97BB-C833-4FB7-BDE5-3F7075034690}",
74
+ "Themed Style 2 - Accent 6": "{638B1855-1B75-4FBE-930C-398BA8C253C6}",
75
+ # -- Light Style 1 --------------------------------------------------
76
+ "Light Style 1": "{9D7B26C5-4107-4FEC-AEDC-1716B250A1EF}",
77
+ "Light Style 1 - Accent 1": "{3B4B98B0-60AC-42C2-AFA5-B58CD77FA1E5}",
78
+ "Light Style 1 - Accent 2": "{0E3FDE45-AF77-4B5C-9715-49D594BDF05E}",
79
+ "Light Style 1 - Accent 3": "{C083E6E3-FA7D-4D7B-A595-EF9225AFEA82}",
80
+ "Light Style 1 - Accent 4": "{D27102A9-8310-4765-A935-A1911B00CA55}",
81
+ "Light Style 1 - Accent 5": "{5FD0F851-EC5A-4D38-B0AD-8093EC10F338}",
82
+ "Light Style 1 - Accent 6": "{68D230F3-CF80-4859-8CE7-A43EE81993B5}",
83
+ # -- Light Style 2 --------------------------------------------------
84
+ "Light Style 2": "{7E9639D4-E3E2-4D34-9284-5A2195B3D0D7}",
85
+ "Light Style 2 - Accent 1": "{69012ECD-51FC-41F1-AA8D-1B2483CD663E}",
86
+ "Light Style 2 - Accent 2": "{72833802-FEF1-4C79-8D5D-14CF1EAF98D9}",
87
+ "Light Style 2 - Accent 3": "{F2DE63D5-997A-4646-A377-4702673A728D}",
88
+ "Light Style 2 - Accent 4": "{17292A2E-F333-43FB-9621-5CBBE7FDCDCB}",
89
+ "Light Style 2 - Accent 5": "{5A111915-BE36-4E01-A7E5-04B1672EAD32}",
90
+ "Light Style 2 - Accent 6": "{912C8C85-51F0-491E-9774-3900AFEF0FD7}",
91
+ # -- Light Style 3 --------------------------------------------------
92
+ "Light Style 3": "{616DA210-FB5B-4158-B5E0-FEB733F419BA}",
93
+ "Light Style 3 - Accent 1": "{BC89EF96-8CEA-46FF-86C4-4CE0E7609802}",
94
+ "Light Style 3 - Accent 2": "{5DA37D80-6434-44D0-A028-1B22A696006F}",
95
+ "Light Style 3 - Accent 3": "{8799B23B-EC83-4686-B30A-512413B5E67A}",
96
+ "Light Style 3 - Accent 4": "{ED083AE6-46FA-4A59-8FB0-9F97EB10719F}",
97
+ "Light Style 3 - Accent 5": "{BDBED569-4797-4DF1-A0F4-6AAB3CD982D8}",
98
+ "Light Style 3 - Accent 6": "{E8B1032C-EA38-4F05-BA0D-38AFFFC7BED3}",
99
+ # -- Medium Style 1 -------------------------------------------------
100
+ "Medium Style 1": "{793D81CF-94F2-401A-BA57-92F5A7B2D0C5}",
101
+ "Medium Style 1 - Accent 1": "{B301B821-A1FF-4177-AEE7-76D212191A09}",
102
+ "Medium Style 1 - Accent 2": "{9DCAF9ED-07DC-4A11-8D7F-57B35C25682E}",
103
+ "Medium Style 1 - Accent 3": "{1FECB4D8-DB02-4DC6-A0A2-4F2EBAE1DC90}",
104
+ "Medium Style 1 - Accent 4": "{1E171933-4619-4E11-9A3F-F7608DF75F80}",
105
+ "Medium Style 1 - Accent 5": "{FABFCF23-3B69-468F-B69F-88F6DE6A72F2}",
106
+ "Medium Style 1 - Accent 6": "{10A1B5D5-9B99-4C35-A422-299274C87663}",
107
+ # -- Medium Style 2 -------------------------------------------------
108
+ "Medium Style 2": "{073A0DAA-6AF3-43AB-8588-CEC1D06C72B9}",
109
+ "Medium Style 2 - Accent 1": "{5C22544A-7EE6-4342-B048-85BDC9FD1C3A}",
110
+ "Medium Style 2 - Accent 2": "{21E4AEA4-8DFA-4A89-87EB-49C32662AFE0}",
111
+ "Medium Style 2 - Accent 3": "{F5AB1C69-6EDB-4FF4-983F-18BD219EF322}",
112
+ "Medium Style 2 - Accent 4": "{00A15C55-8517-42AA-B614-E9B94910E393}",
113
+ "Medium Style 2 - Accent 5": "{7DF18680-E054-41AD-8BC1-D1AEF772440D}",
114
+ "Medium Style 2 - Accent 6": "{93296810-A885-4BE3-A3E7-6D5BEEA58F35}",
115
+ # -- Medium Style 3 -------------------------------------------------
116
+ "Medium Style 3": "{8EC20E35-A176-4012-BC5E-935CFFF8708E}",
117
+ "Medium Style 3 - Accent 1": "{6E25E649-3F16-4E02-A733-19D2CDBF48F0}",
118
+ "Medium Style 3 - Accent 2": "{85BE263C-DBD7-4A20-BB59-AAB30ACAA65A}",
119
+ "Medium Style 3 - Accent 3": "{EB344D84-9AFB-497E-A393-DC336BA19D2E}",
120
+ "Medium Style 3 - Accent 4": "{EB9631B5-78F2-41C9-869B-9F39066F8104}",
121
+ "Medium Style 3 - Accent 5": "{74C1A8A3-306A-4EB7-A6B1-4F7E0EB9C5D6}",
122
+ "Medium Style 3 - Accent 6": "{2A488322-F2BA-4B5B-9748-0D474271808F}",
123
+ # -- Medium Style 4 -------------------------------------------------
124
+ "Medium Style 4": "{D7AC3CCA-C797-4891-BE02-D94E43425B78}",
125
+ "Medium Style 4 - Accent 1": "{69CF1AB2-1976-4502-BF36-3FF5EA218861}",
126
+ "Medium Style 4 - Accent 2": "{8A107856-5554-42FB-B03E-39F5DBC370BA}",
127
+ "Medium Style 4 - Accent 3": "{0505E3EF-67EA-436B-97B2-0124C06EBD24}",
128
+ "Medium Style 4 - Accent 4": "{C4B1156A-380E-4F78-BDF5-A606A8083BF9}",
129
+ "Medium Style 4 - Accent 5": "{22838BEF-8BB2-4498-84A7-C5851F593DF1}",
130
+ "Medium Style 4 - Accent 6": "{16D9F66E-5EB9-4882-86FB-DCBF35E3C3E4}",
131
+ # -- Dark Style 1 ---------------------------------------------------
132
+ "Dark Style 1": "{E8034E78-7F5D-4C2E-B375-FC64B27BC917}",
133
+ "Dark Style 1 - Accent 1": "{125E5076-3810-47DD-B79F-674D7AD40C01}",
134
+ "Dark Style 1 - Accent 2": "{37CE84F3-28C3-443E-9E96-99CF82512B78}",
135
+ "Dark Style 1 - Accent 3": "{D03447BB-5D67-496B-8E87-E561075AD55C}",
136
+ "Dark Style 1 - Accent 4": "{E929F9F4-4A8F-4326-A1B4-22849713DDAB}",
137
+ "Dark Style 1 - Accent 5": "{8FD4443E-F989-4FC4-A0C8-D5A2AF1F390B}",
138
+ "Dark Style 1 - Accent 6": "{AF606853-7671-496A-8E4F-DF71F8EC918B}",
139
+ # -- Dark Style 2 ---------------------------------------------------
140
+ "Dark Style 2": "{5202B0CA-FC54-4496-8BCA-5EF66A818D29}",
141
+ "Dark Style 2 - Accent 1/Accent 2": "{0660B408-B3CF-4A94-85FC-2B1E0A45F4A2}",
142
+ "Dark Style 2 - Accent 3/Accent 4": "{91EBBBCC-DAD2-459C-BE2E-F6DE35CF9A28}",
143
+ "Dark Style 2 - Accent 5/Accent 6": "{46F890A9-2807-4EBB-B81D-B2AA78EC7F39}",
144
+ }
145
+
146
+
147
+ # GUID (upper-cased) -> first friendly name that maps to it. Built so reads
148
+ # return a canonical name even though several friendly names can share a GUID
149
+ # (e.g. "Table Grid" and "No Style, Table Grid"). Insertion order in
150
+ # ``TABLE_STYLES`` decides which wins; the names listed first are canonical.
151
+ def _build_guid_to_name() -> dict[str, str]:
152
+ mapping: dict[str, str] = {}
153
+ for name, guid in TABLE_STYLES.items():
154
+ mapping.setdefault(guid.upper(), name)
155
+ return mapping
156
+
157
+
158
+ _GUID_TO_NAME: dict[str, str] = _build_guid_to_name()
159
+
160
+
161
+ def guid_for_name(name: str) -> str:
162
+ """Return the GUID for built-in table style `name`.
163
+
164
+ Raises :class:`ValueError` with a "did you mean" hint when `name` is not
165
+ a recognized built-in style name.
166
+ """
167
+ try:
168
+ return TABLE_STYLES[name]
169
+ except KeyError:
170
+ pass
171
+ hint = ""
172
+ matches = difflib.get_close_matches(name, list(TABLE_STYLES.keys()), n=3, cutoff=0.5)
173
+ if matches:
174
+ hint = " Did you mean: %s?" % ", ".join(repr(m) for m in matches)
175
+ raise ValueError(
176
+ "%r is not a known built-in table style name.%s "
177
+ "See pptx2.table_styles.TABLE_STYLES for the full list, or pass "
178
+ "a raw GUID string like '{....}'." % (name, hint)
179
+ )
180
+
181
+
182
+ def name_for_guid(guid: str) -> str | None:
183
+ """Return the canonical friendly name for `guid`, or |None| if unknown."""
184
+ return _GUID_TO_NAME.get(guid.upper())
Binary file
Binary file
Binary file
@@ -0,0 +1,23 @@
1
+ <?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2
+ <p:notes xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
3
+ <p:cSld>
4
+ <p:spTree>
5
+ <p:nvGrpSpPr>
6
+ <p:cNvPr id="1" name=""/>
7
+ <p:cNvGrpSpPr/>
8
+ <p:nvPr/>
9
+ </p:nvGrpSpPr>
10
+ <p:grpSpPr>
11
+ <a:xfrm>
12
+ <a:off x="0" y="0"/>
13
+ <a:ext cx="0" cy="0"/>
14
+ <a:chOff x="0" y="0"/>
15
+ <a:chExt cx="0" cy="0"/>
16
+ </a:xfrm>
17
+ </p:grpSpPr>
18
+ </p:spTree>
19
+ </p:cSld>
20
+ <p:clrMapOvr>
21
+ <a:masterClrMapping/>
22
+ </p:clrMapOvr>
23
+ </p:notes>
@@ -0,0 +1,352 @@
1
+ <?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2
+ <p:notesMaster
3
+ xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
4
+ xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main"
5
+ xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
6
+ >
7
+ <p:cSld>
8
+ <p:bg>
9
+ <p:bgRef idx="1001">
10
+ <a:schemeClr val="bg1"/>
11
+ </p:bgRef>
12
+ </p:bg>
13
+ <p:spTree>
14
+ <p:nvGrpSpPr>
15
+ <p:cNvPr id="1" name=""/>
16
+ <p:cNvGrpSpPr/>
17
+ <p:nvPr/>
18
+ </p:nvGrpSpPr>
19
+ <p:grpSpPr>
20
+ <a:xfrm>
21
+ <a:off x="0" y="0"/>
22
+ <a:ext cx="0" cy="0"/>
23
+ <a:chOff x="0" y="0"/>
24
+ <a:chExt cx="0" cy="0"/>
25
+ </a:xfrm>
26
+ </p:grpSpPr>
27
+ <p:sp>
28
+ <p:nvSpPr>
29
+ <p:cNvPr id="2" name="Header Placeholder 1"/>
30
+ <p:cNvSpPr>
31
+ <a:spLocks noGrp="1"/>
32
+ </p:cNvSpPr>
33
+ <p:nvPr>
34
+ <p:ph type="hdr" sz="quarter"/>
35
+ </p:nvPr>
36
+ </p:nvSpPr>
37
+ <p:spPr>
38
+ <a:xfrm>
39
+ <a:off x="0" y="0"/>
40
+ <a:ext cx="2971800" cy="457200"/>
41
+ </a:xfrm>
42
+ <a:prstGeom prst="rect">
43
+ <a:avLst/>
44
+ </a:prstGeom>
45
+ </p:spPr>
46
+ <p:txBody>
47
+ <a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0"/>
48
+ <a:lstStyle>
49
+ <a:lvl1pPr algn="l">
50
+ <a:defRPr sz="1200"/>
51
+ </a:lvl1pPr>
52
+ </a:lstStyle>
53
+ <a:p>
54
+ <a:endParaRPr lang="en-US"/>
55
+ </a:p>
56
+ </p:txBody>
57
+ </p:sp>
58
+ <p:sp>
59
+ <p:nvSpPr>
60
+ <p:cNvPr id="3" name="Date Placeholder 2"/>
61
+ <p:cNvSpPr>
62
+ <a:spLocks noGrp="1"/>
63
+ </p:cNvSpPr>
64
+ <p:nvPr>
65
+ <p:ph type="dt" idx="1"/>
66
+ </p:nvPr>
67
+ </p:nvSpPr>
68
+ <p:spPr>
69
+ <a:xfrm>
70
+ <a:off x="3884613" y="0"/>
71
+ <a:ext cx="2971800" cy="457200"/>
72
+ </a:xfrm>
73
+ <a:prstGeom prst="rect">
74
+ <a:avLst/>
75
+ </a:prstGeom>
76
+ </p:spPr>
77
+ <p:txBody>
78
+ <a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0"/>
79
+ <a:lstStyle>
80
+ <a:lvl1pPr algn="r">
81
+ <a:defRPr sz="1200"/>
82
+ </a:lvl1pPr>
83
+ </a:lstStyle>
84
+ <a:p>
85
+ <a:fld id="{0F89C1C7-3DCD-1040-A9CF-14679D8B5DDD}" type="datetimeFigureOut">
86
+ <a:rPr lang="en-US" smtClean="0"/>
87
+ <a:t>10/17/16</a:t>
88
+ </a:fld>
89
+ <a:endParaRPr lang="en-US"/>
90
+ </a:p>
91
+ </p:txBody>
92
+ </p:sp>
93
+ <p:sp>
94
+ <p:nvSpPr>
95
+ <p:cNvPr id="4" name="Slide Image Placeholder 3"/>
96
+ <p:cNvSpPr>
97
+ <a:spLocks noGrp="1" noRot="1" noChangeAspect="1"/>
98
+ </p:cNvSpPr>
99
+ <p:nvPr>
100
+ <p:ph type="sldImg" idx="2"/>
101
+ </p:nvPr>
102
+ </p:nvSpPr>
103
+ <p:spPr>
104
+ <a:xfrm>
105
+ <a:off x="1143000" y="685800"/>
106
+ <a:ext cx="4572000" cy="3429000"/>
107
+ </a:xfrm>
108
+ <a:prstGeom prst="rect">
109
+ <a:avLst/>
110
+ </a:prstGeom>
111
+ <a:noFill/>
112
+ <a:ln w="12700">
113
+ <a:solidFill>
114
+ <a:prstClr val="black"/>
115
+ </a:solidFill>
116
+ </a:ln>
117
+ </p:spPr>
118
+ <p:txBody>
119
+ <a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0" anchor="ctr"/>
120
+ <a:lstStyle/>
121
+ <a:p>
122
+ <a:endParaRPr lang="en-US"/>
123
+ </a:p>
124
+ </p:txBody>
125
+ </p:sp>
126
+ <p:sp>
127
+ <p:nvSpPr>
128
+ <p:cNvPr id="5" name="Notes Placeholder 4"/>
129
+ <p:cNvSpPr>
130
+ <a:spLocks noGrp="1"/>
131
+ </p:cNvSpPr>
132
+ <p:nvPr>
133
+ <p:ph type="body" sz="quarter" idx="3"/>
134
+ </p:nvPr>
135
+ </p:nvSpPr>
136
+ <p:spPr>
137
+ <a:xfrm>
138
+ <a:off x="685800" y="4343400"/>
139
+ <a:ext cx="5486400" cy="4114800"/>
140
+ </a:xfrm>
141
+ <a:prstGeom prst="rect">
142
+ <a:avLst/>
143
+ </a:prstGeom>
144
+ </p:spPr>
145
+ <p:txBody>
146
+ <a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0"/>
147
+ <a:lstStyle/>
148
+ <a:p>
149
+ <a:pPr lvl="0"/>
150
+ <a:r>
151
+ <a:rPr lang="en-US" smtClean="0"/>
152
+ <a:t>Click to edit Master text styles</a:t>
153
+ </a:r>
154
+ </a:p>
155
+ <a:p>
156
+ <a:pPr lvl="1"/>
157
+ <a:r>
158
+ <a:rPr lang="en-US" smtClean="0"/>
159
+ <a:t>Second level</a:t>
160
+ </a:r>
161
+ </a:p>
162
+ <a:p>
163
+ <a:pPr lvl="2"/>
164
+ <a:r>
165
+ <a:rPr lang="en-US" smtClean="0"/>
166
+ <a:t>Third level</a:t>
167
+ </a:r>
168
+ </a:p>
169
+ <a:p>
170
+ <a:pPr lvl="3"/>
171
+ <a:r>
172
+ <a:rPr lang="en-US" smtClean="0"/>
173
+ <a:t>Fourth level</a:t>
174
+ </a:r>
175
+ </a:p>
176
+ <a:p>
177
+ <a:pPr lvl="4"/>
178
+ <a:r>
179
+ <a:rPr lang="en-US" smtClean="0"/>
180
+ <a:t>Fifth level</a:t>
181
+ </a:r>
182
+ <a:endParaRPr lang="en-US"/>
183
+ </a:p>
184
+ </p:txBody>
185
+ </p:sp>
186
+ <p:sp>
187
+ <p:nvSpPr>
188
+ <p:cNvPr id="6" name="Footer Placeholder 5"/>
189
+ <p:cNvSpPr>
190
+ <a:spLocks noGrp="1"/>
191
+ </p:cNvSpPr>
192
+ <p:nvPr>
193
+ <p:ph type="ftr" sz="quarter" idx="4"/>
194
+ </p:nvPr>
195
+ </p:nvSpPr>
196
+ <p:spPr>
197
+ <a:xfrm>
198
+ <a:off x="0" y="8685213"/>
199
+ <a:ext cx="2971800" cy="457200"/>
200
+ </a:xfrm>
201
+ <a:prstGeom prst="rect">
202
+ <a:avLst/>
203
+ </a:prstGeom>
204
+ </p:spPr>
205
+ <p:txBody>
206
+ <a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0" anchor="b"/>
207
+ <a:lstStyle>
208
+ <a:lvl1pPr algn="l">
209
+ <a:defRPr sz="1200"/>
210
+ </a:lvl1pPr>
211
+ </a:lstStyle>
212
+ <a:p>
213
+ <a:endParaRPr lang="en-US"/>
214
+ </a:p>
215
+ </p:txBody>
216
+ </p:sp>
217
+ <p:sp>
218
+ <p:nvSpPr>
219
+ <p:cNvPr id="7" name="Slide Number Placeholder 6"/>
220
+ <p:cNvSpPr>
221
+ <a:spLocks noGrp="1"/>
222
+ </p:cNvSpPr>
223
+ <p:nvPr>
224
+ <p:ph type="sldNum" sz="quarter" idx="5"/>
225
+ </p:nvPr>
226
+ </p:nvSpPr>
227
+ <p:spPr>
228
+ <a:xfrm>
229
+ <a:off x="3884613" y="8685213"/>
230
+ <a:ext cx="2971800" cy="457200"/>
231
+ </a:xfrm>
232
+ <a:prstGeom prst="rect">
233
+ <a:avLst/>
234
+ </a:prstGeom>
235
+ </p:spPr>
236
+ <p:txBody>
237
+ <a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0" anchor="b"/>
238
+ <a:lstStyle>
239
+ <a:lvl1pPr algn="r">
240
+ <a:defRPr sz="1200"/>
241
+ </a:lvl1pPr>
242
+ </a:lstStyle>
243
+ <a:p>
244
+ <a:fld id="{BB5E49A5-4136-284D-997B-48E1D791AD67}" type="slidenum">
245
+ <a:rPr lang="en-US" smtClean="0"/>
246
+ <a:t>‹#›</a:t>
247
+ </a:fld>
248
+ <a:endParaRPr lang="en-US"/>
249
+ </a:p>
250
+ </p:txBody>
251
+ </p:sp>
252
+ </p:spTree>
253
+ <p:extLst>
254
+ <p:ext uri="{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}">
255
+ <p14:creationId xmlns:p14="http://schemas.microsoft.com/office/powerpoint/2010/main" val="2623252185"/>
256
+ </p:ext>
257
+ </p:extLst>
258
+ </p:cSld>
259
+ <p:clrMap bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3" accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink" folHlink="folHlink"/>
260
+ <p:notesStyle>
261
+ <a:lvl1pPr marL="0" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
262
+ <a:defRPr sz="1200" kern="1200">
263
+ <a:solidFill>
264
+ <a:schemeClr val="tx1"/>
265
+ </a:solidFill>
266
+ <a:latin typeface="+mn-lt"/>
267
+ <a:ea typeface="+mn-ea"/>
268
+ <a:cs typeface="+mn-cs"/>
269
+ </a:defRPr>
270
+ </a:lvl1pPr>
271
+ <a:lvl2pPr marL="457200" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
272
+ <a:defRPr sz="1200" kern="1200">
273
+ <a:solidFill>
274
+ <a:schemeClr val="tx1"/>
275
+ </a:solidFill>
276
+ <a:latin typeface="+mn-lt"/>
277
+ <a:ea typeface="+mn-ea"/>
278
+ <a:cs typeface="+mn-cs"/>
279
+ </a:defRPr>
280
+ </a:lvl2pPr>
281
+ <a:lvl3pPr marL="914400" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
282
+ <a:defRPr sz="1200" kern="1200">
283
+ <a:solidFill>
284
+ <a:schemeClr val="tx1"/>
285
+ </a:solidFill>
286
+ <a:latin typeface="+mn-lt"/>
287
+ <a:ea typeface="+mn-ea"/>
288
+ <a:cs typeface="+mn-cs"/>
289
+ </a:defRPr>
290
+ </a:lvl3pPr>
291
+ <a:lvl4pPr marL="1371600" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
292
+ <a:defRPr sz="1200" kern="1200">
293
+ <a:solidFill>
294
+ <a:schemeClr val="tx1"/>
295
+ </a:solidFill>
296
+ <a:latin typeface="+mn-lt"/>
297
+ <a:ea typeface="+mn-ea"/>
298
+ <a:cs typeface="+mn-cs"/>
299
+ </a:defRPr>
300
+ </a:lvl4pPr>
301
+ <a:lvl5pPr marL="1828800" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
302
+ <a:defRPr sz="1200" kern="1200">
303
+ <a:solidFill>
304
+ <a:schemeClr val="tx1"/>
305
+ </a:solidFill>
306
+ <a:latin typeface="+mn-lt"/>
307
+ <a:ea typeface="+mn-ea"/>
308
+ <a:cs typeface="+mn-cs"/>
309
+ </a:defRPr>
310
+ </a:lvl5pPr>
311
+ <a:lvl6pPr marL="2286000" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
312
+ <a:defRPr sz="1200" kern="1200">
313
+ <a:solidFill>
314
+ <a:schemeClr val="tx1"/>
315
+ </a:solidFill>
316
+ <a:latin typeface="+mn-lt"/>
317
+ <a:ea typeface="+mn-ea"/>
318
+ <a:cs typeface="+mn-cs"/>
319
+ </a:defRPr>
320
+ </a:lvl6pPr>
321
+ <a:lvl7pPr marL="2743200" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
322
+ <a:defRPr sz="1200" kern="1200">
323
+ <a:solidFill>
324
+ <a:schemeClr val="tx1"/>
325
+ </a:solidFill>
326
+ <a:latin typeface="+mn-lt"/>
327
+ <a:ea typeface="+mn-ea"/>
328
+ <a:cs typeface="+mn-cs"/>
329
+ </a:defRPr>
330
+ </a:lvl7pPr>
331
+ <a:lvl8pPr marL="3200400" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
332
+ <a:defRPr sz="1200" kern="1200">
333
+ <a:solidFill>
334
+ <a:schemeClr val="tx1"/>
335
+ </a:solidFill>
336
+ <a:latin typeface="+mn-lt"/>
337
+ <a:ea typeface="+mn-ea"/>
338
+ <a:cs typeface="+mn-cs"/>
339
+ </a:defRPr>
340
+ </a:lvl8pPr>
341
+ <a:lvl9pPr marL="3657600" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
342
+ <a:defRPr sz="1200" kern="1200">
343
+ <a:solidFill>
344
+ <a:schemeClr val="tx1"/>
345
+ </a:solidFill>
346
+ <a:latin typeface="+mn-lt"/>
347
+ <a:ea typeface="+mn-ea"/>
348
+ <a:cs typeface="+mn-cs"/>
349
+ </a:defRPr>
350
+ </a:lvl9pPr>
351
+ </p:notesStyle>
352
+ </p:notesMaster>
Binary file