spire-presentation 10.6.4__py3-none-win_amd64.whl → 10.8.1__py3-none-win_amd64.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 (441) hide show
  1. spire/presentation/ActiveSlide.py +52 -44
  2. spire/presentation/AppException.py +3 -3
  3. spire/presentation/AudioCD.py +7 -12
  4. spire/presentation/AudioPlayMode.py +7 -3
  5. spire/presentation/AudioVolumeType.py +8 -3
  6. spire/presentation/BaseShapeLocking.py +7 -6
  7. spire/presentation/Camera.py +44 -21
  8. spire/presentation/ClickHyperlink.py +127 -91
  9. spire/presentation/Comment.py +75 -36
  10. spire/presentation/ConnectorLocking.py +3 -3
  11. spire/presentation/DefaultTextRangeProperties.py +58 -99
  12. spire/presentation/Direction.py +5 -3
  13. spire/presentation/Field.py +18 -8
  14. spire/presentation/FieldType.py +45 -47
  15. spire/presentation/FileFormat.py +23 -3
  16. spire/presentation/FontAlignmentType.py +9 -3
  17. spire/presentation/FontCollectionIndex.py +6 -3
  18. spire/presentation/FontScheme.py +12 -13
  19. spire/presentation/FormatAndVersion.py +32 -3
  20. spire/presentation/GroupShape.py +11 -13
  21. spire/presentation/GroupShapeLocking.py +6 -17
  22. spire/presentation/HyperlinkActionType.py +19 -3
  23. spire/presentation/IActivePresentation.py +5 -3
  24. spire/presentation/IActiveSlide.py +4 -4
  25. spire/presentation/IAudio.py +51 -116
  26. spire/presentation/IAudioData.py +11 -33
  27. spire/presentation/IAutoShape.py +186 -124
  28. spire/presentation/ICommentAuthor.py +20 -8
  29. spire/presentation/IDigitalSignature.py +13 -34
  30. spire/presentation/IDigitalSignatures.py +2 -3
  31. spire/presentation/IDocumentProperty.py +41 -86
  32. spire/presentation/IEmbedImage.py +167 -114
  33. spire/presentation/ILayout.py +40 -17
  34. spire/presentation/IMasterSlide.py +67 -58
  35. spire/presentation/INoteMasterSlide.py +25 -41
  36. spire/presentation/IOleObject.py +216 -141
  37. spire/presentation/IShape.py +185 -146
  38. spire/presentation/ISlide.py +212 -153
  39. spire/presentation/ITextFrameProperties.py +203 -96
  40. spire/presentation/IVideo.py +280 -153
  41. spire/presentation/ImportDataFormat.py +6 -3
  42. spire/presentation/KnownColors.py +2 -3
  43. spire/presentation/LightRig.py +40 -23
  44. spire/presentation/LightingDirectionType.py +3 -3
  45. spire/presentation/LineCapStyle.py +7 -3
  46. spire/presentation/LineDashStyleType.py +16 -3
  47. spire/presentation/LineEndLength.py +7 -3
  48. spire/presentation/LineEndType.py +10 -3
  49. spire/presentation/LineEndWidth.py +7 -3
  50. spire/presentation/LineFillFormat.py +38 -19
  51. spire/presentation/LineJoinType.py +7 -3
  52. spire/presentation/LinearGradientFill.py +22 -8
  53. spire/presentation/LocaleFonts.py +40 -16
  54. spire/presentation/MasterTheme.py +24 -23
  55. spire/presentation/MetaCharacterType.py +9 -3
  56. spire/presentation/NotesSlide.py +16 -14
  57. spire/presentation/NumberedBulletStyle.py +2 -3
  58. spire/presentation/OleObject.py +39 -27
  59. spire/presentation/Order.py +2 -3
  60. spire/presentation/PageSlideCount.py +2 -3
  61. spire/presentation/ParagraphProperties.py +210 -110
  62. spire/presentation/PictureShape.py +41 -20
  63. spire/presentation/Placeholder.py +34 -20
  64. spire/presentation/PlaceholderSize.py +7 -3
  65. spire/presentation/PlaceholderType.py +20 -3
  66. spire/presentation/PptObject.py +10 -7
  67. spire/presentation/Presentation.py +310 -209
  68. spire/presentation/PresetCameraType.py +1 -3
  69. spire/presentation/PresetLightRigType.py +21 -3
  70. spire/presentation/PresetMaterialType.py +19 -3
  71. spire/presentation/PresetShadowValue.py +4 -3
  72. spire/presentation/RectangleAlignment.py +3 -3
  73. spire/presentation/RelativeRectangle.py +56 -11
  74. spire/presentation/Section.py +50 -36
  75. spire/presentation/SectionList.py +69 -59
  76. spire/presentation/Shape.py +152 -137
  77. spire/presentation/ShapeAdjust.py +17 -10
  78. spire/presentation/ShapeAlignment.py +14 -3
  79. spire/presentation/ShapeArrange.py +10 -3
  80. spire/presentation/ShapeBevelStyle.py +34 -12
  81. spire/presentation/ShapeCollection.py +16 -11
  82. spire/presentation/ShapeElementFillSource.py +10 -3
  83. spire/presentation/ShapeElementStrokeSource.py +6 -3
  84. spire/presentation/ShapeLocking.py +18 -6
  85. spire/presentation/ShapeNode.py +21 -0
  86. spire/presentation/ShapeStyle.py +58 -39
  87. spire/presentation/ShapeThreeD.py +58 -36
  88. spire/presentation/ShapeType.py +1 -3
  89. spire/presentation/SimpleShapeBaseLocking.py +72 -31
  90. spire/presentation/SlideBackground.py +31 -36
  91. spire/presentation/SlideColorScheme.py +15 -10
  92. spire/presentation/SlideLayoutType.py +39 -3
  93. spire/presentation/SlideList.py +110 -55
  94. spire/presentation/SlideOrienation.py +5 -3
  95. spire/presentation/SlidePicture.py +22 -19
  96. spire/presentation/SlidePictureLocking.py +14 -6
  97. spire/presentation/SlideShowType.py +6 -1
  98. spire/presentation/SlideSize.py +43 -18
  99. spire/presentation/SlideSizeType.py +20 -3
  100. spire/presentation/SystemColorType.py +3 -3
  101. spire/presentation/TabAlignmentType.py +3 -3
  102. spire/presentation/TabData.py +18 -18
  103. spire/presentation/TabStop.py +33 -16
  104. spire/presentation/TextAlignmentType.py +9 -3
  105. spire/presentation/TextAnchorType.py +11 -3
  106. spire/presentation/TextAutofitType.py +7 -3
  107. spire/presentation/TextBulletType.py +8 -3
  108. spire/presentation/TextCapType.py +7 -3
  109. spire/presentation/TextCharacterProperties.py +145 -130
  110. spire/presentation/TextFont.py +35 -21
  111. spire/presentation/TextHighLightingOptions.py +37 -6
  112. spire/presentation/TextHorizontalOverflowType.py +6 -3
  113. spire/presentation/TextLineFormat.py +75 -90
  114. spire/presentation/TextLineStyle.py +9 -3
  115. spire/presentation/TextParagraph.py +53 -24
  116. spire/presentation/TextParagraphProperties.py +124 -103
  117. spire/presentation/TextRange.py +40 -12
  118. spire/presentation/TextShapeType.py +46 -3
  119. spire/presentation/TextStrikethroughType.py +7 -3
  120. spire/presentation/TextStyle.py +29 -19
  121. spire/presentation/TextUnderlineType.py +22 -3
  122. spire/presentation/TextVerticalOverflowType.py +7 -3
  123. spire/presentation/Theme.py +31 -23
  124. spire/presentation/TileFlipMode.py +8 -3
  125. spire/presentation/TriState.py +2 -3
  126. spire/presentation/VerticalTextType.py +11 -3
  127. spire/presentation/VideoData.py +17 -18
  128. spire/presentation/VideoPlayMode.py +7 -3
  129. spire/presentation/_Presentation.py +40 -9
  130. spire/presentation/__init__.py +253 -358
  131. spire/presentation/animation/AnimateType.py +24 -0
  132. spire/presentation/{AnimationCalculationMode.py → animation/AnimationCalculationMode.py} +7 -3
  133. spire/presentation/{AnimationColorBehavior.py → animation/AnimationColorBehavior.py} +52 -23
  134. spire/presentation/{AnimationColorDirection.py → animation/AnimationColorDirection.py} +6 -3
  135. spire/presentation/{AnimationColorTransform.py → animation/AnimationColorTransform.py} +33 -15
  136. spire/presentation/{AnimationColorspace.py → animation/AnimationColorspace.py} +6 -3
  137. spire/presentation/{AnimationCommandBehavior.py → animation/AnimationCommandBehavior.py} +26 -15
  138. spire/presentation/{AnimationCommandType.py → animation/AnimationCommandType.py} +7 -3
  139. spire/presentation/{AnimationEffect.py → animation/AnimationEffect.py} +115 -53
  140. spire/presentation/{AnimationEffectCollection.py → animation/AnimationEffectCollection.py} +64 -38
  141. spire/presentation/animation/AnimationEffectSubtype.py +164 -0
  142. spire/presentation/animation/AnimationEffectType.py +466 -0
  143. spire/presentation/{AnimationFilterEffect.py → animation/AnimationFilterEffect.py} +33 -15
  144. spire/presentation/{AnimationMotion.py → animation/AnimationMotion.py} +38 -10
  145. spire/presentation/{AnimationMotionOrigin.py → animation/AnimationMotionOrigin.py} +6 -3
  146. spire/presentation/{AnimationMotionPathEditMode.py → animation/AnimationMotionPathEditMode.py} +6 -3
  147. spire/presentation/{AnimationProperty.py → animation/AnimationProperty.py} +63 -28
  148. spire/presentation/{AnimationRepeatType.py → animation/AnimationRepeatType.py} +6 -3
  149. spire/presentation/{AnimationRestartType.py → animation/AnimationRestartType.py} +7 -3
  150. spire/presentation/{AnimationRotation.py → animation/AnimationRotation.py} +7 -15
  151. spire/presentation/{AnimationScale.py → animation/AnimationScale.py} +43 -18
  152. spire/presentation/{AnimationSet.py → animation/AnimationSet.py} +7 -7
  153. spire/presentation/{AnimationTriggerType.py → animation/AnimationTriggerType.py} +8 -3
  154. spire/presentation/{BehaviorAccumulateType.py → animation/BehaviorAccumulateType.py} +6 -3
  155. spire/presentation/animation/BehaviorAdditiveType.py +27 -0
  156. spire/presentation/{CommonBehavior.py → animation/CommonBehavior.py} +41 -18
  157. spire/presentation/{CommonBehaviorCollection.py → animation/CommonBehaviorCollection.py} +76 -47
  158. spire/presentation/animation/FilterEffectSubtype.py +70 -0
  159. spire/presentation/animation/FilterEffectType.py +71 -0
  160. spire/presentation/animation/FilterEffectsType.py +21 -0
  161. spire/presentation/{FilterRevealType.py → animation/FilterRevealType.py} +7 -3
  162. spire/presentation/{GraphicAnimation.py → animation/GraphicAnimation.py} +10 -6
  163. spire/presentation/{GraphicAnimationCollection.py → animation/GraphicAnimationCollection.py} +20 -17
  164. spire/presentation/animation/GraphicBuildType.py +25 -0
  165. spire/presentation/{MotionCmdPath.py → animation/MotionCmdPath.py} +35 -7
  166. spire/presentation/animation/MotionCommandPathType.py +25 -0
  167. spire/presentation/{MotionPath.py → animation/MotionPath.py} +43 -21
  168. spire/presentation/animation/MotionPathPointsType.py +33 -0
  169. spire/presentation/animation/ParagraphBuildType.py +31 -0
  170. spire/presentation/animation/PropertyValueType.py +23 -0
  171. spire/presentation/{SequenceCollection.py → animation/SequenceCollection.py} +32 -30
  172. spire/presentation/{TextAnimation.py → animation/TextAnimation.py} +14 -11
  173. spire/presentation/{TextAnimationCollection.py → animation/TextAnimationCollection.py} +41 -20
  174. spire/presentation/{TimeAnimationValue.py → animation/TimeAnimationValue.py} +14 -14
  175. spire/presentation/{TimeAnimationValueCollection.py → animation/TimeAnimationValueCollection.py} +11 -15
  176. spire/presentation/{TimeLine.py → animation/TimeLine.py} +20 -11
  177. spire/presentation/{TimeNode.py → animation/TimeNode.py} +16 -4
  178. spire/presentation/{TimeNodeAudio.py → animation/TimeNodeAudio.py} +31 -19
  179. spire/presentation/{TimeNodeMedia.py → animation/TimeNodeMedia.py} +9 -3
  180. spire/presentation/animation/TimeNodePresetClassType.py +29 -0
  181. spire/presentation/{TimeNodes.py → animation/TimeNodes.py} +32 -8
  182. spire/presentation/{Timing.py → animation/Timing.py} +67 -47
  183. spire/presentation/animation/__init__.py +0 -0
  184. spire/presentation/{AxisPositionType.py → charts/AxisPositionType.py} +7 -3
  185. spire/presentation/{AxisType.py → charts/AxisType.py} +6 -3
  186. spire/presentation/{CellRange.py → charts/CellRange.py} +54 -51
  187. spire/presentation/{CellRanges.py → charts/CellRanges.py} +43 -27
  188. spire/presentation/{ChartAxis.py → charts/ChartAxis.py} +109 -124
  189. spire/presentation/{ChartBaseUnitType.py → charts/ChartBaseUnitType.py} +2 -3
  190. spire/presentation/{ChartCategory.py → charts/ChartCategory.py} +12 -6
  191. spire/presentation/{ChartCategoryCollection.py → charts/ChartCategoryCollection.py} +65 -44
  192. spire/presentation/{ChartCrossesType.py → charts/ChartCrossesType.py} +6 -3
  193. spire/presentation/{ChartData.py → charts/ChartData.py} +111 -62
  194. spire/presentation/{ChartDataLabel.py → charts/ChartDataLabel.py} +95 -89
  195. spire/presentation/{ChartDataLabelCollection.py → charts/ChartDataLabelCollection.py} +105 -82
  196. spire/presentation/charts/ChartDataLabelPosition.py +35 -0
  197. spire/presentation/{ChartDataPoint.py → charts/ChartDataPoint.py} +62 -48
  198. spire/presentation/{ChartDataPointCollection.py → charts/ChartDataPointCollection.py} +21 -18
  199. spire/presentation/{ChartDataTable.py → charts/ChartDataTable.py} +37 -34
  200. spire/presentation/charts/ChartDisplayUnitType.py +37 -0
  201. spire/presentation/{ChartEffectFormat.py → charts/ChartEffectFormat.py} +13 -14
  202. spire/presentation/{ChartLegend.py → charts/ChartLegend.py} +63 -59
  203. spire/presentation/{ChartLegendPositionType.py → charts/ChartLegendPositionType.py} +9 -3
  204. spire/presentation/charts/ChartMarkerType.py +39 -0
  205. spire/presentation/{ChartPlotArea.py → charts/ChartPlotArea.py} +35 -34
  206. spire/presentation/{ChartRotationThreeD.py → charts/ChartRotationThreeD.py} +4 -18
  207. spire/presentation/{ChartSeriesDataFormat.py → charts/ChartSeriesDataFormat.py} +52 -130
  208. spire/presentation/{ChartSeriesFormatCollection.py → charts/ChartSeriesFormatCollection.py} +69 -43
  209. spire/presentation/{ChartShapeType.py → charts/ChartShapeType.py} +10 -3
  210. spire/presentation/{ChartStyle.py → charts/ChartStyle.py} +1 -3
  211. spire/presentation/{ChartTextArea.py → charts/ChartTextArea.py} +14 -38
  212. spire/presentation/{ChartType.py → charts/ChartType.py} +2 -3
  213. spire/presentation/{ChartWallsOrFloor.py → charts/ChartWallsOrFloor.py} +25 -24
  214. spire/presentation/{CrossBetweenType.py → charts/CrossBetweenType.py} +4 -0
  215. spire/presentation/{DataLabelShapeType.py → charts/DataLabelShapeType.py} +1 -3
  216. spire/presentation/{DisplayBlanksAsType.py → charts/DisplayBlanksAsType.py} +2 -3
  217. spire/presentation/{ErrorBarSimpleType.py → charts/ErrorBarSimpleType.py} +6 -1
  218. spire/presentation/charts/ErrorValueType.py +25 -0
  219. spire/presentation/{HistogramAxisFormat.py → charts/HistogramAxisFormat.py} +3 -7
  220. spire/presentation/{IChart.py → charts/IChart.py} +69 -174
  221. spire/presentation/{IChartAxis.py → charts/IChartAxis.py} +95 -133
  222. spire/presentation/{IChartEffectFormat.py → charts/IChartEffectFormat.py} +9 -21
  223. spire/presentation/{IChartGridLine.py → charts/IChartGridLine.py} +23 -57
  224. spire/presentation/{IErrorBarsFormat.py → charts/IErrorBarsFormat.py} +9 -21
  225. spire/presentation/{ITrendlineLabel.py → charts/ITrendlineLabel.py} +23 -16
  226. spire/presentation/{ITrendlines.py → charts/ITrendlines.py} +107 -49
  227. spire/presentation/{InteriorColorPattern.py → charts/InteriorColorPattern.py} +1 -1
  228. spire/presentation/{LayoutProperty.py → charts/LayoutProperty.py} +26 -25
  229. spire/presentation/{LegendEntry.py → charts/LegendEntry.py} +7 -6
  230. spire/presentation/{LegendEntryCollection.py → charts/LegendEntryCollection.py} +17 -7
  231. spire/presentation/{PictureType.py → charts/PictureType.py} +7 -3
  232. spire/presentation/charts/ProjectionType.py +22 -0
  233. spire/presentation/{QuartileCalculation.py → charts/QuartileCalculation.py} +3 -3
  234. spire/presentation/{TickLabelPositionType.py → charts/TickLabelPositionType.py} +7 -3
  235. spire/presentation/{TickMarkType.py → charts/TickMarkType.py} +7 -3
  236. spire/presentation/{TreeMapLabelOption.py → charts/TreeMapLabelOption.py} +6 -3
  237. spire/presentation/charts/TrendlinesType.py +27 -0
  238. spire/presentation/charts/__init__.py +0 -0
  239. spire/presentation/{CommentAuthorCollection.py → collections/CommentAuthorCollection.py} +13 -10
  240. spire/presentation/{CommentAuthorList.py → collections/CommentAuthorList.py} +49 -18
  241. spire/presentation/{CommentCollection.py → collections/CommentCollection.py} +11 -24
  242. spire/presentation/{CommentList.py → collections/CommentList.py} +60 -73
  243. spire/presentation/{EffectDataCollection.py → collections/EffectDataCollection.py} +22 -23
  244. spire/presentation/{EffectStyleCollection.py → collections/EffectStyleCollection.py} +14 -10
  245. spire/presentation/{EffectStyleList.py → collections/EffectStyleList.py} +15 -17
  246. spire/presentation/{EmbedImageList.py → collections/EmbedImageList.py} +28 -24
  247. spire/presentation/{FillFormatCollection.py → collections/FillFormatCollection.py} +12 -24
  248. spire/presentation/{FillFormatList.py → collections/FillFormatList.py} +2 -3
  249. spire/presentation/{FillListBase.py → collections/FillListBase.py} +25 -16
  250. spire/presentation/{FillStyleCollection.py → collections/FillStyleCollection.py} +18 -11
  251. spire/presentation/{FillStyleList.py → collections/FillStyleList.py} +10 -4
  252. spire/presentation/{GradientStopCollection.py → collections/GradientStopCollection.py} +4 -21
  253. spire/presentation/{GradientStopDataCollection.py → collections/GradientStopDataCollection.py} +7 -31
  254. spire/presentation/{GradientStopList.py → collections/GradientStopList.py} +41 -53
  255. spire/presentation/{IMasterLayouts.py → collections/IMasterLayouts.py} +25 -7
  256. spire/presentation/{ImageCollection.py → collections/ImageCollection.py} +4 -22
  257. spire/presentation/{ImageTransformEffectCollection.py → collections/ImageTransformEffectCollection.py} +4 -22
  258. spire/presentation/{LineStyleCollection.py → collections/LineStyleCollection.py} +18 -25
  259. spire/presentation/{LineStyleList.py → collections/LineStyleList.py} +25 -15
  260. spire/presentation/{MasterSlideCollection.py → collections/MasterSlideCollection.py} +9 -26
  261. spire/presentation/{MasterSlideList.py → collections/MasterSlideList.py} +47 -33
  262. spire/presentation/{OleObjectCollection.py → collections/OleObjectCollection.py} +34 -48
  263. spire/presentation/{OleObjectProperties.py → collections/OleObjectProperties.py} +45 -56
  264. spire/presentation/{ParagraphCollection.py → collections/ParagraphCollection.py} +16 -26
  265. spire/presentation/{ParagraphList.py → collections/ParagraphList.py} +68 -45
  266. spire/presentation/{ShapeAdjustCollection.py → collections/ShapeAdjustCollection.py} +13 -27
  267. spire/presentation/{ShapeAdjustmentList.py → collections/ShapeAdjustmentList.py} +11 -12
  268. spire/presentation/{ShapeList.py → collections/ShapeList.py} +384 -323
  269. spire/presentation/{SlideCollection.py → collections/SlideCollection.py} +9 -10
  270. spire/presentation/{SlideColorSchemeCollection.py → collections/SlideColorSchemeCollection.py} +31 -23
  271. spire/presentation/{TabStopCollection.py → collections/TabStopCollection.py} +10 -10
  272. spire/presentation/{TabStopList.py → collections/TabStopList.py} +37 -33
  273. spire/presentation/{TagCollection.py → collections/TagCollection.py} +12 -25
  274. spire/presentation/{TagList.py → collections/TagList.py} +55 -51
  275. spire/presentation/{TextLineFormatCollection.py → collections/TextLineFormatCollection.py} +10 -24
  276. spire/presentation/{TextLineFormatList.py → collections/TextLineFormatList.py} +17 -13
  277. spire/presentation/{TextRangeCollection.py → collections/TextRangeCollection.py} +17 -26
  278. spire/presentation/{TextRangeList.py → collections/TextRangeList.py} +49 -33
  279. spire/presentation/{VideoCollection.py → collections/VideoCollection.py} +26 -20
  280. spire/presentation/{WavAudioCollection.py → collections/WavAudioCollection.py} +27 -23
  281. spire/presentation/collections/__init__.py +0 -0
  282. spire/presentation/{ISmartArt.py → diagrams/ISmartArt.py} +42 -14
  283. spire/presentation/{ISmartArtNode.py → diagrams/ISmartArtNode.py} +119 -10
  284. spire/presentation/{ISmartArtNodeCollection.py → diagrams/ISmartArtNodeCollection.py} +57 -5
  285. spire/presentation/{SmartArtColorType.py → diagrams/SmartArtColorType.py} +1 -1
  286. spire/presentation/{SmartArtLayoutType.py → diagrams/SmartArtLayoutType.py} +1 -1
  287. spire/presentation/diagrams/SmartArtStyleType.py +43 -0
  288. spire/presentation/diagrams/__init__.py +0 -0
  289. spire/presentation/{Backdrop.py → drawing/Backdrop.py} +16 -19
  290. spire/presentation/{BackgroundType.py → drawing/BackgroundType.py} +6 -3
  291. spire/presentation/{BevelColorType.py → drawing/BevelColorType.py} +5 -3
  292. spire/presentation/drawing/BevelPresetType.py +41 -0
  293. spire/presentation/drawing/BlackWhiteMode.py +39 -0
  294. spire/presentation/{BlendEffect.py → drawing/BlendEffect.py} +11 -14
  295. spire/presentation/drawing/BlendMode.py +27 -0
  296. spire/presentation/{BlurNode.py → drawing/BlurNode.py} +4 -16
  297. spire/presentation/{ColorFormat.py → drawing/ColorFormat.py} +114 -61
  298. spire/presentation/{ColorScheme.py → drawing/ColorScheme.py} +59 -49
  299. spire/presentation/{ColorSchemeIndex.py → drawing/ColorSchemeIndex.py} +1 -3
  300. spire/presentation/drawing/ColorType.py +27 -0
  301. spire/presentation/{EffectDag.py → drawing/EffectDag.py} +41 -27
  302. spire/presentation/drawing/EffectFillType.py +25 -0
  303. spire/presentation/{EffectNode.py → drawing/EffectNode.py} +2 -3
  304. spire/presentation/{EffectStyle.py → drawing/EffectStyle.py} +14 -12
  305. spire/presentation/{ExtensionList.py → drawing/ExtensionList.py} +4 -1
  306. spire/presentation/{FillFormat.py → drawing/FillFormat.py} +61 -39
  307. spire/presentation/drawing/FillFormatType.py +29 -0
  308. spire/presentation/{FillOverlayEffect.py → drawing/FillOverlayEffect.py} +30 -11
  309. spire/presentation/{FormatScheme.py → drawing/FormatScheme.py} +9 -23
  310. spire/presentation/{FormatThreeD.py → drawing/FormatThreeD.py} +23 -13
  311. spire/presentation/{GlowEffect.py → drawing/GlowEffect.py} +15 -13
  312. spire/presentation/{GlowNode.py → drawing/GlowNode.py} +4 -10
  313. spire/presentation/{GradientFillFormat.py → drawing/GradientFillFormat.py} +12 -27
  314. spire/presentation/drawing/GradientShapeType.py +25 -0
  315. spire/presentation/{GradientStop.py → drawing/GradientStop.py} +1 -9
  316. spire/presentation/{GradientStopData.py → drawing/GradientStopData.py} +2 -9
  317. spire/presentation/drawing/GradientStyle.py +26 -0
  318. spire/presentation/{GraphicFrame.py → drawing/GraphicFrame.py} +41 -73
  319. spire/presentation/{GraphicalNodeLocking.py → drawing/GraphicalNodeLocking.py} +26 -21
  320. spire/presentation/{IImageData.py → drawing/IImageData.py} +6 -24
  321. spire/presentation/{ImageTransform.py → drawing/ImageTransform.py} +42 -36
  322. spire/presentation/{ImageTransformBase.py → drawing/ImageTransformBase.py} +2 -3
  323. spire/presentation/{InnerShadowEffect.py → drawing/InnerShadowEffect.py} +15 -18
  324. spire/presentation/{InnerShadowNode.py → drawing/InnerShadowNode.py} +5 -15
  325. spire/presentation/{OuterShadowEffect.py → drawing/OuterShadowEffect.py} +60 -35
  326. spire/presentation/{OuterShadowNode.py → drawing/OuterShadowNode.py} +51 -33
  327. spire/presentation/{PatternFillFormat.py → drawing/PatternFillFormat.py} +6 -15
  328. spire/presentation/drawing/PatternFillType.py +127 -0
  329. spire/presentation/{PenAlignmentType.py → drawing/PenAlignmentType.py} +6 -3
  330. spire/presentation/{PictureData.py → drawing/PictureData.py} +15 -15
  331. spire/presentation/{PictureFillFormat.py → drawing/PictureFillFormat.py} +37 -31
  332. spire/presentation/{PictureFillType.py → drawing/PictureFillType.py} +5 -3
  333. spire/presentation/{PresetShadow.py → drawing/PresetShadow.py} +33 -18
  334. spire/presentation/{PresetShadowNode.py → drawing/PresetShadowNode.py} +20 -15
  335. spire/presentation/{ReflectionEffect.py → drawing/ReflectionEffect.py} +65 -45
  336. spire/presentation/{ReflectionNode.py → drawing/ReflectionNode.py} +58 -45
  337. spire/presentation/{SchemeColor.py → drawing/SchemeColor.py} +2 -3
  338. spire/presentation/{SoftEdgeEffect.py → drawing/SoftEdgeEffect.py} +11 -7
  339. spire/presentation/{SoftEdgeNode.py → drawing/SoftEdgeNode.py} +5 -7
  340. spire/presentation/drawing/__init__.py +0 -0
  341. spire/presentation/export/PdfConformanceLevel.py +30 -0
  342. spire/presentation/{SaveToHtmlOption.py → export/SaveToHtmlOption.py} +12 -6
  343. spire/presentation/{SaveToPdfOption.py → export/SaveToPdfOption.py} +18 -11
  344. spire/presentation/{SaveToPptxOption.py → export/SaveToPptxOption.py} +12 -6
  345. spire/presentation/export/__init__.py +0 -0
  346. spire/presentation/lib/Spire.Presentation.Base.dll +0 -0
  347. spire/presentation/license/__init__.py +0 -0
  348. spire/presentation/{Cell.py → table/Cell.py} +56 -107
  349. spire/presentation/{CellCollection.py → table/CellCollection.py} +45 -31
  350. spire/presentation/{ColumnCollection.py → table/ColumnCollection.py} +10 -25
  351. spire/presentation/{ColumnList.py → table/ColumnList.py} +39 -28
  352. spire/presentation/{ITable.py → table/ITable.py} +117 -137
  353. spire/presentation/{RowList.py → table/RowList.py} +45 -27
  354. spire/presentation/table/TableBorderType.py +39 -0
  355. spire/presentation/{TableColumn.py → table/TableColumn.py} +14 -7
  356. spire/presentation/{TableRow.py → table/TableRow.py} +14 -7
  357. spire/presentation/{TableRowCollection.py → table/TableRowCollection.py} +12 -24
  358. spire/presentation/{TableStylePreset.py → table/TableStylePreset.py} +1 -3
  359. spire/presentation/table/__init__.py +0 -0
  360. spire/presentation/{BlindsSlideTransition.py → transition/BlindsSlideTransition.py} +9 -5
  361. spire/presentation/{CoverSlideTransition.py → transition/CoverSlideTransition.py} +20 -7
  362. spire/presentation/{FlythroughTransition.py → transition/FlythroughTransition.py} +12 -2
  363. spire/presentation/{GlitterTransition.py → transition/GlitterTransition.py} +10 -2
  364. spire/presentation/transition/GlitterTransitionDirection.py +31 -0
  365. spire/presentation/{InvXTransition.py → transition/InvXTransition.py} +10 -2
  366. spire/presentation/{LRTransition.py → transition/LRTransition.py} +12 -6
  367. spire/presentation/{OptionalBlackTransition.py → transition/OptionalBlackTransition.py} +16 -8
  368. spire/presentation/{RevealTransition.py → transition/RevealTransition.py} +11 -1
  369. spire/presentation/{ShredTransition.py → transition/ShredTransition.py} +14 -3
  370. spire/presentation/{SideDirectionTransition.py → transition/SideDirectionTransition.py} +12 -7
  371. spire/presentation/{SlideShowTransition.py → transition/SlideShowTransition.py} +50 -67
  372. spire/presentation/{SplitSlideTransition.py → transition/SplitSlideTransition.py} +14 -7
  373. spire/presentation/{StripsSlideTransition.py → transition/StripsSlideTransition.py} +14 -3
  374. spire/presentation/{Transition.py → transition/Transition.py} +10 -3
  375. spire/presentation/transition/TransitionCornerDirection.py +25 -0
  376. spire/presentation/{TransitionDirection.py → transition/TransitionDirection.py} +6 -3
  377. spire/presentation/transition/TransitionEightDirection.py +33 -0
  378. spire/presentation/{TransitionFlythroughInOutDirection.py → transition/TransitionFlythroughInOutDirection.py} +7 -3
  379. spire/presentation/{TransitionInOutDirection.py → transition/TransitionInOutDirection.py} +6 -3
  380. spire/presentation/transition/TransitionRevealLRDirection.py +23 -0
  381. spire/presentation/transition/TransitionShredInOutDirection.py +23 -0
  382. spire/presentation/{TransitionSideDirectionType.py → transition/TransitionSideDirectionType.py} +7 -3
  383. spire/presentation/{TransitionSoundMode.py → transition/TransitionSoundMode.py} +6 -3
  384. spire/presentation/{TransitionSpeed.py → transition/TransitionSpeed.py} +7 -3
  385. spire/presentation/{TransitionSplitDirection.py → transition/TransitionSplitDirection.py} +7 -3
  386. spire/presentation/{TransitionTwoDirection.py → transition/TransitionTwoDirection.py} +5 -3
  387. spire/presentation/transition/TransitionType.py +127 -0
  388. spire/presentation/{WheelSlideTransition.py → transition/WheelSlideTransition.py} +11 -6
  389. spire/presentation/{ZoomSlideTransition.py → transition/ZoomSlideTransition.py} +11 -7
  390. spire/presentation/transition/__init__.py +0 -0
  391. {spire_presentation-10.6.4.dist-info → spire_presentation-10.8.1.dist-info}/METADATA +1 -1
  392. spire_presentation-10.8.1.dist-info/RECORD +440 -0
  393. spire/presentation/AnimateType.py +0 -16
  394. spire/presentation/AnimationEffectSubtype.py +0 -65
  395. spire/presentation/AnimationEffectType.py +0 -166
  396. spire/presentation/BehaviorAdditiveType.py +0 -21
  397. spire/presentation/BevelPresetType.py +0 -28
  398. spire/presentation/BlackWhiteMode.py +0 -27
  399. spire/presentation/BlendMode.py +0 -21
  400. spire/presentation/ChartDataLabelPosition.py +0 -25
  401. spire/presentation/ChartDisplayUnitType.py +0 -26
  402. spire/presentation/ChartMarkerType.py +0 -27
  403. spire/presentation/ColorType.py +0 -19
  404. spire/presentation/DocumentEditException.py +0 -14
  405. spire/presentation/DocumentReadException.py +0 -14
  406. spire/presentation/DocumentUnkownFormatException.py +0 -14
  407. spire/presentation/EffectFillType.py +0 -20
  408. spire/presentation/ErrorValueType.py +0 -18
  409. spire/presentation/FillFormatType.py +0 -22
  410. spire/presentation/FilterEffectSubtype.py +0 -42
  411. spire/presentation/FilterEffectType.py +0 -34
  412. spire/presentation/FilterEffectsType.py +0 -16
  413. spire/presentation/GlitterTransitionDirection.py +0 -23
  414. spire/presentation/GradientShapeType.py +0 -20
  415. spire/presentation/GradientStyle.py +0 -21
  416. spire/presentation/GraphicBuildType.py +0 -20
  417. spire/presentation/HeaderType.py +0 -20
  418. spire/presentation/MotionCommandPathType.py +0 -20
  419. spire/presentation/MotionPathPointsType.py +0 -24
  420. spire/presentation/ParagraphBuildType.py +0 -23
  421. spire/presentation/PatternFillType.py +0 -71
  422. spire/presentation/PdfConformanceLevel.py +0 -22
  423. spire/presentation/PresentationTranslator.py +0 -31
  424. spire/presentation/ProjectionType.py +0 -16
  425. spire/presentation/PropertyValueType.py +0 -19
  426. spire/presentation/SmartArtStyleType.py +0 -27
  427. spire/presentation/TableBorderType.py +0 -27
  428. spire/presentation/TimeNodePresetClassType.py +0 -22
  429. spire/presentation/TransitionCornerDirection.py +0 -20
  430. spire/presentation/TransitionEightDirection.py +0 -24
  431. spire/presentation/TransitionRevealLRDirection.py +0 -19
  432. spire/presentation/TransitionShredInOutDirection.py +0 -19
  433. spire/presentation/TransitionType.py +0 -71
  434. spire/presentation/TrendlinesType.py +0 -19
  435. spire/presentation/UOPReader.py +0 -24
  436. spire/presentation/UOPWriter.py +0 -24
  437. spire_presentation-10.6.4.dist-info/RECORD +0 -438
  438. /spire/presentation/{Geography.py → charts/Geography.py} +0 -0
  439. /spire/presentation/{LicenseProvider.py → license/LicenseProvider.py} +0 -0
  440. {spire_presentation-10.6.4.dist-info → spire_presentation-10.8.1.dist-info}/WHEEL +0 -0
  441. {spire_presentation-10.6.4.dist-info → spire_presentation-10.8.1.dist-info}/top_level.txt +0 -0
