powerpoint 1.5 → 1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/.codeclimate.yml +9 -0
- data/.gitignore +1 -0
- data/Gemfile +1 -1
- data/lib/powerpoint.rb +3 -6
- data/lib/powerpoint/presentation.rb +37 -22
- data/lib/powerpoint/slide/intro.rb +21 -11
- data/lib/powerpoint/slide/pictorial.rb +42 -94
- data/lib/powerpoint/slide/textual.rb +20 -14
- data/lib/powerpoint/util.rb +26 -0
- data/lib/powerpoint/version.rb +1 -1
- data/lib/powerpoint/views/content_type.xml.erb +30 -0
- data/lib/powerpoint/views/intro_slide.xml.erb +74 -0
- data/lib/powerpoint/views/pictorial_rel.xml.erb +5 -0
- data/lib/powerpoint/views/pictorial_slide.xml.erb +87 -0
- data/lib/powerpoint/views/presentation.xml.erb +124 -0
- data/lib/powerpoint/views/presentation.xml.rel.erb +12 -0
- data/lib/powerpoint/views/textual_rel.xml.erb +4 -0
- data/lib/powerpoint/views/textual_slide.xml.erb +78 -0
- data/powerpoint.gemspec +4 -1
- data/samples/pptx/sample.pptx +0 -0
- data/spec/test_spec.rb +1 -2
- data/template/_rels/.rels +5 -1
- data/template/docProps/app.xml +2 -0
- data/template/docProps/core.xml +7 -0
- data/template/ppt/{media/README → _rels/.keep} +0 -0
- data/template/ppt/media/.keep +0 -0
- data/template/ppt/presProps.xml +13 -1
- data/template/ppt/slideLayouts/_rels/slideLayout1.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout10.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout11.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout2.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout3.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout4.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout5.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout6.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout7.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout8.xml.rels +0 -0
- data/template/ppt/slideLayouts/_rels/slideLayout9.xml.rels +0 -0
- data/template/ppt/slideLayouts/slideLayout1.xml +236 -1
- data/template/ppt/slideLayouts/slideLayout10.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout11.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout2.xml +164 -1
- data/template/ppt/slideLayouts/slideLayout3.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout4.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout5.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout6.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout7.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout8.xml +1 -1
- data/template/ppt/slideLayouts/slideLayout9.xml +1 -1
- data/template/ppt/slideMasters/_rels/slideMaster1.xml.rels +1 -1
- data/template/ppt/slideMasters/slideMaster1.xml +504 -1
- data/template/ppt/slides/_rels/.keep +0 -0
- data/template/ppt/tableStyles.xml +0 -0
- data/template/ppt/theme/theme1.xml +0 -0
- data/template/ppt/viewProps.xml +31 -1
- metadata +45 -15
- data/lib/powerpoint/content_type.rb +0 -14
- data/lib/powerpoint/meta.rb +0 -14
- data/lib/powerpoint/relationship.rb +0 -14
- data/lib/powerpoint/slide/relationship.rb +0 -15
- data/samples/images/sample_svg.svg +0 -69
- data/template/[Content_Types].xml +0 -32
- data/template/ppt/_rels/presentation.xml.rels +0 -2
- data/template/ppt/presentation.xml +0 -2
- data/template/ppt/slides/_rels/slide1.xml.rels +0 -2
- data/template/ppt/slides/_rels/slide2.xml.rels +0 -2
- data/template/ppt/slides/slide1.xml +0 -6
- data/template/ppt/slides/slide2.xml +0 -6
File without changes
|
File without changes
|
File without changes
|
data/template/ppt/viewProps.xml
CHANGED
@@ -1,2 +1,32 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<p:viewPr xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:
|
2
|
+
<p:viewPr 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:normalViewPr>
|
4
|
+
<p:restoredLeft sz="15608"/>
|
5
|
+
<p:restoredTop sz="94631"/>
|
6
|
+
</p:normalViewPr>
|
7
|
+
<p:slideViewPr>
|
8
|
+
<p:cSldViewPr>
|
9
|
+
<p:cViewPr varScale="1">
|
10
|
+
<p:scale>
|
11
|
+
<a:sx d="100" n="101"/>
|
12
|
+
<a:sy d="100" n="101"/>
|
13
|
+
</p:scale>
|
14
|
+
<p:origin x="1424" y="200"/>
|
15
|
+
</p:cViewPr>
|
16
|
+
<p:guideLst>
|
17
|
+
<p:guide orient="horz" pos="2160"/>
|
18
|
+
<p:guide pos="2880"/>
|
19
|
+
</p:guideLst>
|
20
|
+
</p:cSldViewPr>
|
21
|
+
</p:slideViewPr>
|
22
|
+
<p:notesTextViewPr>
|
23
|
+
<p:cViewPr>
|
24
|
+
<p:scale>
|
25
|
+
<a:sx d="100" n="100"/>
|
26
|
+
<a:sy d="100" n="100"/>
|
27
|
+
</p:scale>
|
28
|
+
<p:origin x="0" y="0"/>
|
29
|
+
</p:cViewPr>
|
30
|
+
</p:notesTextViewPr>
|
31
|
+
<p:gridSpacing cx="76200" cy="76200"/>
|
32
|
+
</p:viewPr>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: powerpoint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.6'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pythonicrubyist
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 2.13.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ! '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: rubyzip
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +80,20 @@ dependencies:
|
|
66
80
|
- - ~>
|
67
81
|
- !ruby/object:Gem::Version
|
68
82
|
version: '1'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: fastimage
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ~>
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ~>
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1'
|
69
97
|
description: A Ruby gem that can create a PowerPoint presentation.
|
70
98
|
email:
|
71
99
|
- pythonicrubyist@gmail.com
|
@@ -73,34 +101,39 @@ executables: []
|
|
73
101
|
extensions: []
|
74
102
|
extra_rdoc_files: []
|
75
103
|
files:
|
104
|
+
- .codeclimate.yml
|
76
105
|
- .gitignore
|
77
106
|
- Gemfile
|
78
107
|
- LICENSE.txt
|
79
108
|
- README.rdoc
|
80
109
|
- Rakefile
|
81
110
|
- lib/powerpoint.rb
|
82
|
-
- lib/powerpoint/content_type.rb
|
83
|
-
- lib/powerpoint/meta.rb
|
84
111
|
- lib/powerpoint/presentation.rb
|
85
|
-
- lib/powerpoint/relationship.rb
|
86
112
|
- lib/powerpoint/slide/intro.rb
|
87
113
|
- lib/powerpoint/slide/pictorial.rb
|
88
|
-
- lib/powerpoint/slide/relationship.rb
|
89
114
|
- lib/powerpoint/slide/textual.rb
|
115
|
+
- lib/powerpoint/util.rb
|
90
116
|
- lib/powerpoint/version.rb
|
117
|
+
- lib/powerpoint/views/content_type.xml.erb
|
118
|
+
- lib/powerpoint/views/intro_slide.xml.erb
|
119
|
+
- lib/powerpoint/views/pictorial_rel.xml.erb
|
120
|
+
- lib/powerpoint/views/pictorial_slide.xml.erb
|
121
|
+
- lib/powerpoint/views/presentation.xml.erb
|
122
|
+
- lib/powerpoint/views/presentation.xml.rel.erb
|
123
|
+
- lib/powerpoint/views/textual_rel.xml.erb
|
124
|
+
- lib/powerpoint/views/textual_slide.xml.erb
|
91
125
|
- powerpoint.gemspec
|
92
126
|
- samples/images/sample_gif.gif
|
93
127
|
- samples/images/sample_jpg.jpg
|
94
128
|
- samples/images/sample_png.png
|
95
|
-
- samples/images/sample_svg.svg
|
96
129
|
- samples/pptx/sample.pptx
|
97
130
|
- spec/test_spec.rb
|
98
|
-
- template/[Content_Types].xml
|
99
131
|
- template/_rels/.rels
|
100
|
-
- template/
|
101
|
-
- template/
|
132
|
+
- template/docProps/app.xml
|
133
|
+
- template/docProps/core.xml
|
134
|
+
- template/ppt/_rels/.keep
|
135
|
+
- template/ppt/media/.keep
|
102
136
|
- template/ppt/presProps.xml
|
103
|
-
- template/ppt/presentation.xml
|
104
137
|
- template/ppt/slideLayouts/_rels/slideLayout1.xml.rels
|
105
138
|
- template/ppt/slideLayouts/_rels/slideLayout10.xml.rels
|
106
139
|
- template/ppt/slideLayouts/_rels/slideLayout11.xml.rels
|
@@ -125,10 +158,7 @@ files:
|
|
125
158
|
- template/ppt/slideLayouts/slideLayout9.xml
|
126
159
|
- template/ppt/slideMasters/_rels/slideMaster1.xml.rels
|
127
160
|
- template/ppt/slideMasters/slideMaster1.xml
|
128
|
-
- template/ppt/slides/_rels
|
129
|
-
- template/ppt/slides/_rels/slide2.xml.rels
|
130
|
-
- template/ppt/slides/slide1.xml
|
131
|
-
- template/ppt/slides/slide2.xml
|
161
|
+
- template/ppt/slides/_rels/.keep
|
132
162
|
- template/ppt/tableStyles.xml
|
133
163
|
- template/ppt/theme/theme1.xml
|
134
164
|
- template/ppt/viewProps.xml
|
@@ -1,14 +0,0 @@
|
|
1
|
-
require 'zip/filesystem'
|
2
|
-
require 'fileutils'
|
3
|
-
|
4
|
-
module Powerpoint
|
5
|
-
class Powerpoint::ContentType
|
6
|
-
def initialize extract_path, sllide_number
|
7
|
-
xml = '<Override PartName="/ppt/slides/slide' + sllide_number.to_s + '.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slide+xml"/></Types>'
|
8
|
-
path = "#{extract_path}/[Content_Types].xml"
|
9
|
-
template = File.read path
|
10
|
-
template.gsub!('</Types>', xml)
|
11
|
-
File.open(path, 'w'){ |f| f << template }
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
data/lib/powerpoint/meta.rb
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
require 'zip/filesystem'
|
2
|
-
require 'fileutils'
|
3
|
-
|
4
|
-
module Powerpoint
|
5
|
-
class Powerpoint::Meta
|
6
|
-
def initialize extract_path, sllide_number
|
7
|
-
xml = '<p:sldId id="257" r:id="rId' + (sllide_number+666).to_s + '"/></p:sldIdLst>'
|
8
|
-
path = "#{extract_path}/ppt/presentation.xml"
|
9
|
-
template = File.read path
|
10
|
-
template.gsub!('</p:sldIdLst>', xml)
|
11
|
-
File.open(path, 'w'){ |f| f << template }
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
require 'zip/filesystem'
|
2
|
-
require 'fileutils'
|
3
|
-
|
4
|
-
module Powerpoint
|
5
|
-
class Powerpoint::Relationship
|
6
|
-
def initialize extract_path, sllide_number
|
7
|
-
xml = '<Relationship Id="rId'+ (sllide_number+666).to_s + '" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide" Target="slides/slide' + sllide_number.to_s + '.xml"/></Relationships>'
|
8
|
-
path = "#{extract_path}/ppt/_rels/presentation.xml.rels"
|
9
|
-
template = File.read path
|
10
|
-
template.gsub!('</Relationships>', xml)
|
11
|
-
File.open(path, 'w'){ |f| f << template }
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
require 'zip/filesystem'
|
2
|
-
require 'fileutils'
|
3
|
-
|
4
|
-
module Powerpoint
|
5
|
-
module Slide
|
6
|
-
class Powerpoint::Slide::Relationship
|
7
|
-
def initialize extract_path, slide_number
|
8
|
-
xml = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
9
|
-
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout" Target="../slideLayouts/slideLayout2.xml"/></Relationships>'
|
10
|
-
path = "#{extract_path}/ppt/slides/_rels/slide#{slide_number}.xml.rels"
|
11
|
-
File.open(path, 'w'){ |f| f << xml }
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
@@ -1,69 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4
|
-
xmlns:cc="http://web.resource.org/cc/"
|
5
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
8
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
9
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
-
width="600"
|
11
|
-
height="600"
|
12
|
-
id="svg2"
|
13
|
-
sodipodi:version="0.32"
|
14
|
-
inkscape:version="0.45.1"
|
15
|
-
sodipodi:docname="Example.svg"
|
16
|
-
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
17
|
-
sodipodi:docbase="/home/gmaxwell"
|
18
|
-
version="1.0">
|
19
|
-
<metadata
|
20
|
-
id="metadata9">
|
21
|
-
<rdf:RDF>
|
22
|
-
<cc:Work
|
23
|
-
rdf:about="">
|
24
|
-
<dc:format>image/svg+xml</dc:format>
|
25
|
-
<dc:type
|
26
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
27
|
-
</cc:Work>
|
28
|
-
</rdf:RDF>
|
29
|
-
</metadata>
|
30
|
-
<sodipodi:namedview
|
31
|
-
inkscape:window-height="620"
|
32
|
-
inkscape:window-width="814"
|
33
|
-
inkscape:pageshadow="2"
|
34
|
-
inkscape:pageopacity="0.0"
|
35
|
-
guidetolerance="10.0"
|
36
|
-
gridtolerance="10.0"
|
37
|
-
objecttolerance="10.0"
|
38
|
-
borderopacity="1.0"
|
39
|
-
bordercolor="#666666"
|
40
|
-
pagecolor="#ffffff"
|
41
|
-
id="base"
|
42
|
-
width="600px"
|
43
|
-
height="600px"
|
44
|
-
inkscape:zoom="0.35974058"
|
45
|
-
inkscape:cx="50"
|
46
|
-
inkscape:cy="519.04966"
|
47
|
-
inkscape:window-x="483"
|
48
|
-
inkscape:window-y="101"
|
49
|
-
inkscape:current-layer="svg2" />
|
50
|
-
<defs
|
51
|
-
id="defs16" />
|
52
|
-
<g
|
53
|
-
id="g2161"
|
54
|
-
transform="matrix(6.3951354,0,0,6.3951354,-22.626246,-7.1082509)">
|
55
|
-
<path
|
56
|
-
nodetypes="ccccccccccccccccccccccccccccccccccccccc"
|
57
|
-
id="flowRoot1882"
|
58
|
-
d="M 36.009766,9.2505083 C 37.739295,9.4211273 38.305879,11.470697 38.052581,12.935049 C 37.346266,16.153899 36.316821,19.51466 35.445405,22.717701 C 36.091666,24.812224 31.712284,24.008877 33.219932,22.315459 C 34.817041,18.411202 36.011404,13.498336 36.009766,9.2505083 z M 36.009766,2.9926958 C 38.210311,1.2242088 40.996268,9.172757 33.911571,6.1534847 C 33.884619,5.7603019 36.096289,3.3869447 36.009766,2.9926958 z M 41.371094,15.871601 C 41.371094,13.66457 41.371094,11.457539 41.371094,9.250508 C 43.180621,9.4257387 43.963014,11.704559 43.286137,13.215517 C 42.859084,15.059792 42.939241,17.3996 44.601487,18.625335 C 46.710544,19.683477 49.38774,17.353112 48.803268,15.118437 C 48.93196,13.406538 48.236292,11.613848 48.968862,9.9690415 C 51.055097,9.6500357 51.500677,12.487155 50.544985,13.844747 C 50.070023,15.309708 50.857452,16.781898 50.672344,18.239432 C 50.279615,19.94056 48.418404,20.00023 47.0225,20.071868 C 45.478489,20.38194 43.516835,20.791368 42.361947,19.38874 C 41.522514,18.444089 41.211274,17.107671 41.371094,15.871601 z M 61.224609,9.5727739 C 60.41978,11.557552 58.100804,10.235616 56.62767,10.571551 C 53.836862,14.393611 60.920038,13.513667 61.8085,17.011648 C 61.85613,18.933747 60.028359,20.587389 58.129091,20.443312 C 56.904487,20.607229 54.609204,20.982393 54.417879,19.267622 C 55.280609,17.508269 57.336359,19.528803 58.633111,18.8463 C 60.403141,17.99081 59.402232,15.555325 57.728781,15.321475 C 56.550115,14.98135 55.091813,15.225439 54.254747,14.112764 C 53.017669,12.881167 53.392132,10.733148 54.736719,9.7413252 C 56.619172,8.3307396 59.170326,8.9535067 61.224609,9.5727739 z M 66.458984,6.1450396 C 65.368126,7.6333334 67.348936,9.9531574 68.987229,9.0948979 C 69.978133,11.042503 66.524641,10.777931 66.473495,12.430992 C 64.443605,16.101814 68.48273,18.623426 67.571657,20.417528 C 65.440858,20.26155 64.324307,17.844452 64.577433,15.919357 C 64.70847,14.408586 65.055107,12.79361 64.322961,11.373941 C 63.786422,9.5475192 64.150419,7.1452655 65.954233,6.1552477 L 66.206043,6.1203323 L 66.458984,6.1450396 L 66.458984,6.1450396 z " />
|
59
|
-
<path
|
60
|
-
nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
|
61
|
-
id="flowRoot1890"
|
62
|
-
d="M 10.867188,44.877953 C 6.2812618,42.124849 5.2205914,52.366268 10.409215,49.892431 C 12.389385,49.295568 14.988045,43.912658 10.867188,44.877953 z M 15.167969,43.987328 C 14.919826,46.33724 16.617756,52.554202 12.298734,50.536918 C 9.8041142,52.312916 6.0580855,52.958674 4.5023123,49.583386 C 2.6350454,45.257322 7.3033103,42.298712 11.046443,43.361059 C 15.247185,41.320786 9.4930286,38.338264 7.1068792,40.322138 C 3.4374421,40.01388 7.406407,37.201407 9.3495087,37.962912 C 12.44212,37.877788 15.556534,40.380131 15.171751,43.648912 L 15.169638,43.83797 L 15.167969,43.987328 z M 30.53125,43.553734 C 29.638794,45.911558 32.49467,50.463872 28.779999,51.070944 C 26.888088,47.702306 30.931621,41.190257 25.58365,40.046147 C 20.73931,40.312798 21.252194,45.910871 22.001439,49.154066 C 21.84253,51.828309 18.790577,51.39256 19.585585,48.673738 C 19.851829,45.693864 18.285332,39.630301 20.986983,38.702911 C 23.508461,40.80889 25.761847,35.731906 28.452459,38.686226 C 29.921454,39.793194 30.827618,41.709992 30.53125,43.553734 z M 38.807,49.770223 C 42.369034,50.768974 44.523344,46.328688 43.700521,43.358983 C 40.402775,35.546453 32.491199,44.344131 38.807,49.770223 z M 39.941406,38.034203 C 52.085872,39.705642 43.204854,59.098342 34.688722,48.642968 C 32.591886,44.778031 34.383109,38.440132 39.291369,38.051827 L 39.941406,38.034203 L 39.941406,38.034203 z M 51.660156,34.624046 C 49.815978,37.850583 54.789459,38.666222 55.83437,39.23566 C 54.140746,40.715733 50.093061,40.12158 51.562461,43.76212 C 51.004096,46.980523 52.486847,50.037723 55.670614,50.54595 C 53.547788,53.782616 48.41793,50.035495 49.349973,46.519692 C 50.339877,43.686471 48.78131,40.671166 48.467256,38.48357 C 51.099926,37.413599 47.886512,33.32283 51.660156,34.624046 z M 69.859375,43.553734 C 68.966918,45.911557 71.822794,50.463872 68.108124,51.070944 C 66.216214,47.702306 70.259746,41.190256 64.911775,40.046145 C 60.222418,40.285904 60.439194,45.757728 61.367942,48.953683 C 60.705448,53.064855 57.788626,49.900134 58.838379,47.289738 C 58.969709,43.381174 59.006437,39.455087 58.607404,35.565714 C 59.356025,31.632413 62.368269,34.68013 61.01352,37.194316 C 60.38417,39.302538 61.469087,40.653476 62.996248,38.474829 C 66.202089,36.826154 70.863269,39.826451 69.859375,43.553734 z M 85.410156,44.374046 C 83.244849,47.905533 76.447085,42.456344 75.976013,47.444052 C 76.913541,51.724548 83.275324,48.726196 84.393639,50.133773 C 82.109855,53.525123 76.421339,51.860111 74.285335,49.01336 C 71.258247,44.729984 74.614013,37.166516 80.254289,37.96756 C 83.286958,38.284495 85.833914,41.310745 85.410156,44.374046 z M 83.253906,43.741234 C 84.431319,39.039614 74.594812,38.687325 76.291886,43.335226 C 78.284783,44.796048 81.032856,43.090943 83.253906,43.741234 z M 96.554688,40.366234 C 93.290612,38.6882 90.622217,42.519635 90.728522,45.492665 C 90.881925,47.333676 92.330286,52.144465 89.028751,50.905988 C 88.95673,46.763963 88.353312,42.447207 89.31721,38.336643 C 91.040471,38.503437 92.207514,40.668181 93.421468,38.208298 C 94.902478,37.44973 97.690944,38.263668 96.554688,40.366234 z " />
|
63
|
-
<path
|
64
|
-
style="fill:#ff0000"
|
65
|
-
nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccc"
|
66
|
-
id="flowRoot1898"
|
67
|
-
d="M 17.026327,63.789847 C 0.7506376,64.058469 13.88279,66.387154 13.113883,69.323258 C 8.0472417,70.287093 3.5936285,63.565714 6.8090451,59.370548 C 8.7591553,55.717791 15.269922,55.198361 16.902068,59.393261 C 17.532581,60.758947 17.628237,62.396589 17.026327,63.789847 z M 15.306463,62.656109 C 18.852566,58.713773 7.6543584,56.609143 10.765803,61.304742 C 12.124789,62.217715 13.961359,61.705342 15.306463,62.656109 z M 31.307931,62.391383 C 27.130518,63.524026 24.669863,68.663004 27.470717,72.229472 C 25.946657,74.052316 24.253697,71.076237 24.857281,69.636909 C 23.737444,67.038428 17.399862,72.254246 19.386636,68.888657 C 23.159719,67.551193 22.398496,63.711301 22.06067,60.848671 C 24.064085,60.375294 24.370376,65.772689 27.167918,63.326048 C 28.350126,62.546369 29.927362,61.067531 31.307931,62.391383 z M 37.66875,70.598623 C 33.467314,66.62264 32.517064,77.972723 37.30626,74.466636 C 38.742523,73.853608 40.55904,70.38932 37.66875,70.598623 z M 41.677321,70.973131 C 42.340669,75.308182 36.926157,78.361257 33.331921,76.223155 C 29.43435,74.893988 30.618698,67.677232 35.003806,68.567885 C 37.137393,70.592854 42.140265,67.002221 37.656192,66.290007 C 35.242233,65.914214 35.166503,62.640757 38.036954,63.926404 C 40.847923,64.744926 43.227838,68.124735 41.677321,70.973131 z M 62.379099,76.647079 C 62.007404,78.560417 61.161437,84.034535 58.890565,82.010019 C 59.769679,79.039958 62.536382,72.229115 56.947899,72.765789 C 53.790416,73.570863 54.908257,80.968388 51.529286,79.496859 C 51.707831,76.559817 55.858125,71.896837 50.8321,70.678504 C 45.898113,69.907818 47.485944,75.735824 45.286883,78.034703 C 42.916393,76.333396 45.470823,71.647155 46.624124,69.414735 C 50.919507,67.906486 63.618534,70.878704 62.379099,76.647079 z M 66.426447,83.84905 C 67.616398,85.777591 62.114624,94.492698 62.351124,90.31711 C 63.791684,86.581961 65.730376,78.000636 67.391891,74.85575 C 71.027815,73.781175 76.383067,75.350289 76.591972,79.751898 C 77.048545,83.793048 73.066803,88.429945 68.842187,86.765936 C 67.624386,86.282034 66.56741,85.195132 66.426447,83.84905 z M 74.086569,81.803435 C 76.851893,78.050524 69.264402,74.310256 67.560734,78.378191 C 65.893402,80.594099 67.255719,83.775746 69.700555,84.718558 C 72.028708,85.902224 73.688639,83.888662 74.086569,81.803435 z M 82.318799,73.124577 C 84.30523,75.487059 81.655015,88.448086 78.247183,87.275736 C 78.991935,82.387828 81.291029,77.949394 82.318799,73.124577 z M 95.001985,87.684695 C 78.726298,87.953319 91.858449,90.281999 91.089542,93.218107 C 86.0229,94.18194 81.569287,87.460562 84.784701,83.265394 C 86.734814,79.612637 93.245582,79.09321 94.877729,83.28811 C 95.508245,84.653796 95.603892,86.291438 95.001985,87.684695 z M 93.282122,86.550957 C 96.828223,82.608621 85.630017,80.503993 88.741461,85.199592 C 90.100447,86.112565 91.937018,85.600192 93.282122,86.550957 z " />
|
68
|
-
</g>
|
69
|
-
</svg>
|
@@ -1,32 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
|
3
|
-
<Default Extension="jpeg" ContentType="image/jpeg" />
|
4
|
-
<Default Extension="gif" ContentType="image/gif" />
|
5
|
-
<Default Extension="jpg" ContentType="image/jpeg" />
|
6
|
-
<Default Extension="png" ContentType="image/png" />
|
7
|
-
<Default Extension="svg" ContentType="image/svg+xml" />
|
8
|
-
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" />
|
9
|
-
<Default Extension="xml" ContentType="application/xml" />
|
10
|
-
<Override PartName="/ppt/presentation.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml" />
|
11
|
-
<Override PartName="/ppt/slideMasters/slideMaster1.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml" />
|
12
|
-
<Override PartName="/ppt/slides/slide1.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slide+xml" />
|
13
|
-
<Override PartName="/ppt/slides/slide2.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slide+xml" />
|
14
|
-
<Override PartName="/ppt/presProps.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.presProps+xml" />
|
15
|
-
<Override PartName="/ppt/viewProps.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml" />
|
16
|
-
<Override PartName="/ppt/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml" />
|
17
|
-
<Override PartName="/ppt/tableStyles.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml" />
|
18
|
-
<Override PartName="/ppt/slideLayouts/slideLayout1.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
19
|
-
<Override PartName="/ppt/slideLayouts/slideLayout2.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
20
|
-
<Override PartName="/ppt/slideLayouts/slideLayout3.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
21
|
-
<Override PartName="/ppt/slideLayouts/slideLayout4.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
22
|
-
<Override PartName="/ppt/slideLayouts/slideLayout5.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
23
|
-
<Override PartName="/ppt/slideLayouts/slideLayout6.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
24
|
-
<Override PartName="/ppt/slideLayouts/slideLayout7.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
25
|
-
<Override PartName="/ppt/slideLayouts/slideLayout8.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
26
|
-
<Override PartName="/ppt/slideLayouts/slideLayout9.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
27
|
-
<Override PartName="/ppt/slideLayouts/slideLayout10.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
28
|
-
<Override PartName="/ppt/slideLayouts/slideLayout11.xml" ContentType="application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml" />
|
29
|
-
<Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml" />
|
30
|
-
<Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" />
|
31
|
-
<Override PartName="/docProps/custom.xml" ContentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" />
|
32
|
-
</Types>
|
@@ -1,2 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide" Target="slides/slide2.xml"/><Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/tableStyles" Target="tableStyles.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide" Target="slides/slide1.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideMaster" Target="slideMasters/slideMaster1.xml"/><Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/viewProps" Target="viewProps.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/presProps" Target="presProps.xml"/></Relationships>
|
@@ -1,2 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<p:presentation xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main" saveSubsetFonts="1"><p:sldMasterIdLst><p:sldMasterId id="2147483648" r:id="rId1"/></p:sldMasterIdLst><p:sldIdLst><p:sldId id="256" r:id="rId2"/><p:sldId id="257" r:id="rId3"/></p:sldIdLst><p:sldSz cx="9144000" cy="6858000" type="screen4x3"/><p:notesSz cx="6858000" cy="9144000"/><p:defaultTextStyle><a:defPPr><a:defRPr lang="en-US"/></a:defPPr><a:lvl1pPr marL="0" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl1pPr><a:lvl2pPr marL="457200" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl2pPr><a:lvl3pPr marL="914400" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl3pPr><a:lvl4pPr marL="1371600" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl4pPr><a:lvl5pPr marL="1828800" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl5pPr><a:lvl6pPr marL="2286000" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl6pPr><a:lvl7pPr marL="2743200" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl7pPr><a:lvl8pPr marL="3200400" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl8pPr><a:lvl9pPr marL="3657600" algn="l" defTabSz="914400" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1"><a:defRPr sz="1800" kern="1200"><a:solidFill><a:schemeClr val="tx1"/></a:solidFill><a:latin typeface="+mn-lt"/><a:ea typeface="+mn-ea"/><a:cs typeface="+mn-cs"/></a:defRPr></a:lvl9pPr></p:defaultTextStyle></p:presentation>
|
@@ -1,2 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout" Target="../slideLayouts/slideLayout1.xml"/></Relationships>
|
@@ -1,2 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout" Target="../slideLayouts/slideLayout2.xml"/></Relationships>
|
@@ -1,6 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<p:sld xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main"><p:cSld><p:spTree><p:nvGrpSpPr><p:cNvPr id="1" name=""/><p:cNvGrpSpPr/><p:nvPr/></p:nvGrpSpPr><p:grpSpPr><a:xfrm><a:off x="0" y="0"/><a:ext cx="0" cy="0"/><a:chOff x="0" y="0"/><a:chExt cx="0" cy="0"/></a:xfrm></p:grpSpPr><p:sp><p:nvSpPr><p:cNvPr id="2" name="Title 1"/><p:cNvSpPr><a:spLocks noGrp="1"/></p:cNvSpPr><p:nvPr><p:ph type="ctrTitle"/></p:nvPr></p:nvSpPr><p:spPr/><p:txBody><a:bodyPr/><a:lstStyle/>
|
3
|
-
PRESENTATION_TITLE_PACEHOLDER
|
4
|
-
</p:txBody></p:sp><p:sp><p:nvSpPr><p:cNvPr id="3" name="Subtitle 2"/><p:cNvSpPr><a:spLocks noGrp="1"/></p:cNvSpPr><p:nvPr><p:ph type="subTitle" idx="1"/></p:nvPr></p:nvSpPr><p:spPr/><p:txBody><a:bodyPr/><a:lstStyle/>
|
5
|
-
PRESENTATION_SUBTITLE_PACEHOLDER
|
6
|
-
</p:txBody></p:sp></p:spTree><p:extLst><p:ext uri="{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}"><p14:creationId xmlns:p14="http://schemas.microsoft.com/office/powerpoint/2010/main" val="2348763462"/></p:ext></p:extLst></p:cSld><p:clrMapOvr><a:masterClrMapping/></p:clrMapOvr></p:sld>
|
@@ -1,6 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<p:sld xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main"><p:cSld><p:spTree><p:nvGrpSpPr><p:cNvPr id="1" name=""/><p:cNvGrpSpPr/><p:nvPr/></p:nvGrpSpPr><p:grpSpPr><a:xfrm><a:off x="0" y="0"/><a:ext cx="0" cy="0"/><a:chOff x="0" y="0"/><a:chExt cx="0" cy="0"/></a:xfrm></p:grpSpPr><p:sp><p:nvSpPr><p:cNvPr id="2" name="Title 1"/><p:cNvSpPr><a:spLocks noGrp="1"/></p:cNvSpPr><p:nvPr><p:ph type="title"/></p:nvPr></p:nvSpPr><p:spPr/><p:txBody><a:bodyPr/><a:lstStyle/>
|
3
|
-
SLIDE_TITLE_PACEHOLDER
|
4
|
-
</p:txBody></p:sp><p:sp><p:nvSpPr><p:cNvPr id="3" name="Content Placeholder 2"/><p:cNvSpPr><a:spLocks noGrp="1"/></p:cNvSpPr><p:nvPr><p:ph idx="1"/></p:nvPr></p:nvSpPr><p:spPr/><p:txBody><a:bodyPr/><a:lstStyle/>
|
5
|
-
CONTENT_PACEHOLDER
|
6
|
-
</p:txBody></p:sp></p:spTree><p:extLst><p:ext uri="{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}"><p14:creationId xmlns:p14="http://schemas.microsoft.com/office/powerpoint/2010/main" val="4058324642"/></p:ext></p:extLst></p:cSld><p:clrMapOvr><a:masterClrMapping/></p:clrMapOvr></p:sld>
|