diff --git a/_data/sidebar_doc.yml b/_data/sidebar_doc.yml
index 62e99c1..913985e 100644
--- a/_data/sidebar_doc.yml
+++ b/_data/sidebar_doc.yml
@@ -85,6 +85,13 @@ entries:
product: all
version: all
+ - title: WebStorm Text Editor
+ url: /doc_webstorm_text_editor.html
+ audience: writers, designers
+ platform: all
+ product: all
+ version: all
+
- title: Series
url: /doc_series.html
audience: writers, designers
@@ -99,6 +106,7 @@ entries:
product: all
version: all
+
- title: Navigation
audience: writers, designers
platform: all
diff --git a/_includes/custom/doc/customMenu.html b/_includes/custom/doc/customMenu.html
index 719d7b9..19921bb 100644
--- a/_includes/custom/doc/customMenu.html
+++ b/_includes/custom/doc/customMenu.html
@@ -3,9 +3,9 @@
Custom Menu
diff --git a/_includes/custom/doc/links_doc.html b/_includes/custom/doc/links_doc.html
index c30754c..1381d98 100644
--- a/_includes/custom/doc/links_doc.html
+++ b/_includes/custom/doc/links_doc.html
@@ -121,3 +121,5 @@
{% capture doc_iterm_profiles %}iTerm profiles{% endcapture %}
{% capture doc_iterm_profiles_i %}{% endcapture %}
+{% capture doc_webstorm_text_editor %}WebStorm Text Editor{% endcapture %}
+{% capture doc_webstorm_text_editor %}{% endcapture %}
\ No newline at end of file
diff --git a/configs/config_designers.yml b/configs/config_designers.yml
index ebcb715..3be3aa7 100644
--- a/configs/config_designers.yml
+++ b/configs/config_designers.yml
@@ -4,7 +4,7 @@ audience: designers
product: all
platform: all
version: all
-destination: ../designers
+destination: ../doc_designers
topnav_title: Jekyll Documentation Theme
homepage_title: Jekyll Documentation Theme — Designers
site_title: Jekyll Documentation Theme — Designers
diff --git a/configs/config_designers_pdf.yml b/configs/config_designers_pdf.yml
index 1aadcc9..9db5f22 100644
--- a/configs/config_designers_pdf.yml
+++ b/configs/config_designers_pdf.yml
@@ -1,6 +1,6 @@
-destination: /Applications/XAMPP/xamppfiles/htdocs/documentation-theme-jekyll/designers-pdf
+destination: ../doc_designers-pdf
url: "http://127.0.0.1:4002"
-baseurl: "/designers"
+baseurl: "/doc_designers"
port: 4002
print: true
print_title: Jekyll Documentation Theme for Designers
diff --git a/configs/config_writers.yml b/configs/config_writers.yml
index ced7005..8efc252 100644
--- a/configs/config_writers.yml
+++ b/configs/config_writers.yml
@@ -4,7 +4,7 @@ audience: writers
product: all
platform: all
version: all
-destination: ../writers
+destination: ../doc_writers
topnav_title: Jekyll Documentation Theme
homepage_title: Jekyll Documentation Theme — Writers
site_title: Jekyll Documentation Theme — Writers
diff --git a/configs/config_writers_pdf.yml b/configs/config_writers_pdf.yml
index 90d47d3..0ed30da 100644
--- a/configs/config_writers_pdf.yml
+++ b/configs/config_writers_pdf.yml
@@ -1,6 +1,6 @@
-destination: /Applications/XAMPP/xamppfiles/htdocs/documentation-theme-jekyll/writers-pdf
+destination: ../doc_writers-pdf
url: "http://127.0.0.1:4004"
-baseurl: "/writers"
+baseurl: "/doc_writers"
port: 4004
print: true
print_title: Jekyll Documentation Theme for Writers
diff --git a/doc_configuration_settings.md b/doc_configuration_settings.md
index 52af06a..b552b4a 100644
--- a/doc_configuration_settings.md
+++ b/doc_configuration_settings.md
@@ -20,11 +20,10 @@ Some of the options you can set in the configuration file determine theme settin
Note that you can define arbitrary key-value pairs in the configuration file, and then you can access them through `site.yourkey`, where `yourkey` is the name of the key. However, the values in these tables are used to control different aspects of the theme and are not arbitrary key-value pairs.
-## Configuration settings
+## Configuration settings for web outputs
| Field | Required? | Description |
|-------|-----------|-----------|
- |
| **project** | Required| A unique name for the project. The \_includes/custom/{project}/conditions.html file will use this project name to determine what sidebar and top nav data files to use. Make this value unique. |
| **audience** | Required | The audience for the output. Each entry in \_data/sidebar_doc.yml and \_data/topnav_doc.yml needs to have an audience attribute that matches the value here in order for the sidebar or topnav item to be included.|
| **platform** | Required | The platform for the output. See additional information in audience.
@@ -88,6 +87,37 @@ The file in \_includes/custom/doc/conditions.html contains a project setting and
It's a little complicated to describe, but it works. Once you configure your project correctly, you don't even think about how the theme is processing all of this on the backend.
+## Configuration settings for PDF output
+
+The PDF configuration files build on all the settings in the web configuration files, but they add a few more options.
+
+When you build the PDF output (such as for the writers output), the command will look like this:
+
+```
+jekyll serve --detach --config configs/config_writers.yml,configs/config_writers_pdf.yml
+```
+
+First Jekyll will read the config_writers.yml file, and then Jekyll will read the config_writers_pdf.yml file.
+
+More detail about generating PDFs is provided in {{doc_generating_pdfs}}, but the configuration settings used for the PDFs are described here.
+
+The process for creating PDFs relies on two steps:
+
+1. First you build a printer-friendly web version of the content.
+2. Then you run PrinceXML to get all the printer-friendly web pages and package them into a PDF.
+
+Thus, you actually build a web version for the PDF first before generating the PDF. (You might be able to remove this first step by doing more coding, but I found it easier just to strip out components I didn't want included and make other adjustments.)
+
+| Field | Required? | Description |
+|-------|-----------|-----------|
+| destination | Where the PDF web version should be served so that Prince XML can find it. By default, this is in ../doc_designers-pdf, so just one level above where your project is. |
+| url | The URL where the files can be viewed. This is `http://127.0.0.1:4002` in the sample theme files for the designers output. Prince XML requires a URL to access the file. (My attempts to use local file paths didn't work.) |
+| baseurl | The subdirectory after the url where the content is stored. In the sample theme files for the designers output, this is `/designers`. |
+| port | The port required by the preview server. |
+| print | A boolean so that you can construct conditional statements in your content to check whether print is true or not. This setting can help you filter out content that doesn't fit well into a PDF (such as dynamic web elements). |
+| print_title | The title for the PDF. In the sample theme files for designers output, the print title is "Jekyll Documentation Theme for Designers"|
+| print_subtitle | The subtitle for the PDF. In the sample theme files, the subtitle is "version 3.0." |
+| defaults | See the sample settings in the config_designers_pdf.yml file. The only difference between this file and config_designers.yml is that the layout used for pages is `page_print` instead of `page`. The `page_print` layout also used `head_print` instead of `head`. This layout strips out components such as the sidebar and top navigation. It also leverages printstyles.css and includes some JavaScript for Prince XML. |
diff --git a/doc_designers_pdf.pdf b/doc_designers_pdf.pdf
index 3a47738..f084273 100644
--- a/doc_designers_pdf.pdf
+++ b/doc_designers_pdf.pdf
@@ -4,68 +4,68 @@
1 0 obj
<>
-endobj
-
-139 0 obj
-<>
+/Outlines 139 0 R>>
endobj
140 0 obj
<>
endobj
141 0 obj
-<>
endobj
+142 0 obj
+<>
+endobj
+
185 0 obj
<>
endobj
186 0 obj
<>
endobj
187 0 obj
<>
endobj
188 0 obj
<>
endobj
-142 0 obj
+143 0 obj
<>
@@ -73,32 +73,32 @@ endobj
189 0 obj
<>
endobj
190 0 obj
<>
endobj
191 0 obj
<>
endobj
-143 0 obj
+144 0 obj
<>
@@ -106,1622 +106,1603 @@ endobj
192 0 obj
<>
endobj
193 0 obj
<>
endobj
194 0 obj
-<>
endobj
195 0 obj
-<>
endobj
196 0 obj
-<>
-endobj
-
-144 0 obj
-<>
+<>
endobj
197 0 obj
-<>
+/Dest [18 0 R /XYZ 0 290 0]
+/Prev 196 0 R>>
endobj
145 0 obj
-<>
-endobj
-
-146 0 obj
-<>
+/Count 6>>
endobj
198 0 obj
-<>
+<>
+endobj
+
+146 0 obj
+<>
+endobj
+
+147 0 obj
+<>
endobj
199 0 obj
-<>
endobj
200 0 obj
-<>
endobj
201 0 obj
-<>
endobj
202 0 obj
-<>
endobj
203 0 obj
-<>
endobj
204 0 obj
-<>
endobj
205 0 obj
-<>
endobj
206 0 obj
-<>
endobj
207 0 obj
-<>
endobj
208 0 obj
-<>
endobj
209 0 obj
-<>
endobj
210 0 obj
-<>
endobj
211 0 obj
-<>
endobj
212 0 obj
-<>
-endobj
-
-147 0 obj
-<>
+<>
endobj
213 0 obj
-<>
+/Dest [36 0 R /XYZ 0 732 0]
+/Prev 212 0 R>>
+endobj
+
+148 0 obj
+<>
endobj
214 0 obj
-<>
endobj
215 0 obj
-<>
endobj
216 0 obj
-<>
endobj
217 0 obj
-<>
-endobj
-
-148 0 obj
-<>
+<>
endobj
218 0 obj
-<>
+/Dest [39 0 R /XYZ 0 513 0]
+/Prev 217 0 R>>
+endobj
+
+149 0 obj
+<>
endobj
219 0 obj
-<>
endobj
220 0 obj
-<>
endobj
221 0 obj
-<>
-endobj
-
-149 0 obj
-<>
+<>
endobj
222 0 obj
-<>
+/Dest [40 0 R /XYZ 0 226 0]
+/Prev 221 0 R>>
+endobj
+
+150 0 obj
+<>
endobj
223 0 obj
-<>
endobj
224 0 obj
-<>
endobj
225 0 obj
-<>
-endobj
-
-150 0 obj
-<>
+<>
endobj
226 0 obj
-<>
+/Dest [42 0 R /XYZ 0 686 0]
+/Prev 225 0 R>>
+endobj
+
+151 0 obj
+<>
endobj
227 0 obj
-<>
endobj
228 0 obj
-<>
-endobj
-
-151 0 obj
-<>
+<>
endobj
229 0 obj
-<>
+/Dest [45 0 R /XYZ 0 732 0]
+/Prev 228 0 R>>
+endobj
+
+152 0 obj
+<>
endobj
230 0 obj
-<>
endobj
231 0 obj
-<>
endobj
232 0 obj
-<>
-endobj
-
-152 0 obj
-<>
+<>
endobj
233 0 obj
-<>
+/Dest [48 0 R /XYZ 0 426 0]
+/Prev 232 0 R>>
+endobj
+
+153 0 obj
+<>
endobj
234 0 obj
-<>
endobj
235 0 obj
-<>
endobj
236 0 obj
-<>
endobj
237 0 obj
-<>
endobj
238 0 obj
-<>
endobj
239 0 obj
-<>
-endobj
-
-153 0 obj
-<>
-endobj
-
-154 0 obj
-<>
+<>
endobj
240 0 obj
-<>
+<>
+endobj
+
+154 0 obj
+<>
+endobj
+
+155 0 obj
+<>
endobj
241 0 obj
-<>
endobj
242 0 obj
-<>
-endobj
-
-155 0 obj
-<>
+<>
endobj
243 0 obj
-<>
+/Dest [57 0 R /XYZ 0 274 0]
+/Prev 242 0 R>>
+endobj
+
+156 0 obj
+<>
endobj
244 0 obj
-<>
endobj
245 0 obj
-<>
endobj
246 0 obj
-<>
-endobj
-
-156 0 obj
-<>
+<>
endobj
247 0 obj
-<>
-endobj
-
-248 0 obj
-<>
+/Dest [62 0 R /XYZ 0 715 0]
+/Prev 246 0 R>>
endobj
157 0 obj
-<>
+/First 244 0 R
+/Last 247 0 R
+/Count 4>>
endobj
-158 0 obj
-<>
+248 0 obj
+<>
endobj
249 0 obj
-<>
+<>
+endobj
+
+158 0 obj
+<>
+endobj
+
+159 0 obj
+<>
endobj
250 0 obj
-<>
endobj
251 0 obj
-<>
endobj
252 0 obj
-<>
endobj
253 0 obj
-<>
endobj
254 0 obj
-<>
-endobj
-
-159 0 obj
-<>
+<>
endobj
255 0 obj
-<>
+/Dest [68 0 R /XYZ 0 477 0]
+/Prev 254 0 R>>
+endobj
+
+160 0 obj
+<>
endobj
256 0 obj
-<>
endobj
257 0 obj
-<>
endobj
258 0 obj
-<>
endobj
259 0 obj
-<>
endobj
260 0 obj
-<>
endobj
261 0 obj
-<>
endobj
262 0 obj
-<>
endobj
263 0 obj
-<>
endobj
264 0 obj
-<>
-endobj
-
-160 0 obj
-<>
-endobj
-
-161 0 obj
-<>
+<>
endobj
265 0 obj
-<>
+<>
endobj
-266 0 obj
-<>
+161 0 obj
+<>
endobj
162 0 obj
-<>
+/Next 163 0 R>>
+endobj
+
+266 0 obj
+<>
endobj
267 0 obj
-<>
+/Dest [76 0 R /XYZ 0 388 0]
+/Prev 266 0 R>>
endobj
163 0 obj
-<>
+/Count 2>>
endobj
268 0 obj
-<>
+/Dest [81 0 R /XYZ 0 669 0]>>
+endobj
+
+164 0 obj
+<>
endobj
269 0 obj
-<>
endobj
270 0 obj
-<>
endobj
271 0 obj
-<>
endobj
272 0 obj
-<>
endobj
273 0 obj
-<>
endobj
274 0 obj
-<>
endobj
275 0 obj
-<>
-endobj
-
-164 0 obj
-<>
+<>
endobj
276 0 obj
-<>
+/Dest [85 0 R /XYZ 0 431 0]
+/Prev 275 0 R>>
endobj
165 0 obj
-<>
+/Count 8>>
endobj
277 0 obj
-<>
+/Dest [86 0 R /XYZ 0 447 0]>>
+endobj
+
+166 0 obj
+<>
endobj
278 0 obj
-<>
endobj
279 0 obj
-<>
-endobj
-
-166 0 obj
-<>
-endobj
-
-167 0 obj
-<>
+<>
endobj
280 0 obj
-<>
+<>
+endobj
+
+167 0 obj
+<>
+endobj
+
+168 0 obj
+<>
endobj
281 0 obj
-<>
endobj
282 0 obj
-<>
endobj
283 0 obj
-<>
endobj
284 0 obj
-<>
endobj
285 0 obj
-<>
endobj
286 0 obj
-<>
endobj
287 0 obj
-<>
endobj
288 0 obj
-<>
endobj
289 0 obj
-<>
endobj
290 0 obj
-<>
-endobj
-
-168 0 obj
-<>
-endobj
-
-169 0 obj
-<>
+<>
endobj
291 0 obj
-<>
+<>
+endobj
+
+169 0 obj
+<>
+endobj
+
+170 0 obj
+<>
endobj
292 0 obj
-<>
endobj
293 0 obj
-<>
endobj
294 0 obj
-<>
endobj
295 0 obj
-<>
endobj
296 0 obj
-<>
endobj
297 0 obj
-<>
endobj
298 0 obj
-<>
endobj
299 0 obj
-<>
-endobj
-
-170 0 obj
-<>
+<>
endobj
300 0 obj
-<>
+/Dest [112 0 R /XYZ 0 732 0]
+/Prev 299 0 R>>
+endobj
+
+171 0 obj
+<>
endobj
301 0 obj
-<>
endobj
302 0 obj
-<>
-endobj
-
-171 0 obj
-<>
+<>
endobj
303 0 obj
-<>
-endobj
-
-304 0 obj
-<>
+/Dest [114 0 R /XYZ 0 367 0]
+/Prev 302 0 R>>
endobj
172 0 obj
-<>
+/First 301 0 R
+/Last 303 0 R
+/Count 3>>
+endobj
+
+304 0 obj
+<>
endobj
305 0 obj
-<>
-endobj
-
-306 0 obj
<>
+/Dest [116 0 R /XYZ 0 380 0]
+/Prev 304 0 R>>
endobj
173 0 obj
<>
endobj
-307 0 obj
+306 0 obj
<>
+/Dest [118 0 R /XYZ 0 316 0]>>
endobj
174 0 obj
<>
endobj
-308 0 obj
+307 0 obj
<>
+endobj
+
+308 0 obj
+<>
endobj
309 0 obj
-<>
endobj
310 0 obj
-<>
endobj
311 0 obj
-<>
endobj
312 0 obj
-<>
endobj
313 0 obj
-<>
endobj
314 0 obj
-<>
endobj
315 0 obj
-<>
endobj
316 0 obj
-<>
endobj
317 0 obj
-<>
endobj
318 0 obj
-<>
endobj
319 0 obj
-<>
endobj
320 0 obj
-<>
endobj
321 0 obj
-<>
endobj
322 0 obj
-<>
endobj
323 0 obj
-<>
endobj
324 0 obj
-<>
endobj
325 0 obj
-<>
endobj
326 0 obj
-<>
endobj
327 0 obj
-<>
endobj
328 0 obj
-<>
endobj
329 0 obj
-<>
endobj
330 0 obj
-<>
endobj
331 0 obj
-<>
endobj
332 0 obj
-<>
endobj
333 0 obj
-<>
endobj
334 0 obj
-<>
endobj
335 0 obj
-<>
-endobj
-
-336 0 obj
<>
+/Dest [126 0 R /XYZ 0 524 0]
+/Prev 334 0 R>>
endobj
175 0 obj
<>
endobj
176 0 obj
<>
endobj
-337 0 obj
+336 0 obj
<>
+endobj
+
+337 0 obj
+<>
endobj
338 0 obj
-<>
endobj
339 0 obj
-<>
endobj
340 0 obj
-<>
endobj
341 0 obj
-<>
endobj
342 0 obj
-<>
endobj
343 0 obj
-<>
endobj
344 0 obj
-<>
-endobj
-
-345 0 obj
<>
+/Dest [129 0 R /XYZ 0 299 0]
+/Prev 343 0 R>>
endobj
177 0 obj
<>
endobj
-346 0 obj
+345 0 obj
<>
+/Dest [131 0 R /XYZ 0 357 0]>>
endobj
178 0 obj
<>
endobj
179 0 obj
<>
endobj
180 0 obj
<>
endobj
181 0 obj
<>
endobj
182 0 obj
<>
endobj
183 0 obj
<>
endobj
184 0 obj
<>
endobj
-138 0 obj
+139 0 obj
<>
endobj
2 0 obj
<>
+/Kids [3 0 R 4 0 R 5 0 R 6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R 129 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R 135 0 R 136 0 R 137 0 R 138 0 R]
+/Count 136>>
endobj
-362 0 obj
-<>
stream
-x]PN@WqMt{aoUb@`Wy4M@!SjR rV/kǍ՚_ 㽲#r!b
V3'u*DGRQL8O%\2|M\,`{Q;`
-wm>ԡ6:a7xlqishOݱl©[i*]:8v
-!%Ǜi&XcTb ӄFYc$Lևr55 NܤIP;yy,?'Ni
+x]PN@WqMtaoUb@`Wy4M@!SjR rV/سq2$,xȳ:VV3'u*DGRQL8a.iX&V.ved'blwU͇:4}P3L&-NzqBw,pVlJ*fo jx3R9ͤUkJ4cX ī|LNܤIP;yyay
{-?'i
endstream
endobj
-363 0 obj
+362 0 obj
274
endobj
@@ -1729,18 +1710,18 @@ endobj
<>
-/XObject <>
+/Contents 361 0 R
+/Resources <>
+/XObject <>
/ProcSet [/PDF /Text /ImageC]>>
/Group <>>>
endobj
-364 0 obj
-<>
stream
xmTA0s#Tm'VDZE:yNOMZkڗ7ʯbjK|d|Ӳ^dkze{_|/^Oc]a z2/ZH@
@@ -1751,7 +1732,7 @@ x
endstream
endobj
-365 0 obj
+364 0 obj
655
endobj
@@ -1759,49 +1740,45 @@ endobj
<>
+/Contents 363 0 R
+/Resources <>
/ProcSet [/PDF /Text]>>
/Group <>>>
endobj
-366 0 obj
-<>
stream
-x͘ߏ6+x}oKtթ
-1f-ь=IƳ GYҖKRG *Q瀑rDgчY6/T=ؠ@|}rhHwt*OoU=<#ۡuyEWAuÊ//mR]Qt+A]8{ӡx;# s!eC6zS'N #A*2SX36N?Cx)h_rYAj/glgaQ*(x]"!R!QZ}GVUM^>_ޓo{_2Jjjq
-&X /wXa 0?
-3W6L}lfəb-0B75@pPWsmML@ki7
t?H
+xX]6}WqߖVVbB
_qI&cε9t>qE
~)7 IJ)Qf%WI`^'tįɳW5ɧdN̅$Ij<#ۙ>)
94yݸU00z^PJIn9R5_MBp%QG@Q$}ME㮦fKmq?n"'ދ(~D!
>ܠkbsnoV3iE6ZE|h:輽dy<4~W'ƍ'P0T,谳~Oivys=0c7@s(θ6UXSPpi!Q7wn7r!K&v"!^fT:Hi@Pa}Ye"BTCz<}{k<3ekW4.Mf3+VnפJMpZޢF'ɔ{=J|rA;,
+y{CbbxpX P#>$*ҭu0^mLW_S3LĞ{_6I(=82Qvا[y$Շ4V/XL5Eȱe_FR}SaLwVKDбu#=$)IUkp6[i$Ň,pڃ
+ע0{ȱe_FJ}uP j}c͓,-~c7zvmzJuHLa<}z:HYv{mٖ#:aT>TkI3]X/2nMϾZsE^oAM1NIi3b"&cb/$/~y9LӻKɋ;L7*cBh$ow /0e?hW)3.*B?w[[#*pf+
+OxZixЛ^ 6u
endstream
endobj
-367 0 obj
-1045
+366 0 obj
+1031
endobj
5 0 obj
<>
+/Contents 365 0 R
+/Resources <>
/ProcSet [/PDF /Text]>>
/Group <>
-/Annots [368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R]>>
+/Annots [367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R]>>
endobj
-368 0 obj
+367 0 obj
<>
endobj
-369 0 obj
+368 0 obj
<>
endobj
-370 0 obj
+369 0 obj
<>
+/Dest [13 0 R /XYZ 0 732 0]>>
endobj
-371 0 obj
+370 0 obj
<>
-endobj
-
-372 0 obj
-<>
endobj
-373 0 obj
+371 0 obj
+<>
+endobj
+
+372 0 obj
<>
+/Dest [30 0 R /XYZ 0 732 0]>>
endobj
-374 0 obj
+373 0 obj
<>
-endobj
-
-375 0 obj
-<>
endobj
-376 0 obj
+374 0 obj
+<>
+endobj
+
+375 0 obj
<>
+/Dest [41 0 R /XYZ 0 732 0]>>
endobj
-377 0 obj
+376 0 obj
<>
+/Dest [47 0 R /XYZ 0 732 0]>>
endobj
-378 0 obj
+377 0 obj
<>
+/Dest [49 0 R /XYZ 0 732 0]>>
endobj
-379 0 obj
+378 0 obj
<>
+/Dest [54 0 R /XYZ 0 732 0]>>
endobj
-380 0 obj
+379 0 obj
<>
-endobj
-
-381 0 obj
-<>
endobj
-382 0 obj
+380 0 obj
+<>
+endobj
+
+381 0 obj
<>
-endobj
-
-383 0 obj
-<>
-endobj
-
-384 0 obj
-<>
endobj
-385 0 obj
+382 0 obj
<>
+endobj
+
+383 0 obj
+<>
endobj
-386 0 obj
+384 0 obj
<>
endobj
-387 0 obj
+385 0 obj
+<>
+endobj
+
+386 0 obj
<>
+/Dest [76 0 R /XYZ 0 732 0]>>
endobj
-388 0 obj
+387 0 obj
<>
+/Dest [80 0 R /XYZ 0 732 0]>>
endobj
-389 0 obj
+388 0 obj
<>
+/Dest [82 0 R /XYZ 0 732 0]>>
endobj
-390 0 obj
-<>
stream
-x͗n@{ ,;{^BjHS7E
&Ƒx{ibJTf{:F
-GexH.-Fo۳j
}dmt3HoU&E/u\ NU\2' ^w6ܵe<<(qOE6߸-}BA9h.`ʽ*