@@ -1,438 +0,0 @@
1
- spire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- spire/presentation/ActiveSlide.py,sha256=diCJZKVIEED0_QLGPqnGOB6mnxU-r7j1YWqe4gD1cbo,6899
3
- spire/presentation/AnimateType.py,sha256=wpz65kZoOrKl7wcK8TFCDL9kDuDzmii3VC6di17dqxI,305
4
- spire/presentation/AnimationCalculationMode.py,sha256=5UzWx1ZZ6t2644s4Fe5jhtQn-mp-mMKVzkmz8PkEsYw,423
5
- spire/presentation/AnimationColorBehavior.py,sha256=Ug_PPAXKZre0czlfiMMioXkMG62E_DNfKxYxBPlQxc8,4664
6
- spire/presentation/AnimationColorDirection.py,sha256=1j8trSvJ_9rC39V3Olrp7YhGEcGLHpRQcwAdrKWxbWA,400
7
- spire/presentation/AnimationColorTransform.py,sha256=wSC85URfQhU9jUOqHbj_SIWjLFnHxjKbbhlGp6ueuzk,2438
8
- spire/presentation/AnimationColorspace.py,sha256=Vk6g6zvRUKlfYcA_NmUqR1J9_GlbctwBf6Fw0IH9i3Q,399
9
- spire/presentation/AnimationCommandBehavior.py,sha256=C2J05EXFY7s32-acYmVw7FYnoxRrobPBBTFJgm88CMQ,2485
10
- spire/presentation/AnimationCommandType.py,sha256=cXDzQVGW-yul_OfGLgVYP0i0ET1UjHdrEOnO22FQgyE,427
11
- spire/presentation/AnimationEffect.py,sha256=UVGkfdmKcDAgblI_AQbS-fNai37Rhdnrtf7ClMrDNZs,10564
12
- spire/presentation/AnimationEffectCollection.py,sha256=sA-BrxXaNix2zvheV-jtOP_GezedO17AfcZBy1COl-o,5338
13
- spire/presentation/AnimationEffectSubtype.py,sha256=ExThLyFKxbE5zFXVRfjixJGQudJ_Yu4_3JRia88Eklo,1334
14
- spire/presentation/AnimationEffectType.py,sha256=VMjl9FbRjKBclAwraW-nwfzr7kDisVCbItAcrFbOFLw,3577
15
- spire/presentation/AnimationFilterEffect.py,sha256=_xeIWyZBqcM-KLIhwsTdAR3LB7cow_uheMlK1TlFytw,2849
16
- spire/presentation/AnimationMotion.py,sha256=xaiQfEmyxVwQvwBN5Pum7SJ-ETJAm6mdPSKG3IeG26Q,5609
17
- spire/presentation/AnimationMotionOrigin.py,sha256=rnxxD3eLHCt0IsVzvY9AEoCKTGzkAT4WFXT6TSzRBCQ,403
18
- spire/presentation/AnimationMotionPathEditMode.py,sha256=5UXETSKe5GuarRvwrwr72YGXOB8qXYPFw2GrJZ6txz4,431
19
- spire/presentation/AnimationProperty.py,sha256=aqRsszA0wJOonNtg_i4DuFd-zMDL4M690Kav2ZWvYMo,5226
20
- spire/presentation/AnimationRepeatType.py,sha256=7tbdlhsYGjzny9boegUMSFzh6zNhsmZeFg47tEMsrJY,405
21
- spire/presentation/AnimationRestartType.py,sha256=1fHtrAezrSwCm9jh9bl8o_ey2QWotflVbLJUa8vE3KM,457
22
- spire/presentation/AnimationRotation.py,sha256=EMpPZrF9ByBgFbGNcHSXk95btplu1XukCHLg5lLmdm0,2340
23
- spire/presentation/AnimationScale.py,sha256=FLWyV_7ssqRFa1B-hcA7BPv67wPxmBFdGQwYArxK6Xw,3266
24
- spire/presentation/AnimationSet.py,sha256=2tJsKFmF4HH4f6j-qv2SmUQIWoosd2Eh0MQgEy2-IdA,1106
25
- spire/presentation/AnimationTriggerType.py,sha256=y2g9tPCFk552qiRzL8mdvY_brxGcs1x81nB4GrbsAkk,453
26
- spire/presentation/AppException.py,sha256=cGzo1-8KkoZ8Qxv9LR8FcAHcxN93fbE3cmq8xBADdL0,355
27
- spire/presentation/AudioCD.py,sha256=pCzI69D4zaNnEpE5btIIeBsgoo64tjXyIisy4eejEXc,3018
28
- spire/presentation/AudioPlayMode.py,sha256=TYJZ-ZDl-jCcIZb8XY-Fgk4TY5XXPHf_dlPO_fOcUyg,404
29
- spire/presentation/AudioVolumeType.py,sha256=GsXKwnlWaGVoebTysYQ9TGsJKB7xiAxmLFrBFMIZk0o,401
30
- spire/presentation/AxisPositionType.py,sha256=uIPhqI5EAAoon2LT91xaBjvaQelAItOYttwqnxjn5ks,393
31
- spire/presentation/AxisType.py,sha256=D1GDmB9AfEgZnH7ZC8XrEk1EOox-a7JrsMvmaaKGvyk,366
32
- spire/presentation/Backdrop.py,sha256=GvpomU9eRVD4xFjsC6oNvIkTEG0TfMcWmJJC6mDG9M0,3324
33
- spire/presentation/BackgroundType.py,sha256=3LiwdF7NizVtbnXDE3924nTmxnPKv0IOWEW8hFMlqOM,390
34
- spire/presentation/BaseShapeLocking.py,sha256=csXf7mbnmNzWdHWQweY5Natsfn2o_roV2kSSrpn0PUg,676
35
- spire/presentation/BehaviorAccumulateType.py,sha256=8DvpfB-aBRNUJGiY4AmfXMQVMFOlc9DviNIxTrngDrk,415
36
- spire/presentation/BehaviorAdditiveType.py,sha256=ICOVfZFkxFeN4GusuxO646Jdl_TssFUrmpQYts5MdqA,451
37
- spire/presentation/BevelColorType.py,sha256=xRCLw08b9EO_Nj_PrrZulk4fn_OPl73lIg8EHA7fIUE,376
38
- spire/presentation/BevelPresetType.py,sha256=XkU6Z-5MbA2TBLrOLsVZKU_Ne0RQG974nVGQjQ7kM-Y,553
39
- spire/presentation/BlackWhiteMode.py,sha256=xqdtbgcfD6DBLR9g1K2IJpvKNd7Z-XjaJAKD6OnPlMA,578
40
- spire/presentation/BlendEffect.py,sha256=e3lNpVvLttNggwroQLr0a0d2AqJrRSXXi4e91xyOR2Q,2173
41
- spire/presentation/BlendMode.py,sha256=U3w6prHamkjk26yE5k8b4Iu1RDYPOoO9RqlDNU3XqAQ,418
42
- spire/presentation/BlindsSlideTransition.py,sha256=kVQjPL-f09N5FWNP-9kR_ctAyyFZ3Hjt_PbN24CQWTU,1341
43
- spire/presentation/BlurNode.py,sha256=2RyWDnMOuXSu7_wJGakhKuQJvohGRPfVHReLUZr43TI,1280
44
- spire/presentation/Camera.py,sha256=uFC0IaCG67mLLR_mFYBKvr1LeFzFL30f6keOl9o-jJU,3515
45
- spire/presentation/Cell.py,sha256=a9BCXscPpFKwkljZFeIYFsp6Wd2plDAtExeWWTB4SRA,18266
46
- spire/presentation/CellCollection.py,sha256=ryDNRTg9YCV34jq2khRlyKoJgSIZ0pRlePqvYhoprLw,5003
47
- spire/presentation/CellRange.py,sha256=VBIWmSk_U-v8u2Zao9bOQbB05iM-HZRCxbJkTCRu0FU,6433
48
- spire/presentation/CellRanges.py,sha256=fJG2pfIz-QGQFcXBhX6Z4XLMvvAU583ZGxTT-xvzF9U,3736
49
- spire/presentation/ChartAxis.py,sha256=UmGhw2GN5OzcVnFhjnYXEPnHTI5OhwQGb-AmFwNih7w,31352
50
- spire/presentation/ChartBaseUnitType.py,sha256=SrMcaObAjlbE5LG2vHv_8XWM5Ql4T2YQTh0gOcFUtDs,413
51
- spire/presentation/ChartCategory.py,sha256=jj7YCduftWaTdsTvauKU6JnukDV7rSnBi2RpS1YfK-o,1044
52
- spire/presentation/ChartCategoryCollection.py,sha256=4Shdo3C7LNNp-K8nqQNqtFRGlvVdCG4JGp6rvKvOmSE,6465
53
- spire/presentation/ChartCrossesType.py,sha256=BAB_hazEwLEpEAo2BOXv10I4zbv3fDP1I2pQQn7IHcQ,398
54
- spire/presentation/ChartData.py,sha256=7vwVQnWR6tLBtiWwc1y3UUnLOai6BWFwol9vGtu5xWo,7108
55
- spire/presentation/ChartDataLabel.py,sha256=VDMHloInxNRss6YeodNPo0R4da2XFAEa3EAlkzB9Q50,18128
56
- spire/presentation/ChartDataLabelCollection.py,sha256=UpnMcxh2C4TlGcwoEA1cm10pGYkuH-MseYNyJmSr7pw,17835
57
- spire/presentation/ChartDataLabelPosition.py,sha256=lF3wojrolK1Y4fD2nakOv7M_t5V8YWxJKSeIvV97PpA,510
58
- spire/presentation/ChartDataPoint.py,sha256=yfrAU4JXzCel0ISK4SRFTV89QXkFiSVrzDIfWG21GK4,8450
59
- spire/presentation/ChartDataPointCollection.py,sha256=HxM7pzHehSOfiuT0OeQFykOmvhJvDXrUimm72PA3W_8,2497
60
- spire/presentation/ChartDataTable.py,sha256=2TYz1EZcHe3EUAswCBxOxqg5JSnLeaKKX_JSV2WUq30,5571
61
- spire/presentation/ChartDisplayUnitType.py,sha256=nY7IS50U5Iso0yBhrqlr6vm2rk7VmHv3ctSs74OFtts,576
62
- spire/presentation/ChartEffectFormat.py,sha256=k3PG_zC0pLwbK6j0-S3GP3fkdMGzCpSRxpJnSY26NSU,2477
63
- spire/presentation/ChartLegend.py,sha256=Ojn19GQO_7BfPyOegEyBAF2kNW5jiNg5qIKYtR-c4Sg,8726
64
- spire/presentation/ChartLegendPositionType.py,sha256=ZYBiZsWA_0Jgndb_WdQy6qS0n6jLPBIfnNm0m9nE3zk,446
65
- spire/presentation/ChartMarkerType.py,sha256=UWfTBnehRomNm-rOSgKeZX4jAZyAslVwEZQ26FK6Ecs,510
66
- spire/presentation/ChartPlotArea.py,sha256=eW8n4j0E4MXSB4VmvpSPmdlEohwtyXMw05EDST18R_I,5103
67
- spire/presentation/ChartRotationThreeD.py,sha256=XkilhTDgPYcP7_L10ZNyXOZNicXQJC5krv6XpJfDHCQ,3189
68
- spire/presentation/ChartSeriesDataFormat.py,sha256=Y7Tn-_WCfXTUpH3zdZoGn7cWRs--x-8AE0yWqeocer4,26945
69
- spire/presentation/ChartSeriesFormatCollection.py,sha256=cu0h_mPfOXq9-VFbAg5ktC0ENroC3jUg_8hhcA_S2dE,8043
70
- spire/presentation/ChartShapeType.py,sha256=rm0CtnocEySNi3b69Xzii0Wor2hXj5agDjptUiwiiHw,454
71
- spire/presentation/ChartStyle.py,sha256=pmuX9gripljqonocV5Vx-lqmroHoD1r0rfdvcr-UF_I,1168
72
- spire/presentation/ChartTextArea.py,sha256=QOChfzn6FmN-zMHRWgmOiRvw_3pJcol4yb2f1Qezuls,6221
73
- spire/presentation/ChartType.py,sha256=gNtXTJEZhEjCugQXo76RidOA9SF1FXUaL_Fg2yqZAFk,2452
74
- spire/presentation/ChartWallsOrFloor.py,sha256=1wBDK0kZq2uI0AqtGL9zqdwROklKDYYG13qLkadNIBM,3801
75
- spire/presentation/ClickHyperlink.py,sha256=OcGnRmlD7XpHTIgqseWWMCh7URVCbiTAJrn7CBmPGek,15679
76
- spire/presentation/ColorFormat.py,sha256=DEe5oTB1fWs3CBWm5b8pFRW2y17MvL94mDRisxnMLls,10208
77
- spire/presentation/ColorScheme.py,sha256=BYgphagHHwgdBqE05MrFSi2tusRKuHsONvTRjcQ0m7M,8827
78
- spire/presentation/ColorSchemeIndex.py,sha256=Dfw5hOZ-nTwEB905SLxffiP42T2qGWtqNVqysGf4NjY,555
79
- spire/presentation/ColorType.py,sha256=j2SppZGz4tQ2a8T2DDWes1mD0q3oiq4mmTMtANWMN0s,353
80
- spire/presentation/ColumnCollection.py,sha256=FiO0c7vcrhR6WtrR8MaxSsPzLgo8AzpspVfz4y7N0UE,1886
81
- spire/presentation/ColumnList.py,sha256=nLwI0M8VTTZ3Yjrl45Cz3KGwq3vBONpFD80AccTI4FM,3655
82
- spire/presentation/Comment.py,sha256=BRFdj_2MN1VJIvWvvIFBznsqZ5veA4iFugcedPDC9a4,5897
83
- spire/presentation/CommentAuthorCollection.py,sha256=7blGZGrp7zsD4U6sJQX3wG4fvuGVu605EpqPXUzwmWQ,1955
84
- spire/presentation/CommentAuthorList.py,sha256=rzhR1x42M0zZyRKa_PGko4ssZ2_dsEWKR1EoJ-AQ_Lo,4874
85
- spire/presentation/CommentCollection.py,sha256=oQpwzlCKUZF1m3OXl6tlkeqJE0PSk_DKNLCL_cf19Yc,1902
86
- spire/presentation/CommentList.py,sha256=NnxssguMaBKOISs_JyesbfiUq6AWrLfuUijPof6_k8o,6337
87
- spire/presentation/CommonBehavior.py,sha256=xVQJ-TKuDO9xzWpSJVcUpxgljjBp3WL4htD-MeAVK9w,3145
88
- spire/presentation/CommonBehaviorCollection.py,sha256=S-Z1kUr5KH_koWHNEe74kcWQUocH8RPCZdpkQfWXgkI,7081
89
- spire/presentation/ConnectorLocking.py,sha256=JFddg7hsDTzPuy4tCb2QmOjbdFqNeRFpxQBttroyQZo,390
90
- spire/presentation/CoverSlideTransition.py,sha256=pnCUsfqIy792wnUjaqYi5T8o9302zwbBGRqxGrCdYkY,1489
91
- spire/presentation/CrossBetweenType.py,sha256=h33Ps9kvJQnS9yPhz2nU7rdpOVbIz9pZLv747sz5ohI,326
92
- spire/presentation/DataLabelShapeType.py,sha256=9Kqw-NYmMTJLemCc-DoS-lclBVYHukexSDjRdLoc7yc,703
93
- spire/presentation/DefaultTextRangeProperties.py,sha256=QcCWw_9ZzOvZjUzQ0UzRajilwxQ_kcNtJftTK4sD0jU,23383
94
- spire/presentation/Direction.py,sha256=N4gSyZPDx_iel7nQEDrKA3dovtj06XgO-KpdZsfm2ls,375
95
- spire/presentation/DisplayBlanksAsType.py,sha256=CTFcaiRRymJaNgGISrnqJ79R7qf2okKn8aUtotR5dV4,395
96
- spire/presentation/DocumentEditException.py,sha256=efXnUmrVKRZNrZ09xh7kQwHG5wbIbsTmZIIAfpnoWfE,390
97
- spire/presentation/DocumentReadException.py,sha256=nBPwYsQgXihq4RPjSWv-aC2pkzgo6EetXah_F-ykkrw,356
98
- spire/presentation/DocumentUnkownFormatException.py,sha256=utpJfM8j7f9reu62BpTBFkS5vQtx9uxyXYXvnHj5dhM,380
99
- spire/presentation/EffectDag.py,sha256=fxWsE_zB-9uFQXCiYPUQXPIQp-LYOk8MeMh6FFjruUs,6552
100
- spire/presentation/EffectDataCollection.py,sha256=2ukn_7VZ3oE6csn4rXzCEBb9Qo4IaLW3LM11c4W3KMI,3545
101
- spire/presentation/EffectFillType.py,sha256=3FtyeryxLH6CF6ZMg8e1r6ClrHVOcgsgsRvBqyxEGbw,406
102
- spire/presentation/EffectNode.py,sha256=PQDXVs3Z-xJReb6GtoTY2Jsuvn5KVlG0p09Slt234Ac,364
103
- spire/presentation/EffectStyle.py,sha256=M-uusqy3Ud6K7gtj1D9YSEwwClWjwzrbhQ3MGNBQ1sc,1793
104
- spire/presentation/EffectStyleCollection.py,sha256=QfYg780FrAdIa2y-MsHw9KVpa0pIYzYu6eqgYlBmsBM,2331
105
- spire/presentation/EffectStyleList.py,sha256=uLenqXCCqzTQUKwMAh0bChkv6HjI8KugMS5nzxE6RB4,2312
106
- spire/presentation/EmbedImageList.py,sha256=WHRlVLn7G3zgefXNGWA2r2do5roPkb_mxP5UZJMK-V0,4191
107
- spire/presentation/ErrorBarSimpleType.py,sha256=rK2nIsbaY4GzFBoeT1bL275S1jXUSGNba5qRMKONh1c,312
108
- spire/presentation/ErrorValueType.py,sha256=BdSi2SoDC8NT6BvySBYb6HS856FZnMRu6vsuOfm0qaA,380
109
- spire/presentation/ExtensionList.py,sha256=ZzTEmZ2IC73K3ExAgOCGOCT3AGv9fJdt9WIsEgzm2Vw,581
110
- spire/presentation/Field.py,sha256=8GhvmM7-bOQgmksTTN4KLd0zoZLjKNq0ii-ECT704gg,1347
111
- spire/presentation/FieldType.py,sha256=J7OgeVP3sh7UrCqzU_dJGUGlhiBRasTKvlxTL7dEq3o,8977
112
- spire/presentation/FileFormat.py,sha256=R2Fk5eGR7F9eadEH4apG6BpDGOFYAPdkmRt4ACQnU6Y,759
113
- spire/presentation/FillFormat.py,sha256=t0yGPMeZYBT_lBQ3lrnRy6W7A5_8VJch2hTOlhNlUac,6041
114
- spire/presentation/FillFormatCollection.py,sha256=hkMVX8bZee-1M86vCbWZteNyZfAsKupuqxUFixh0EmY,1941
115
- spire/presentation/FillFormatList.py,sha256=nY4Lg920mg16XIBQ0XBZkKkt3AuIP70Qc9pxcisr6d4,360
116
- spire/presentation/FillFormatType.py,sha256=kMAfIh7CCq6WfOUx2P5Mx1u0sg-92kiaUGgeuc9EE7M,448
117
- spire/presentation/FillListBase.py,sha256=OC5eYkRwPhpXT8GyPQXveTQOg1j8L3RQRGjczO0x3nM,2239
118
- spire/presentation/FillOverlayEffect.py,sha256=f0APU9yno_wutHaa0YOfdlHvxqc1snnZYLwsytrNrFk,2204
119
- spire/presentation/FillStyleCollection.py,sha256=D--bfDBnBo4kPKvtgYfYSlP8koUNW7POnURjbs5nqNI,2305
120
- spire/presentation/FillStyleList.py,sha256=w7QbyrN3ONMrAuTBnVKelSYGxqKc52DZM5FqVDcPcTc,715
121
- spire/presentation/FilterEffectSubtype.py,sha256=APpxonYS-jdGae0INZSEE94Axgcp9X26ZM9r3ueBtvE,823
122
- spire/presentation/FilterEffectType.py,sha256=j6hHd0-r4WhfYA1REImS2WhG2eKGalYbXZDPXiZDeTQ,648
123
- spire/presentation/FilterEffectsType.py,sha256=dszFyhkBk6n0QaQqUmP89PIykUuW07Pb7AkfyKsY8yQ,320
124
- spire/presentation/FilterRevealType.py,sha256=IhKHeIoEm-JINw91E71BS7uK8ckJShBRgFKq4ZeFCA4,395
125
- spire/presentation/FlythroughTransition.py,sha256=8IDEVbCHoe7p82yaw1Z6p6Udi3c3JW-W44r8zeR01b4,1377
126
- spire/presentation/FontAlignmentType.py,sha256=eX6A8hLJgXjpwnt8Ms1QyoiRWP6HsIagnytmTGnNp_A,434
127
- spire/presentation/FontCollectionIndex.py,sha256=mMnvqbylmKXCegBrTFdFSqy6R__7d8z-cfyJKFxxcko,393
128
- spire/presentation/FontScheme.py,sha256=2Vjc8AYyrbz6SaUbpS2laUro4d8e3ZVwfjSY2Q5AIr0,2437
129
- spire/presentation/FormatAndVersion.py,sha256=WRinabz9Vyrrh2Fv6zxW_WJD73vZ_wLXnDrB9-Zh_Ig,863
130
- spire/presentation/FormatScheme.py,sha256=oWLcOmqAerx4_LMua3TMQvo2s4l8gm8QtFjW_8Jtxa4,4736
131
- spire/presentation/FormatThreeD.py,sha256=Br2808HFU4wr2VFC6XElA6gBq1xjrQSkm62DvaP-HQg,2606
132
- spire/presentation/Geography.py,sha256=VtV5vIVgMVMu0Tg3dWRZOTd44vXbZFPWaxExFYV2Ibg,267
133
- spire/presentation/GlitterTransition.py,sha256=GAw8BR8Gizijxn-K3QBL-3SrAYMTNLuHk9Rggj1p-4k,1326
134
- spire/presentation/GlitterTransitionDirection.py,sha256=cknHORMLEGi1gj9j8UP0FFl7bsZkKJy9RsvkManiI9I,559
135
- spire/presentation/GlowEffect.py,sha256=elPLwbsoLGNbkHqYVetnJY0idwivKtsBfESks8PHDQI,2015
136
- spire/presentation/GlowNode.py,sha256=_AkidB_j46ndUCgUjoMcvHaNKwwb4N4n807G4Cr40TQ,1159
137
- spire/presentation/GradientFillFormat.py,sha256=i6kw9oBVqZS8-Lwf-xdw1zLNT8WAtrZDNqmFfnaj6iQ,5713
138
- spire/presentation/GradientShapeType.py,sha256=uPYbaPdEtJLd1Up-FerO9c8B9fww_bgu56ANWXz5lxc,425
139
- spire/presentation/GradientStop.py,sha256=RQML_w2ci23qCTP1u8nt9z4K_WgKO6HM6xRWGDMahRo,1549
140
- spire/presentation/GradientStopCollection.py,sha256=6AVIuOIKSy9sRrXP7UNdNV0oWLy0bdGkoT1MbrHBYag,1943
141
- spire/presentation/GradientStopData.py,sha256=_8oSnSAHeHWbQLXkfJhUQlcGnuh5bL3Qm45U9QA4dGc,1333
142
- spire/presentation/GradientStopDataCollection.py,sha256=BAY1QWkzt7iLb9lLgmU34mg5Sxa9JpZxpL9b5C4fSsg,3612
143
- spire/presentation/GradientStopList.py,sha256=xbigH0Hu1zaANsftL5qMJVlMY3yaeHZd505kBVaDwu0,7155
144
- spire/presentation/GradientStyle.py,sha256=Rp3TKqRSPH15BjcwuSlUFwpWQUnn_XQg39tlLiiokHM,452
145
- spire/presentation/GraphicAnimation.py,sha256=Ud70xaZ--5XugPj_fu7SVdF3rm1ops5RLLOS9LCqFiI,1740
146
- spire/presentation/GraphicAnimationCollection.py,sha256=ss7aS51qnPIqzsib7oW3UaEtMFrkeFQ_yOdIITDyC2U,4521
147
- spire/presentation/GraphicBuildType.py,sha256=5HpB4eM9EPtxeHq_5hUnQPzTyuyF74_IkxGjIuDIpTU,489
148
- spire/presentation/GraphicFrame.py,sha256=6-SvV2M0PwrnN1Y8_YafEQEWvMQ53DTxXI5wH01mo24,7570
149
- spire/presentation/GraphicalNodeLocking.py,sha256=ZFZ1NoYl1IY7tYj_PW9VOTGECyXd4TPNgo5x-6hOepA,4893
150
- spire/presentation/GroupShape.py,sha256=h0ZBx07CQYVKBB4fJHU3lMQ6wzJjt5atmV_V8iBfaQs,2438
151
- spire/presentation/GroupShapeLocking.py,sha256=VD61F_LZGShfulrC_lgivyhTrAPwV710H3pmDsgG4zY,5536
152
- spire/presentation/HeaderType.py,sha256=4B_QVTDfchyo5_-vmV0V2rZKAZ1iebuxH17yAMM_HhE,412
153
- spire/presentation/HistogramAxisFormat.py,sha256=g9JPVGEiitcWbA4uewwtXbz8lmWSkbPM2KEMwxp7pd8,977
154
- spire/presentation/HyperlinkActionType.py,sha256=9LJtSbNLZPnGO08rNg3jrJbVjLfWYg6GOcwCgPIjQSA,706
155
- spire/presentation/IActivePresentation.py,sha256=MxyMcaAWRn0jxbOwiKbTVB-8y0W1PCveb8wq2fyqDzI,786
156
- spire/presentation/IActiveSlide.py,sha256=iYdgKz0JgMkAoM2ABtTQFgXoWgZ7XOpkDpi4d4XSTK4,731
157
- spire/presentation/IAudio.py,sha256=YH5eC2pPSjMOEzWWL8SlMgW_NVoPKO07nKlG53rGCYg,23486
158
- spire/presentation/IAudioData.py,sha256=68D1loqmLMrTsscNcF0kf-AOXGrIecoIBHpL4n-9RJs,2409
159
- spire/presentation/IAutoShape.py,sha256=whp8wehCOPX1aciKN4Q4eM1RT77mh-fouclRFL20lyA,19674
160
- spire/presentation/IChart.py,sha256=D49SqT5E0pLpGxvr9HJ5q0bQGahWq6awvHFJZ3VkvrI,35281
161
- spire/presentation/IChartAxis.py,sha256=-X-qJxSUFeFCyf9itSbZ1dCO6JFVzTRwBrV9wV_Cosg,32465
162
- spire/presentation/IChartEffectFormat.py,sha256=8-1w3gSyRaVCCu18nKf8WhCB3P___CGU5vUTCfVlvpE,3146
163
- spire/presentation/IChartGridLine.py,sha256=yxJmSVJP3Zk82L6vr_CSg-jGXxkTYXkgGhtUNkG_MJI,14163
164
- spire/presentation/ICommentAuthor.py,sha256=n1j62HXz9Gi_47eJGSiv0dPTFUBQqTdZnxlAKAK8bQQ,3278
165
- spire/presentation/IDigitalSignature.py,sha256=Hut-GX1qY5u3vxiUgBzUNWXcAcEt__-jqabircVThaw,3146
166
- spire/presentation/IDigitalSignatures.py,sha256=NCEw34pa4BSUafNV1MGpnfpdBvT4ILC3TUgCElQ-Izw,1289
167
- spire/presentation/IDocumentProperty.py,sha256=2qvjIcU523CXBV4EEVPLVNVNBO7YBKY5UZ9TWIIlToI,21274
168
- spire/presentation/IEmbedImage.py,sha256=wUzfoReP8Ad9LCWQ9B4AYFw44Wnnerq6oBd01LPhKyU,17563
169
- spire/presentation/IErrorBarsFormat.py,sha256=pS2VaEt94rr1HlKR_ve_-ciLbVuf457J3BVMu7mzT9c,5361
170
- spire/presentation/IImageData.py,sha256=aTv_bE7reX2YT7N-Jkf1ySTG8xh7ChWE4imz2x4lPhs,3823
171
- spire/presentation/ILayout.py,sha256=GdoV-8WpNGpBFHYQxtVMS540HvEd-vtqCoFf-R_dzJQ,3964
172
- spire/presentation/IMasterLayouts.py,sha256=A6FbnJfyB2128-oNY8D3IETKmUj1gw6xYT-oFjptSQo,1766
173
- spire/presentation/IMasterSlide.py,sha256=Nkq357OnBa-tJsTyD4tES4BkM5l5arjxLQ5LiZ3_VmM,8903
174
- spire/presentation/INoteMasterSlide.py,sha256=QcXGw2QI1m9hlsb9Ar1RnoszEoxN-BJWBfvI97kIB2Q,6475
175
- spire/presentation/IOleObject.py,sha256=wh8fp1WPAPojD8rZ8tvFO5xm4qLI1SLnkV94HB_HdS8,20881
176
- spire/presentation/IShape.py,sha256=SQ2qQZNar7MpS_HoHLKuf0EkyfvzwXyDNwJp9jPZyHQ,21700
177
- spire/presentation/ISlide.py,sha256=V4vPgzBcgx_fpHsAkdX9sr8P-HOcFo3Le44oyQ81pSU,26446
178
- spire/presentation/ISmartArt.py,sha256=wKUk4-T0be8hCo4h064w7VDe8u51d-Wl_Ke7NCGOc40,3676
179
- spire/presentation/ISmartArtNode.py,sha256=7VwKLvbX_Q2td783YBUJWTLEOsvjFIvwR6R0ED145uo,8421
180
- spire/presentation/ISmartArtNodeCollection.py,sha256=zLKkuEDVViLovqkVANmnr0oMUprZHa5w6_VBzdvz4J4,4927
181
- spire/presentation/ITable.py,sha256=lbfoTLMc0tKntZgACn2XYf1m2nI3BumPa5FGDGXenWc,25673
182
- spire/presentation/ITextFrameProperties.py,sha256=WTGO7gdF56Bn9JpSiFi6qWTL7Qy1iGOq4nMonBn1Mfk,17716
183
- spire/presentation/ITrendlineLabel.py,sha256=9w_M8GlKH76y0-EOkuWBKy2gKyNEDrsd-9andGUoADE,2559
184
- spire/presentation/ITrendlines.py,sha256=959oc6cZgtAsQBpsvmnfPDYZAtbAjqra0i2SLtNlhJk,8233
185
- spire/presentation/IVideo.py,sha256=SOZu2cB2OBzhBt9xGkqW4qYotYMrdY7Pmn-4W4VKlZM,24151
186
- spire/presentation/ImageCollection.py,sha256=XS9zzK6SdkVeiG1ZD4T51Ahygr1J2VzMeFonAjUx5bE,1868
187
- spire/presentation/ImageTransform.py,sha256=BDfG8y_WuE8Ep5jgA7vUn4E7tsVRRgdPLNiF4C0Oso4,4481
188
- spire/presentation/ImageTransformBase.py,sha256=jFOg1SBFk43BUbj0Biu_PjkhQmhsn-y4eDWHh2cwmEE,357
189
- spire/presentation/ImageTransformEffectCollection.py,sha256=M8dPW8NykO1i6XBEVJ3Bm5DlzpomCbjEBnVlj_IGDH8,2040
190
- spire/presentation/ImportDataFormat.py,sha256=Bz-EFkfDV5Ho6mfMBVrN4wMk-FcnKPYrZF_7A1WRmYw,376
191
- spire/presentation/InnerShadowEffect.py,sha256=6P0l4kOMXWVSrirXA4b0fqKKEIs1S-pmW3zP2D5Ol3E,3340
192
- spire/presentation/InnerShadowNode.py,sha256=lKq7LuU72HW_e0cShaIBvk0cu6qKjngaymDUI70NW88,1948
193
- spire/presentation/InsertPlaceholderType.py,sha256=OsFZZq1BGvsspZ79cEpeZoYGzv2uZZQiFo9RZB2Q_p8,449
194
- spire/presentation/InteriorColorPattern.py,sha256=oigFJR3KAZyeQ15GoC5Sm7mqOOTVEyD_fF8ziHl6Vws,696
195
- spire/presentation/InvXTransition.py,sha256=qF3vKB-1U5rvIJo-ZYSt8OLuxq41IrF1ae4FslOyaKY,1290
196
- spire/presentation/KnownColors.py,sha256=pyDIWm11o0kFPSyf-GuQ5uqzKPCvOBXiAHhStwd93-Q,3167
197
- spire/presentation/LRTransition.py,sha256=xNOT0xmrm0fs0Y-TM5x9YAFO1JbbptGhHn1FvhmKPl8,1269
198
- spire/presentation/LayoutProperty.py,sha256=e0f9WNeXOrcl9Xr9E7gVfaIRlWVNaKFU5byg3RP8V9s,4985
199
- spire/presentation/LegendEntry.py,sha256=3sbNwhR9j2_nxMpbCE6X79kBsylNxaIDm6fwXrSNfh0,831
200
- spire/presentation/LegendEntryCollection.py,sha256=PO3Zzc2KwjhumzmEfBpbG2l12DF4OcIMtMwQq586ZZM,1331
201
- spire/presentation/LicenseProvider.py,sha256=QpViN9GBtS7mJAbPKofLYK_E9ihOBs-PFP-imq0w1Eo,3876
202
- spire/presentation/LightRig.py,sha256=V0Dngo_HxqeJhdExb_jZ8_ts8AMv4IDyP6Q4utIoBPk,3552
203
- spire/presentation/LightingDirectionType.py,sha256=A-teofVKY5pU0EvRAtnfdXqQB6bcm2jAMD7UQhcf-4c,487
204
- spire/presentation/LineCapStyle.py,sha256=YwjMl8Cc-TjO-qr47pUHZM7Bo48qKMyMSYKGXkoQl4M,392
205
- spire/presentation/LineDashStyleType.py,sha256=FWpXcs4HoSxbuXjJxFfdTxdM8p3QXR_hYb7KRbB-lpQ,584
206
- spire/presentation/LineEndLength.py,sha256=d6dxI9NgipUqpzDKF-URQIcPF4aTPFT5eLAwKufj-UI,401
207
- spire/presentation/LineEndType.py,sha256=iZNB4ITHsw7GNu9U8mM0Aa3tuppGn3muIShF9mNc_Oo,467
208
- spire/presentation/LineEndWidth.py,sha256=RE4roKdaSJ1HN9S_fj1Xs5SAae6S_Ep61zX3lBdHoC8,400
209
- spire/presentation/LineFillFormat.py,sha256=6zvoSIsbQ81uMmAYEeA_-9UUVmrJM6JE6kWbt3I0jus,4354
210
- spire/presentation/LineJoinType.py,sha256=3JEUNNwtt6homOkdPJVN8omfgnypMOrxCJOfzWzAjfo,394
211
- spire/presentation/LineStyleCollection.py,sha256=xi8hayma7KfBemZW0_r2Rd1cpp6FaR9P2XdogqQlgqQ,2305
212
- spire/presentation/LineStyleList.py,sha256=wnCwv4jEDK1sqdP5YrLwv8CzBicd64zQVl-l4-cOiaw,2251
213
- spire/presentation/LineText.py,sha256=Jsx15jgha5g3fFWCfBNQ386XEEPqlL-dE329dZ3ljMc,1265
214
- spire/presentation/LinearGradientFill.py,sha256=Un9UL9Tqmu-Jm2K7kP5Gg7IUA9EoujhovB8Jm3N-n9Q,1717
215
- spire/presentation/LocaleFonts.py,sha256=TaT-w0WVu0N5NoFNq1LkfhOtUp7VdQYCd3onsDMvbyQ,3058
216
- spire/presentation/MasterSlideCollection.py,sha256=79YAFRvqW_x-pax43DCM8sLsLwDx-l-5FFVSM63WJkY,1933
217
- spire/presentation/MasterSlideList.py,sha256=4KEnCSNbO0opxIsioeVAkskJQTeoKy_NAedWW_ZcPD0,4404
218
- spire/presentation/MasterTheme.py,sha256=OSliH7JEcu9NmbYVVzEW3i2oDm34xr1dLBhGf61-63A,3058
219
- spire/presentation/MetaCharacterType.py,sha256=Ttz_FIsgjuLjRvxY8Gl7dqdfkYe_JgRx3y4ZCUATvOA,490
220
- spire/presentation/MotionCmdPath.py,sha256=q_4aoY3AT5krF2-mXZ6sUd2y77iJ-NIIDCPOzgJXp9c,3016
221
- spire/presentation/MotionCommandPathType.py,sha256=ITAGGDtmmVDhtG0fZQRvvp3MU63E-fVQa5QoP7YltJk,456
222
- spire/presentation/MotionPath.py,sha256=_8FcDjtZ-cAwYbuOeuQ3_0aS0yltCk2j5pWjlQU1pb0,3365
223
- spire/presentation/MotionPathPointsType.py,sha256=BIPiS2H4P3ZdLC3enPtrIjnkfGZjNGzDV_wGZP4CTcE,523
224
- spire/presentation/NotesSlide.py,sha256=sVpqaXuYc0zeQBak8xTsk0raRMniN4DWlbRf0bqxAu4,3260
225
- spire/presentation/NumberedBulletStyle.py,sha256=PYwz5XAF88RABKWcVZph4LBDjP4Up4H2oD8EqV_BRks,1695
226
- spire/presentation/OleObject.py,sha256=DMuKRR9-dTMhqdUj8hoOxOGw5a083RLC-BjXpVcSvYI,3830
227
- spire/presentation/OleObjectCollection.py,sha256=Ctpoa3Kkqzoxm4Th8m4Ium1sYXLg7e9wxpcpMPUGmT8,4480
228
- spire/presentation/OleObjectProperties.py,sha256=YYQajlb_CNcPxaXVZqJrAuRLvLu2JCrOWnGV8oPreTw,5399
229
- spire/presentation/OptionalBlackTransition.py,sha256=rsxt3-5Gs2iX8bt4l6-eOrUo-mRUzti_A55deI_hZR8,1518
230
- spire/presentation/Order.py,sha256=df9grZcTdIkrIHYSnoHwSGRABcn8nrbASq0oOgnEwLk,339
231
- spire/presentation/OuterShadowEffect.py,sha256=nreMY0Fh8OrZOvMjzcBNXkYAvmPj8XyrhC6Qy00YQzs,7703
232
- spire/presentation/OuterShadowNode.py,sha256=UzSnXChQxTbpOLPFETilwTggevhassY7kIyG9MLfvso,4656
233
- spire/presentation/PageSlideCount.py,sha256=ib6zYcgI6iODndbIWhzPGxTytQKD2eGCVGjBVqYrtrM,403
234
- spire/presentation/ParagraphBuildType.py,sha256=rcDHt3ksApNNWnGIOKmPUbY3xZsQDIhiF6cPsgd22Qg,511
235
- spire/presentation/ParagraphCollection.py,sha256=lp_yZkLA5x6XFasOzT0j7fVHY4IapFSaGk81EGXFp5s,3604
236
- spire/presentation/ParagraphList.py,sha256=6daWTHofxuf9s1GDEC2qZplEz9NuvO7jIqs2bcnIewc,6093
237
- spire/presentation/ParagraphProperties.py,sha256=ioHjsYfmDGLyKUvHjImm-0qKCs-ZGPNS7WilEtoXCD0,21277
238
- spire/presentation/PatternFillFormat.py,sha256=atRmqtlAlWoD1DwM24ICg2LElMGHLXXPcVyOKnrzvNQ,4184
239
- spire/presentation/PatternFillType.py,sha256=1vbwrt9IJUaSr3S1WXo2jNcj5zqd8ZULkKgBcm0KrJ0,1600
240
- spire/presentation/PdfConformanceLevel.py,sha256=JJgyuAFRFmHIJAELOwI3ckmcY5A-uNYXAvISAT_6TKw,464
241
- spire/presentation/PenAlignmentType.py,sha256=W0C3wT2DiZAZo-LWbroDv7_880O7b6d5nxu9P20f7Xw,388
242
- spire/presentation/PictureData.py,sha256=js6sxDm2UnMparmcTofMYB7js_-A-0kgXQjb2f-ZsR4,1954
243
- spire/presentation/PictureFillFormat.py,sha256=p4RRC0cTg5PVpe6deR48mSTnfqie5E9Lqo2G_jOIlfs,9062
244
- spire/presentation/PictureFillType.py,sha256=McwxzJ3RK2XPWJAUgC0xenBLBGm_Kcj02MsX3DoVAd8,373
245
- spire/presentation/PictureShape.py,sha256=xuUn5MBzoAcY3X2JiXL-LENW-uGh0aFZAkrugQ818ic,3482
246
- spire/presentation/PictureType.py,sha256=A9aE1fhoGNJZiqmSfFYDnufcnotzYVmihndrXkgDI4U,406
247
- spire/presentation/Placeholder.py,sha256=HrK_qE3R391AE-buur9FgSzUdLshBN2bmUQ5A8D5vgU,2738
248
- spire/presentation/PlaceholderSize.py,sha256=5owOn9al-1V6S_JdcOulnGmVW78YXBqTtafG80vCU0Q,401
249
- spire/presentation/PlaceholderType.py,sha256=B-IY4g4jaX96naqQsDp30zVjmTbwLcLrvctLOhFpTaM,639
250
- spire/presentation/PptObject.py,sha256=LX8OQLSBIC3eBc7qaaoXnBWvBhtu59OCXPr6lCIDAGE,972
251
- spire/presentation/Presentation.py,sha256=vqOWkbW5rkTKfP33K6A7Oy1UD_kAcQCVNp68PpCcbdI,46880
252
- spire/presentation/PresentationTranslator.py,sha256=tmvTvL37iSTqtpKeQuguCD1c47ms9rEBmYzPqtRPam4,1022
253
- spire/presentation/PresetCameraType.py,sha256=-DpkF1b7kygARYeIXO27txjeueDPEWzHn1kNc49a2QI,2294
254
- spire/presentation/PresetLightRigType.py,sha256=uzIr3Rxy1cbAK4KiRZU0q6DFWfi36ueU9JvLC5mCf24,880
255
- spire/presentation/PresetMaterialType.py,sha256=tHr0zOb7vYQhoOB2nVlVnWv8TMdgF3qZeYUwC44De_4,637
256
- spire/presentation/PresetShadow.py,sha256=wzDPhj_5f_IE5LSCJMugoAMAXxrk5DC0W59vl1lwxu0,3249
257
- spire/presentation/PresetShadowNode.py,sha256=hvttDhaGAuIObqmxQWUQXsQxv659yk1pkVknhzMu9RA,2004
258
- spire/presentation/PresetShadowValue.py,sha256=WRCmErZ5KASfni4nhwLEN2ZXwV5Uy0iuVbKP1fu_mT0,906
259
- spire/presentation/ProjectionType.py,sha256=cJtJqCbYu_3WXFumXOVGatuxxNZ--pkR8uK_ez04zUg,334
260
- spire/presentation/PropertyValueType.py,sha256=0DymHWxFIqQ0ymR8XqFlLBMcPNOyF6hNYowopO6sxkQ,400
261
- spire/presentation/QuartileCalculation.py,sha256=lqZ7JZgxGv1KnWx2Sgd54qj0clxgny9VNkRm3pauTt8,432
262
- spire/presentation/RectangleAlignment.py,sha256=zpisQislgnEOr9i4E54XfGi65alizwPuJnr1BfbR9cw,504
263
- spire/presentation/ReflectionEffect.py,sha256=DFbNo9DXGfP2x0c-nwlYrom-wf6lhrN7EstEncWXvss,10871
264
- spire/presentation/ReflectionNode.py,sha256=G_Nrq82-ph9Yl-oHNvAuNm9K9IX28BeOUR0ta6395pU,6347
265
- spire/presentation/RelativeRectangle.py,sha256=bkZzEtlr7bOaZfB_DYwLrRlNRYAD6jFTMhUDidBUeWU,5467
266
- spire/presentation/RevealTransition.py,sha256=2_SRvW3f-NE6shy46pfx-kdYCrLHu_4uEp6iTnUbWpM,1320
267
- spire/presentation/RowList.py,sha256=BeNKByGivJH3LqDz7UqqoTqZjqwujB7KvIT2X_2o05E,3492
268
- spire/presentation/SaveToHtmlOption.py,sha256=zDqre-aXaeQ0cPHcQh3-MSQHdazDMwhnhtJun7UUJ5A,947
269
- spire/presentation/SaveToPdfOption.py,sha256=hmCYrq0IxC-IF9ThBbQCNB1a1kqVKiUYfGyZxLG4l2w,3627
270
- spire/presentation/SaveToPptxOption.py,sha256=3sCdqzIH80ZDFFqaqnVNa84E9tZYcWHQsDKNeHMZLko,963
271
- spire/presentation/SchemeColor.py,sha256=KuOVS9jc_rkM-fr_ibTMg06rTFqelNJ4PkiZHxMR5BI,661
272
- spire/presentation/Section.py,sha256=TdbuEXWtpvdIIsylUXir9LrMAuqSbctKfTOb2S2vpLA,5265
273
- spire/presentation/SectionList.py,sha256=XwpcyWN94jzjSluQWVHJBJF7bC6j8m2Lc4IW7MJSa3M,6402
274
- spire/presentation/SequenceCollection.py,sha256=Wr_fO5sDsk64RUU_a7mTEMvhmFXQGZa_ZJSelIElJJg,3538
275
- spire/presentation/Shape.py,sha256=LLRtCIMODt6zhXkZzReNMIDPFORC7AhOI0dtVlMbfII,20761
276
- spire/presentation/ShapeAdjust.py,sha256=-qyuep9_JA88tMBNWSMHIQsFljSTElK1mXdBKng75x4,1715
277
- spire/presentation/ShapeAdjustCollection.py,sha256=zdsD3Jaf9mVpaaQXo7sn9bSXt3luA2vABVYqqO3qyWQ,2463
278
- spire/presentation/ShapeAdjustmentList.py,sha256=JKajya5Gy0I2XCls2ML00Q3IMMz5cAiyCXwJb55eY2s,1364
279
- spire/presentation/ShapeAlignment.py,sha256=niKKbhWdvd6_5mueBmkgcoPSXuaSUN3jh4o-TZ4sf7g,516
280
- spire/presentation/ShapeArrange.py,sha256=ZlKt2OuBGSulXyp-03aAJSYk-KzqnUwkeDpAPneo9pA,423
281
- spire/presentation/ShapeBevelStyle.py,sha256=GiAl7jH_vgA5G6ilOPYdEiqMPYLdgNEdWn1QMx1Ea7U,2380
282
- spire/presentation/ShapeCollection.py,sha256=42uZpG1xj_eAe49L4K92sAuTq1FUDlQJew59i-iyakU,2237
283
- spire/presentation/ShapeElementFillSource.py,sha256=_n_vhKvq9E9ssNoZpn8GnH5pFMH1cgbxsybX88iwP8I,480
284
- spire/presentation/ShapeElementStrokeSource.py,sha256=hdB8iSBgegrwJygpFKujprQG1EZoQeRwbDeQVzJaouU,411
285
- spire/presentation/ShapeList.py,sha256=8po5gX9hU_IoE_0LxW5R2A7Mlh9Bk630T0-DxIkEXPw,41939
286
- spire/presentation/ShapeLocking.py,sha256=cX0UMPf-t0OqC-Onc5Scfij9T25I8jQTRRLUhZ3bARk,1106
287
- spire/presentation/ShapeNode.py,sha256=0S-RodejMoV71m6ifaeDz92Q-tHj2NypfT2S-WoBe7Y,2377
288
- spire/presentation/ShapeStyle.py,sha256=IQIEFf5MHF9qlWq5TcCA2cH4EcGFJB77mGkNmGcnaSo,7064
289
- spire/presentation/ShapeThreeD.py,sha256=7ppe6z1IoqJXFrLLLx-DSnJZpgV3nMdq2o1y5W2rhMU,6710
290
- spire/presentation/ShapeType.py,sha256=XV-RujC583C5iG_uNyEDhoxIFR_hUDDaDSiJZ34hPhw,4949
291
- spire/presentation/ShredTransition.py,sha256=H4Tp0eYHKdMtRkX1HApmv8p496A8LZjQXJeIm5kWmcw,1317
292
- spire/presentation/SideDirectionTransition.py,sha256=Mh-xigeapDGQQTEwmiidMt6pfcGyhXpuxfCLJec1xGI,1524
293
- spire/presentation/SimpleShapeBaseLocking.py,sha256=7S-NxfnS2pZZDczqy43VbGGmckzNkmRhKVUVoqHZBn4,7988
294
- spire/presentation/SlideBackground.py,sha256=MOvB0LLVjA49EHjRUaNBWLVIak_JlcdbRARsutH7JPw,6143
295
- spire/presentation/SlideCollection.py,sha256=MYSy3pU8Qg8t_A98hVGA6EP_sZMXkgJ_Ge9MrQNgidU,1868
296
- spire/presentation/SlideColorScheme.py,sha256=OsNkR_bGO7RIg-BU3JtrGHKUQ2eFWjCJirFJDgXk-OM,1694
297
- spire/presentation/SlideColorSchemeCollection.py,sha256=z9o41hlvwYZQFxMmMqjq9mMzAy0lRcjJBmXXukkZOA0,4178
298
- spire/presentation/SlideLayoutType.py,sha256=_wxvntrGl5i9ywmZkZ59P4mSindxLgf9FSQwDxE-zcs,1197
299
- spire/presentation/SlideList.py,sha256=pPDKGBmBHzrJITW7TCy8Wcsc9-Fw4yGP1hNj2eAojXU,9602
300
- spire/presentation/SlideOrienation.py,sha256=zT7WqMIg83iu3pi_pYqUTl6iwcoFtSTVFZxf3nq1DcY,375
301
- spire/presentation/SlidePicture.py,sha256=aMQCAXzC6plp0lijuZrcxZrCFf4ERuHc2g7GkKgDZaw,3078
302
- spire/presentation/SlidePictureLocking.py,sha256=ZToiASMpLYGZVX_6Khvivzy2NocQLOefzmj7GhfdaiE,1098
303
- spire/presentation/SlideShowTransition.py,sha256=Tb3GHfYzk3WwjhYzFYRl3wdEVnnYkQShMWbDH4NaHc8,11323
304
- spire/presentation/SlideShowType.py,sha256=LWT2BxUrA3IMox3KVJozQ8Vwk-v00Ml50OaEGfuvM3Q,312
305
- spire/presentation/SlideSize.py,sha256=nejBJ_b34K3EvGA7JU4Qp7Oey0VENmjqJ6DmTFhIdmM,3231
306
- spire/presentation/SlideSizeType.py,sha256=3AANynzc4cP_S5fl62FDYxTPOCu8tNN60HClG-aP278,621
307
- spire/presentation/SmartArtColorType.py,sha256=5qUxjAmvyK04ps2Xvd3zWJKrszFyEGeJklZvRmKBwls,1478
308
- spire/presentation/SmartArtLayoutType.py,sha256=ROE5vTRfuxQLD9WKGrgPPRDQ2j10tnMG5IIKcE4-dU0,2483
309
- spire/presentation/SmartArtStyleType.py,sha256=j4owSjz_2wY8WKDyfRiZn99QfJXe1laLX6xyYpZWh4s,555
310
- spire/presentation/SoftEdgeEffect.py,sha256=8_srd-bvSq9OE-eI-lyBkXqz5p1iOXmRq2de-rLkG44,1408
311
- spire/presentation/SoftEdgeNode.py,sha256=FQIaJfret8yUqqycIHmCpZyqnyxnfTfSRW2r8QEft0c,818
312
- spire/presentation/SplitSlideTransition.py,sha256=UQ85YUIRaQ7tDE0eyenmiEPrEVtBcI4dwF5EtRUy0so,1590
313
- spire/presentation/StripsSlideTransition.py,sha256=vlS3G4IflIFf7zzFoD_yG2jARrttA_gMTOFWOYY2tMU,1359
314
- spire/presentation/SystemColorType.py,sha256=Xct52IMUKsxv5TEcr0U7Y-1w9AEoTsk-VyvET_Q2p7I,1006
315
- spire/presentation/TabAlignmentType.py,sha256=umrsabSpnkFI56QCqycRIENbMz92PjSF5P2ksFiIjhQ,412
316
- spire/presentation/TabData.py,sha256=735UA8zWjfbjew8ObQUzY6Kql5nA4zvYoKHcohnJ29M,2241
317
- spire/presentation/TabStop.py,sha256=GU-FfIhBdoGn0JS4DHMkpm_XigdABRvRm_9vktz6Nqk,2686
318
- spire/presentation/TabStopCollection.py,sha256=DxE83BNygkdUag7QRRoDU_8wc5XQUHy1wV_GBOZC-Zc,1897
319
- spire/presentation/TabStopList.py,sha256=7ZVmuUJj41RwBLgRo7aPSGXQJvSmhK0rUgMX5d56gw4,4128
320
- spire/presentation/TableBorderType.py,sha256=Y3j0mJsEiLxHjeCBlFqDhzpVwO9Ce-hfX6QB3dvLYM0,584
321
- spire/presentation/TableColumn.py,sha256=B_griGFwduGWIh1orx6c-YgGptVfjB5bql2Knydsmkg,977
322
- spire/presentation/TableRow.py,sha256=9684ij-BaCT2LOD8v9Gk2NNtXPPpU2h5W2k-typIMzo,958
323
- spire/presentation/TableRowCollection.py,sha256=PT_BN74pO8FwDzE_xChkiv-EzmtRc86Sn00Z8De5KWA,1889
324
- spire/presentation/TableStylePreset.py,sha256=h3rIcb9GPFWqk16P9wQapx_xxyIw1bGjIzWaKUhu2_g,2457
325
- spire/presentation/TagCollection.py,sha256=XX2jdq5FvFoZnaq3Z-xy8_HjxE5CuZjaPu7C0o9-Z-k,2347
326
- spire/presentation/TagList.py,sha256=DrkDUdd3cHTywtZJRJ_mK_HiNi9ZFTnImlGFdNEz8j8,5401
327
- spire/presentation/TextAlignmentType.py,sha256=vXofhDmLVx2-8_pSUNKLa-6Ljs6PleXt_UJqYhulYbQ,441
328
- spire/presentation/TextAnchorType.py,sha256=Jnbxxu_bDi1eVHv22pktKRoExfmN0YFrIKXU3fkdgmA,462
329
- spire/presentation/TextAnimation.py,sha256=bFuKxSP6_eBGQRMHsTf_8ng5FMKNCFtQsqoVwXVHL4k,2570
330
- spire/presentation/TextAnimationCollection.py,sha256=zI6n_z1qtPj0a4gM2TiLTz2JOCqOduJdooU6rEKYDBI,4878
331
- spire/presentation/TextAutofitType.py,sha256=6R-4Sz9DMVZGIyTC9vyVdY2XLBdD3tPiyXnJ5nevb4E,399
332
- spire/presentation/TextBulletType.py,sha256=YiVGiYE8Biyo0LROJn8UBn5Nv28b0PUTgwZZZBWOi7I,433
333
- spire/presentation/TextCapType.py,sha256=-zLBtgUSatGBnxmFUk_l7HddVphUBHSPdK1N534S4FM,406
334
- spire/presentation/TextCharacterProperties.py,sha256=lYZbdWcjyESTzs723gU5L5iFHBhM2dCZ5GG6CBu97so,26178
335
- spire/presentation/TextFont.py,sha256=pxdob4CCy5wfNCx8mbHnEF_vChP4U9vWk9pTxo6397I,3265
336
- spire/presentation/TextHighLightingOptions.py,sha256=C3Va9fkIKKf3Kuahar7BBX_mJr1eJKOczQA0anlieo8,2034
337
- spire/presentation/TextHorizontalOverflowType.py,sha256=EtVrPyVMbzQzJeA1MeWohjuqh9LMPiCJXHFrLOeILlk,404
338
- spire/presentation/TextLineFormat.py,sha256=M4TjD0-BTqjE2LDasoSk0vWtwiQKWqLEyWPlWPIyquE,15914
339
- spire/presentation/TextLineFormatCollection.py,sha256=R4oTxbBvVpA10OoRvbaaYZWgPz1BQhGPOyUaXeo9zbA,1981
340
- spire/presentation/TextLineFormatList.py,sha256=FTkVTR_KMFNYAFxbnpAmGhPwuDHOkpGorS1N_UttZ_E,1870
341
- spire/presentation/TextLineStyle.py,sha256=uLtDDD-olHIyNz75hM78V0sSZmz04BnWiW-adQPnbMU,447
342
- spire/presentation/TextParagraph.py,sha256=IhrmQMHOODhx195WRwO-M9SknWwagapkjPgwHvWCIuI,3456
343
- spire/presentation/TextParagraphProperties.py,sha256=n647Py60UhQyBkAVV0KNAUW_xqenTylYPmsTiutgvxs,20949
344
- spire/presentation/TextRange.py,sha256=QfzT94J808rkSD52bIoGs_-AO70zgmeOKJjP5p3SbAg,4256
345
- spire/presentation/TextRangeCollection.py,sha256=o_r4CYWPurEU0-lO2cPPkNKRwXP9-E0-BThZ7L9Oglc,2334
346
- spire/presentation/TextRangeList.py,sha256=knRONRya9SjlqunnNPQjs_vteKhBMR2PLNIyC8C3P7U,4351
347
- spire/presentation/TextShapeType.py,sha256=_t6bznvf1dJGI_4BncyIgeSR3IGfMzdrqKY0qLFUVIg,1176
348
- spire/presentation/TextStrikethroughType.py,sha256=GaJQrfSsPc0NvqB99jZY_sNszepuuvZQU-vv3gfA5A0,419
349
- spire/presentation/TextStyle.py,sha256=WSIdt0zjryDg8oi25MgtFw7o4UOQCDNJU7ZKeQoyvEY,2738
350
- spire/presentation/TextUnderlineType.py,sha256=qYmuFsxYrUwtEYtkNfivmTwvQie8yBzr9As3rbjn07o,705
351
- spire/presentation/TextVerticalOverflowType.py,sha256=CVkrk4uZANd4PBvE_cSEzNxW76-kf36VQxIUZ7YpJ7o,418
352
- spire/presentation/Theme.py,sha256=styW2p9JtAJX4_62qMgsEYIjFz70zS1mijSLZhRhaYg,3401
353
- spire/presentation/TickLabelPositionType.py,sha256=yCBdXzIptphWBh2XdM35LK1NvTTlO3nWVW0MpxJtr_U,511
354
- spire/presentation/TickMarkType.py,sha256=dQ6HmtwgaJgaDWwNU_MviffofyzkJkuzXzADg8n1HUQ,449
355
- spire/presentation/TileFlipMode.py,sha256=__aRILETh-k7s-JA8Y5EFTHgf4b-O0IacfFzYWG62rY,432
356
- spire/presentation/TimeAnimationValue.py,sha256=5g17yFcvtfYkcLCCArmmgT-zP1qrPalz_ycMPGk2LAU,2397
357
- spire/presentation/TimeAnimationValueCollection.py,sha256=2jtyhnGAFxXV7krWanlfd0yRkXqx8eD8rBk8yhJL8Eo,1930
358
- spire/presentation/TimeLine.py,sha256=rZSQEeYhc6df6YKVimhE_fWECopc2pdnfV1qLz5H_0Q,2155
359
- spire/presentation/TimeNode.py,sha256=jSeOAnpzedmDJZyQRRBt1FL6ZewLpJjYBp8ZXr5wWe4,1368
360
- spire/presentation/TimeNodeAudio.py,sha256=selvbLvgb52zvrsAmDeMJDJ5zqN91IqgI-aBmfhE_GA,3469
361
- spire/presentation/TimeNodeMedia.py,sha256=bGT99ui1vT0J4DFTs5iySRIVXaTONE5Q_sbL_U3y7xs,631
362
- spire/presentation/TimeNodePresetClassType.py,sha256=4-qLHdcG9PEoe6yVP0tJkqH8YwqPrBmeDrmeEebH7AA,453
363
- spire/presentation/TimeNodes.py,sha256=tqOl9bhEWhDtOB88CrZpz5DWQDNW4Hqo6Hr8GOwEdkk,2323
364
- spire/presentation/Timing.py,sha256=nLR_hfEAEdW57XvKDN6DrXsJzoAhP5484raqJAuw1Ag,8373
365
- spire/presentation/Transition.py,sha256=wMxDwZfnea11l3rSNeNDaF7PDSMH44ccJzVCiZ9Z-yM,694
366
- spire/presentation/TransitionCornerDirection.py,sha256=83C70P5lLc4XkZCi70287sJ65toOep2QpM24DCCluZM,443
367
- spire/presentation/TransitionDirection.py,sha256=6Chcn2arlYxndlOW8d2-rIaTf_0E4fP9QLdlK_jHAHg,398
368
- spire/presentation/TransitionEightDirection.py,sha256=Q10NOhJDyH_te2mt2EprQmkDqn_m_10ljT3vo7stTNs,496
369
- spire/presentation/TransitionFlythroughInOutDirection.py,sha256=HkRFRP37avyP87u1C4vKAqWI6D7hxHZLpvi-SdfvRgw,440
370
- spire/presentation/TransitionInOutDirection.py,sha256=iGn9FZXjbixRUsnmCGGKaZFcS3xsqHbnxM6V8gMqXVE,400
371
- spire/presentation/TransitionRevealLRDirection.py,sha256=BaTMj2mtBNyc-oGV66-fckQYGikpKliPgmbBnxV3qn4,483
372
- spire/presentation/TransitionShredInOutDirection.py,sha256=6b17OtNtKVmkSUWDuQxg5b1iNsRFlXEOWaoAF1cT5jI,446
373
- spire/presentation/TransitionSideDirectionType.py,sha256=H1u5FmW1AEMuDZlWTq9tzePswOd1COZ4_EFz_65jZa8,414
374
- spire/presentation/TransitionSoundMode.py,sha256=EowxeoC5JgZ-8Up10XfJfw-shMV4usTnSfle8v6QTzY,406
375
- spire/presentation/TransitionSpeed.py,sha256=Vp4yqx4qdNQlIxlwTqtNU3QF3NrKuEECpaG4xvNgCKw,396
376
- spire/presentation/TransitionSplitDirection.py,sha256=0WYbOHn8rVpWA7R5Qz4FOW4EbmWht7V67_HfrXh8YEA,443
377
- spire/presentation/TransitionTwoDirection.py,sha256=kubeQ-8Rlyd2wxGT1Dl4LGNNN5Uxd460QU7g7-Mvmho,386
378
- spire/presentation/TransitionType.py,sha256=kjRThIfCglKQ6sdUgTea9hu3nE7_C6qwf6tkYxGfcIY,1285
379
- spire/presentation/TreeMapLabelOption.py,sha256=nbocTT3VzIpWH0x8ZApdXjCeST__K4IHsY_k2YpjGwk,410
380
- spire/presentation/TrendlinesType.py,sha256=aIFXLM6L0LdVvaGcF9D1_4Z2_d2V7-rYknsvXL2R1sM,381
381
- spire/presentation/TriState.py,sha256=cj7cD-aAr4uVtIJ3sNzVdjjxw3JQssP3K4mhh2Gdjes,377
382
- spire/presentation/UOPReader.py,sha256=abh0IhIYHM0gV7U3E-A2Ju_2rdYz7fUbP7wdMjYzgOM,637
383
- spire/presentation/UOPWriter.py,sha256=jwLS5wHWYlDpf7STOj1HYN3iStqJovje8w_sMynStB4,637
384
- spire/presentation/VerticalTextType.py,sha256=MfKGX5hHVIfJi3RmTh1x6y2365EsEjDQj0hMTN8hQjk,538
385
- spire/presentation/VideoCollection.py,sha256=LwK_XKLu0-q44jaqrNAKP795xmdasXmd8MkOvlnzlwA,3620
386
- spire/presentation/VideoData.py,sha256=fY5MNt_mxFpTSVk7hInKR8-IQG1FoIBvlJLk8uxVfio,3008
387
- spire/presentation/VideoPlayMode.py,sha256=wPd3sQNg8NvryErc9YuyltBdLHU-sUzeIl-n42Mc0LQ,404
388
- spire/presentation/WavAudioCollection.py,sha256=P5JZFwF4kpHVF7P8t8OrVu4L4cvk7tbaIh_Lr_eQx4A,3563
389
- spire/presentation/WheelSlideTransition.py,sha256=peZrLPaBY_ex7Oa4v_f_W6L-ynqp4z37Z3IsdyDBbsE,1285
390
- spire/presentation/ZoomSlideTransition.py,sha256=242fgY8sngHntPzmFZ7Xh6shRd4TdoqN-DcPxLZzDwM,1515
391
- spire/presentation/_Presentation.py,sha256=oRxLbykcFqVCgJbC_nm-j6idaIDERh1voh9DCPRz7t0,4482
392
- spire/presentation/__init__.py,sha256=QL8I6Yyyl0ZECezmWAuWCK9WqUocPlQ7wjodQ_JfoDY,28265
393
- spire/presentation/common/Boolean.py,sha256=Gg9BuhmYb0mU10Qypjcotmi6y8eYNkkL7ZVNWJXNvXM,5019
394
- spire/presentation/common/Byte.py,sha256=HPugnfUOmO41y-YJA6dZwoF3b8-c57M6zAGWbqT0J48,6567
395
- spire/presentation/common/Char.py,sha256=86CbXciZ9KQqoD0LwEmdZjk22w7X1_rVHp-kvYT1QRw,17817
396
- spire/presentation/common/Color.py,sha256=uYBsLKFbdqYF7PXuRzB8x6qjPEwjxIqNsrAhk8ZmGdc,55510
397
- spire/presentation/common/Common.py,sha256=nXeuE9Blcv7Rd0JlAB9UQGWFiMJpf6QAmkFWAHrfmeA,5174
398
- spire/presentation/common/CultureInfo.py,sha256=nwFgmdhTMCOGauGKNoNdaNY3660-WpKh49aFExRuWxA,16924
399
- spire/presentation/common/DateTime.py,sha256=RKIQPDAtr4O9Y3G10MIkfI2vPNyqhT7N_adNcvjDooo,33867
400
- spire/presentation/common/Double.py,sha256=CpQg0MScflfa8YE9bDotLBaS75vJEu9AGDgUkXf6O4U,11578
401
- spire/presentation/common/EmfType.py,sha256=xQSrQ2suaN8NnV-S6xRmi_nQZhqhdc3CfGU8XYkWLrw,627
402
- spire/presentation/common/Encoding.py,sha256=j9n4ng3N0N0YQbxgrNW3cW9w091dVEIXPFnljhTeaCQ,28339
403
- spire/presentation/common/FontStyle.py,sha256=YC-j5qLDf9A_q7RqRYw7SHLmqRCjWnnppFtZTT33bWI,655
404
- spire/presentation/common/GraphicsUnit.py,sha256=okBnR-Rg5Plg9T5yU29P94myOUE3ykU1pg9T2Hhcgnw,687
405
- spire/presentation/common/ICollection.py,sha256=OfqKypHDwwgDGZMwQ7dho-63DZosQn82wjD5fCbhSuU,2156
406
- spire/presentation/common/IDictionary.py,sha256=Ll9QjoHss2h1-CJJbEq-dNdTsJrTE23XOkj2-_dknN4,2014
407
- spire/presentation/common/IEnumerable.py,sha256=l-bxpSofSo5DplJI1GQDFl3Xm1WM8VDx2H-96nH7dhQ,1426
408
- spire/presentation/common/IEnumerator.py,sha256=kwwgAZkTXzaChJ84-xz3JvvB8277M8AHK3k-EKyyWlQ,1713
409
- spire/presentation/common/IList.py,sha256=2vSsYwQVcQywFqmISDHC6aBmjoYbyifWA9pE0G5Nr90,4050
410
- spire/presentation/common/Int16.py,sha256=IU-1d63XdDPRgL1DaUS_SGDXwdbNqMjCM9JqDlQMtb0,7121
411
- spire/presentation/common/Int32.py,sha256=W9IAGGw2aVkgja-vPy-AvvCMc2xN3ww6x__5Uq0B88s,7527
412
- spire/presentation/common/Int64.py,sha256=hf_Pl3gYPgUoSYTmbjE7F5faIIxejyp7cxsCEv_UqK4,6627
413
- spire/presentation/common/License.py,sha256=i0tArKy5F-s5uMlsqI_xi-P6w2ZqRnRVCa2plpzUiBc,8689
414
- spire/presentation/common/PixelFormat.py,sha256=_h4oLppoWjPqFTtPsQzACFTG9vo28iggtKRdrECsDeo,1196
415
- spire/presentation/common/Point.py,sha256=fOpUybylgCqdJNvQcyQq9x8z1-hHJ8FooNn4I5KWU7g,7921
416
- spire/presentation/common/PointF.py,sha256=g4kTwcHHlB-bGzC4mKkmXZOvtpALy_kVPJ7IErMh8XY,7572
417
- spire/presentation/common/Rectangle.py,sha256=OOyoiCGZuoFbW8mXlnqygPgiixDwF-4GAtXsyxjtBj8,12335
418
- spire/presentation/common/RectangleF.py,sha256=CRdweThcLeoz9hnSyTFSK5FoPKkEPtYhanq4nd1oOw0,12497
419
- spire/presentation/common/Regex.py,sha256=G7-W5IIm1sWwbTcikUR__0p8OIeWPzRqKzahHoCqWuI,33605
420
- spire/presentation/common/RegexOptions.py,sha256=UDAXOOMJB0b-FqCmOwOFaydf3a8BG-C_L_XUGtFvmzI,771
421
- spire/presentation/common/Single.py,sha256=AUBq25j3wtaFjPgO5Vlg4mP-9KBw_8XwTsRtmhKkkYs,10848
422
- spire/presentation/common/Size.py,sha256=kBRZRJtFimWxgcyvJVJDnE5BRTITdZfB2PY0h9TBbhg,7205
423
- spire/presentation/common/SizeF.py,sha256=D2O9MvpH2xrsbS_XV5y8Hocb_PKG8aOgAc8hTK_tdns,7302
424
- spire/presentation/common/SpireObject.py,sha256=ePvUecLN97Vn2J6rHwgXIKdWbBvyGSl0QYQbexeLCk8,2161
425
- spire/presentation/common/Stream.py,sha256=EbJZRC9iFZ2oE3S-y1QgrVeJKN1WygswRoIqFyf4o0U,17377
426
- spire/presentation/common/String.py,sha256=tysKd7tPb8CtRHvaHYL2DstuwWKM_zDs_enETqFTgVs,55057
427
- spire/presentation/common/TimeSpan.py,sha256=NjKzlpCPrHvfIaK8fu0Ipcjr_eUWbR9rs5NbUDh3_-Q,25799
428
- spire/presentation/common/UInt16.py,sha256=yFB9ZzaFmXDx9yUH28t6MDeFAyRNoM5EhN3eU1aaRL0,7192
429
- spire/presentation/common/UInt32.py,sha256=DYsKvxrI7J-0ppCzPM5SCeP5rTszqUqdTPcjiwc26IU,7192
430
- spire/presentation/common/UInt64.py,sha256=cHaKw1n6DHkxngz62YPdksXxFSJPotiGEC-Q9qWnLMg,7192
431
- spire/presentation/common/__init__.py,sha256=bNRHgxUN12PGcC5IQBvqKPlFkmSu2fdc7e0qzd7Vz8E,17132
432
- spire/presentation/lib/Spire.Presentation.Base.dll,sha256=s0g5XdOOq_72e6s-zRSQRtx6UQe-ElOA1PMsCn2ywbw,51629568
433
- spire/presentation/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
434
- spire/presentation/lib/libSkiaSharp.dll,sha256=BD0b-JGZXN5fxQ4aB1J_cy8nWQjGBDvS9nZl7ZYtHY4,9605176
435
- spire_presentation-10.6.4.dist-info/METADATA,sha256=Hz0f16mspitjgMHaS2wQwN_Pq7iSFRoXWxz-OMN9z_o,8552
436
- spire_presentation-10.6.4.dist-info/WHEEL,sha256=AiyVnrmrEuW_cPqhPlarzpb5qtD8ITcBeZKvhXXgyN4,98
437
- spire_presentation-10.6.4.dist-info/top_level.txt,sha256=WxTypv85IOx5WpDWDS_HpIgu5l722KWSil7EHZwF08M,6
438
- spire_presentation-10.6.4.dist-info/RECORD,,