make the plots thinner
After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 5.6 KiB |
After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 9 KiB |
After Width: | Height: | Size: 8 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 11 KiB |
|
@ -197,11 +197,11 @@ but that doen't reduce variance and would complicate things now.
|
|||
ax.set_ylabel(r'$\sigma$ [pb]')
|
||||
ax.set_xlim([0, max(η_s)])
|
||||
ax.set_ylim(0)
|
||||
save_fig(fig, 'total_xs', 'xs', size=[2.5, 2])
|
||||
save_fig(fig, 'total_xs', 'xs', size=[2.5, 2.5])
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/ac3b02ec166e0df1271348dbacacc2316d67028e.png]]
|
||||
[[file:./.ob-jupyter/4522eb3fbeaa14978f9838371acb0650910b8dbf.png]]
|
||||
|
||||
|
||||
Compared to sherpa, it's pretty close.
|
||||
|
@ -220,20 +220,21 @@ but that doen't reduce variance and would complicate things now.
|
|||
** Numerical Integration
|
||||
Plot our nice distribution:
|
||||
#+begin_src jupyter-python :exports both :results raw drawer
|
||||
plot_points = np.linspace(*plot_interval, 1000)
|
||||
plot_points = np.linspace(*plot_interval, 1000)
|
||||
|
||||
fig, ax = set_up_plot()
|
||||
ax.plot(plot_points, gev_to_pb(diff_xs(plot_points, charge=charge, esp=esp)))
|
||||
ax.set_xlabel(r'$\theta$')
|
||||
ax.set_ylabel(r'$d\sigma/d\Omega$ [pb]')
|
||||
ax.axvline(interval[0], color='gray', linestyle='--')
|
||||
ax.axvline(interval[1], color='gray', linestyle='--', label=rf'$|\eta|={η}$')
|
||||
ax.legend()
|
||||
save_fig(fig, 'diff_xs', 'xs', size=[2.5, 2])
|
||||
fig, ax = set_up_plot()
|
||||
ax.plot(plot_points, gev_to_pb(diff_xs(plot_points, charge=charge, esp=esp)))
|
||||
ax.set_xlabel(r'$\theta$')
|
||||
ax.set_ylabel(r'$d\sigma/d\Omega$ [pb]')
|
||||
ax.set_xlim([plot_points.min(), plot_points.max()])
|
||||
ax.axvline(interval[0], color='gray', linestyle='--')
|
||||
ax.axvline(interval[1], color='gray', linestyle='--', label=rf'$|\eta|={η}$')
|
||||
ax.legend()
|
||||
save_fig(fig, 'diff_xs', 'xs', size=[2.5, 2.5])
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/c9b71617a1208604b29d73e4f0197610e7cfe99d.png]]
|
||||
[[file:./.ob-jupyter/3dd905e7608b91a9d89503cb41660152f3b4b55c.png]]
|
||||
|
||||
Define the integrand.
|
||||
#+begin_src jupyter-python :exports both :results raw drawer
|
||||
|
@ -260,7 +261,7 @@ Plot the integrand. # TODO: remove duplication
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/e0ff5a888d8b509a7651c44d8a1216595b725ba9.png]]
|
||||
[[file:./.ob-jupyter/61295cc20dae8773a18000aeb2061d2a0ebcb127.png]]
|
||||
*** Integral over θ
|
||||
Intergrate σ with the mc method.
|
||||
#+begin_src jupyter-python :exports both :results raw drawer
|
||||
|
@ -270,7 +271,7 @@ Intergrate σ with the mc method.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
| 0.053382020808528406 | 0.0008336167380952699 |
|
||||
| 0.05441643331124812 | 0.000850414167068247 |
|
||||
|
||||
We gonna export that as tex.
|
||||
#+begin_src jupyter-python :exports both :results raw drawer
|
||||
|
@ -278,7 +279,7 @@ tex_value(xs_pb_mc, unit=r'\pico\barn', prefix=r'\sigma = ', err=xs_pb_mc_err, s
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: \(\sigma = \SI{0.0534\pm 0.0008}{\pico\barn}\)
|
||||
: \(\sigma = \SI{0.0544\pm 0.0009}{\pico\barn}\)
|
||||
|
||||
*** Integration over η
|
||||
Plot the intgrand of the pseudo rap.
|
||||
|
@ -292,7 +293,7 @@ save_fig(fig, 'xs_integrand_η', 'xs', size=[4, 4])
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/92b46e2139d3c345ee37be28aa256105a6c926c5.png]]
|
||||
[[file:./.ob-jupyter/fbaa531378c7a86046100d44eb3fafe1df80c4ac.png]]
|
||||
|
||||
#+begin_src jupyter-python :exports both :results raw drawer
|
||||
xs_pb_η = monte_carlo.integrate(xs_pb_int_η,
|
||||
|
@ -301,7 +302,7 @@ save_fig(fig, 'xs_integrand_η', 'xs', size=[4, 4])
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
| 0.053779012613814334 | 0.0001579614357163564 |
|
||||
| 0.05387227556308623 | 0.00015784230303183058 |
|
||||
|
||||
As we see, the result is a little better if we use pseudo rapidity,
|
||||
because the differential cross section does not difverge anymore. But
|
||||
|
@ -315,7 +316,7 @@ And yet again export that as tex.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: \(\sigma = \SI{0.05378\pm 0.00016}{\pico\barn}\)
|
||||
: \(\sigma = \SI{0.05387\pm 0.00016}{\pico\barn}\)
|
||||
|
||||
*** Using =VEGAS=
|
||||
Now we use =VEGAS= on the θ parametrisation and see what happens.
|
||||
|
@ -328,7 +329,7 @@ Now we use =VEGAS= on the θ parametrisation and see what happens.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
| 0.053731811180199644 | 6.830920893509916e-05 |
|
||||
| 0.05382003923613133 | 5.515086040159631e-05 |
|
||||
|
||||
This is pretty good, although the variance reduction may be achieved
|
||||
partially by accumulating the results from all runns. The uncertainty
|
||||
|
@ -341,7 +342,7 @@ And export that as tex.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: \(\sigma = \SI{0.05373\pm 0.00007}{\pico\barn}\)
|
||||
: \(\sigma = \SI{0.05382\pm 0.00006}{\pico\barn}\)
|
||||
|
||||
Surprisingly, without acumulation, the result ain't much different.
|
||||
This depends, of course, on the iteration count.
|
||||
|
@ -352,7 +353,7 @@ This depends, of course, on the iteration count.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
| 0.053772195195401516 | 7.447829565707063e-05 |
|
||||
| 0.05378075568964776 | 7.452808684393069e-05 |
|
||||
|
||||
*** Testing the Statistics
|
||||
Let's battle test the statistics.
|
||||
|
@ -369,7 +370,7 @@ Let's battle test the statistics.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.665
|
||||
: 0.694
|
||||
|
||||
So we see: the standard deviation is sound.
|
||||
|
||||
|
@ -389,7 +390,7 @@ Doing the same thing with =VEGAS= works as well.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.685
|
||||
: 0.672
|
||||
|
||||
** Sampling and Analysis
|
||||
Define the sample number.
|
||||
|
@ -421,7 +422,7 @@ Now we monte-carlo sample our distribution. We observe that the efficiency his v
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.027366713967159943
|
||||
: 0.027772146766673424
|
||||
|
||||
Our distribution has a lot of variance, as can be seen by plotting it.
|
||||
#+begin_src jupyter-python :exports both :results raw drawer
|
||||
|
@ -435,7 +436,7 @@ Our distribution has a lot of variance, as can be seen by plotting it.
|
|||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: Text(0, 0.5, '$\\frac{d\\sigma}{d\\Omega}$')
|
||||
[[file:./.ob-jupyter/c94d996aaf4307b7b2d810f95c45a2fea297e99a.png]]
|
||||
[[file:./.ob-jupyter/6921725d93ce91ce1e0364e6f745d46f3a76b3f2.png]]
|
||||
:END:
|
||||
|
||||
We define a friendly and easy to integrate upper limit function.
|
||||
|
@ -459,7 +460,7 @@ We define a friendly and easy to integrate upper limit function.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/25410dc62d8f53bb26a96887adc2f78b7426615d.png]]
|
||||
[[file:./.ob-jupyter/ddfcebac4157ce417e5b868a88731d554c726141.png]]
|
||||
|
||||
|
||||
To increase our efficiency, we have to specify an upper bound. That is
|
||||
|
@ -473,7 +474,7 @@ at least a little bit better. The numeric inversion is horribly inefficent.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.08113723900263531
|
||||
: 0.07994628015406446
|
||||
<<cosθ-bare-eff>>
|
||||
|
||||
Nice! And now draw some histograms.
|
||||
|
@ -512,7 +513,166 @@ save_fig(fig, 'histo_cos_theta', 'xs', size=(4,3))
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/3e8bc82501001f331aac198031a022a99e173885.png]]
|
||||
:RESULTS:
|
||||
# [goto error]
|
||||
#+begin_example
|
||||
|
||||
BrokenPipeErrorTraceback (most recent call last)
|
||||
<ipython-input-188-c43713624618> in <module>
|
||||
1 fig, _ = draw_histo(cosθ_sample, r'$\cos\theta$')
|
||||
----> 2 save_fig(fig, 'histo_cos_theta', 'xs', size=(4,3))
|
||||
|
||||
~/Documents/Projects/UNI/Bachelor/prog/python/utility.py in save_fig(fig, title, folder, size)
|
||||
101
|
||||
102 fig.savefig(f'./figs/{folder}/{title}.pdf')
|
||||
--> 103 fig.savefig(f'./figs/{folder}/{title}.pgf')
|
||||
104
|
||||
105
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/figure.py in savefig(self, fname, transparent, **kwargs)
|
||||
2201 self.patch.set_visible(frameon)
|
||||
2202
|
||||
-> 2203 self.canvas.print_figure(fname, **kwargs)
|
||||
2204
|
||||
2205 if frameon:
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/backend_bases.py in print_figure(self, filename, dpi, facecolor, edgecolor, orientation, format, bbox_inches, **kwargs)
|
||||
2096
|
||||
2097 try:
|
||||
-> 2098 result = print_method(
|
||||
2099 filename,
|
||||
2100 dpi=dpi,
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/backends/backend_pgf.py in print_pgf(self, fname_or_fh, *args, **kwargs)
|
||||
888 if not cbook.file_requires_unicode(file):
|
||||
889 file = codecs.getwriter("utf-8")(file)
|
||||
--> 890 self._print_pgf_to_fh(file, *args, **kwargs)
|
||||
891
|
||||
892 def _print_pdf_to_fh(self, fh, *args, **kwargs):
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/cbook/deprecation.py in wrapper(*args, **kwargs)
|
||||
356 f"%(removal)s. If any parameter follows {name!r}, they "
|
||||
357 f"should be pass as keyword, not positionally.")
|
||||
--> 358 return func(*args, **kwargs)
|
||||
359
|
||||
360 return wrapper
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/backends/backend_pgf.py in _print_pgf_to_fh(self, fh, dryrun, bbox_inches_restore, *args, **kwargs)
|
||||
870 RendererPgf(self.figure, fh),
|
||||
871 bbox_inches_restore=bbox_inches_restore)
|
||||
--> 872 self.figure.draw(renderer)
|
||||
873
|
||||
874 # end the pgfpicture environment
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
|
||||
36 renderer.start_filter()
|
||||
37
|
||||
---> 38 return draw(artist, renderer, *args, **kwargs)
|
||||
39 finally:
|
||||
40 if artist.get_agg_filter() is not None:
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/figure.py in draw(self, renderer)
|
||||
1733
|
||||
1734 self.patch.draw(renderer)
|
||||
-> 1735 mimage._draw_list_compositing_images(
|
||||
1736 renderer, self, artists, self.suppressComposite)
|
||||
1737
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
|
||||
135 if not_composite or not has_images:
|
||||
136 for a in artists:
|
||||
--> 137 a.draw(renderer)
|
||||
138 else:
|
||||
139 # Composite any adjacent images together
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
|
||||
36 renderer.start_filter()
|
||||
37
|
||||
---> 38 return draw(artist, renderer, *args, **kwargs)
|
||||
39 finally:
|
||||
40 if artist.get_agg_filter() is not None:
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/axes/_base.py in draw(self, renderer, inframe)
|
||||
2628 renderer.stop_rasterizing()
|
||||
2629
|
||||
-> 2630 mimage._draw_list_compositing_images(renderer, self, artists)
|
||||
2631
|
||||
2632 renderer.close_group('axes')
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
|
||||
135 if not_composite or not has_images:
|
||||
136 for a in artists:
|
||||
--> 137 a.draw(renderer)
|
||||
138 else:
|
||||
139 # Composite any adjacent images together
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
|
||||
36 renderer.start_filter()
|
||||
37
|
||||
---> 38 return draw(artist, renderer, *args, **kwargs)
|
||||
39 finally:
|
||||
40 if artist.get_agg_filter() is not None:
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/axis.py in draw(self, renderer, *args, **kwargs)
|
||||
1226
|
||||
1227 ticks_to_draw = self._update_ticks()
|
||||
-> 1228 ticklabelBoxes, ticklabelBoxes2 = self._get_tick_bboxes(ticks_to_draw,
|
||||
1229 renderer)
|
||||
1230
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/axis.py in _get_tick_bboxes(self, ticks, renderer)
|
||||
1171 def _get_tick_bboxes(self, ticks, renderer):
|
||||
1172 """Return lists of bboxes for ticks' label1's and label2's."""
|
||||
-> 1173 return ([tick.label1.get_window_extent(renderer)
|
||||
1174 for tick in ticks if tick.label1.get_visible()],
|
||||
1175 [tick.label2.get_window_extent(renderer)
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/axis.py in <listcomp>(.0)
|
||||
1171 def _get_tick_bboxes(self, ticks, renderer):
|
||||
1172 """Return lists of bboxes for ticks' label1's and label2's."""
|
||||
-> 1173 return ([tick.label1.get_window_extent(renderer)
|
||||
1174 for tick in ticks if tick.label1.get_visible()],
|
||||
1175 [tick.label2.get_window_extent(renderer)
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/text.py in get_window_extent(self, renderer, dpi)
|
||||
903 raise RuntimeError('Cannot get window extent w/o renderer')
|
||||
904
|
||||
--> 905 bbox, info, descent = self._get_layout(self._renderer)
|
||||
906 x, y = self.get_unitless_position()
|
||||
907 x, y = self.get_transform().transform((x, y))
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/text.py in _get_layout(self, renderer)
|
||||
297 clean_line, ismath = self._preprocess_math(line)
|
||||
298 if clean_line:
|
||||
--> 299 w, h, d = renderer.get_text_width_height_descent(
|
||||
300 clean_line, self._fontproperties, ismath=ismath)
|
||||
301 else:
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/backends/backend_pgf.py in get_text_width_height_descent(self, s, prop, ismath)
|
||||
755
|
||||
756 # get text metrics in units of latex pt, convert to display units
|
||||
--> 757 w, h, d = (LatexManager._get_cached_or_new()
|
||||
758 .get_width_height_descent(s, prop))
|
||||
759 # TODO: this should be latex_pt_to_in instead of mpl_pt_to_in
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/backends/backend_pgf.py in get_width_height_descent(self, text, prop)
|
||||
356
|
||||
357 # send textbox to LaTeX and wait for prompt
|
||||
--> 358 self._stdin_writeln(textbox)
|
||||
359 try:
|
||||
360 self._expect_prompt()
|
||||
|
||||
/usr/lib/python3.8/site-packages/matplotlib/backends/backend_pgf.py in _stdin_writeln(self, s)
|
||||
257 self.latex_stdin_utf8.write(s)
|
||||
258 self.latex_stdin_utf8.write("\n")
|
||||
--> 259 self.latex_stdin_utf8.flush()
|
||||
260
|
||||
261 def _expect(self, s):
|
||||
|
||||
BrokenPipeError: [Errno 32] Broken pipe
|
||||
#+end_example
|
||||
[[file:./.ob-jupyter/2109dc7fa61ccb899191ba1a68895df01b749783.png]]
|
||||
:END:
|
||||
|
||||
*** Observables
|
||||
Now we define some utilities to draw real 4-momentum samples.
|
||||
|
@ -591,13 +751,13 @@ Lets try it out.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: array([[100. , 34.68438203, 28.21611696, -89.44743924],
|
||||
: [100. , 47.30213877, 35.31219787, 80.71899621],
|
||||
: [100. , 92.82148885, 36.57576574, 6.81062174],
|
||||
: array([[100. , 38.24641519, 22.76579296, 89.5484807 ],
|
||||
: [100. , 48.14652483, 29.97226738, -82.36246314],
|
||||
: [100. , 65.02515029, 25.82470275, -71.44798498],
|
||||
: ...,
|
||||
: [100. , 57.30653234, 73.69684619, 35.8432171 ],
|
||||
: [100. , 18.00393271, 5.53427576, 98.21013287],
|
||||
: [100. , 71.66331811, 15.42119249, -68.01878902]])
|
||||
: [100. , 77.44294062, 27.84365663, 56.80952151],
|
||||
: [100. , 51.47029015, 16.47983968, 84.13812522],
|
||||
: [100. , 40.1313622 , 23.07278301, -88.64039966]])
|
||||
|
||||
Now let's make a histogram of the η distribution.
|
||||
#+begin_src jupyter-python :exports both :results raw drawer
|
||||
|
@ -607,8 +767,8 @@ Now let's make a histogram of the η distribution.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| <Figure | size | 432x288 | with | 1 | Axes> | <matplotlib.axes._subplots.AxesSubplot | at | 0x7f9f4de34160> |
|
||||
[[file:./.ob-jupyter/a96cd332697229119cf01ee425f1d20d5cee0fb2.png]]
|
||||
| <Figure | size | 432x288 | with | 1 | Axes> | <matplotlib.axes._subplots.AxesSubplot | at | 0x7f9f4c6f0700> |
|
||||
[[file:./.ob-jupyter/095e1870e99249bdc8fc6132b3fb473a09d41a08.png]]
|
||||
:END:
|
||||
|
||||
|
||||
|
@ -620,8 +780,8 @@ And the same for the p_t (transverse momentum) distribution.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| <Figure | size | 432x288 | with | 1 | Axes> | <matplotlib.axes._subplots.AxesSubplot | at | 0x7f9f4d5b49a0> |
|
||||
[[file:./.ob-jupyter/f179f03ce3c0797a0323f636828c23f1b68091bc.png]]
|
||||
| <Figure | size | 432x288 | with | 1 | Axes> | <matplotlib.axes._subplots.AxesSubplot | at | 0x7f9f4c266f40> |
|
||||
[[file:./.ob-jupyter/47d65a874109d682e1f2ca862c1560d63060867c.png]]
|
||||
:END:
|
||||
|
||||
That looks somewhat fishy, but it isn't.
|
||||
|
@ -637,7 +797,7 @@ That looks somewhat fishy, but it isn't.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/ec6b410ca8dd86985504bac4e801bf8336414887.png]]
|
||||
[[file:./.ob-jupyter/e127df693158dd4194b53f0a6f66ca2fca18af41.png]]
|
||||
this is strongly peaked at p_t=100GeV. (The jacobian goes like 1/x there!)
|
||||
|
||||
*** Sampling the η cross section
|
||||
|
@ -650,7 +810,7 @@ An again we see that the efficiency is way, way! better...
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.4066
|
||||
: 0.4063
|
||||
<<η-eff>>
|
||||
|
||||
Let's draw a histogram to compare with the previous results.
|
||||
|
@ -660,10 +820,13 @@ Let's draw a histogram to compare with the previous results.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| <Figure | size | 432x288 | with | 1 | Axes> | <matplotlib.axes._subplots.AxesSubplot | at | 0x7f9f4cd48b50> |
|
||||
[[file:./.ob-jupyter/5a168895d1bab706b21f7aa0476cee30dc96bc82.png]]
|
||||
| <Figure | size | 432x288 | with | 1 | Axes> | <matplotlib.axes._subplots.AxesSubplot | at | 0x7f9f4bdf4310> |
|
||||
[[file:./.ob-jupyter/87c196391955136cfeb479ee23972bf971d855d3.png]]
|
||||
:END:
|
||||
|
||||
|
||||
Looks good to me :).
|
||||
|
||||
*** Sampling with =VEGAS=
|
||||
Let's define some little helpers.
|
||||
#+begin_src jupyter-python :exports both :tangle tangled/plot_utils.py
|
||||
|
@ -716,8 +879,8 @@ distribution. We throw away the integral, but keep the increments.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: array([-0.9866143 , -0.9568834 , -0.89880566, -0.7731981 , -0.50508996,
|
||||
: 0.00428964, 0.51249399, 0.7775964 , 0.90011062, 0.95706595,
|
||||
: array([-0.9866143 , -0.87001384, -0.7269742 , -0.51294698, -0.26484439,
|
||||
: 0.00164873, 0.26764024, 0.5151555 , 0.72867548, 0.87054888,
|
||||
: 0.9866143 ])
|
||||
|
||||
Visualizing the increment borders gives us the information we want.
|
||||
|
@ -735,8 +898,8 @@ Visualizing the increment borders gives us the information we want.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: <matplotlib.legend.Legend at 0x7f9f4cbe39d0>
|
||||
[[file:./.ob-jupyter/2f93c795fd70016e122cf92c324d03a5cf06a327.png]]
|
||||
: <matplotlib.legend.Legend at 0x7f9f4bdd9940>
|
||||
[[file:./.ob-jupyter/1979e2f4e4298c8863a47e15c2ccd833b29302bc.png]]
|
||||
:END:
|
||||
|
||||
We can now plot the reweighted distribution to observe the variance
|
||||
|
@ -756,8 +919,8 @@ reduction visually.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: <matplotlib.legend.Legend at 0x7f9f4cb14850>
|
||||
[[file:./.ob-jupyter/c982484453c2c20fd1b6c2aa2bf4fde70ae77725.png]]
|
||||
: <matplotlib.legend.Legend at 0x7f9f4bb7ebb0>
|
||||
[[file:./.ob-jupyter/a506325aead3d6cf25f8e7cf5498c271cdc9ed7f.png]]
|
||||
:END:
|
||||
|
||||
|
||||
|
@ -773,7 +936,7 @@ Now, draw a sample and look at the efficiency.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.3732
|
||||
: 0.0913
|
||||
|
||||
If we compare that to [[cosθ-bare-eff]], we can see the improvement :P.
|
||||
It is even better the [[η-eff]]. The histogram looks just the same.
|
||||
|
@ -784,4 +947,4 @@ save_fig(fig, 'histo_cos_theta_strat', 'xs', size=(4,3))
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/1225a52ec975a00ef7e758afcf7726ba9cf41b5e.png]]
|
||||
[[file:./.ob-jupyter/a227f2678a85eae05938eadc8a2be8c9a7fd6835.png]]
|
||||
|
|
|
@ -66,10 +66,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.564767in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.564767in}{3.801389in}}%
|
||||
|
@ -124,10 +124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.362993in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.362993in}{3.801389in}}%
|
||||
|
@ -182,10 +182,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.161219in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.161219in}{3.801389in}}%
|
||||
|
@ -240,10 +240,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.926186in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.926186in}{3.801389in}}%
|
||||
|
@ -292,10 +292,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.006009in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.006009in}{3.801389in}}%
|
||||
|
@ -344,10 +344,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.085832in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.085832in}{3.801389in}}%
|
||||
|
@ -396,10 +396,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.165654in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.165654in}{3.801389in}}%
|
||||
|
@ -448,10 +448,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.245477in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.245477in}{3.801389in}}%
|
||||
|
@ -500,10 +500,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.325299in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.325299in}{3.801389in}}%
|
||||
|
@ -552,10 +552,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.405122in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.405122in}{3.801389in}}%
|
||||
|
@ -604,10 +604,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.484945in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.484945in}{3.801389in}}%
|
||||
|
@ -656,10 +656,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.644590in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.644590in}{3.801389in}}%
|
||||
|
@ -708,10 +708,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.724412in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.724412in}{3.801389in}}%
|
||||
|
@ -760,10 +760,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.804235in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.804235in}{3.801389in}}%
|
||||
|
@ -812,10 +812,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.884058in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.884058in}{3.801389in}}%
|
||||
|
@ -864,10 +864,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.963880in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.963880in}{3.801389in}}%
|
||||
|
@ -916,10 +916,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.043703in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.043703in}{3.801389in}}%
|
||||
|
@ -968,10 +968,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.123525in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.123525in}{3.801389in}}%
|
||||
|
@ -1020,10 +1020,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.203348in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.203348in}{3.801389in}}%
|
||||
|
@ -1072,10 +1072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.283170in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.283170in}{3.801389in}}%
|
||||
|
@ -1124,10 +1124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.442816in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.442816in}{3.801389in}}%
|
||||
|
@ -1176,10 +1176,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.522638in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.522638in}{3.801389in}}%
|
||||
|
@ -1228,10 +1228,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.602461in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.602461in}{3.801389in}}%
|
||||
|
@ -1280,10 +1280,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.682283in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.682283in}{3.801389in}}%
|
||||
|
@ -1332,10 +1332,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.762106in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.762106in}{3.801389in}}%
|
||||
|
@ -1384,10 +1384,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.841929in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.841929in}{3.801389in}}%
|
||||
|
@ -1436,10 +1436,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.921751in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.921751in}{3.801389in}}%
|
||||
|
@ -1488,10 +1488,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.001574in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.001574in}{3.801389in}}%
|
||||
|
@ -1540,10 +1540,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.081396in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.081396in}{3.801389in}}%
|
||||
|
@ -1592,10 +1592,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.241042in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.241042in}{3.801389in}}%
|
||||
|
@ -1644,10 +1644,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.320864in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.320864in}{3.801389in}}%
|
||||
|
@ -1696,10 +1696,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.400687in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.400687in}{3.801389in}}%
|
||||
|
@ -1748,10 +1748,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.480509in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.480509in}{3.801389in}}%
|
||||
|
@ -1800,10 +1800,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.560332in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.560332in}{3.801389in}}%
|
||||
|
@ -1852,10 +1852,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.640155in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.640155in}{3.801389in}}%
|
||||
|
@ -1904,10 +1904,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.719977in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.719977in}{3.801389in}}%
|
||||
|
@ -1956,10 +1956,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.799800in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.799800in}{3.801389in}}%
|
||||
|
@ -2014,10 +2014,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.505285in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.505285in}}%
|
||||
|
@ -2072,10 +2072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.424336in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.424336in}}%
|
||||
|
@ -2130,10 +2130,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.343388in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.343388in}}%
|
||||
|
@ -2188,10 +2188,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.678138in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.678138in}}%
|
||||
|
@ -2240,10 +2240,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.770043in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.770043in}}%
|
||||
|
@ -2292,10 +2292,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.861949in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.861949in}}%
|
||||
|
@ -2344,10 +2344,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.953854in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.953854in}}%
|
||||
|
@ -2396,10 +2396,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.045759in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.045759in}}%
|
||||
|
@ -2448,10 +2448,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.137664in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.137664in}}%
|
||||
|
@ -2500,10 +2500,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.229569in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.229569in}}%
|
||||
|
@ -2552,10 +2552,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.321474in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.321474in}}%
|
||||
|
@ -2604,10 +2604,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.413379in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.413379in}}%
|
||||
|
@ -2656,10 +2656,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.597190in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.597190in}}%
|
||||
|
@ -2708,10 +2708,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.689095in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.689095in}}%
|
||||
|
@ -2760,10 +2760,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.781000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.781000in}}%
|
||||
|
@ -2812,10 +2812,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.872905in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.872905in}}%
|
||||
|
@ -2864,10 +2864,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.964810in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.964810in}}%
|
||||
|
@ -2916,10 +2916,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.056715in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.056715in}}%
|
||||
|
@ -2968,10 +2968,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.148621in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.148621in}}%
|
||||
|
@ -3020,10 +3020,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.240526in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.240526in}}%
|
||||
|
@ -3072,10 +3072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.332431in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.332431in}}%
|
||||
|
@ -3124,10 +3124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.516241in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.516241in}}%
|
||||
|
@ -3176,10 +3176,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.608146in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.608146in}}%
|
||||
|
@ -3228,10 +3228,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.700051in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.700051in}}%
|
||||
|
@ -3280,10 +3280,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.791957in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.791957in}}%
|
||||
|
@ -3332,10 +3332,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.883862in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.883862in}}%
|
||||
|
@ -3384,10 +3384,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.975767in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.975767in}}%
|
||||
|
@ -3436,10 +3436,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.067672in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.067672in}}%
|
||||
|
@ -3488,10 +3488,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.159577in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.159577in}}%
|
||||
|
@ -3540,10 +3540,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.251482in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.251482in}}%
|
||||
|
@ -3592,10 +3592,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.435293in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.435293in}}%
|
||||
|
@ -3644,10 +3644,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.527198in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.527198in}}%
|
||||
|
@ -3696,10 +3696,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.619103in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.619103in}}%
|
||||
|
@ -3748,10 +3748,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.711008in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.711008in}}%
|
||||
|
|
|
@ -66,10 +66,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.601799in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.601799in}{3.801389in}}%
|
||||
|
@ -124,10 +124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.378125in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.378125in}{3.801389in}}%
|
||||
|
@ -182,10 +182,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.154451in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.154451in}{3.801389in}}%
|
||||
|
@ -240,10 +240,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.980739in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.980739in}{3.801389in}}%
|
||||
|
@ -292,10 +292,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058371in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.058371in}{3.801389in}}%
|
||||
|
@ -344,10 +344,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.136004in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.136004in}{3.801389in}}%
|
||||
|
@ -396,10 +396,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.213636in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.213636in}{3.801389in}}%
|
||||
|
@ -448,10 +448,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.291269in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.291269in}{3.801389in}}%
|
||||
|
@ -500,10 +500,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.368902in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.368902in}{3.801389in}}%
|
||||
|
@ -552,10 +552,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.446534in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.446534in}{3.801389in}}%
|
||||
|
@ -604,10 +604,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.524167in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.524167in}{3.801389in}}%
|
||||
|
@ -656,10 +656,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.679432in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.679432in}{3.801389in}}%
|
||||
|
@ -708,10 +708,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.757064in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.757064in}{3.801389in}}%
|
||||
|
@ -760,10 +760,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.834697in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.834697in}{3.801389in}}%
|
||||
|
@ -812,10 +812,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.912330in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.912330in}{3.801389in}}%
|
||||
|
@ -864,10 +864,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.989962in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.989962in}{3.801389in}}%
|
||||
|
@ -916,10 +916,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.067595in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.067595in}{3.801389in}}%
|
||||
|
@ -968,10 +968,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.145227in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.145227in}{3.801389in}}%
|
||||
|
@ -1020,10 +1020,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.222860in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.222860in}{3.801389in}}%
|
||||
|
@ -1072,10 +1072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.300492in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.300492in}{3.801389in}}%
|
||||
|
@ -1124,10 +1124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.455758in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.455758in}{3.801389in}}%
|
||||
|
@ -1176,10 +1176,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.533390in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.533390in}{3.801389in}}%
|
||||
|
@ -1228,10 +1228,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.611023in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.611023in}{3.801389in}}%
|
||||
|
@ -1280,10 +1280,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.688655in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.688655in}{3.801389in}}%
|
||||
|
@ -1332,10 +1332,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.766288in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.766288in}{3.801389in}}%
|
||||
|
@ -1384,10 +1384,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.843920in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.843920in}{3.801389in}}%
|
||||
|
@ -1436,10 +1436,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.921553in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.921553in}{3.801389in}}%
|
||||
|
@ -1488,10 +1488,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.999186in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.999186in}{3.801389in}}%
|
||||
|
@ -1540,10 +1540,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.076818in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.076818in}{3.801389in}}%
|
||||
|
@ -1592,10 +1592,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.232083in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.232083in}{3.801389in}}%
|
||||
|
@ -1644,10 +1644,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.309716in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.309716in}{3.801389in}}%
|
||||
|
@ -1696,10 +1696,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.387348in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.387348in}{3.801389in}}%
|
||||
|
@ -1748,10 +1748,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.464981in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.464981in}{3.801389in}}%
|
||||
|
@ -1800,10 +1800,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.542614in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.542614in}{3.801389in}}%
|
||||
|
@ -1852,10 +1852,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.620246in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.620246in}{3.801389in}}%
|
||||
|
@ -1904,10 +1904,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.697879in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.697879in}{3.801389in}}%
|
||||
|
@ -1956,10 +1956,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.775511in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.775511in}{3.801389in}}%
|
||||
|
@ -2014,10 +2014,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.320403in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.320403in}}%
|
||||
|
@ -2072,10 +2072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.214222in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.214222in}}%
|
||||
|
@ -2130,10 +2130,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.108041in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.108041in}}%
|
||||
|
@ -2188,10 +2188,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{0.605348in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.605348in}}%
|
||||
|
@ -2240,10 +2240,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{0.694730in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.694730in}}%
|
||||
|
@ -2292,10 +2292,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{0.784112in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.784112in}}%
|
||||
|
@ -2344,10 +2344,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{0.873494in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.873494in}}%
|
||||
|
@ -2396,10 +2396,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{0.962876in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.962876in}}%
|
||||
|
@ -2448,10 +2448,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.052257in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.052257in}}%
|
||||
|
@ -2500,10 +2500,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.141639in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.141639in}}%
|
||||
|
@ -2552,10 +2552,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.231021in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.231021in}}%
|
||||
|
@ -2604,10 +2604,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.409785in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.409785in}}%
|
||||
|
@ -2656,10 +2656,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.499167in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.499167in}}%
|
||||
|
@ -2708,10 +2708,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.588549in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.588549in}}%
|
||||
|
@ -2760,10 +2760,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.677931in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.677931in}}%
|
||||
|
@ -2812,10 +2812,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.767313in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.767313in}}%
|
||||
|
@ -2864,10 +2864,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.856694in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.856694in}}%
|
||||
|
@ -2916,10 +2916,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{1.946076in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.946076in}}%
|
||||
|
@ -2968,10 +2968,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.035458in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.035458in}}%
|
||||
|
@ -3020,10 +3020,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.124840in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.124840in}}%
|
||||
|
@ -3072,10 +3072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.303604in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.303604in}}%
|
||||
|
@ -3124,10 +3124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.392986in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.392986in}}%
|
||||
|
@ -3176,10 +3176,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.482368in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.482368in}}%
|
||||
|
@ -3228,10 +3228,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.571750in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.571750in}}%
|
||||
|
@ -3280,10 +3280,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.661131in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.661131in}}%
|
||||
|
@ -3332,10 +3332,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.750513in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.750513in}}%
|
||||
|
@ -3384,10 +3384,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.839895in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.839895in}}%
|
||||
|
@ -3436,10 +3436,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{2.929277in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.929277in}}%
|
||||
|
@ -3488,10 +3488,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.018659in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.018659in}}%
|
||||
|
@ -3540,10 +3540,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.197423in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.197423in}}%
|
||||
|
@ -3592,10 +3592,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.286805in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.286805in}}%
|
||||
|
@ -3644,10 +3644,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.376187in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.376187in}}%
|
||||
|
@ -3696,10 +3696,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.465568in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.465568in}}%
|
||||
|
@ -3748,10 +3748,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.554950in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.554950in}}%
|
||||
|
@ -3800,10 +3800,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.644332in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.644332in}}%
|
||||
|
@ -3852,10 +3852,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954861in}{3.733714in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.733714in}}%
|
||||
|
|
|
@ -66,10 +66,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.335556in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.335556in}{2.801389in}}%
|
||||
|
@ -124,10 +124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.131028in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.131028in}{2.801389in}}%
|
||||
|
@ -182,10 +182,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.926500in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.926500in}{2.801389in}}%
|
||||
|
@ -240,10 +240,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.721971in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.721971in}{2.801389in}}%
|
||||
|
@ -298,10 +298,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.096914in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.096914in}{2.801389in}}%
|
||||
|
@ -350,10 +350,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.176462in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.176462in}{2.801389in}}%
|
||||
|
@ -402,10 +402,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.256009in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.256009in}{2.801389in}}%
|
||||
|
@ -454,10 +454,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.415103in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.415103in}{2.801389in}}%
|
||||
|
@ -506,10 +506,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.494650in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.494650in}{2.801389in}}%
|
||||
|
@ -558,10 +558,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.574197in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.574197in}{2.801389in}}%
|
||||
|
@ -610,10 +610,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.653745in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.653745in}{2.801389in}}%
|
||||
|
@ -662,10 +662,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.733292in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.733292in}{2.801389in}}%
|
||||
|
@ -714,10 +714,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.812839in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.812839in}{2.801389in}}%
|
||||
|
@ -766,10 +766,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.892386in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.892386in}{2.801389in}}%
|
||||
|
@ -818,10 +818,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.971933in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.971933in}{2.801389in}}%
|
||||
|
@ -870,10 +870,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.051481in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.051481in}{2.801389in}}%
|
||||
|
@ -922,10 +922,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.210575in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.210575in}{2.801389in}}%
|
||||
|
@ -974,10 +974,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.290122in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.290122in}{2.801389in}}%
|
||||
|
@ -1026,10 +1026,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.369669in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.369669in}{2.801389in}}%
|
||||
|
@ -1078,10 +1078,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.449216in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.449216in}{2.801389in}}%
|
||||
|
@ -1130,10 +1130,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.528764in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.528764in}{2.801389in}}%
|
||||
|
@ -1182,10 +1182,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.608311in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.608311in}{2.801389in}}%
|
||||
|
@ -1234,10 +1234,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.687858in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.687858in}{2.801389in}}%
|
||||
|
@ -1286,10 +1286,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.767405in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.767405in}{2.801389in}}%
|
||||
|
@ -1338,10 +1338,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.846952in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.846952in}{2.801389in}}%
|
||||
|
@ -1390,10 +1390,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.006047in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.006047in}{2.801389in}}%
|
||||
|
@ -1442,10 +1442,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.085594in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.085594in}{2.801389in}}%
|
||||
|
@ -1494,10 +1494,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.165141in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.165141in}{2.801389in}}%
|
||||
|
@ -1546,10 +1546,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.244688in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.244688in}{2.801389in}}%
|
||||
|
@ -1598,10 +1598,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.324236in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.324236in}{2.801389in}}%
|
||||
|
@ -1650,10 +1650,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.403783in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.403783in}{2.801389in}}%
|
||||
|
@ -1702,10 +1702,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.483330in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.483330in}{2.801389in}}%
|
||||
|
@ -1754,10 +1754,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.562877in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.562877in}{2.801389in}}%
|
||||
|
@ -1806,10 +1806,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.642424in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.642424in}{2.801389in}}%
|
||||
|
@ -1864,10 +1864,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{0.594444in}}%
|
||||
|
@ -1922,10 +1922,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.179488in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.179488in}}%
|
||||
|
@ -1980,10 +1980,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.764531in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.764531in}}%
|
||||
|
@ -2038,10 +2038,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.349574in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.349574in}}%
|
||||
|
@ -2096,10 +2096,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{0.652949in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{0.652949in}}%
|
||||
|
@ -2148,10 +2148,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{0.711453in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{0.711453in}}%
|
||||
|
@ -2200,10 +2200,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{0.769957in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{0.769957in}}%
|
||||
|
@ -2252,10 +2252,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{0.828462in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{0.828462in}}%
|
||||
|
@ -2304,10 +2304,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{0.886966in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{0.886966in}}%
|
||||
|
@ -2356,10 +2356,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{0.945470in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{0.945470in}}%
|
||||
|
@ -2408,10 +2408,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.003975in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.003975in}}%
|
||||
|
@ -2460,10 +2460,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.062479in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.062479in}}%
|
||||
|
@ -2512,10 +2512,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.120983in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.120983in}}%
|
||||
|
@ -2564,10 +2564,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.237992in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.237992in}}%
|
||||
|
@ -2616,10 +2616,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.296496in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.296496in}}%
|
||||
|
@ -2668,10 +2668,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.355001in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.355001in}}%
|
||||
|
@ -2720,10 +2720,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.413505in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.413505in}}%
|
||||
|
@ -2772,10 +2772,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.472009in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.472009in}}%
|
||||
|
@ -2824,10 +2824,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.530514in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.530514in}}%
|
||||
|
@ -2876,10 +2876,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.589018in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.589018in}}%
|
||||
|
@ -2928,10 +2928,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.647522in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.647522in}}%
|
||||
|
@ -2980,10 +2980,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.706026in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.706026in}}%
|
||||
|
@ -3032,10 +3032,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.823035in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.823035in}}%
|
||||
|
@ -3084,10 +3084,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.881539in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.881539in}}%
|
||||
|
@ -3136,10 +3136,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.940044in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.940044in}}%
|
||||
|
@ -3188,10 +3188,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{1.998548in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{1.998548in}}%
|
||||
|
@ -3240,10 +3240,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.057052in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.057052in}}%
|
||||
|
@ -3292,10 +3292,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.115557in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.115557in}}%
|
||||
|
@ -3344,10 +3344,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.174061in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.174061in}}%
|
||||
|
@ -3396,10 +3396,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.232565in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.232565in}}%
|
||||
|
@ -3448,10 +3448,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.291070in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.291070in}}%
|
||||
|
@ -3500,10 +3500,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.408078in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.408078in}}%
|
||||
|
@ -3552,10 +3552,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.466583in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.466583in}}%
|
||||
|
@ -3604,10 +3604,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.525087in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.525087in}}%
|
||||
|
@ -3656,10 +3656,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.583591in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.583591in}}%
|
||||
|
@ -3708,10 +3708,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.642096in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.642096in}}%
|
||||
|
@ -3760,10 +3760,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.700600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.700600in}}%
|
||||
|
@ -3812,10 +3812,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.058958in}{2.759104in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.753790in}{2.759104in}}%
|
||||
|
|
|
@ -66,10 +66,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.522520in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.522520in}{3.801389in}}%
|
||||
|
@ -124,10 +124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.333854in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.333854in}{3.801389in}}%
|
||||
|
@ -182,10 +182,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.145188in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.145188in}{3.801389in}}%
|
||||
|
@ -240,10 +240,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.873453in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.873453in}{3.801389in}}%
|
||||
|
@ -292,10 +292,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.954587in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.954587in}{3.801389in}}%
|
||||
|
@ -344,10 +344,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.035720in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.035720in}{3.801389in}}%
|
||||
|
@ -396,10 +396,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.116854in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.116854in}{3.801389in}}%
|
||||
|
@ -448,10 +448,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.197987in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.197987in}{3.801389in}}%
|
||||
|
@ -500,10 +500,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.279120in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.279120in}{3.801389in}}%
|
||||
|
@ -552,10 +552,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.360254in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.360254in}{3.801389in}}%
|
||||
|
@ -604,10 +604,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.441387in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.441387in}{3.801389in}}%
|
||||
|
@ -656,10 +656,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.603654in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.603654in}{3.801389in}}%
|
||||
|
@ -708,10 +708,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.684787in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.684787in}{3.801389in}}%
|
||||
|
@ -760,10 +760,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.765921in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.765921in}{3.801389in}}%
|
||||
|
@ -812,10 +812,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.847054in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.847054in}{3.801389in}}%
|
||||
|
@ -864,10 +864,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{1.928187in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.928187in}{3.801389in}}%
|
||||
|
@ -916,10 +916,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.009321in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.009321in}{3.801389in}}%
|
||||
|
@ -968,10 +968,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.090454in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.090454in}{3.801389in}}%
|
||||
|
@ -1020,10 +1020,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.171587in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.171587in}{3.801389in}}%
|
||||
|
@ -1072,10 +1072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.252721in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.252721in}{3.801389in}}%
|
||||
|
@ -1124,10 +1124,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.414988in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.414988in}{3.801389in}}%
|
||||
|
@ -1176,10 +1176,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.496121in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.496121in}{3.801389in}}%
|
||||
|
@ -1228,10 +1228,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.577254in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.577254in}{3.801389in}}%
|
||||
|
@ -1280,10 +1280,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.658388in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.658388in}{3.801389in}}%
|
||||
|
@ -1332,10 +1332,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.739521in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.739521in}{3.801389in}}%
|
||||
|
@ -1384,10 +1384,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.820654in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.820654in}{3.801389in}}%
|
||||
|
@ -1436,10 +1436,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.901788in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.901788in}{3.801389in}}%
|
||||
|
@ -1488,10 +1488,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.982921in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.982921in}{3.801389in}}%
|
||||
|
@ -1540,10 +1540,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.064055in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.064055in}{3.801389in}}%
|
||||
|
@ -1592,10 +1592,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.226321in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.226321in}{3.801389in}}%
|
||||
|
@ -1644,10 +1644,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.307455in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.307455in}{3.801389in}}%
|
||||
|
@ -1696,10 +1696,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.388588in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.388588in}{3.801389in}}%
|
||||
|
@ -1748,10 +1748,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.469721in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.469721in}{3.801389in}}%
|
||||
|
@ -1800,10 +1800,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.550855in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.550855in}{3.801389in}}%
|
||||
|
@ -1852,10 +1852,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.631988in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.631988in}{3.801389in}}%
|
||||
|
@ -1904,10 +1904,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.713122in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.713122in}{3.801389in}}%
|
||||
|
@ -1956,10 +1956,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.794255in}{0.594444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.794255in}{3.801389in}}%
|
||||
|
@ -2014,10 +2014,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.700921in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.700921in}}%
|
||||
|
@ -2072,10 +2072,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.580230in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.580230in}}%
|
||||
|
@ -2130,10 +2130,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.459540in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.459540in}}%
|
||||
|
@ -2188,10 +2188,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.500000}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.338850in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.338850in}}%
|
||||
|
@ -2246,10 +2246,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.612990in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.612990in}}%
|
||||
|
@ -2298,10 +2298,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.788852in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.788852in}}%
|
||||
|
@ -2350,10 +2350,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.876783in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.876783in}}%
|
||||
|
@ -2402,10 +2402,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{0.964714in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{0.964714in}}%
|
||||
|
@ -2454,10 +2454,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.052645in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.052645in}}%
|
||||
|
@ -2506,10 +2506,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.140576in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.140576in}}%
|
||||
|
@ -2558,10 +2558,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.228507in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.228507in}}%
|
||||
|
@ -2610,10 +2610,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.316438in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.316438in}}%
|
||||
|
@ -2662,10 +2662,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.404369in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.404369in}}%
|
||||
|
@ -2714,10 +2714,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.492300in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.492300in}}%
|
||||
|
@ -2766,10 +2766,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.668161in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.668161in}}%
|
||||
|
@ -2818,10 +2818,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.756092in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.756092in}}%
|
||||
|
@ -2870,10 +2870,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.844023in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.844023in}}%
|
||||
|
@ -2922,10 +2922,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{1.931954in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{1.931954in}}%
|
||||
|
@ -2974,10 +2974,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.019885in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.019885in}}%
|
||||
|
@ -3026,10 +3026,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.107816in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.107816in}}%
|
||||
|
@ -3078,10 +3078,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.195747in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.195747in}}%
|
||||
|
@ -3130,10 +3130,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.283678in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.283678in}}%
|
||||
|
@ -3182,10 +3182,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.371609in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.371609in}}%
|
||||
|
@ -3234,10 +3234,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.547471in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.547471in}}%
|
||||
|
@ -3286,10 +3286,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.635402in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.635402in}}%
|
||||
|
@ -3338,10 +3338,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.723333in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.723333in}}%
|
||||
|
@ -3390,10 +3390,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.811264in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.811264in}}%
|
||||
|
@ -3442,10 +3442,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.899195in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.899195in}}%
|
||||
|
@ -3494,10 +3494,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{2.987126in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{2.987126in}}%
|
||||
|
@ -3546,10 +3546,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.075057in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.075057in}}%
|
||||
|
@ -3598,10 +3598,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.162988in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.162988in}}%
|
||||
|
@ -3650,10 +3650,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.250919in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.250919in}}%
|
||||
|
@ -3702,10 +3702,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.426781in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.426781in}}%
|
||||
|
@ -3754,10 +3754,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.514712in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.514712in}}%
|
||||
|
@ -3806,10 +3806,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.602643in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.602643in}}%
|
||||
|
@ -3858,10 +3858,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.690574in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.690574in}}%
|
||||
|
@ -3910,10 +3910,10 @@
|
|||
\pgfusepath{clip}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetroundjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\pgfsetlinewidth{0.200750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.300000}%
|
||||
\pgfsetstrokeopacity{0.100000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.866319in}{3.778505in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.801389in}{3.778505in}}%
|
||||
|
|
|
@ -1 +1 @@
|
|||
\(\sigma = \SI{0.0534\pm 0.0008}{\pico\barn}\)
|
||||
\(\sigma = \SI{0.0544\pm 0.0009}{\pico\barn}\)
|
|
@ -1 +1 @@
|
|||
\(\sigma = \SI{0.05378\pm 0.00016}{\pico\barn}\)
|
||||
\(\sigma = \SI{0.05387\pm 0.00016}{\pico\barn}\)
|
|
@ -1 +1 @@
|
|||
\(\sigma = \SI{0.05373\pm 0.00007}{\pico\barn}\)
|
||||
\(\sigma = \SI{0.05382\pm 0.00006}{\pico\barn}\)
|
|
@ -74,8 +74,8 @@ def set_up_plot(ticks=4, pimp_top=True, subplot=111, fig=None):
|
|||
pinmp_ticks(ax.xaxis, ticks)
|
||||
pinmp_ticks(ax.yaxis, ticks)
|
||||
|
||||
ax.grid(which='minor', alpha=.3)
|
||||
ax.grid(which='major', alpha=.5)
|
||||
ax.grid(which='minor', alpha=.1, linewidth=.2)
|
||||
ax.grid(which='major', alpha=.3, linewidth=.2)
|
||||
|
||||
|
||||
if pimp_top:
|
||||
|
|