From c877f0c3b30848217693e23c8a66379d51e2b9d2 Mon Sep 17 00:00:00 2001 From: Manuel Pégourié-Gonnard Date: Mon, 7 Jul 2008 09:59:40 +0000 Subject: pdftricks v1.16 2003/08/10 git-svn-id: svn://tug.org/texlive/trunk@9326 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/pdftricks/makefile | 35 - Master/texmf-dist/doc/latex/pdftricks/manual.pdf | Bin 222997 -> 208701 bytes Master/texmf-dist/doc/latex/pdftricks/pst2pdf | 22 + .../texmf-dist/doc/latex/pdftricks/test-fig1.tex | 28 - .../texmf-dist/doc/latex/pdftricks/test-fig2.tex | 28 - .../texmf-dist/doc/latex/pdftricks/test-fig3.tex | 47 - .../texmf-dist/doc/latex/pdftricks/test-fig4.tex | 39 - Master/texmf-dist/doc/latex/pdftricks/test.pdf | 8145 +++++++++++--------- Master/texmf-dist/doc/latex/pdftricks/test.tex | 254 +- Master/texmf-dist/doc/latex/pdftricks/tmp.inputs | 9 - Master/texmf-dist/source/latex/pdftricks/pst2pdf | 22 - .../texmf-dist/tex/latex/pdftricks/pdftricks.sty | 328 +- Master/tlpkg/bin/tlpkg-ctan-check | 4 +- 13 files changed, 4663 insertions(+), 4298 deletions(-) delete mode 100644 Master/texmf-dist/doc/latex/pdftricks/makefile create mode 100644 Master/texmf-dist/doc/latex/pdftricks/pst2pdf delete mode 100644 Master/texmf-dist/doc/latex/pdftricks/test-fig1.tex delete mode 100644 Master/texmf-dist/doc/latex/pdftricks/test-fig2.tex delete mode 100644 Master/texmf-dist/doc/latex/pdftricks/test-fig3.tex delete mode 100644 Master/texmf-dist/doc/latex/pdftricks/test-fig4.tex delete mode 100644 Master/texmf-dist/doc/latex/pdftricks/tmp.inputs delete mode 100644 Master/texmf-dist/source/latex/pdftricks/pst2pdf diff --git a/Master/texmf-dist/doc/latex/pdftricks/makefile b/Master/texmf-dist/doc/latex/pdftricks/makefile deleted file mode 100644 index b9fd6d57f94..00000000000 --- a/Master/texmf-dist/doc/latex/pdftricks/makefile +++ /dev/null @@ -1,35 +0,0 @@ -## -## Makefile to install pdftricks.sty -## -## CV Radhakrishnan -## -## -BINDIR = /usr/bin -MKDIR=mkdir -COPY=cp -CHDIR=cd -ECHO=echo -ZIP=zip -9 -INSTALLDIRVAR=TEXMFMAIN - -all: pdftricks binaries test - -pdftricks: - ( \ - TEXMF=`kpsewhich -expand-var '$$$(INSTALLDIRVAR)'`; \ - echo installing to $${TEXMF}/tex/latex/pdftricks; \ - $(MKDIR) $${TEXMF}/tex/latex/pdftricks; \ - $(COPY) *.sty manual.pdf $${TEXMF}/tex/latex/pdftricks \ - ) - -binaries: - $(COPY) pst2pdf $(BINDIR) - -test: - texhash ; - pdflatex test ; - pdflatex test ; - acroread example.pdf - -clean: - rm -f ./* diff --git a/Master/texmf-dist/doc/latex/pdftricks/manual.pdf b/Master/texmf-dist/doc/latex/pdftricks/manual.pdf index f8ca2e794f8..87141e18842 100644 Binary files a/Master/texmf-dist/doc/latex/pdftricks/manual.pdf and b/Master/texmf-dist/doc/latex/pdftricks/manual.pdf differ diff --git a/Master/texmf-dist/doc/latex/pdftricks/pst2pdf b/Master/texmf-dist/doc/latex/pdftricks/pst2pdf new file mode 100644 index 00000000000..15cab762f62 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pdftricks/pst2pdf @@ -0,0 +1,22 @@ +#! /bin/bash +# pst2pdf +# PSTricks 2 PDF converter : +# Usage: "pst2pdf" produces PDF files for all files of the form *-fig*.tex +# "pst2pdf " only considers FILE-fig.tex +# It removes intermediary files at the end. + +FILE=$1 +if test -z $FILE; then + FIGURES=`ls *-fig*.tex`; +else + FIGURES=`ls -- $FILE-fig*.tex`; +fi + +for f in $FIGURES ; do + fig=`basename $f .tex` + latex $fig + dvips -E -o $fig.eps $fig + epstopdf $fig.eps + rm $fig.eps $fig.dvi $fig.log $fig.aux +done + diff --git a/Master/texmf-dist/doc/latex/pdftricks/test-fig1.tex b/Master/texmf-dist/doc/latex/pdftricks/test-fig1.tex deleted file mode 100644 index fe5e1788986..00000000000 --- a/Master/texmf-dist/doc/latex/pdftricks/test-fig1.tex +++ /dev/null @@ -1,28 +0,0 @@ -\documentclass{article} -\input tmp.inputs -\pagestyle{empty} -\usepackage{amssymb,amsbsy} -\begin{document} -\definecolor{lightblue}{rgb}{0,0,.5} -\definecolor{Navy}{rgb}{0,0,0.5} -\definecolor{LemonChiffon}{rgb}{1,0.98,0.8} -\definecolor{ForestGreen}{rgb}{0.13,0.55,0.13} -\def\transl#1#2{#1\space 72 2.54 div mul #2\space 72 2.54 div - mul translate 0 0 moveto } -\newif\ifnotbothz - \pspicture(-6,-6)(6,6) - \psaxes{<->}(0,0)(-6,-6)(6,6) - \multido{\n=-5+1}{11}{% - \multido{\N=-5+1}{11}{% - \notbothztrue% - \ifnum\N=0 % - \ifnum\n=0 \notbothzfalse\fi% - \fi% - \ifnotbothz% - \psdot(0,0)% - \pstverb{\transl{\n}{\N}\space - \n\space neg \N\space - atan rotate -9 0 moveto 18 0 rlineto stroke } -\fi}} -\endpspicture -\end{document} diff --git a/Master/texmf-dist/doc/latex/pdftricks/test-fig2.tex b/Master/texmf-dist/doc/latex/pdftricks/test-fig2.tex deleted file mode 100644 index f86f5229db1..00000000000 --- a/Master/texmf-dist/doc/latex/pdftricks/test-fig2.tex +++ /dev/null @@ -1,28 +0,0 @@ -\documentclass{article} -\input tmp.inputs -\pagestyle{empty} -\usepackage{amssymb,amsbsy} -\begin{document} -\definecolor{lightblue}{rgb}{0,0,.5} -\definecolor{Navy}{rgb}{0,0,0.5} -\definecolor{LemonChiffon}{rgb}{1,0.98,0.8} -\definecolor{ForestGreen}{rgb}{0.13,0.55,0.13} -\SpecialCoor -\begin{pspicture}(-6,-6)(6,6) - \psaxes{<->}(0,0)(-6,-6)(6,6) - \psset{arrows=->} - \multido{\ia=-5+1}{11}{% -\multido{\ib=-5+1}{11}{% - \pstVerb{/x \ia\space def - /y \ib\space def - y 0 eq - {/ValueTempA 0 def - /ValueTempB 0.5 def} - {/ValueTempZ 2 1 x x mul y y mul div add sqrt mul def - /ValueTempA 1 ValueTempZ div def - /ValueTempB x y ValueTempZ mul div def} - ifelse} - \psline(! x ValueTempA sub y ValueTempB sub) - (! x ValueTempA add y ValueTempB add)}} -\end{pspicture} -\end{document} diff --git a/Master/texmf-dist/doc/latex/pdftricks/test-fig3.tex b/Master/texmf-dist/doc/latex/pdftricks/test-fig3.tex deleted file mode 100644 index 938cd6bb3f5..00000000000 --- a/Master/texmf-dist/doc/latex/pdftricks/test-fig3.tex +++ /dev/null @@ -1,47 +0,0 @@ -\documentclass{article} -\input tmp.inputs -\pagestyle{empty} -\usepackage{amssymb,amsbsy} -\begin{document} -\definecolor{lightblue}{rgb}{0,0,.5} -\definecolor{Navy}{rgb}{0,0,0.5} -\definecolor{LemonChiffon}{rgb}{1,0.98,0.8} -\definecolor{ForestGreen}{rgb}{0.13,0.55,0.13} -\newcommand{\MyNode}[2]{% - \Tr{\psshadowbox[fillstyle=solid,fillcolor=#1]{\tiny #2}}} -\newcommand{\NoeudXt}[1]{\MyNode{ForestGreen}{#1}} -\newcommand{\NoeudMotif}[1]{\MyNode{Navy}{\textcolor{white}{#1}}} -\psset{armB=5mm,angleA=90,angleB=-90,levelsep=2cm,treesep=5mm} -\renewcommand{\psedge}[2]{\ncangle{#2}{#1}} -\TeXtoEPS -\begin{pspicture}(-8cm,-9.5cm)(8cm,1cm) -\rput(0,0){\LARGE\textcolor{red}{Set of Motif widgets classes}} -\rput(0,-4.8){% - \psframebox[fillstyle=solid,fillcolor=LemonChiffon,linearc=5mm, - cornersize=absolute] - {\pstree{\NoeudXt{Core}} - {\pstree{\NoeudMotif{Primitive}} - {\pstree{\NoeudMotif{Label}} - {\TC*} - \NoeudMotif{Scrollbar} - \NoeudMotif{List} - \NoeudMotif{Text} - \NoeudMotif{ArrowButton}} - \pstree{\NoeudXt{Composite}} - {\pstree{\NoeudXt{Constraint}} - {\pstree{\NoeudMotif{Manager}} - {\TC*}}} - \pstree{\NoeudXt{Shell}} - {\pstree{\NoeudXt{OverrideShell}} - {\NoeudMotif{MenuShell}} - \pstree{\NoeudXt{WMShell}} - {\pstree{\NoeudXt{VendorShell}} - {\TC*}}}}}} -\rput(-2,-10){% - \psshadowbox[fillstyle=solid,fillcolor=ForestGreen]{Core} Xt Class} -\rput(2,-10){% - \psshadowbox[fillstyle=solid,fillcolor=Navy]{% - \textcolor{white}{List}} Motif Class} -\end{pspicture} -\endTeXtoEPS -\end{document} diff --git a/Master/texmf-dist/doc/latex/pdftricks/test-fig4.tex b/Master/texmf-dist/doc/latex/pdftricks/test-fig4.tex deleted file mode 100644 index 486d8db95e5..00000000000 --- a/Master/texmf-dist/doc/latex/pdftricks/test-fig4.tex +++ /dev/null @@ -1,39 +0,0 @@ -\documentclass{article} -\input tmp.inputs -\pagestyle{empty} -\usepackage{amssymb,amsbsy} -\begin{document} -\TeXtoEPS -\definecolor{lightblue}{rgb}{0,0,.5} -\definecolor{Navy}{rgb}{0,0,0.5} -\definecolor{LemonChiffon}{rgb}{1,0.98,0.8} -\definecolor{ForestGreen}{rgb}{0.13,0.55,0.13} -\psset{unit=.825cm} -\begin{pspicture}(10,8) - \psset{fillstyle=solid,linestyle=none,linewidth=0} - \psframe[fillcolor=lightblue](10,8) - \pscircle[fillcolor=yellow](2,6){.8} % Sun - {% Rays - \psset{linecolor=yellow,linestyle=solid,linewidth=.3} - \degrees[8] - \multido{\i=1+1}{8}{\rput{\i}(2,6){\psline(1,0)(1.5,0)}} - }% - \pspolygon[fillcolor=green](6,0)(10,2)(10,0)% Grass - \psdiamond[fillcolor=red,gangle=-45](8,6)(1.5,2.5)% Kite - \rput{45}(8,6){\pnode(-2.5,0){Kitetail}} - \rput{-10}(.8,1.5){\psdiamond[fillcolor=yellow](.6,.1)(.6,.3)} - \rput{-80}(.8,1.5){\psdiamond[fillcolor=yellow](.6,.1)(.6,.3)} - \pnode(.8,1.5){Tailend} - \nccurve[fillstyle=none,angleA=270,angleB=125,ncurvB=.9,ncurvA=1.4, - linestyle=dotted,dotstyle=square,linewidth=.25]{Kitetail}{Tailend} - \newcommand{\bunting}{\pstriangle(.35,.35)} - \psset{fillcolor=red,labelsep=.01} - \naput[nrot=115,npos=.15]{\bunting} - \nbput[nrot=25,npos=.15]{\bunting} - \naput[nrot=75,npos=.4]{\bunting} - \nbput[nrot=115,npos=.4]{\bunting} - \naput[nrot=115,npos=.7]{\bunting} - \nbput[nrot=25,npos=.7]{\bunting} -\end{pspicture} -\endTeXtoEPS -\end{document} diff --git a/Master/texmf-dist/doc/latex/pdftricks/test.pdf b/Master/texmf-dist/doc/latex/pdftricks/test.pdf index c66f8057669..78a4be0025a 100644 --- a/Master/texmf-dist/doc/latex/pdftricks/test.pdf +++ b/Master/texmf-dist/doc/latex/pdftricks/test.pdf @@ -1,6 +1,6 @@ -%PDF-1.4 +%PDF-1.3 3 0 obj << -/Length 5370 +/Length 5205 >> stream 1 0 0 1 133.77 692.1 cm @@ -10,20 +10,20 @@ stream 1 0 0 1 -341.95 -76.71 cm 0 g 0 G 0 g 0 G -1 0 0 1 -135.53 -615.39 cm +1 0 0 1 4.98 0 cm BT -/F73 17.22 Tf 140.51 615.39 Td[(T)35(ri)25(via)1(l)-250(Experim)1(ents)-250(with)-249(psT)35(ricks)-249(manipula)1(tion)]TJ/F75 11.96 Tf 66.14 -34.87 Td[(R)1(adhak)1(rishn)1(an)-250(CV)-249(and)-250(R)1(ajago)1(pal)-250(C)1(V)]TJ/F73 8.97 Tf 16.99 -10.96 Td[(Ri)25(v)16(er)-250(V)111(al)1(le)15(y)-250(T)70(e)1(chnolo)1(gies,)-250(T)36(ri)25(v)25(and)1(rum,)-249(India)]TJ/F49 8.97 Tf 18.16 -10.95 Td[(ht)1(tp://)1(www.r)1(iver)1(-)-56(va)1(lley.)1(com)]TJ/F75 11.96 Tf 2.56 -19.93 Td[(An)1(toine)-250(C)1(ham)1(bert-L)1(oir)]TJ/F73 8.97 Tf -21.52 -10.96 Td[(E)1(cole)-250(p)1(olytech)1(nique)1(,)-250(P)15(alai)1(seau)-250(C)1(ede)15(x,)-249(Franc)1(e)]TJ/F49 8.97 Tf -16.07 -10.96 Td[(htt)1(p://)1(www.m)1(ath.p)1(olyte)1(chni)1(que.f)1(r/~ch)1(amber)1(t)]TJ/F73 11.96 Tf 59.17 -29.12 Td[(Au)1(gust)-250(1)1(0,)-250(200)1(3)]TJ/F75 14.35 Tf -132.17 -49.56 Td[(1)-999(Objecti)10(v)10(e)1(s)]TJ/F49 9.96 Tf 0 -28.24 Td[(psTri)-1(cks)]TJ/F73 9.96 Tf 45.41 0 Td[(m)-1(acros)-359(cannot)-359(be)-359(used)-359(with)-359(pdf)-1(T)]TJ 136.28 -2.25 Td[(E)]TJ 4.84 2.25 Td[(X)-1(,)-386(since)-359(the)-359(high)-359(le)25(v)15(el)-359(PostS)-1(cript)-359(lan-)]TJ -186.53 -11.96 Td[(guage)-380(comma)-1(nds)-379(gen)-1(erated)-379(b)-1(y)-379(the)]TJ/F49 9.96 Tf 146.71 0 Td[(psTric)-1(ks)]TJ/F73 9.96 Tf 45.62 0 Td[(are)-379(un)-1(kno)25(wn)-380(to)-379(pdfT)]TJ 85.78 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X.)-698(As)-379(such)-1(,)-411(a)]TJ -282.96 -11.96 Td[(packag)-1(e)]TJ/F85 9.96 Tf 35.77 0 Td[(v)-1(iz.)]TJ/F73 9.96 Tf 13.56 0 Td[(,)]TJ/F49 9.96 Tf 5.8 0 Td[(pdfTrick)-1(s.sty)]TJ/F73 9.96 Tf 71.13 0 Td[(has)-315(be)-1(en)-315(writte)-1(n)-315(to)-315(circ)-1(umv)15(ent)-315(t)-1(his)-315(limita)-1(tion,)-331(s)-1(o)-315(that)]TJ -126.26 -11.95 Td[(the)-349(e)15(xte)-1(nsi)25(v)15(e)-349(f)10(aci)-1(lities)-349(o)]TJ/F84 9.96 Tf 98.88 0 Td[(\013)]TJ/F73 9.96 Tf 5.97 0 Td[(ere)-1(d)-349(by)-349(the)-349(po)24(werful)]TJ/F49 9.96 Tf 88.91 0 Td[(psTrick)-1(s)]TJ/F73 9.96 Tf 45.32 0 Td[(package)-349(c)-1(an)-349(be)-349(made)-350(use)]TJ -239.08 -11.96 Td[(of)-287(in)-287(a)-287(pdfT)]TJ 46.75 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-287(docu)-1(ment.)-421(This)-287(is)-287(brough)-1(t)-286(b)-1(y)-287(making)-287(use)-287(of)-287(th)-1(e)-286(s)-1(hell)-287(escape)-287(fu)-1(nction)]TJ -51.59 -11.95 Td[(a)20(v)25(ailab)-1(le)-246(in)-247(the)]TJ/F49 9.96 Tf 62.8 0 Td[(web2c)]TJ/F73 9.96 Tf 28.6 0 Td[(T)]TJ 4.43 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-247(compiler)39(,)-247(while)-246(t)-1(his)-246(pack)-1(age)-246(is)-247(of)-246(no)-247(use)-246(to)-247(other)-247(commer)20(-)]TJ -100.67 -11.96 Td[(cial)-250(im)-1(plementa)-1(tions.)]TJ 0 -17.93 Td[(Shell)-448(esca)-1(pe)-448(pro)15(vides)-448(us)-448(the)-448(f)10(a)-1(cility)-448(of)-448(stoppin)-1(g)-447(a)-448(T)]TJ 221.96 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-448(run)-448(midw)10(a)-1(y)65(,)-497(perfo)-1(rm)-448(the)]TJ -226.8 -11.95 Td[(functio)-1(ns)-355(that)-356(we)-355(do)-356(with)-356(a)-355(shell)-356(comma)-1(nd,)-381(c)-1(omplete)-356(those)-356(functions)-1(,)-381(retu)-1(rn)-355(to)-356(the)]TJ 0 -11.96 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-349(run)-349(and)-349(\002nish)-349(the)-349(job)40(.)-606(W)40(i)-1(thin)-349(a)-348(p)-1(ackage,)-374(this)-349(f)10(acility)-349(can)-349(be)-349(in)40(v)20(o)-1(k)10(ed)-349(by)-349(using)]TJ/F49 9.96 Tf -9.27 -11.95 Td[(\134writ)-1(e18{shel)-1(l)-525(comma)-1(nd})]TJ/F73 9.96 Tf 120.3 0 Td[(.)-310(So)-250(if)-250(y)-1(ou)-250(use)-250(a)-250(l)-1(ine:)]TJ +/F37 17.22 Tf 0 0 Td[(T)35(ri)25(via)1(l)-250(Experim)1(ents)-250(with)-249(psT)35(ricks)-249(manipul)1(ation)]TJ/F38 11.96 Tf 66.14 -34.87 Td[(Ra)1(dhak)1(rishn)1(an)-250(CV)-249(and)-250(R)1(ajag)1(opal)-250(C)1(V)]TJ/F37 8.97 Tf 16.99 -10.96 Td[(Ri)25(v)16(er)-250(V)111(all)1(e)15(y)-250(T)70(ec)1(hnolo)1(gies,)-250(T)36(ri)25(v)25(an)1(drum,)-249(India)]TJ/F40 8.97 Tf 9.11 -10.95 Td[(h)1(ttp:)1(//www)1(.riv)1(er-)-55(val)1(ley.)1(com)]TJ/F38 11.96 Tf 11.61 -19.93 Td[(An)1(toine)-250(C)1(ham)1(bert-L)1(oir)]TJ/F37 8.97 Tf -21.52 -10.96 Td[(Ec)1(ole)-250(po)1(lytech)1(nique)1(,)-250(P)15(alai)1(seau)-250(C)1(ede)15(x,)-249(Franc)1(e)]TJ/F40 8.97 Tf -30.19 -10.96 Td[(ht)1(tp:/)1(/www)1(.mat)1(h.po)1(lyte)1(chni)1(que.)1(fr/\230c)1(hamb)1(ert)]TJ/F37 11.96 Tf 64.99 -29.27 Td[(Sept)1(ember)-249(30,)-250(20)1(01)]TJ/F38 14.35 Tf -123.87 -49.57 Td[(1)-999(Objecti)10(v)11(es)]TJ/F40 9.96 Tf 0 -28.24 Td[(psTri)-1(cks)]TJ/F37 9.96 Tf 50.9 0 Td[(m)-1(acros)-310(cannot)-310(be)-310(used)-310(with)-310(pd)-1(fT)]TJ 133.84 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-1(,)-324(sin)-1(ce)-309(t)-1(he)-309(h)-1(igh)-310(le)25(v)15(el)-310(PostScri)-1(pt)-309(la)-1(n-)]TJ -189.58 -11.96 Td[(guage)-338(command)-1(s)-337(genera)-1(ted)-337(by)-337(t)-1(he)]TJ/F40 9.96 Tf 144.61 0 Td[(psTr)-1(icks)]TJ/F37 9.96 Tf 51.18 0 Td[(are)-337(un)-1(kno)25(wn)-337(to)-338(pdfT)]TJ 84.53 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X.)-571(A)-1(s)-337(such,)-359(a)]TJ -285.16 -11.95 Td[(packag)-1(e)]TJ/F45 9.96 Tf 34.91 0 Td[(vi)-1(z.)]TJ/F37 9.96 Tf 13.56 0 Td[(,)]TJ/F40 9.96 Tf 4.81 0 Td[(pd)-1(fTrick)-1(s.sty)]TJ/F37 9.96 Tf 79.99 0 Td[(has)-229(been)-229(writt)-1(en)-228(t)-1(o)-228(ci)-1(rcumv)15(ent)-229(this)-229(limi)-1(tation,)-233(so)-229(that)]TJ -133.27 -11.96 Td[(the)-296(e)15(xtensi)25(v)14(e)-295(f)10(ac)-1(ilities)-296(of)25(fered)-296(by)-296(the)-296(po)25(werf)-1(ul)]TJ/F40 9.96 Tf 190.44 0 Td[(psTr)-1(icks)]TJ/F37 9.96 Tf 50.76 0 Td[(p)-1(ackage)-296(can)-296(be)-296(made)-296(use)]TJ -241.2 -11.95 Td[(of)-359(in)-359(a)-359(pdfT)]TJ 48.9 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-359(docu)-1(ment.)-636(T)-1(his)-359(is)-359(brought)-359(by)-359(ma)-1(king)-359(use)-359(of)-359(the)-359(shell)-359(es)-1(cape)-359(func-)]TJ -53.74 -11.96 Td[(tion)-355(a)19(v)25(ailable)-356(in)-355(the)]TJ/F40 9.96 Tf 85.09 0 Td[(we)-1(b2c)]TJ/F37 9.96 Tf 33.43 0 Td[(T)]TJ 4.43 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-355(com)-1(piler)40(,)-382(while)-355(thi)-1(s)-355(packag)-1(e)-355(is)-355(of)-356(no)-355(use)-356(to)-355(othe)-1(r)]TJ -127.79 -11.95 Td[(comme)-1(rcial)-250(impl)-1(ementation)-1(s.)]TJ 0 -17.93 Td[(Shell)-448(esca)-1(pe)-448(pro)15(vides)-448(us)-448(the)-448(f)10(ac)-1(ility)-448(of)-448(stoppin)-1(g)-447(a)-448(T)]TJ 221.96 -2.25 Td[(E)]TJ 4.84 2.25 Td[(X)-448(run)-448(midw)10(a)-1(y)65(,)-497(perfo)-1(rm)-448(the)]TJ -226.8 -11.96 Td[(functio)-1(ns)-355(that)-356(we)-355(do)-356(with)-356(a)-355(shell)-356(comma)-1(nd,)-382(complete)-356(those)-356(functions)-1(,)-381(retu)-1(rn)-355(to)-356(the)]TJ 0 -11.95 Td[(T)]TJ 4.42 -2.25 Td[(E)]TJ 4.85 2.25 Td[(X)-349(run)-349(and)-349(\002nish)-349(the)-349(job)40(.)-606(W)39(ithin)-349(a)-348(p)-1(ackage,)-374(this)-349(f)10(acility)-349(can)-349(be)-349(in)40(v)20(o)-1(k)10(ed)-349(by)-349(using)]TJ/F40 9.96 Tf -9.27 -11.96 Td[(\134writ)-1(e18{sh)-1(ell)-600(co)-1(mmand})]TJ/F37 9.96 Tf 137.48 0 Td[(.)-310(S)-1(o)-250(if)-250(you)-250(u)-1(se)-250(a)-250(line:)]TJ ET -1 0 0 1 108.86 262.97 cm +1 0 0 1 -31.65 -352.63 cm q []0 d 0 J 0.4 w 0 0.2 m -73.15 0.2 l +81.89 0.2 l S Q -1 0 0 1 -0.2 -10.95 cm +1 0 0 1 -0.2 -10.96 cm q []0 d 0 J @@ -32,11 +32,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -252.02 cm +1 0 0 1 6.18 3.28 cm BT -/F49 8.97 Tf 114.84 255.3 Td[(wri)1(te18)-524(ls)-525(-)1(l)]TJ +/F40 8.97 Tf 0 0 Td[(wr)1(ite1)1(8)-600(ls)-599(-l)]TJ ET -1 0 0 1 181.81 252.02 cm +1 0 0 1 75.72 -3.28 cm q []0 d 0 J @@ -45,26 +45,26 @@ q 0.2 10.96 l S Q -1 0 0 1 -72.95 -0.4 cm +1 0 0 1 -81.7 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -73.15 0.2 l +81.89 0.2 l S Q -1 0 0 1 -108.86 -251.62 cm +1 0 0 1 24.91 -17.6 cm BT -/F73 9.96 Tf 133.77 233.95 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-328(w)-1(ill)-328(st)-1(op)-328(at)-329(the)-329(mom)-1(ent)-328(w)-1(hen)-329(it)-328(enc)-1(ounter)-329(the)]TJ/F49 9.96 Tf 202.62 0 Td[(\134w)-1(rite18)]TJ/F73 9.96 Tf 45.12 0 Td[(comm)-1(and,)-348(esc)-1(apes)-329(to)]TJ -257.01 -11.95 Td[(shell,)-250(e)14(x)15(ecutes)]TJ/F49 9.96 Tf 60.29 0 Td[(ls)-526(-l)]TJ/F73 9.96 Tf 28.64 0 Td[(c)-1(ommand)-251(and)-250(retur)-1(n)-250(to)-250(the)-250(co)-1(mpilation)-251(process.)]TJ/F75 14.35 Tf -88.93 -39.6 Td[(2)-999(Shell)-250(esca)1(pe)]TJ/F73 9.96 Tf 0 -28.25 Td[(In)-300(all)-300(t)-1(he)-300(web2c)-301(T)]TJ 72.82 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-300(im)-1(plementa)-1(tions,)-313(shell)-300(es)-1(cape)-300(is)-300(tu)-1(rned)-300(o)]TJ/F84 9.96 Tf 176.61 0 Td[(\013)]TJ/F73 9.96 Tf 8.97 0 Td[(by)-300(d)-1(ef)10(ault.)-460(Y)109(ou)-300(can)]TJ -263.24 -11.95 Td[(either)-338(turn)-338(it)-337(on)-338(by)-337(c)-1(hanging)-338(the)-337(l)-1(ine)-337(in)-338(your)]TJ/F49 9.96 Tf 187.45 0 Td[(t)-1(exmf.cnf)]TJ/F73 9.96 Tf 50.44 0 Td[(\050con\002g)-1(uration)-338(\002le)-337(of)-338(your)]TJ -237.89 -11.96 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-250(system)-1(\051)-250(to:)]TJ +/F37 9.96 Tf 0 0 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-283(will)-284(stop)-283(a)-1(t)-283(the)-284(moment)-284(when)-283(i)-1(t)-283(encoun)-1(ter)-283(the)]TJ/F40 9.96 Tf 198.11 0 Td[(\134w)-1(rite18)]TJ/F37 9.96 Tf 50.64 0 Td[(c)-1(ommand,)-292(esca)-1(pes)-283(to)]TJ -258.02 -11.96 Td[(shell,)-250(e)14(x)15(ecutes)]TJ/F40 9.96 Tf 60.29 0 Td[(ls)-601(-l)]TJ/F37 9.96 Tf 32.38 0 Td[(comm)-1(and)-250(and)-251(return)-250(to)-250(t)-1(he)-250(compil)-1(ation)-250(proc)-1(ess.)]TJ/F38 14.35 Tf -92.67 -39.6 Td[(2)-999(Shell)-250(esc)1(ape)]TJ/F37 9.96 Tf 0 -28.24 Td[(In)-298(all)-297(t)-1(he)-297(w)-1(eb2c)-298(T)]TJ 72.72 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-298(implem)-1(entations,)-310(shell)-298(escap)-1(e)-297(is)-298(turne)-1(d)-297(of)25(f)-298(by)-298(def)10(au)-1(lt.)-452(Y)109(ou)-297(c)-1(an)]TJ -77.56 -11.96 Td[(either)-290(turn)-289(it)-289(o)-1(n)-289(by)-289(ch)-1(anging)-289(th)-1(e)-289(line)-289(in)-290(your)]TJ/F40 9.96 Tf 182.65 0 Td[(tex)-1(mf.cnf)]TJ/F37 9.96 Tf 56.68 0 Td[(\050con\002g)-1(uration)-290(\002le)-289(of)-289(yo)-1(ur)]TJ -239.33 -11.95 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-250(system)-1(\051)-250(to:)]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -144.44 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(1)]TJ +/F37 9.96 Tf 0 0 Td[(1)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj @@ -73,27 +73,27 @@ endobj /Contents 3 0 R /Resources 1 0 R /MediaBox [0 0 612 792] -/Parent 19 0 R +/Parent 12 0 R >> endobj 1 0 obj << -/Font << /F73 6 0 R /F75 9 0 R /F49 12 0 R /F85 15 0 R /F84 18 0 R >> +/Font << /F37 5 0 R /F38 7 0 R /F40 9 0 R /F45 11 0 R >> /ProcSet [ /PDF /Text ] >> endobj -22 0 obj << -/Length 8506 +15 0 obj << +/Length 8236 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -368.62 -27.08 cm +1 0 0 1 -368.62 -27.14 cm q []0 d 0 J 0.4 w 0 0.2 m -87.27 0.2 l +98.03 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -105,11 +105,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -654.06 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 114.84 657.35 Td[(she)1(ll_e)1(scape)-524(=)-525(t)]TJ +/F40 8.97 Tf 0 0 Td[(sh)1(ell_)1(escap)1(e)-600(=)-599(t)]TJ ET -1 0 0 1 195.94 654.06 cm +1 0 0 1 91.85 -3.29 cm q []0 d 0 J @@ -118,26 +118,26 @@ q 0.2 10.96 l S Q -1 0 0 1 -87.08 -0.4 cm +1 0 0 1 -97.83 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -87.27 0.2 l +98.03 0.2 l S Q -1 0 0 1 -108.86 -653.66 cm +1 0 0 1 24.91 -17.6 cm BT -/F73 9.96 Tf 133.77 636 Td[(which)-270(wil)-1(l)-269(be)-270(`)]TJ/F49 9.96 Tf 60.63 0 Td[(f)]TJ/F73 9.96 Tf 5.23 0 Td[(')-270(by)-270(def)10(ault.)-370(Y)110(ou)-270(ha)20(v)15(e)-270(to)-270(recreate)-270(all)-270(the)-270(for)-1(mats)-270(lik)10(e)]TJ/F49 9.96 Tf 215.08 0 Td[(p)-1(dflatex)-1(.fmt)]TJ/F73 9.96 Tf -280.94 -11.96 Td[(or)-234(wh)-1(ate)25(v)15(er)-234(yo)-1(u)-234(might)-235(need.)-305(This)-234(i)-1(s)-234(not)-234(a)-234(w)-1(ise)-234(step)-235(though,)-238(since)-234(i)-1(t)-234(mak)10(es)-235(you)-234(open)-235(to)]TJ 0 -11.95 Td[(the)-250(ass)-1(ault)-250(of)-250(T)35(r)-1(ojan)-250(macr)-1(os)-250(withou)-1(t)-250(your)-250(kn)-1(o)25(wledge.)]TJ 0 -17.93 Td[(The)-272(mo)-1(re)-272(ele)15(g)5(ant)-272(w)9(ay)-272(will)-272(be)-272(t)-1(o)-272(in)40(v)20(ok)10(e)-272(sh)-1(ell)-272(escape)-273(with)-272(a)-272(switc)-1(h,)-277(eac)-1(h)-272(time)-272(you)-273(run)]TJ 0 -11.96 Td[(the)-250(com)-1(piler)-250(lik)10(e)-1(:)]TJ +/F37 9.96 Tf 0 0 Td[(which)-201(will)-201(be)-201(`)]TJ/F40 9.96 Tf 58.56 0 Td[(f)]TJ/F37 9.96 Tf 5.98 0 Td[(')-200(b)-1(y)-200(def)9(ault.)-294(Y)110(ou)-200(h)-1(a)20(v)15(e)-200(t)-1(o)-200(recr)-1(eate)-200(a)-1(ll)-200(the)-201(forma)-1(ts)-200(lik)10(e)]TJ/F40 9.96 Tf 207.44 0 Td[(pdfla)-1(tex.fm)-1(t)]TJ/F37 9.96 Tf -271.98 -11.96 Td[(or)-234(wh)-1(ate)25(v)15(er)-234(yo)-1(u)-234(might)-235(need.)-305(This)-234(i)-1(s)-234(not)-234(a)-235(wise)-234(step)-235(though,)-238(since)-234(i)-1(t)-234(mak)10(es)-235(you)-234(open)-235(to)]TJ 0 -11.95 Td[(the)-250(ass)-1(ault)-250(of)-250(T)35(ro)-1(jan)-250(macro)-1(s)-250(without)-251(your)-250(kno)25(w)-1(ledge.)]TJ 0 -16.26 Td[(The)-272(mo)-1(re)-272(ele)15(g)5(ant)-272(w)9(ay)-272(will)-272(be)-273(to)-272(in)40(v)20(ok)10(e)-272(sh)-1(ell)-272(escape)-273(with)-272(a)-272(switc)-1(h,)-277(eac)-1(h)-272(time)-272(you)-273(run)]TJ 0 -11.95 Td[(the)-250(com)-1(piler)-250(lik)10(e)-1(:)]TJ ET -1 0 0 1 108.86 560.87 cm +1 0 0 1 -24.91 -73.52 cm q []0 d 0 J 0.4 w 0 0.2 m -172 0.2 l +175.48 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -149,11 +149,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -549.91 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 114.84 553.2 Td[(pdf)1(late)1(x)-525(-sh)1(ell-e)1(scap)1(e)-525()]TJ +/F40 8.97 Tf 0 0 Td[(pd)1(flat)1(ex)-600(-s)1(hell)1(-esc)1(ape)]TJ/F32 8.97 Tf 123.74 0 Td[(h)]TJ/F45 8.97 Tf 3.58 0 Td[(\002le)-249(name)]TJ/F32 8.97 Tf 32.62 0 Td[(i)]TJ ET -1 0 0 1 280.67 549.91 cm +1 0 0 1 169.3 -3.29 cm q []0 d 0 J @@ -162,26 +162,26 @@ q 0.2 10.96 l S Q -1 0 0 1 -171.81 -0.4 cm +1 0 0 1 -175.28 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -172 0.2 l +175.48 0.2 l S Q -1 0 0 1 -108.86 -549.51 cm +1 0 0 1 24.91 -17.6 cm BT -/F73 9.96 Tf 133.77 531.85 Td[(This)-384(elimi)-1(nates)-384(the)-384(vulnerab)-1(ility)-384(to)-384(macros)]TJ/F84 9.96 Tf 177.39 0 Td[(/)]TJ/F73 9.96 Tf 2.72 0 Td[(pack)-1(ages)-384(written)-384(by)-384(intell)-1(igent)-384(crimina)-1(l)]TJ -180.11 -11.95 Td[(minds.)]TJ/F75 14.35 Tf 0 -39.61 Td[(3)-999(Usage)]TJ/F73 9.96 Tf 0 -28.24 Td[(The)-220(u)-1(sage)-220(is)-221(v)15(ery)-220(s)-1(imple,)-226(a)-1(s)-220(usual)-221(you)-220(ha)19(v)15(e)-220(to)-221(load)-220(the)-221(packag)-1(e)-220(with)-221(a)-220(packa)-1(ge)-220(load)-1(ing)]TJ 0 -11.96 Td[(line)-250(in)-251(the)-250(pream)-1(ble)-250(of)-250(yo)-1(ur)-250(docum)-1(ent:)]TJ +/F37 9.96 Tf 0 0 Td[(This)-383(e)-1(liminates)-384(the)-383(vulne)-1(rability)-383(t)-1(o)-383(macros)-1(/packages)-384(written)-384(by)-383(intellig)-1(ent)-383(crim)-1(inal)]TJ 0 -11.95 Td[(minds.)]TJ/F38 14.35 Tf 0 -37.18 Td[(3)-999(Usage)]TJ/F37 9.96 Tf 0 -26.57 Td[(The)-221(usage)-220(is)-221(v)15(ery)-220(s)-1(imple,)-226(a)-1(s)-220(usual)-221(you)-220(ha)19(v)15(e)-220(to)-221(load)-220(the)-221(packag)-1(e)-220(with)-221(a)-220(pack)-1(age)-220(load)-1(ing)]TJ 0 -11.95 Td[(line)-250(in)-251(the)-250(pream)-1(ble)-250(of)-250(you)-1(r)-250(docume)-1(nt:)]TJ ET -1 0 0 1 108.86 418.76 cm +1 0 0 1 -24.91 -109.05 cm q []0 d 0 J 0.4 w 0 0.2 m -115.52 0.2 l +130.31 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -193,11 +193,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -407.8 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 114.84 411.09 Td[(\134us)1(epac)1(kage{)1(pdftr)1(icks)1(})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pdf)1(tric)1(ks})]TJ ET -1 0 0 1 224.18 407.8 cm +1 0 0 1 124.13 -3.29 cm q []0 d 0 J @@ -206,26 +206,26 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.32 -0.39 cm +1 0 0 1 -130.11 -0.39 cm q []0 d 0 J 0.4 w 0 0.2 m -115.52 0.2 l +130.31 0.2 l S Q -1 0 0 1 -108.86 -407.41 cm +1 0 0 1 24.91 -17.6 cm BT -/F73 9.96 Tf 133.77 389.74 Td[(All)-332(the)-332(packages)-332(that)-332(are)-332(needed)-332(for)-332(the)-332(compila)-1(tion)-331(o)-1(f)-331(the)]TJ/F49 9.96 Tf 244.93 0 Td[(pstric)-1(ks)]TJ/F73 9.96 Tf 45.14 0 Td[(cod)-1(e)-331(sha)-1(ll)-331(be)]TJ -290.07 -11.95 Td[(enclos)-1(ed)-234(within)-234(an)-234(en)40(vi)-1(ronment)]TJ/F49 9.96 Tf 129 0 Td[(\134)-1(begin{p)-1(sinputs)-1(})]TJ/F73 9.96 Tf 86.02 0 Td[(.)-150(.)-150(.)]TJ/F49 9.96 Tf 11.95 0 Td[(\134)-1(end{psi)-1(nputs})]TJ/F73 9.96 Tf 75.56 0 Td[(in)-234(order)-234(to)]TJ -302.53 -11.96 Td[(mak)10(e)-299(i)-1(t)-299(a)20(v)25(ailabl)-1(e)-299(to)-299(all)-299(th)-1(e)-299(\002gure)-299(d)-1(ocuments)-300(during)-299(c)-1(ompilatio)-1(n.)-457(An)-299(e)15(x)-1(ample)-299(of)-300(this)]TJ 0 -11.95 Td[(will)-250(lo)-1(ok)-250(lik)10(e)]TJ +/F37 9.96 Tf 0 0 Td[(All)-384(the)-383(p)-1(ackages)-384(that)-384(are)-384(needed)-384(for)-384(the)-383(c)-1(ompilation)-384(of)-384(the)]TJ/F40 9.96 Tf 250.62 0 Td[(pst)-1(ricks)]TJ/F37 9.96 Tf 51.64 0 Td[(code)-384(shal)-1(l)]TJ -302.26 -11.96 Td[(be)-224(enclosed)-224(within)-224(an)-224(en)40(viro)-1(nment)]TJ/F40 9.96 Tf 140.22 0 Td[(\134)-1(begin{p)-1(sinput)-1(s})]TJ/F37 9.96 Tf 97.87 0 Td[(.)-150(.)-150(.)]TJ/F40 9.96 Tf 11.96 0 Td[(\134end{p)-1(sinput)-1(s})]TJ/F37 9.96 Tf 85.91 0 Td[(in)]TJ -335.96 -11.95 Td[(order)-259(to)-258(m)-1(ak)10(e)-258(it)-259(a)20(v)25(aila)-1(ble)-258(to)-259(all)-259(the)-258(\002g)-1(ure)-258(do)-1(cuments)-259(during)-259(compi)-1(lation.)-335(An)-259(e)15(xam)-1(ple)]TJ 0 -11.96 Td[(of)-250(this)-251(will)-250(look)-250(l)-1(ik)10(e)]TJ ET -1 0 0 1 108.86 334.19 cm +1 0 0 1 -24.91 -55.56 cm q []0 d 0 J 0.4 w 0 0.2 m -115.52 0.2 l +130.31 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -237,11 +237,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -323.23 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 114.84 326.52 Td[(\134be)1(gin{)1(psinp)1(uts})]TJ +/F40 8.97 Tf 0 0 Td[(\134b)1(egin)1({psi)1(nputs)1(})]TJ ET -1 0 0 1 224.18 323.23 cm +1 0 0 1 124.13 -3.29 cm q []0 d 0 J @@ -250,7 +250,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -259,11 +259,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -312.27 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 315.56 Td[(\134)1(usepa)1(ckage)1({pst)1(ricks)1(})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pst)1(rick)1(s})]TJ ET -1 0 0 1 224.18 312.27 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -272,7 +272,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.95 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -281,11 +281,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -301.32 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 304.6 Td[(\134)1(usepa)1(ckage)1({col)1(or})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{col)1(or})]TJ ET -1 0 0 1 224.18 301.32 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -294,7 +294,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -303,11 +303,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -290.36 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 293.64 Td[(\134)1(usepa)1(ckage)1({pst)1(col})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pst)1(col})]TJ ET -1 0 0 1 224.18 290.36 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -316,7 +316,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.95 cm q []0 d 0 J @@ -325,11 +325,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -279.4 cm +1 0 0 1 11.56 3.28 cm BT -/F49 8.97 Tf 119.55 282.69 Td[(\134)1(usepa)1(ckage)1({pst)1(-plot)1(})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pst)1(-plo)1(t})]TJ ET -1 0 0 1 224.18 279.4 cm +1 0 0 1 118.75 -3.28 cm q []0 d 0 J @@ -338,7 +338,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -347,11 +347,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -268.44 cm +1 0 0 1 11.56 3.28 cm BT -/F49 8.97 Tf 119.55 271.73 Td[(\134)1(usepa)1(ckage)1({pst)1(-tree)1(})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pst)1(-tre)1(e})]TJ ET -1 0 0 1 224.18 268.44 cm +1 0 0 1 118.75 -3.28 cm q []0 d 0 J @@ -360,7 +360,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -369,11 +369,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -257.48 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 260.77 Td[(\134)1(usepa)1(ckage)1({pst)1(-eps})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pst)1(-eps)1(})]TJ ET -1 0 0 1 224.18 257.48 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -382,7 +382,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -391,11 +391,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -246.52 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 249.81 Td[(\134)1(usepa)1(ckage)1({mul)1(tido})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{mul)1(tido)1(})]TJ ET -1 0 0 1 224.18 246.52 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -404,7 +404,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -413,11 +413,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -235.56 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 238.85 Td[(\134)1(usepa)1(ckage)1({pst)1(-node)1(})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pst)1(-nod)1(e})]TJ ET -1 0 0 1 224.18 235.56 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -426,7 +426,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -435,11 +435,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -224.6 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 227.89 Td[(\134)1(usepa)1(ckage)1({pst)1(-eps})]TJ +/F40 8.97 Tf 0 0 Td[(\134u)1(sepa)1(ckag)1(e{pst)1(-eps)1(})]TJ ET -1 0 0 1 224.18 224.6 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -448,7 +448,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.96 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -457,11 +457,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -213.64 cm +1 0 0 1 11.56 3.29 cm BT -/F49 8.97 Tf 119.55 216.93 Td[(.)1(..)]TJ +/F40 8.97 Tf 0 0 Td[(..)1(.)]TJ ET -1 0 0 1 224.18 213.64 cm +1 0 0 1 118.75 -3.29 cm q []0 d 0 J @@ -470,7 +470,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.52 -10.95 cm +1 0 0 1 -130.31 -10.96 cm q []0 d 0 J @@ -479,11 +479,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -202.69 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 114.84 205.97 Td[(\134en)1(d{ps)1(input)1(s})]TJ +/F40 8.97 Tf 0 0 Td[(\134e)1(nd{p)1(sinp)1(uts})]TJ ET -1 0 0 1 224.18 202.69 cm +1 0 0 1 124.13 -3.29 cm q []0 d 0 J @@ -492,131 +492,105 @@ q 0.2 10.96 l S Q -1 0 0 1 -115.32 -0.4 cm +1 0 0 1 -130.11 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -115.52 0.2 l +130.31 0.2 l S Q -1 0 0 1 -108.86 -202.29 cm +1 0 0 1 24.91 -17.07 cm BT -/F73 9.96 Tf 133.77 185.21 Td[(Each)]TJ/F49 9.96 Tf 23.59 0 Td[(pspict)-1(ure)]TJ/F73 9.96 Tf 50.75 0 Td[(en)40(vironm)-1(ent)-369(along)-369(w)-1(ith)-369(an)15(y)-369(macr)-1(o)-369(code)-369(shall)-369(b)-1(e)-369(enclosed)-369(w)-1(ithin)]TJ -74.34 -11.95 Td[(an)-372(en)40(v)-1(ironment)]TJ/F85 9.96 Tf 66.78 0 Td[(viz.)]TJ/F73 9.96 Tf 13.56 0 Td[(,)]TJ/F49 9.96 Tf 6.5 0 Td[(pdfpic)]TJ/F73 9.96 Tf 31.38 0 Td[(.)-676(Thi)-1(s)-372(will)-372(ena)-1(ble)-372(pdfL)]TJ/F73 6.97 Tf 95.34 2 Td[(A)]TJ/F73 9.96 Tf 3.54 -2 Td[(T)]TJ 4.43 -2.25 Td[(E)]TJ 4.84 2.25 Td[(X)-372(to)-373(write)-372(e)15(xt)-1(ernal)-372(\002les)-373(lik)10(e)]TJ/F49 9.96 Tf -226.37 -11.96 Td[(fig1.)-1(tex)]TJ/F73 9.96 Tf 41.84 0 Td[(,)]TJ/F49 9.96 Tf 5.88 0 Td[(fi)-1(g2.tex)]TJ/F73 9.96 Tf 41.85 0 Td[(,)-340(.)-150(.)-150(.)-150(,)-341(depend)-1(ing)-322(on)-323(the)-323(number)-323(of)]TJ/F49 9.96 Tf 142.14 0 Td[(psT)-1(ricks)]TJ/F73 9.96 Tf 45.06 0 Td[(\002gures)-323(you)-322(ha)19(v)15(e)]TJ -276.77 -11.95 Td[(include)-1(d)-197(in)-197(you)-1(r)-197(docume)-1(nt.)]TJ/F49 9.96 Tf 110.91 0 Td[(pdftri)-1(cks)]TJ/F73 9.96 Tf 49.03 0 Td[(w)-1(ill)-197(intellig)-1(ently)-197(\002nd)-198(out)-197(whe)-1(ther)-197(your)-198(pdfT)]TJ 171.73 -2.25 Td[(E)]TJ 4.85 2.25 Td[(X)]TJ -336.52 -11.96 Td[(implem)-1(entation)-298(has)-298(she)-1(ll)-297(es)-1(cape)-298(f)10(acility)-298(enab)-1(led)-298(or)-297(n)-1(ot.)-453(Dependi)-1(ng)-297(o)-1(n)-297(th)-1(is,)-309(th)-1(ere)-298(are)]TJ 0 -11.95 Td[(tw)10(o)-250(w)10(a)-1(ys)-250(of)-250(app)-1(roaching)-251(the)-250(proble)-1(m)-250(which)-251(are)-250(gi)25(v)15(en)-251(in)-250(the)-250(suc)-1(ceeding)-250(s)-1(ections.)]TJ +/F37 9.96 Tf 0 0 Td[(Each)]TJ/F40 9.96 Tf 22.98 0 Td[(pspict)-1(ure)]TJ/F37 9.96 Tf 56.86 0 Td[(en)40(viron)-1(ment)-308(along)-308(with)-308(an)15(y)-308(macro)-308(code)-308(shall)-308(be)-308(enclose)-1(d)-307(wit)-1(hin)]TJ -79.84 -11.95 Td[(an)-341(en)40(vironm)-1(ent)]TJ/F45 9.96 Tf 66.15 0 Td[(viz.)]TJ/F37 9.96 Tf 13.56 0 Td[(,)]TJ/F40 9.96 Tf 6.1 0 Td[(p)-1(dfpic)]TJ/F37 9.96 Tf 35.87 0 Td[(.)-582(This)-340(w)-1(ill)-340(en)-1(able)-341(pdfL)]TJ/F37 6.97 Tf 93.45 2 Td[(A)]TJ/F37 9.96 Tf 3.55 -2 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-341(to)-341(write)-341(e)15(xterna)-1(l)-340(\002les)-341(lik)10(e)]TJ/F40 9.96 Tf -227.94 -11.96 Td[(fig1.)-1(tex)]TJ/F37 9.96 Tf 47.82 0 Td[(,)]TJ/F40 9.96 Tf 6.31 0 Td[(f)-1(ig2.te)-1(x)]TJ/F37 9.96 Tf 47.83 0 Td[(,)-384(.)-150(.)-150(.)-150(,)-384(dep)-1(ending)-357(o)-1(n)-357(the)-358(number)-358(of)]TJ/F40 9.96 Tf 144.75 0 Td[(psTr)-1(icks)]TJ/F37 9.96 Tf 51.38 0 Td[(\002gure)-1(s)-357(you)]TJ -298.09 -11.95 Td[(ha)20(v)15(e)-242(included)-242(in)-242(your)-241(d)-1(ocument.)]TJ/F40 9.96 Tf 133.24 0 Td[(pdf)-1(tricks)]TJ/F37 9.96 Tf 56.2 0 Td[(w)-1(ill)-241(inte)-1(lligently)-242(\002nd)-241(o)-1(ut)-241(wh)-1(ether)-241(y)-1(our)]TJ -189.44 -11.96 Td[(pdfT)]TJ 17.7 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-339(im)-1(plementa)-1(tion)-340(has)-339(s)-1(hell)-339(e)-1(scape)-340(f)10(acility)-340(enable)-1(d)-339(or)-340(not.)-579(Depen)-1(ding)-340(on)-339(th)-1(is,)]TJ -22.55 -11.95 Td[(there)-395(are)-394(tw)10(o)-395(w)10(ays)-395(of)-394(app)-1(roaching)-395(the)-394(pro)-1(blem)-394(w)-1(hich)-394(are)-395(gi)25(v)15(en)-395(in)-394(the)-395(succeed)-1(ing)]TJ 0 -11.96 Td[(section)-1(s.)]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -101.62 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(2)]TJ +/F37 9.96 Tf 0 0 Td[(2)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -21 0 obj << +14 0 obj << /Type /Page -/Contents 22 0 R -/Resources 20 0 R +/Contents 15 0 R +/Resources 13 0 R /MediaBox [0 0 612 792] -/Parent 19 0 R +/Parent 12 0 R >> endobj -20 0 obj << -/Font << /F49 12 0 R /F73 6 0 R /F84 18 0 R /F75 9 0 R /F85 15 0 R >> +13 0 obj << +/Font << /F40 9 0 R /F37 5 0 R /F32 18 0 R /F45 11 0 R /F38 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj -25 0 obj << -/Length 5650 +22 0 obj << +/Length 5927 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -477.48 -692.1 cm +1 0 0 1 -343.71 -34.86 cm BT -/F75 11.96 Tf 133.77 657.24 Td[(3.1)-999(W)18(i)1(th)-250(she)1(ll)-250(esca)1(pe)]TJ/F73 9.96 Tf 0 -24.66 Td[(W)40(ith)-310(shell)-310(escape)-310(opti)-1(on)-309(in)40(v)19(ok)10(ed,)-325(one)-309(n)-1(eed)-309(n)-1(ot)-309(bo)-1(ther)-310(an)15(ything.)-489(The)-310(usual)-310(comp)-1(ila-)]TJ 0 -11.96 Td[(tion)-293(with)-293(pd)-1(fL)]TJ/F73 6.97 Tf 54.83 2 Td[(A)]TJ/F73 9.96 Tf 3.54 -2 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-293(will)-293(result)-293(in)-293(a)]TJ/F49 9.96 Tf 71.58 0 Td[(pdf)]TJ/F73 9.96 Tf 18.61 0 Td[(docum)-1(ent)-293(with)-293(all)-293(the)-293(\002gure)-1(s)-292(a)-1(ppearing)-293(in)-293(the)]TJ -157.83 -11.95 Td[(correct)-290(posi)-1(tions.)-429(pdfT)]TJ 90.99 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-290(will)-290(do)-289(th)-1(e)-289(ne)-1(cessary)-290(job)-290(of)-289(w)-1(riting)-290(all)-289(t)-1(he)]TJ/F49 9.96 Tf 184.34 0 Td[(ps)-1(tricks)]TJ/F73 9.96 Tf 44.73 0 Td[(code)]TJ -324.9 -11.96 Td[(to)-272(self)-272(standing)-272(e)15(xte)-1(rnal)]TJ/F49 9.96 Tf 98.66 0 Td[(*.tex)]TJ/F73 9.96 Tf 28.86 0 Td[(documen)-1(ts,)-277(escapes)-272(to)-272(shell,)-278(compiles)-272(the)]TJ/F49 9.96 Tf 169.63 0 Td[(*.tex)]TJ/F73 9.96 Tf 28.86 0 Td[(doc-)]TJ -326.01 -11.95 Td[(ument)-1(,)-312(con)40(v)15(erts)-300(to)]TJ/F49 9.96 Tf 77.43 0 Td[(*.e)-1(ps)]TJ/F73 9.96 Tf 26.15 0 Td[(,)-312(t)-1(ranslates)-300(to)]TJ/F49 9.96 Tf 56.95 0 Td[(*.)-1(pdf)]TJ/F73 9.96 Tf 29.14 0 Td[(and)-300(inclu)-1(des)-300(in)-300(the)-300(location)-300(whe)-1(re)-299(t)-1(he)]TJ/F49 9.96 Tf -189.67 -11.96 Td[(pstri)-1(cks)]TJ/F73 9.96 Tf 44.33 0 Td[(cod)-1(e)-250(appeare)-1(d.)]TJ/F75 11.96 Tf -44.33 -34.49 Td[(3.2)-999(W)18(i)1(thout)-249(shell)-250(e)1(scape)]TJ/F73 9.96 Tf 0 -24.66 Td[(A)-356(sp)-1(ecial)-356(sh)-1(ell)-356(scri)-1(pt)-356(viz.,)]TJ/F49 9.96 Tf 110.98 0 Td[(pst2p)-1(df)]TJ/F73 9.96 Tf 40.16 0 Td[(is)-357(also)-356(p)-1(ro)15(vided.)-629(No)24(w)-356(as)-357(the)-356(se)-1(cond)-356(s)-1(tep,)-383(you)]TJ -151.14 -11.96 Td[(ha)20(v)15(e)-357(t)-1(o)-357(e)15(x)15(ecute)-358(this)-357(she)-1(ll)-357(script,)]TJ/F49 9.96 Tf 135.79 0 Td[(pst2pd)-1(f)]TJ/F73 9.96 Tf 40.17 0 Td[(which)-357(w)-1(ill)-357(comp)-1(ile)-357(all)-357(th)-1(e)-357(ne)25(wly)-358(written)]TJ/F49 9.96 Tf -175.96 -11.95 Td[(fig1.)-1(tex)]TJ/F73 9.96 Tf 41.84 0 Td[(,.)-150(.)-150(.)-151(,)-330(an)-1(d)-314(re)-1(specti)25(v)15(e)]TJ/F49 9.96 Tf 80.88 0 Td[(*.dvi)]TJ/F73 9.96 Tf 29.28 0 Td[(will)-315(be)-315(genera)-1(ted,)-331(which)-315(will)-315(be)-315(transla)-1(ted)-314(i)-1(nto)]TJ -152 -11.96 Td[(respec)-1(ti)25(v)15(e)]TJ/F49 9.96 Tf 42.54 0 Td[(*.eps)]TJ/F73 9.96 Tf 28.7 0 Td[(\002les)-256(and)-257(\002nally)-256(tran)-1(slated)-256(to)]TJ/F49 9.96 Tf 115.69 0 Td[(*.pdf)]TJ/F73 9.96 Tf 28.7 0 Td[(by)-256(calli)-1(ng)]TJ/F49 9.96 Tf 42.18 0 Td[(epsto)-1(pdf)]TJ/F73 9.96 Tf 41.84 0 Td[(.)-328(As)-256(a)-256(\002na)-1(l)]TJ -299.65 -11.95 Td[(step,)-400(you)-370(shall)-370(run)-370(pd)-1(fL)]TJ/F73 6.97 Tf 96.39 2 Td[(A)]TJ/F73 9.96 Tf 3.54 -2 Td[(T)]TJ 4.43 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-370(ag)5(ain,)-400(so)-370(that)-370(the)]TJ/F49 9.96 Tf 85.9 0 Td[(*.pdf)]TJ/F73 9.96 Tf 29.83 0 Td[(\002gur)-1(es)-369(w)-1(ill)-370(be)-370(included)-370(wit)-1(h)]TJ -224.93 -11.96 Td[(the)-319(usual)]TJ/F49 9.96 Tf 39.55 0 Td[(\134incl)-1(udegrap)-1(hics)]TJ/F73 9.96 Tf 86.86 0 Td[(comma)-1(nd)-318(au)-1(tomatical)-1(ly)-318(in)-319(the)-319(locatio)-1(ns)-318(w)-1(here)25(v)15(er)-319(the)]TJ/F49 9.96 Tf -126.41 -11.95 Td[(pstri)-1(cks)]TJ/F73 9.96 Tf 44.33 0 Td[(cod)-1(e)-250(appeare)-1(d.)]TJ -44.33 -17.93 Td[(See)-250(an)-251(e)15(xample)-251(belo)25(w:)]TJ +/F38 11.96 Tf 0 0 Td[(3.1)-999(W)18(i)1(th)-250(she)1(ll)-250(esca)1(pe)]TJ/F37 9.96 Tf 0 -24.48 Td[(W)40(ith)-217(shell)-216(e)-1(scape)-216(o)-1(ption)-216(in)39(v)20(ok)10(ed,)-223(on)-1(e)-216(need)-217(not)-216(b)-1(other)-216(an)14(ything.)-299(The)-217(usual)-217(compila)-1(tion)]TJ 0 -11.95 Td[(with)-276(pdfL)]TJ/F37 6.97 Tf 36.24 1.99 Td[(A)]TJ/F37 9.96 Tf 3.54 -1.99 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-275(wi)-1(ll)-275(resu)-1(lt)-275(in)-276(a)]TJ/F40 9.96 Tf 70.72 0 Td[(pdf)]TJ/F37 9.96 Tf 20.68 0 Td[(docum)-1(ent)-275(w)-1(ith)-275(all)-276(the)-276(\002gures)-276(appe)-1(aring)-276(in)-275(the)-276(cor)20(-)]TJ -140.45 -11.96 Td[(rect)-265(po)-1(sitions.)-356(pdfT)]TJ 77.29 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-266(will)-265(do)-266(the)-265(nec)-1(essary)-265(job)-266(of)-265(writi)-1(ng)-265(all)-265(the)]TJ/F40 9.96 Tf 181.92 0 Td[(pstric)-1(ks)]TJ/F37 9.96 Tf 50.46 0 Td[(code)-265(t)-1(o)]TJ -314.51 -11.95 Td[(self)-254(st)-1(anding)-254(e)14(xternal)]TJ/F40 9.96 Tf 87.68 0 Td[(*.)-1(tex)]TJ/F37 9.96 Tf 32.42 0 Td[(doc)-1(uments,)-256(escapes)-254(t)-1(o)-254(shell,)-256(compiles)-255(the)]TJ/F40 9.96 Tf 168.51 0 Td[(*.tex)]TJ/F37 9.96 Tf 32.41 0 Td[(d)-1(ocu-)]TJ -321.02 -11.96 Td[(ment,)-289(c)-1(on)40(v)15(erts)-281(t)-1(o)]TJ/F40 9.96 Tf 71.85 0 Td[(*.ep)-1(s)]TJ/F37 9.96 Tf 29.89 0 Td[(,)-289(transla)-1(tes)-281(to)]TJ/F40 9.96 Tf 56.35 0 Td[(*.pdf)]TJ/F37 9.96 Tf 32.69 0 Td[(and)-281(inc)-1(ludes)-281(in)-282(the)-281(loca)-1(tion)-281(wh)-1(ere)-281(the)]TJ/F40 9.96 Tf -190.78 -11.95 Td[(pstri)-1(cks)]TJ/F37 9.96 Tf 50.31 0 Td[(code)-251(appeared.)]TJ/F38 11.96 Tf -50.31 -34.23 Td[(3.2)-999(W)18(i)1(thout)-249(shell)-249(escape)]TJ/F37 9.96 Tf 0 -24.47 Td[(A)-324(s)-1(pecial)-325(shell)-325(script)-325(viz.,)]TJ/F40 9.96 Tf 109.31 0 Td[(p)-1(st2pdf)]TJ/F37 9.96 Tf 45.08 0 Td[(is)-325(also)-325(pro)15(vided)-1(.)-533(No)25(w)-325(as)-325(the)-325(second)-325(step,)-344(you)]TJ -154.39 -11.96 Td[(ha)20(v)15(e)-318(to)-318(e)15(x)15(ecute)-318(this)-318(shell)-318(script,)]TJ/F40 9.96 Tf 133.32 0 Td[(pst)-1(2pdf)]TJ/F37 9.96 Tf 45.01 0 Td[(which)-318(will)-318(compile)-318(all)-318(the)-318(ne)25(wly)-318(written)]TJ/F40 9.96 Tf -178.33 -11.95 Td[(fig1.)-1(tex)]TJ/F37 9.96 Tf 47.82 0 Td[(,.)-150(.)-150(.)-150(,)-233(and)-228(re)-1(specti)25(v)15(e)]TJ/F40 9.96 Tf 78.17 0 Td[(*.d)-1(vi)]TJ/F37 9.96 Tf 32.16 0 Td[(will)-229(be)-228(genera)-1(ted,)-232(w)-1(hich)-228(will)-229(be)-228(transl)-1(ated)-228(into)]TJ -158.15 -11.96 Td[(respect)-1(i)25(v)15(e)]TJ/F40 9.96 Tf 43.02 0 Td[(*)-1(.eps)]TJ/F37 9.96 Tf 32.93 0 Td[(\002les)-305(and)-305(\002na)-1(lly)-305(translated)-305(to)]TJ/F40 9.96 Tf 118.12 0 Td[(*.pd)-1(f)]TJ/F37 9.96 Tf 32.92 0 Td[(b)-1(y)-304(c)-1(alling)]TJ/F40 9.96 Tf 43.16 0 Td[(epstop)-1(df)]TJ/F37 9.96 Tf 47.82 0 Td[(.)-474(As)-305(a)]TJ -317.97 -11.95 Td[(\002nal)-205(step,)-213(y)-1(ou)-204(shal)-1(l)-204(run)-204(p)-1(dfL)]TJ/F37 6.97 Tf 109.34 1.99 Td[(A)]TJ/F37 9.96 Tf 3.54 -1.99 Td[(T)]TJ 4.43 -2.25 Td[(E)]TJ 4.84 2.25 Td[(X)-204(ag)4(ain,)-213(so)-205(that)-205(the)]TJ/F40 9.96 Tf 77.45 0 Td[(*.pd)-1(f)]TJ/F37 9.96 Tf 31.92 0 Td[(\002g)-1(ures)-204(wil)-1(l)-204(be)-204(in)-1(cluded)-205(with)]TJ -231.52 -11.96 Td[(the)-361(us)-1(ual)]TJ/F40 9.96 Tf 40.4 0 Td[(\134incl)-1(udegrap)-1(hics)]TJ/F37 9.96 Tf 99.24 0 Td[(command)-362(automati)-1(cally)-361(in)-361(t)-1(he)-361(locatio)-1(ns)-361(where)24(v)15(er)]TJ -139.64 -11.95 Td[(the)]TJ/F40 9.96 Tf 14.66 0 Td[(ps)-1(tricks)]TJ/F37 9.96 Tf 50.31 0 Td[(c)-1(ode)-250(appea)-1(red.)]TJ -64.97 -17.75 Td[(See)-250(an)-251(e)15(xample)-251(belo)25(w:)]TJ ET -1 0 0 1 128.79 398.08 cm +1 0 0 1 -4.98 -258.68 cm 0 g 0 G 0 g 0 G -1 0 0 1 -128.79 -398.08 cm +1 0 0 1 4.98 0 cm BT -/F49 9.96 Tf 133.77 398.08 Td[(\134begi)-1(n{pdfdis)-1(play})]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(lightbl)-1(ue}{rgb)-1(}{0,0,.5)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(Navy}{r)-1(gb}{0,0)-1(,0.5})]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(LemonCh)-1(iffon}{)-1(rgb}{1,0)-1(.98,0.8)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(ForestG)-1(reen}{r)-1(gb}{0.13)-1(,0.55,0)-1(.13})]TJ 0 -11.95 Td[(\134Spec)-1(ialCoor)]TJ 0 -11.96 Td[(\134begi)-1(n{pspict)-1(ure}\050-6)-1(,-6\051\0506,)-1(6\051)]TJ 10.46 -11.95 Td[(\134psax)-1(es{<<->)-1(>}\0500,0\051\050)-1(-6,-6\051\050)-1(6,6\051)]TJ 0 -11.96 Td[(\134psse)-1(t{arrow)-1(s=->>})]TJ 0 -11.95 Td[(\134mult)-1(ido{\134ia)-1(=-5+1}{1)-1(1}{%)]TJ -10.46 -11.96 Td[(\134mult)-1(ido{\134ib=)-1(-5+1}{1)-1(1}{%)]TJ 5.23 -11.95 Td[(\134pstV)-1(erb{/x)-526(\134ia\134spac)-1(e)-525(def)]TJ 15.69 -11.96 Td[(/y)-525(\134)-1(ib\134space)-526(def)]TJ 0 -11.95 Td[(y)-525(0)-526(eq)]TJ 10.46 -11.96 Td[({/Va)-1(lueTemp)-1(A)-525(0)-525(def)]TJ 5.23 -11.96 Td[(/Va)-1(lueTempB)-526(0.5)-525(de)-1(f})]TJ -5.23 -11.95 Td[({/Va)-1(lueTemp)-1(Z)-525(2)-525(1)-525(x)-526(x)-525(mul)-525(y)-526(y)-525(mul)-526(div)-525(add)-526(sqrt)-525(mu)-1(l)-525(def)]TJ 5.23 -11.96 Td[(/Va)-1(lueTempA)-526(1)-525(Valu)-1(eTempZ)-525(d)-1(iv)-525(def)]TJ 0 -11.95 Td[(/Va)-1(lueTempB)-526(x)-525(y)-525(Va)-1(lueTempZ)-526(mul)-525(di)-1(v)-525(def})]TJ -5.23 -11.96 Td[(ifel)-1(se})]TJ -26.15 -11.95 Td[(\134psli)-1(ne\050!)-525(x)-526(ValueTem)-1(pA)-525(sub)-526(y)-525(ValueT)-1(empB)-525(su)-1(b\051)]TJ 36.61 -11.96 Td[(\050!)-526(x)-525(ValueT)-1(empA)-525(ad)-1(d)-525(y)-525(Val)-1(ueTempB)-526(add\051}})]TJ -41.84 -11.95 Td[(\134end{)-1(pspictur)-1(e})]TJ 0 -11.96 Td[(\134end{)-1(pdfdispl)-1(ay})]TJ +/F40 8.97 Tf 0 0 Td[(\134b)1(egin)1({pdf)1(pic})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{l)1(ight)1(blue)1(}{rgb)1(}{0,)1(0,.5)1(})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{N)1(avy})1({rgb)1(}{0,0)1(,0.5)1(})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{L)1(emon)1(Chif)1(fon}{)1(rgb})1({1,0)1(.98,)1(0.8})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{F)1(ores)1(tGre)1(en}{r)1(gb}{)1(0.13)1(,0.5)1(5,0.)1(13})]TJ 0 -10.96 Td[(\134S)1(peci)1(alCo)1(or)]TJ 0 -10.96 Td[(\134b)1(egin)1({psp)1(ictu)1(re}\050)1(-6,-)1(6\051\0506,)1(6\051)]TJ 10.76 -10.96 Td[(\134p)1(saxe)1(s{<-)1(>}\0500)1(,0\051\050)1(-6,-)1(6\051\0506)1(,6\051)]TJ 0 -10.96 Td[(\134p)1(sset)1({arr)1(ows=)1(->})]TJ 0 -10.95 Td[(\134m)1(ulti)1(do{\134)1(ia=-)1(5+1})1({11})1({%)]TJ -10.76 -10.96 Td[(\134m)1(ulti)1(do{\134)1(ib=-)1(5+1})1({11})1({%)]TJ 5.38 -10.96 Td[(\134p)1(stVe)1(rb{/)1(x)-600(\134i)1(a\134sp)1(ace)-599(def)]TJ 16.14 -10.96 Td[(/y)-599(\134ib)1(\134spa)1(ce)-600(d)1(ef)]TJ 0 -10.96 Td[(y)-599(0)-600(eq)]TJ 10.76 -10.96 Td[({)1(/Val)1(ueTem)1(pA)-600(0)-599(def)]TJ 5.38 -10.96 Td[(/)1(Valu)1(eTemp)1(B)-600(0.)1(5)-600(de)1(f})]TJ -5.38 -10.96 Td[({)1(/Val)1(ueTem)1(pZ)-600(2)-599(1)-600(x)-599(x)-600(m)1(ul)-600(y)-599(y)-600(m)1(ul)-600(d)1(iv)-600(a)1(dd)-600(sq)1(rt)-600(m)1(ul)-600(d)1(ef)]TJ 5.38 -10.96 Td[(/)1(Valu)1(eTemp)1(A)-600(1)-599(Valu)1(eTem)1(pZ)-600(d)1(iv)-600(d)1(ef)]TJ 0 -10.95 Td[(/)1(Valu)1(eTemp)1(B)-600(x)-599(y)-600(Va)1(lueT)1(empZ)-599(mul)-599(div)-599(def)1(})]TJ -5.38 -10.96 Td[(i)1(fels)1(e})]TJ -26.9 -10.96 Td[(\134p)1(slin)1(e\050!)-599(x)-600(Va)1(lueT)1(empA)-599(sub)-599(y)-600(Va)1(lueT)1(empB)-599(sub)1(\051)]TJ 37.66 -10.96 Td[(\050)1(!)-600(x)-599(Valu)1(eTemp)1(A)-600(ad)1(d)-600(y)-599(Valu)1(eTem)1(pB)-600(a)1(dd\051})1(})]TJ -43.04 -10.96 Td[(\134e)1(nd{p)1(spic)1(ture)1(})]TJ 0 -10.96 Td[(\134e)1(nd{p)1(dfpi)1(c})]TJ/F37 9.96 Tf 0 -27.25 Td[(This)]TJ/F40 9.96 Tf 20.2 0 Td[(ps)-1(Tricks)]TJ/F37 9.96 Tf 50.31 0 Td[(co)-1(de)-250(will)-250(re)-1(sult)-250(in)-250(the)-251(follo)25(wing)-251(graphic:)]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -309.2 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(3)]TJ +/F37 9.96 Tf 0 0 Td[(3)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -24 0 obj << +21 0 obj << /Type /Page -/Contents 25 0 R -/Resources 23 0 R +/Contents 22 0 R +/Resources 20 0 R /MediaBox [0 0 612 792] -/Parent 19 0 R +/Parent 12 0 R >> endobj -23 0 obj << -/Font << /F75 9 0 R /F73 6 0 R /F49 12 0 R >> +20 0 obj << +/Font << /F38 7 0 R /F37 5 0 R /F40 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj -29 0 obj << -/Length 2658 +25 0 obj << +/Length 3589 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -477.48 -692.1 cm -BT -/F73 9.96 Tf 133.77 657.24 Td[(This)]TJ/F49 9.96 Tf 20.2 0 Td[(ps)-1(Tricks)]TJ/F73 9.96 Tf 44.34 0 Td[(code)-250(wil)-1(l)-250(result)-250(in)-251(the)-250(follo)25(w)-1(ing)-250(grap)-1(hic:)]TJ -ET -1 0 0 1 300.64 634.2 cm +1 0 0 1 -324.34 -316.9 cm 0 g 0 G 0 g 0 G -1 0 0 1 -166.87 -355.94 cm +1 0 0 1 4.98 0 cm 1 0 0 rg 1 0 0 RG .70 g .70 G -1 0 0 1 0 352.95 cm -q -[]0 d -0 J -0 j -0 w -0 0 368.89 1.99 re f -S -Q -1 0 0 1 0 -364.91 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 364.91 re f -S -Q -1 0 0 1 1.99 11.96 cm 1 g 1 G 1 g 1 G -1 0 0 1 0 -11.96 cm q []0 d 0 J 0 j 0 w -0 0 364.91 364.91 re f +0 0 295 292 re f S Q -1 0 0 1 0 11.96 cm 1 g 1 G -1 0 0 1 11.96 0 cm 1 0 0 rg 1 0 0 RG q 1 0 0 1 0 0 cm q @@ -624,42 +598,22 @@ q /Im1 Do Q Q -1 0 0 1 341 0 cm +1 0 0 1 295 0 cm 1 0 0 rg 1 0 0 RG -1 0 0 1 11.95 0 cm .70 g .70 G -1 0 0 1 0 -11.96 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 364.91 re f -S -Q -1 0 0 1 -366.9 -1.99 cm -q -[]0 d -0 J -0 j -0 w -0 0 368.89 1.99 re f -S -Q -1 0 0 1 368.89 13.95 cm 1 0 0 rg 1 0 0 RG 0 g 0 G -1 0 0 1 -502.66 -278.26 cm +1 0 0 1 -319.35 -25.9 cm BT -/F73 9.96 Tf 133.77 240.42 Td[(The)-250(fo)-1(llo)25(wing)-250(a)-1(re)-250(the)-250(step)-1(s)-250(in)-250(the)-250(s)-1(equential)-251(order:)]TJ +/F37 9.96 Tf 0 0 Td[(The)-250(fo)-1(llo)25(wing)-250(ar)-1(e)-250(the)-250(steps)-251(in)-250(the)-250(seq)-1(uential)-250(or)-1(der:)]TJ ET -1 0 0 1 108.86 218.7 cm +1 0 0 1 -24.91 -21.71 cm q []0 d 0 J 0.4 w 0 0.2 m -119.78 0.2 l +114.07 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -671,11 +625,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -207.74 cm +1 0 0 1 6.18 3.29 cm BT -/F73 8.97 Tf 114.84 211.03 Td[(1.)]TJ/F49 8.97 Tf 8.97 0 Td[(l)1(atex)-524()]TJ +/F37 8.97 Tf 0 0 Td[(1.)]TJ/F40 8.97 Tf 8.97 0 Td[(l)1(atex)]TJ/F32 8.97 Tf 32.27 0 Td[(h)]TJ/F45 8.97 Tf 3.59 0 Td[(yo)1(ur)-250(doc)1(umen)1(t)]TJ/F32 8.97 Tf 53.7 0 Td[(i)]TJ ET -1 0 0 1 228.44 207.74 cm +1 0 0 1 107.89 -3.29 cm q []0 d 0 J @@ -684,7 +638,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -119.78 -10.96 cm +1 0 0 1 -114.07 -10.96 cm q []0 d 0 J @@ -693,11 +647,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -196.78 cm +1 0 0 1 6.18 3.29 cm BT -/F73 8.97 Tf 114.84 200.07 Td[(2.)]TJ/F49 8.97 Tf 8.97 0 Td[(p)1(st2p)1(df)]TJ +/F37 8.97 Tf 0 0 Td[(2.)]TJ/F40 8.97 Tf 8.97 0 Td[(p)1(st2p)1(df)]TJ ET -1 0 0 1 228.44 196.78 cm +1 0 0 1 107.89 -3.29 cm q []0 d 0 J @@ -706,7 +660,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -119.78 -10.96 cm +1 0 0 1 -114.07 -10.96 cm q []0 d 0 J @@ -715,11 +669,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -185.82 cm +1 0 0 1 6.18 3.29 cm BT -/F73 8.97 Tf 114.84 189.11 Td[(3.)]TJ/F49 8.97 Tf 8.97 0 Td[(l)1(atex)-524()]TJ +/F37 8.97 Tf 0 0 Td[(3.)]TJ/F40 8.97 Tf 8.97 0 Td[(l)1(atex)]TJ/F32 8.97 Tf 32.27 0 Td[(h)]TJ/F45 8.97 Tf 3.59 0 Td[(yo)1(ur)-250(doc)1(umen)1(t)]TJ/F32 8.97 Tf 53.7 0 Td[(i)]TJ ET -1 0 0 1 228.44 185.82 cm +1 0 0 1 107.89 -3.29 cm q []0 d 0 J @@ -728,86 +682,100 @@ q 0.2 10.96 l S Q -1 0 0 1 -119.58 -0.39 cm +1 0 0 1 -113.87 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -119.78 0.2 l +114.07 0.2 l S Q -1 0 0 1 -108.86 -185.43 cm +1 0 0 1 24.91 -41.83 cm +BT +/F38 14.35 Tf 0 0 Td[(4)-999(Options)-249(and)-250(Hoo)1(ks)]TJ +ET +1 0 0 1 -4.98 -26.25 cm +0 g 0 G +1 0 0 1 4.98 0 cm +BT +/F40 9.96 Tf 0 0 Td[(shell)]TJ +ET +1 0 0 1 29.89 0 cm +0 g 0 G +1 0 0 1 4.98 0 cm +BT +/F37 9.96 Tf 0 0 Td[(This)-250(op)-1(tion)-250(will)-250(in)39(v)20(ok)10(e)-250(the)-251(shell)-250(esca)-1(pe)-250(functio)-1(ns.)]TJ +ET +1 0 0 1 -39.85 -19.92 cm +0 g 0 G +1 0 0 1 4.98 0 cm +BT +/F40 9.96 Tf 0 0 Td[(noshe)-1(ll)]TJ +ET +1 0 0 1 41.84 0 cm +0 g 0 G +1 0 0 1 4.98 0 cm BT -/F75 14.35 Tf 133.77 145.03 Td[(4)-999(Options)-250(a)1(nd)-250(Hook)1(s)]TJ +/F37 9.96 Tf 0 0 Td[(Th)-1(is)-320(opt)-1(ion)-320(w)-1(ill)-320(sup)-1(press)-321(the)-320(sh)-1(ell)-320(esc)-1(ape)-320(fu)-1(nctions)-321(and)-321(will)-321(assume)-321(that)]TJ -21.91 -11.96 Td[(there)-250(is)-250(no)-251(shell)-250(esca)-1(pe)-250(f)10(acility)64(.)]TJ ET -1 0 0 1 128.79 119.25 cm +1 0 0 1 -51.8 -31.88 cm 0 g 0 G -1 0 0 1 -128.79 -119.25 cm +1 0 0 1 4.98 0 cm BT -/F49 9.96 Tf 133.77 119.25 Td[(shell)]TJ +/F40 9.96 Tf 0 0 Td[(NoPro)-1(cess)]TJ ET -1 0 0 1 159.92 119.25 cm +1 0 0 1 53.8 0 cm 0 g 0 G -1 0 0 1 -159.92 -119.25 cm +1 0 0 1 4.98 0 cm BT -/F73 9.96 Tf 164.9 119.25 Td[(Thi)-1(s)-250(option)-250(w)-1(ill)-250(in)40(v)20(ok)10(e)-251(the)-250(shell)-251(escape)-250(fu)-1(nctions.)]TJ +/F37 9.96 Tf 0 0 Td[(A)-287(ne)25(w)-287(command)]TJ/F40 9.96 Tf 71.4 0 Td[(\134NoProc)-1(ess)]TJ/F37 9.96 Tf 62.63 0 Td[(has)-286(b)-1(een)-287(introduce)-1(d)-286(in)-287(this)-287(v)15(ersio)-1(n)-286(to)]TJ -167.9 -11.96 Td[(f)10(acilitate)-303(the)-303(suppressin)-1(g)-302(of)-303(pdf)-303(generatio)-1(n)-302(of)-303(those)-303(\002gures)-303(whose)-303(pdf)-55(')55(s)-303(are)-303(al-)]TJ 0 -11.95 Td[(ready)-218(a)20(v)24(ailable.)-300(This)-218(m)-1(ight)-218(pro)14(v)15(e)-218(helpf)-1(ul)-218(when)-219(you)-218(ha)19(v)15(e)-218(more)-219(\002gures)-219(to)-218(proc)-1(ess)]TJ 0 -11.96 Td[(and)-223(man)15(y)-224(of)-223(them)-224(are)-223(pe)-1(rfected)-223(a)-1(nd)-223(don')18(t)-224(need)-223(rec)-1(ompilatio)-1(n)-223(and)-223(tr)-1(anslation)-224(e)25(v-)]TJ 0 -11.96 Td[(erytime)-250(yo)-1(u)-250(run)-250(pdf)-1(L)]TJ/F37 6.97 Tf 81.91 2 Td[(A)]TJ/F37 9.96 Tf 3.54 -2 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X.)-310(The)-250(u)-1(sage)-250(is:)]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 -58.78 -85.07 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(4)]TJ +/F37 9.96 Tf 0 0 Td[(4)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -28 0 obj << +24 0 obj << /Type /Page -/Contents 29 0 R -/Resources 27 0 R +/Contents 25 0 R +/Resources 23 0 R /MediaBox [0 0 612 792] -/Parent 19 0 R +/Parent 12 0 R >> endobj -26 0 obj << +19 0 obj << /Type /XObject /Subtype /Form /FormType 1 -/PTEX.FileName (./test-fig1.pdf) -/PTEX.PageNumber 1 -/PTEX.InfoDict 30 0 R /Matrix [1 0 0 1 0 0] -/BBox [0 0 341 341] +/BBox [0 0 295 292] /Resources << /ProcSet [ /PDF /ImageB /Text ] -/ExtGState << -/R4 31 0 R ->>/Font << /A 32 0 R/R13 37 0 R /R10 38 0 R >> +/ExtGState << /R4 26 0 R >> +/Font << /A 27 0 R>> >> -/Length 39 0 R +/Length 28 0 R /Filter /FlateDecode >> stream -x]7z`YJBoNnCBo Hikr;ags)߬qtt멸=mϟ5%ٲecvv]'[kvo %GLJ!Bi:N!j4 IJ0>ֹɞy\M[ &W0,&n71ߒmHvLs=S.˃BHŸi8*Հdby1xZ)k b{="1jJ䨄٫9Do$NDfP=q+]`l q)ⷋt=v&8G.9WEabxuT"ѓ퓋>嚲Dsg1%bTZ+GMhR5%rX,Κi\:\VA6!ei_*7<ěx\JcDŽ<&dX"G%r(’K oGhsPtcnUd:|zgkW[c+Nghô Ե-%H96ɡ )fSݫ^;y!ñ#v=vr3%u}GV( ibFzBaMxwgkz)@ pd7,rAi*/$0շa]O/`^*@oZ AA-| BYes;H2tw.p!hZOnp]-!jAw^\,Bo;h-$UmrlmFd|~IZ[}K6g[ -{0lӗv^Z,(>EIeۖW.`cRŤ@C IzJ6($!?S]4O#$9BһgP0Y_$t(Q޳HC+H0t2?DzB [CD*="t[zB nMRAKz"qT27^P>0A5$Gڎ{԰9'} Y0MA(QZ(L ^ 9oQGR^(KJU_8*K:m׽0OD$oz?PWDD-πxz(zq#[uMT{'&GDP"!0 5|ȓ߶2/o5"m7T !A>o'#|,).v̮=>-QRav%IUm(G'ۭX$3vT*$N= -M$SOj %WaI}n(AJqKU댇$7 qGPZ5s/ИAEZiA)!߹!*]1ރUZUj(S'wnn>Y:6V7Ia^L՜S(J@` tI-zEJ/'Ŀ~H˧ΟoJNNiKHj/9Q7!'UIT(P(8|:g5@#Ti(/F=Ή(i*AcՊr4 T$˽=m܍ZKAN<(Z1a@uK ki?G$/p=rsjĝt1V^qXc4W6%Zendstream -endobj -30 0 obj -<< -/Producer (GNU Ghostscript 7.05) ->> +x\GƱL\(r0 ;`("d&|=Υ*]_ʺkozfZZMƳ~{Ճ^<M(~Gr9]2͔/;gBP%LXri4$$U6f{elU|³f巣ugr38r } 뫜RZ ö9E'aJǚ4JnZjw/(M-a9TSpn9 +48,'^9eU, K +G5f-c>(B |S.^iXWĐY(k=Ȱp/zXtmQ^J$7 κ$7 $wr|rp `=:'ӛW4),x*)Lĺ%F#ÃOzPX#{ne(6#%*9,/V %dG;J-F(\#mϝF) 5L$a|Ee"EH?c[OPXH!Z2 !ҘwL|B@9儹pI1y^Yc‘{ EUV Iѻ&M WL,UܻWrW&c 0%2TUA YjuU +uZ ,4Z&15N"Ƞ$?YZjuiH#@~FCnX%q}`ev`=Ev250B\Q홆+Оڟ>bJM/e/Ngb("}dzzY1R`U7JK>@}؀}Ḧ́5h-|l)\X!Tia m*||bR#VkA2=d+ 'HcC7oh[AZPTFLȀ߅H#GU0^8>-R *(Etqvx~&k?SA8t^iK| +3 3&LxXL?;A# +@=fPT_ Բ* +gŵ缊(ir +XZPsB~T栠4rP `cI":'*~mFQWNӾ1½֣#eA؞g_Ib +kCT>X/Ei+Yh/Ł$>h̞gͨ?Hգ%?qƳGHFlj0LI%V7疵xvf6]lPSA}JE$Iof@jG@-ح:`Y 䵍Pvfqs9Ti-:hvfM(PPơJd(c;\sYa miE~i|L=(%a|ś;p“IY{zЎ:+ap +ôPs?:f}ZrY'u^^}l{AuFh8Uo3ܩD3z ]b=sO^sv`fDo "c1j,00 " ӿu]u.e4[1잮a5ݥ1߾Y}.yfv (4;0몱c.yxdl0@,HD'RŨ6*ǓrDys6*<+BGAu(HD1N-@GA5ՎD>eM#`]$ a~0[Ci>5*G ԓkTLQ@?:]F5*&߫}JĨHDg2~A{qPS4aD8(`pC@wϙ~Ǵy5D8dڧP{(O Gkw 0T%pP^\H곻r}ށ#89Rx뮩 +~ggJ8Ӻkb ^8"]^N_C(N}ڃ#   ӟ7 { 6h@-F>p4@h̙`Y5ZpDW8j٧JUٓJyҸK˹qh- j"]7;>{ʘMXyq6;b@dr hϿf<}+c T1y,qZ~}<@m}Nx,s}h=&z3 uendstream endobj -31 0 obj +26 0 obj << /Type /ExtGState /Name /R4 @@ -816,2791 +784,2822 @@ endobj /SM 0.02 >> endobj -32 0 obj +27 0 obj << /Type /Font /Name /A /Subtype /Type3 -/Encoding 40 0 R +/Encoding 29 0 R /CharProcs << -/a119 41 0 R -/a118 42 0 R -/a117 43 0 R -/a116 44 0 R -/a115 45 0 R -/a114 46 0 R -/a113 47 0 R -/a112 48 0 R -/a111 49 0 R -/a110 50 0 R -/a109 51 0 R -/a108 52 0 R -/a107 53 0 R -/a106 54 0 R -/a105 55 0 R -/a104 56 0 R -/a103 57 0 R -/a102 58 0 R -/a101 59 0 R -/a100 60 0 R -/a99 61 0 R -/a98 62 0 R -/a97 63 0 R -/a96 64 0 R -/a95 65 0 R -/a94 66 0 R -/a93 67 0 R -/a92 68 0 R -/a91 69 0 R -/a90 70 0 R -/a89 71 0 R -/a88 72 0 R -/a87 73 0 R -/a86 74 0 R -/a85 75 0 R -/a84 76 0 R -/a83 77 0 R -/a82 78 0 R -/a81 79 0 R -/a80 80 0 R -/a79 81 0 R -/a78 82 0 R -/a77 83 0 R -/a76 84 0 R -/a75 85 0 R -/a74 86 0 R -/a73 87 0 R -/a72 88 0 R -/a71 89 0 R -/a70 90 0 R -/a69 91 0 R -/a68 92 0 R -/a67 93 0 R -/a66 94 0 R -/a65 95 0 R -/a64 96 0 R -/a63 97 0 R -/a62 98 0 R -/a61 99 0 R -/a60 100 0 R -/a59 101 0 R -/a58 102 0 R -/a57 103 0 R -/a56 104 0 R -/a55 105 0 R -/a54 106 0 R -/a53 107 0 R -/a52 108 0 R -/a51 109 0 R -/a50 110 0 R -/a49 111 0 R -/a48 112 0 R -/a47 113 0 R -/a46 114 0 R -/a45 115 0 R -/a44 116 0 R -/a43 117 0 R -/a42 118 0 R -/a41 119 0 R -/a40 120 0 R -/a39 121 0 R -/a38 122 0 R -/a37 123 0 R -/a36 124 0 R -/a35 125 0 R -/a34 126 0 R -/a33 127 0 R -/a32 128 0 R -/a31 129 0 R -/a30 130 0 R -/a29 131 0 R -/a28 132 0 R -/a27 133 0 R -/a26 134 0 R -/a25 135 0 R -/a24 136 0 R -/a23 137 0 R -/a22 138 0 R -/a21 139 0 R -/a20 140 0 R -/a19 141 0 R -/a18 142 0 R -/a17 143 0 R -/a16 144 0 R -/a15 145 0 R -/a14 146 0 R -/a13 147 0 R -/a12 148 0 R -/a11 149 0 R -/a10 150 0 R -/a9 151 0 R -/a8 152 0 R -/a7 153 0 R -/a6 154 0 R -/a5 155 0 R -/a4 156 0 R -/a3 157 0 R -/a2 158 0 R -/a1 159 0 R -/a0 160 0 R ->> -/FontBBox [ 0 0 38 36] +/a125 30 0 R +/a124 31 0 R +/a123 32 0 R +/a122 33 0 R +/a121 34 0 R +/a120 35 0 R +/a119 36 0 R +/a118 37 0 R +/a117 38 0 R +/a116 39 0 R +/a115 40 0 R +/a114 41 0 R +/a113 42 0 R +/a112 43 0 R +/a111 44 0 R +/a110 45 0 R +/a109 46 0 R +/a108 47 0 R +/a107 48 0 R +/a106 49 0 R +/a105 50 0 R +/a104 51 0 R +/a103 52 0 R +/a102 53 0 R +/a101 54 0 R +/a100 55 0 R +/a99 56 0 R +/a98 57 0 R +/a97 58 0 R +/a96 59 0 R +/a95 60 0 R +/a94 61 0 R +/a93 62 0 R +/a92 63 0 R +/a91 64 0 R +/a90 65 0 R +/a89 66 0 R +/a88 67 0 R +/a87 68 0 R +/a86 69 0 R +/a85 70 0 R +/a84 71 0 R +/a83 72 0 R +/a82 73 0 R +/a81 74 0 R +/a80 75 0 R +/a79 76 0 R +/a78 77 0 R +/a77 78 0 R +/a76 79 0 R +/a75 80 0 R +/a74 81 0 R +/a73 82 0 R +/a72 83 0 R +/a71 84 0 R +/a70 85 0 R +/a69 86 0 R +/a68 87 0 R +/a67 88 0 R +/a66 89 0 R +/a65 90 0 R +/a64 91 0 R +/a63 92 0 R +/a62 93 0 R +/a61 94 0 R +/a60 95 0 R +/a59 96 0 R +/a58 97 0 R +/a57 98 0 R +/a56 99 0 R +/a55 100 0 R +/a54 101 0 R +/a53 102 0 R +/a52 103 0 R +/a51 104 0 R +/a50 105 0 R +/a49 106 0 R +/a48 107 0 R +/a47 108 0 R +/a46 109 0 R +/a45 110 0 R +/a44 111 0 R +/a43 112 0 R +/a42 113 0 R +/a41 114 0 R +/a40 115 0 R +/a39 116 0 R +/a38 117 0 R +/a37 118 0 R +/a36 119 0 R +/a35 120 0 R +/a34 121 0 R +/a33 122 0 R +/a32 123 0 R +/a31 124 0 R +/a30 125 0 R +/a29 126 0 R +/a28 127 0 R +/a27 128 0 R +/a26 129 0 R +/a25 130 0 R +/a24 131 0 R +/a23 132 0 R +/a22 133 0 R +/a21 134 0 R +/a20 135 0 R +/a19 136 0 R +/a18 137 0 R +/a17 138 0 R +/a16 139 0 R +/a15 140 0 R +/a14 141 0 R +/a13 142 0 R +/a12 143 0 R +/a11 144 0 R +/a10 145 0 R +/a9 146 0 R +/a8 147 0 R +/a7 148 0 R +/a6 149 0 R +/a5 150 0 R +/a4 151 0 R +/a3 152 0 R +/a2 153 0 R +/a1 154 0 R +/a0 155 0 R +>> +/FontBBox [ 0 0 61 71] /FontMatrix [ 1 0 0 1 0 0] /FirstChar 0 -/LastChar 119 -/Widths [ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] ->> -endobj -35 0 obj -<< -/Type /FontDescriptor -/FontBBox [ 62 0 1000 285] -/Flags 4 -/Ascent 285 -/CapHeight 285 -/Descent 0 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 1000 -/FontName 161 0 R -/FontFile 33 0 R ->> -endobj -37 0 obj -<< -/Subtype /Type1 -/Type /Font -/Name /R13 -/FontDescriptor 35 0 R -/FirstChar 0 -/LastChar 0 -/Widths [ 638] -/BaseFont 161 0 R -/Encoding 36 0 R ->> -endobj -38 0 obj -<< -/Subtype /Type1 -/BaseFont /NXWVWG#2BTimes-Roman -/Type /Font -/Name /R10 -/FontDescriptor 162 0 R -/FirstChar 1 -/LastChar 255 -/Widths [ 333 556 556 167 333 611 278 333 333 250 333 564 250 611 444 333 278 250 250 250 250 250 250 250 250 250 250 250 250 333 180 250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278 500 505 505 505 505 505 500 500 500 500 278 278 564 564 564 444 921 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722 556 722 667 556 611 722 722 944 722 722 611 333 278 333 469 500 333 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 480 200 480 541 250 250 250 333 500 444 1000 500 500 333 1000 556 333 889 250 250 250 250 250 250 444 444 350 500 1000 333 980 389 333 722 250 250 722 250 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333 400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444 722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333 722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500 444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500] +/LastChar 125 +/Widths [ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] >> endobj -39 0 obj -2752 +28 0 obj +2758 endobj -40 0 obj +29 0 obj << /Type /Encoding -/Differences [ 0/a0/a1/a2/a3/a4/a5/a6/a7/a8/a9/a10/a11/a12/a13/a14/a15/a16/a17/a18/a19/a20/a21/a22/a23/a24/a25/a26/a27/a28/a29/a30/a31/a32/a33/a34/a35/a36/a37/a38/a39/a40/a41/a42/a43/a44/a45/a46/a47/a48/a49/a50/a51/a52/a53/a54/a55/a56/a57/a58/a59/a60/a61/a62/a63/a64/a65/a66/a67/a68/a69/a70/a71/a72/a73/a74/a75/a76/a77/a78/a79/a80/a81/a82/a83/a84/a85/a86/a87/a88/a89/a90/a91/a92/a93/a94/a95/a96/a97/a98/a99/a100/a101/a102/a103/a104/a105/a106/a107/a108/a109/a110/a111/a112/a113/a114/a115/a116/a117/a118/a119] +/Differences [ 0/a0/a1/a2/a3/a4/a5/a6/a7/a8/a9/a10/a11/a12/a13/a14/a15/a16/a17/a18/a19/a20/a21/a22/a23/a24/a25/a26/a27/a28/a29/a30/a31/a32/a33/a34/a35/a36/a37/a38/a39/a40/a41/a42/a43/a44/a45/a46/a47/a48/a49/a50/a51/a52/a53/a54/a55/a56/a57/a58/a59/a60/a61/a62/a63/a64/a65/a66/a67/a68/a69/a70/a71/a72/a73/a74/a75/a76/a77/a78/a79/a80/a81/a82/a83/a84/a85/a86/a87/a88/a89/a90/a91/a92/a93/a94/a95/a96/a97/a98/a99/a100/a101/a102/a103/a104/a105/a106/a107/a108/a109/a110/a111/a112/a113/a114/a115/a116/a117/a118/a119/a120/a121/a122/a123/a124/a125/a126/a127/a128/a129/a130/a131/a132/a133/a134/a135/a136/a137/a138/a139/a140/a141/a142/a143/a144/a145/a146/a147/a148/a149/a150/a151/a152/a153/a154/a155/a156/a157/a158/a159/a160/a161/a162/a163/a164/a165/a166/a167/a168/a169/a170/a171/a172/a173/a174/a175/a176/a177/a178/a179/a180/a181/a182/a183/a184/a185/a186/a187/a188/a189/a190/a191/a192/a193/a194/a195/a196/a197/a198/a199/a200/a201/a202/a203/a204/a205/a206/a207/a208/a209/a210/a211/a212/a213/a214/a215/a216/a217/a218/a219/a220/a221/a222/a223/a224/a225/a226/a227/a228/a229/a230/a231/a232/a233/a234/a235/a236/a237/a238/a239/a240/a241/a242/a243/a244/a245/a246/a247/a248/a249/a250/a251/a252/a253/a254/a255] >> endobj -41 0 obj +30 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -42 0 obj +31 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -43 0 obj +32 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -44 0 obj +33 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -45 0 obj +34 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -46 0 obj +35 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -47 0 obj +36 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -48 0 obj +37 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -49 0 obj +38 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -50 0 obj +39 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -51 0 obj +40 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -52 0 obj +41 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -53 0 obj +42 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -54 0 obj +43 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -55 0 obj +44 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -56 0 obj +45 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -57 0 obj +46 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -58 0 obj +47 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -59 0 obj +48 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -60 0 obj +49 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -61 0 obj +50 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -62 0 obj +51 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -63 0 obj +52 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -64 0 obj +53 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -65 0 obj +54 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -66 0 obj +55 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -67 0 obj +56 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -68 0 obj +57 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -69 0 obj +58 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -70 0 obj +59 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -71 0 obj +60 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -72 0 obj +61 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -73 0 obj +62 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -74 0 obj +63 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -75 0 obj +64 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -76 0 obj +65 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -77 0 obj +66 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -78 0 obj +67 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -79 0 obj +68 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -80 0 obj +69 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -81 0 obj +70 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -82 0 obj +71 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -83 0 obj +72 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -84 0 obj +73 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -85 0 obj +74 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -86 0 obj +75 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -87 0 obj +76 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -88 0 obj +77 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -89 0 obj +78 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -90 0 obj +79 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -91 0 obj +80 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -92 0 obj +81 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -93 0 obj +82 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -94 0 obj +83 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -95 0 obj +84 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -96 0 obj +85 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -97 0 obj +86 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -98 0 obj +87 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -99 0 obj +88 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -100 0 obj +89 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -101 0 obj +90 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -102 0 obj +91 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -103 0 obj +92 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -104 0 obj +93 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -105 0 obj +94 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -106 0 obj +95 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -107 0 obj +96 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -108 0 obj +97 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -109 0 obj +98 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -110 0 obj +99 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -111 0 obj +100 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -112 0 obj +101 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -113 0 obj +102 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -114 0 obj +103 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -115 0 obj +104 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -116 0 obj +105 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -117 0 obj +106 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -118 0 obj +107 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -119 0 obj +108 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -120 0 obj +109 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -121 0 obj +110 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -122 0 obj +111 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -123 0 obj +112 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -124 0 obj +113 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -125 0 obj +114 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -126 0 obj +115 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -127 0 obj +116 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -128 0 obj +117 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -129 0 obj +118 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -130 0 obj +119 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -131 0 obj +120 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -132 0 obj +121 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -133 0 obj +122 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -134 0 obj +123 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -135 0 obj +124 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -136 0 obj +125 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -137 0 obj +126 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -138 0 obj +127 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -139 0 obj +128 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -140 0 obj +129 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -141 0 obj +130 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -142 0 obj +131 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -143 0 obj +132 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -144 0 obj +133 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -145 0 obj +134 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -146 0 obj +135 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -147 0 obj +136 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -148 0 obj +137 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -149 0 obj +138 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -150 0 obj +139 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -151 0 obj +140 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -152 0 obj +141 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -153 0 obj +142 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -154 0 obj +143 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -155 0 obj +144 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -156 0 obj +145 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -157 0 obj +146 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -158 0 obj +147 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -159 0 obj +148 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -160 0 obj +149 0 obj << -/Length 150 +/Length 159 >> stream -0 0 0 0 38 36 d1 -38 0 0 36 0 0 cm +0 0 0 0 35 34 d1 +35 0 0 34 0 0 cm BI /IM true -/W 38 -/H 36 +/W 35 +/H 34 /BPC 1 -/D[1 -0] -/F/CCF -/DP<> -ID &pH xA[[[[[Xa`@@ +/F /CCF +/DP <> +ID &`@OOOO ,( EI endstream endobj -162 0 obj +150 0 obj << -/Type /FontDescriptor -/FontName /NXWVWG#2BTimes-Roman -/FontBBox [ -168 -281 1000 924] -/Flags 4 -/Ascent 924 -/CapHeight 924 -/Descent -281 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 250 -/CharSet (/one/two/three/four/five) -/FontFile3 163 0 R +/Length 129 +>> +stream +0 0 0 0 61 6 d1 +61 0 0 6 0 0 cm +BI +/IM true +/W 61 +/H 6 +/BPC 1 +/F /CCF +/DP <> +ID &|^MR +EI +endstream endobj -163 0 obj +151 0 obj << -/Subtype /Type1C -/Filter /FlateDecode -/Length 164 0 R +/Length 214 >> stream -xmlSUeZPړ615s'xuܵ{okG(v%IΖ -aqbp^405§svo9C $IZ[4+G,VxԇI\;>]iRDzZz)#ͮEEkyUD VVUPB~<a 9 -!Aj6 "T: 51jr\|ɈP)H ,$H~d2aB^^ 9]d#"AcmU-1}z4wL#N2l &HUեew/"ӢRVx|_iA`Zgl]$K8@vɗC%$´j ]>4qd}\TεeuOYg2O~M?vVz}P kQ(:X(#] -?yAHcS/L.Pf{\swLqmzse_if܁7N$7?VJwWd434k[Q :]{hcJ!U|9ڃr_X6fpcd8=L(-#gg\ڢ49nIȢ{͝Ƚ endstream +0 0 0 0 41 70 d1 +41 0 0 70 0 0 cm +BI +/IM true +/W 41 +/H 70 +/BPC 1 +/F /CCF +/DP <> +ID &|W@ ?WCaq]K^a/ / W<@ +EI +endstream +endobj +152 0 obj +<< +/Length 196 +>> +stream +0 0 0 -2 45 67 d1 +45 0 0 69 0 -2 cm +BI +/IM true +/W 45 +/H 69 +/BPC 1 +/F /CCF +/DP <> +ID & `57A|0a +EI +endstream endobj -164 0 obj -966 +153 0 obj +<< +/Length 220 +>> +stream +0 0 0 0 43 70 d1 +43 0 0 70 0 0 cm +BI +/IM true +/W 43 +/H 70 +/BPC 1 +/F /CCF +/DP <> +ID &bB Fz/I ~ %렺,.Ap <|<0%[` ج0[  +EI +endstream endobj -36 0 obj << -/Type /Encoding -/Differences [ 0 /minus 1/.notdef] ->> endobj -27 0 obj << -/Font << /F73 6 0 R /F49 12 0 R /F75 9 0 R >> -/XObject << /Im1 26 0 R >> +154 0 obj +<< +/Length 205 +>> +stream +0 0 0 0 41 67 d1 +41 0 0 67 0 0 cm +BI +/IM true +/W 41 +/H 67 +/BPC 1 +/F /CCF +/DP <> +ID &=Qa{7߶>{7.@ vvK0\ !@ +EI +endstream +endobj +155 0 obj +<< +/Length 167 +>> +stream +0 0 0 0 34 67 d1 +34 0 0 67 0 0 cm +BI +/IM true +/W 34 +/H 67 +/BPC 1 +/F /CCF +/DP <> +ID &l/MB  +EI +endstream +endobj +23 0 obj << +/Font << /F37 5 0 R /F40 9 0 R /F32 18 0 R /F45 11 0 R /F38 7 0 R >> +/XObject << /Im1 19 0 R >> /ProcSet [ /PDF /Text ] >> endobj -167 0 obj << -/Length 7325 +158 0 obj << +/Length 5903 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -348.69 -34.86 cm -0 g 0 G -1 0 0 1 -128.79 -657.24 cm -BT -/F49 9.96 Tf 133.77 657.24 Td[(noshe)-1(ll)]TJ -ET -1 0 0 1 170.38 657.24 cm -0 g 0 G -1 0 0 1 -170.38 -657.24 cm -BT -/F73 9.96 Tf 175.36 657.24 Td[(Th)-1(is)-368(option)-369(will)-368(su)-1(ppress)-368(t)-1(he)-368(shell)-369(escape)-369(functions)-369(and)-368(wi)-1(ll)-368(assum)-1(e)-368(that)]TJ -16.69 -11.96 Td[(t)-1(here)-250(is)-250(no)-251(shell)-250(esc)-1(ape)-250(f)10(acili)-1(ty)65(.)]TJ -ET -1 0 0 1 128.79 626.83 cm -0 g 0 G -1 0 0 1 -128.79 -626.83 cm -BT -/F49 9.96 Tf 133.77 626.83 Td[(NoPro)-1(cess)]TJ -ET -1 0 0 1 180.84 626.83 cm -0 g 0 G -1 0 0 1 -180.84 -626.83 cm -BT -/F73 9.96 Tf 185.82 626.83 Td[(A)-291(ne)25(w)-290(comm)-1(and)]TJ/F49 9.96 Tf 71.5 0 Td[(\134)-1(NoProce)-1(ss)]TJ/F73 9.96 Tf 55.2 0 Td[(has)-290(bee)-1(n)-290(introdu)-1(ced)-290(in)-290(thi)-1(s)-290(v)15(ersion)-291(to)-290(f)10(a-)]TJ -153.85 -11.96 Td[(c)-1(ilitate)-209(the)-209(s)-1(uppressin)-1(g)-209(of)-209(pdf)-209(gen)-1(eration)-209(of)-209(t)-1(hose)-209(\002gure)-1(s)-209(whose)-209(pd)-1(f)-55(')55(s)-209(are)-209(alrea)-1(dy)]TJ 0 -11.95 Td[(a)19(v)25(ailable.)-400(This)-280(migh)-1(t)-279(p)-1(ro)15(v)15(e)-280(helpful)-280(w)-1(hen)-280(you)-280(ha)20(v)15(e)-280(mor)-1(e)-279(\002)-1(gures)-280(to)-280(proce)-1(ss)-280(and)]TJ 0 -11.96 Td[(m)-1(an)15(y)-260(of)-260(the)-1(m)-260(are)-260(perfe)-1(cted)-260(and)-260(do)-1(n')18(t)-260(need)-260(re)-1(compilati)-1(on)-260(and)-260(tran)-1(slation)-260(e)25(v)15(e)-1(ry-)]TJ 0 -11.95 Td[(t)-1(ime)-250(you)-250(r)-1(un)-250(pdfL)]TJ/F73 6.97 Tf 69.2 2 Td[(A)]TJ/F73 9.96 Tf 3.54 -2 Td[(T)]TJ 4.42 -2.25 Td[(E)]TJ 4.84 2.25 Td[(X)-1(.)-310(The)-250(usa)-1(ge)-250(is:)]TJ -ET -1 0 0 1 133.77 557.67 cm +1 0 0 1 -343.71 -27.14 cm q []0 d 0 J 0.4 w 0 0.2 m -294.4 0.2 l +265.23 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -3612,11 +3611,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -133.57 -546.71 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 139.75 550 Td[(\134)1(NoPr)1(ocess)1({})]TJ +/F40 8.97 Tf 0 0 Td[(\134)1(NoPr)1(oces)1(s{)]TJ/F32 8.97 Tf 59.17 0 Td[(h)]TJ/F45 8.97 Tf 3.59 0 Td[(co)1(mma)-249(separ)15(a)1(ted)-250(an)1(d/or)-250(h)1(yphen)-249(separ)16(ated)-250(r)16(ang)10(es)]TJ/F32 8.97 Tf 181.55 0 Td[(i)]TJ/F40 8.97 Tf 3.58 0 Td[(})]TJ ET -1 0 0 1 427.96 546.71 cm +1 0 0 1 259.05 -3.29 cm q []0 d 0 J @@ -3625,26 +3624,26 @@ q 0.2 10.96 l S Q -1 0 0 1 -294.19 -0.39 cm +1 0 0 1 -265.03 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -294.4 0.2 l +265.23 0.2 l S Q -1 0 0 1 -133.77 -546.32 cm +1 0 0 1 24.91 -17.6 cm BT -/F73 9.96 Tf 158.67 528.65 Td[(I)-1(f)-296(you)-296(ha)20(v)15(e)-297(ten)-296(\002gure)-1(s)-296(and)-296(if)-296(you)-297(w)10(ant)-296(to)-296(su)-1(ppress)-296(the)-297(processin)-1(g)-296(of)-296(the)-296(\002g)-1(ure)]TJ 0 -11.95 Td[(n)-1(umbers)-250(1)-1(,)-250(2,)-250(4)-250(to)-250(8)-251(you)-250(can)-251(issue)-250(the)-251(command)-251(at)-250(the)-250(top)-251(of)-250(the)-250(do)-1(cument)-250(a)-1(s:)]TJ +/F37 9.96 Tf 0 0 Td[(If)-296(you)-296(ha)20(v)15(e)-297(ten)-296(\002gure)-1(s)-296(and)-296(if)-296(yo)-1(u)-296(w)10(ant)-296(to)-296(su)-1(ppress)-296(the)-297(processin)-1(g)-296(of)-296(the)-296(\002g)-1(ure)]TJ 0 -11.96 Td[(numbers)-250(1)-1(,)-250(2,)-250(4)-250(to)-250(8)-251(you)-250(can)-250(i)-1(ssue)-250(the)-250(c)-1(ommand)-250(a)-1(t)-250(the)-250(top)-250(o)-1(f)-250(the)-250(doc)-1(ument)-250(as:)]TJ ET -1 0 0 1 133.77 495.37 cm +1 0 0 1 -24.91 -33.35 cm q []0 d 0 J 0.4 w 0 0.2 m -101.39 0.2 l +114.17 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -3656,11 +3655,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -133.57 -484.41 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 139.75 487.7 Td[(\134)1(NoPr)1(ocess)1({1,2,)1(4-8})]TJ +/F40 8.97 Tf 0 0 Td[(\134)1(NoPr)1(oces)1(s{1,)1(2,4-)1(8})]TJ ET -1 0 0 1 234.96 484.41 cm +1 0 0 1 107.99 -3.29 cm q []0 d 0 J @@ -3669,26 +3668,26 @@ q 0.2 10.96 l S Q -1 0 0 1 -101.19 -0.4 cm +1 0 0 1 -113.97 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -101.39 0.2 l +114.17 0.2 l S Q -1 0 0 1 -133.77 -484.01 cm +1 0 0 1 0 -33.1 cm BT -/F73 9.96 Tf 133.77 455.56 Td[(There)-251(are)-250(fe)25(w)-250(ho)-1(oks)-250(to)-250(re)-1(size)-250(the)-250(g)-1(raphic)-250(thu)-1(s)-250(translat)-1(ed)-250(and)-250(inc)-1(luded.)]TJ +/F37 9.96 Tf 0 0 Td[(There)-251(are)-250(fe)25(w)-250(ho)-1(oks)-250(to)-250(res)-1(ize)-250(the)-250(gra)-1(phic)-250(thus)-251(translated)-251(and)-250(inclu)-1(ded.)]TJ ET -1 0 0 1 108.86 433.84 cm +1 0 0 1 -24.91 -21.71 cm q []0 d 0 J 0.4 w 0 0.2 m -219.08 0.2 l +248.67 0.2 l S Q 1 0 0 1 -0.2 -10.96 cm @@ -3700,11 +3699,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -422.88 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 114.84 426.17 Td[(\134co)1(nfig)1(ure[p)1(dfgra)1(phic)1(][wid)1(th=2i)1(n])]TJ +/F40 8.97 Tf 0 0 Td[(\134c)1(onfi)1(gure[)1(pdfg)1(raph)1(ic][)1(widt)1(h=2i)1(n])]TJ ET -1 0 0 1 327.74 422.88 cm +1 0 0 1 242.49 -3.29 cm q []0 d 0 J @@ -3713,7 +3712,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -219.08 -10.96 cm +1 0 0 1 -248.67 -10.96 cm q []0 d 0 J @@ -3722,11 +3721,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -411.92 cm +1 0 0 1 6.18 3.29 cm BT -/F49 8.97 Tf 114.84 415.21 Td[(\134co)1(nfig)1(ure[p)1(dfgra)1(phic)1(][hei)1(ght=3)1(in])]TJ +/F40 8.97 Tf 0 0 Td[(\134c)1(onfi)1(gure[)1(pdfg)1(raph)1(ic][)1(heig)1(ht=3)1(in])]TJ ET -1 0 0 1 327.74 411.92 cm +1 0 0 1 242.49 -3.29 cm q []0 d 0 J @@ -3735,7 +3734,7 @@ q 0.2 10.96 l S Q -1 0 0 1 -219.08 -10.96 cm +1 0 0 1 -248.67 -10.95 cm q []0 d 0 J @@ -3744,11 +3743,11 @@ q 0.2 10.96 l S Q -1 0 0 1 -108.66 -400.96 cm +1 0 0 1 6.18 3.28 cm BT -/F49 8.97 Tf 114.84 404.25 Td[(\134c)1(onfig)1(ure[p)1(dfgra)1(phic)1(][wid)1(th=2i)1(n,hei)1(ght=)1(3in])]TJ +/F40 8.97 Tf 0 0 Td[(\134c)1(onfi)1(gure[)1(pdfg)1(raph)1(ic][)1(widt)1(h=2i)1(n,he)1(ight)1(=3in])]TJ ET -1 0 0 1 327.74 400.96 cm +1 0 0 1 242.49 -3.28 cm q []0 d 0 J @@ -3757,269 +3756,218 @@ q 0.2 10.96 l S Q -1 0 0 1 -218.88 -0.39 cm +1 0 0 1 -248.47 -0.4 cm q []0 d 0 J 0.4 w 0 0.2 m -219.08 0.2 l +248.67 0.2 l S Q -1 0 0 1 -108.86 -400.57 cm +1 0 0 1 24.91 -17.07 cm +BT +/F37 9.96 Tf 0 0 Td[(the)-190(fun)-1(ctionality)-191(is)-190(same)-190(as)-191(the)]TJ/F40 9.96 Tf 122.04 0 Td[(widt)-1(h)]TJ/F37 9.96 Tf 31.78 0 Td[(and)]TJ/F40 9.96 Tf 16.28 0 Td[(heig)-1(ht)]TJ/F37 9.96 Tf 37.76 0 Td[(options)-191(as)-190(in)-190(the)]TJ/F40 9.96 Tf 65.13 0 Td[(\134i)-1(nclude)-1(graphic)-1(s)]TJ/F37 9.96 Tf -272.99 -11.96 Td[(comma)-1(nd.)-310(But)-250(th)-1(e)-250(graphic)-251(will)-250(be)-250(re)-1(stricted)-250(to)-251(aspect)-250(rat)-1(io.)]TJ/F38 14.35 Tf 0 -39.42 Td[(5)-999(Limitatio)1(ns/Depe)1(ndencies)]TJ +ET +1 0 0 1 0 -77.57 cm +0 g 0 G +1 0 0 1 14.94 0 cm BT -/F73 9.96 Tf 133.77 383.49 Td[(the)-190(fun)-1(ctionality)-191(is)-190(same)-190(a)-1(s)-190(the)]TJ/F49 9.96 Tf 122.04 0 Td[(widt)-1(h)]TJ/F73 9.96 Tf 28.05 0 Td[(and)]TJ/F49 9.96 Tf 16.27 0 Td[(h)-1(eight)]TJ/F73 9.96 Tf 33.28 0 Td[(option)-1(s)-190(as)-190(in)-190(th)-1(e)]TJ/F49 9.96 Tf 65.14 0 Td[(\134include)-1(graphic)-1(s)]TJ/F73 9.96 Tf -264.78 -11.96 Td[(comma)-1(nd.)-310(But)-250(t)-1(he)-250(graphi)-1(c)-250(will)-250(be)-250(r)-1(estricted)-251(to)-250(aspect)-251(ratio.)]TJ/F75 14.35 Tf 0 -37.46 Td[(5)-999(Limitatio)1(ns)]TJ/F82 14.35 Tf 92.46 0 Td[(/)]TJ/F75 14.35 Tf 4.02 0 Td[(De)1(pendenci)1(es)]TJ +/F14 9.96 Tf 0 0 Td[(\017)]TJ ET -1 0 0 1 133.77 308.55 cm +1 0 0 1 4.98 0 cm 0 g 0 G -1 0 0 1 -133.77 -308.55 cm +1 0 0 1 4.99 0 cm BT -/F23 9.96 Tf 148.74 308.55 Td[(\017)]TJ +/F37 9.96 Tf 0 0 Td[(Usage)-250(is)-250(li)-1(mited)-250(to)]TJ/F40 9.96 Tf 77.48 0 Td[(we)-1(b2c)]TJ/F37 9.96 Tf 32.38 0 Td[(T)]TJ 4.43 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-250(im)-1(plementati)-1(ons.)]TJ ET -1 0 0 1 153.69 308.55 cm +1 0 0 1 -24.91 -19.8 cm 0 g 0 G -1 0 0 1 -153.69 -308.55 cm +1 0 0 1 14.94 0 cm BT -/F73 9.96 Tf 158.67 308.55 Td[(U)-1(sage)-250(is)-250(l)-1(imited)-250(to)]TJ/F49 9.96 Tf 77.49 0 Td[(w)-1(eb2c)]TJ/F73 9.96 Tf 28.65 0 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X)-250(implem)-1(entations)-1(.)]TJ +/F14 9.96 Tf 0 0 Td[(\017)]TJ ET -1 0 0 1 133.77 290.1 cm +1 0 0 1 4.98 0 cm 0 g 0 G -1 0 0 1 -133.77 -290.1 cm +1 0 0 1 4.99 0 cm BT -/F23 9.96 Tf 148.74 290.1 Td[(\017)]TJ +/F37 9.96 Tf 0 0 Td[(The)-328(shell)-329(escape)-328(co)-1(mmands)-329(used)-328(in)-328(t)-1(his)-328(packa)-1(ge)-328(are)-328(ty)-1(pical)-353(U)]TJ/F37 7.97 Tf 256.97 0 Td[(N)-62(I)-62(X)]TJ/F37 9.96 Tf 18.66 0 Td[(com)-1(mands)]TJ -275.63 -11.95 Td[(and)-250(as)-250(suc)-1(h)-250(it)-250(best)-250(w)9(orks)-250(in)-275(L)]TJ/F37 7.97 Tf 118.8 0 Td[(I)-62(N)-62(U)-61(X)]TJ/F37 9.96 Tf 21.89 0 Td[(/)-50(U)]TJ/F37 7.97 Tf 10.95 0 Td[(N)-62(I)-62(X)]TJ/F37 9.96 Tf 17.89 0 Td[(\003a)20(v)20(ours)-1(.)]TJ ET -1 0 0 1 153.69 290.1 cm +1 0 0 1 -24.91 -31.76 cm 0 g 0 G -1 0 0 1 -153.69 -290.1 cm +1 0 0 1 14.94 0 cm BT -/F73 9.96 Tf 158.67 290.1 Td[(T)-1(he)-212(shel)-1(l)-212(escape)-213(comma)-1(nds)-212(used)-213(in)-212(thi)-1(s)-212(packag)-1(e)-212(are)-212(t)-1(ypical)-212(U)]TJ/F109 9.96 Tf 244.69 0 Td[(n)-1(ix)]TJ/F73 9.96 Tf 14.45 0 Td[(com)-1(mands)-213(and)]TJ -259.14 -11.96 Td[(a)-1(s)-250(such)-250(it)-251(best)-250(w)10(ork)-1(s)-250(in)-250(L)]TJ/F109 9.96 Tf 101.19 0 Td[(inux/)]TJ/F73 9.96 Tf 20.12 0 Td[(U)]TJ/F109 9.96 Tf 7.19 0 Td[(nix)]TJ/F73 9.96 Tf 14.83 0 Td[(\003a)20(v)20(ours)-1(.)]TJ +/F14 9.96 Tf 0 0 Td[(\017)]TJ ET -1 0 0 1 133.77 259.69 cm +1 0 0 1 4.98 0 cm 0 g 0 G -1 0 0 1 -133.77 -259.69 cm +1 0 0 1 4.99 0 cm BT -/F23 9.96 Tf 148.74 259.69 Td[(\017)]TJ +/F37 9.96 Tf 0 0 Td[(The)-322(pac)-1(kage)-322(ne)-1(eds,)]TJ/F40 9.96 Tf 83.11 0 Td[(grap)-1(hicx)]TJ/F37 9.96 Tf 51.03 0 Td[(and)]TJ/F40 9.96 Tf 17.6 0 Td[(keyval)]TJ/F37 9.96 Tf 39.07 0 Td[(pac)-1(kages;)]TJ/F40 9.96 Tf 42.85 0 Td[(e)-1(pstopd)-1(f)]TJ/F37 9.96 Tf 47.83 0 Td[(,)-340(the)-323(Perl)]TJ -281.49 -11.95 Td[(script)-250(that)-251(translates)]TJ/F40 9.96 Tf 82.18 0 Td[(eps)]TJ/F37 9.96 Tf 20.42 0 Td[(\002les)-250(in)-1(to)]TJ/F40 9.96 Tf 37.09 0 Td[(pdf)]TJ/F37 9.96 Tf 17.93 0 Td[(.)]TJ/F38 14.35 Tf -182.53 -39.42 Td[(6)-999(Licence)]TJ/F37 9.96 Tf 0 -28.12 Td[(The)-250(pa)-1(ckage)-250(is)-250(d)-1(istrib)20(uted)-251(under)]TJ/F37 7.97 Tf 132.58 0 Td[(G)-62(N)-62(U)]TJ/F37 9.96 Tf 20.98 0 Td[(Gen)-1(eral)-250(Public)-251(Licence.)]TJ/F38 14.35 Tf -153.56 -39.42 Td[(7)-999(Example)1(s)]TJ/F37 9.96 Tf 0 -28.12 Td[(Here)-250(a)-1(re)-250(some)-250(e)15(x)-1(amples)-250(o)-1(f)-250(pstricks)-250(c)-1(ode)-250(and)-250(t)-1(he)-250(\002gures)-251(generated)-251(by)-250(pdfL)]TJ/F37 6.97 Tf 296.17 2 Td[(A)]TJ/F37 9.96 Tf 3.54 -2 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.84 2.24 Td[(X)-1(.)]TJ/F38 11.96 Tf -308.97 -34.31 Td[(7.1)-999(Ex)1(ample)-249(1)]TJ ET -1 0 0 1 153.69 259.69 cm +1 0 0 1 -29.89 -204.88 cm +0 g 0 G 0 g 0 G -1 0 0 1 -153.69 -259.69 cm +1 0 0 1 4.98 0 cm BT -/F73 9.96 Tf 158.67 259.69 Td[(T)-1(he)-239(pac)-1(kage)-239(ne)-1(eds,)]TJ/F49 9.96 Tf 80.48 0 Td[(gra)-1(phicx)]TJ/F73 9.96 Tf 44.23 0 Td[(and)]TJ/F49 9.96 Tf 16.77 0 Td[(keyval)]TJ/F73 9.96 Tf 33.76 0 Td[(pac)-1(kages;)]TJ/F49 9.96 Tf 41.7 0 Td[(ep)-1(stopdf)]TJ/F73 9.96 Tf 41.85 0 Td[(,)-241(the)-240(Perl)-239(s)-1(cript)]TJ -258.79 -11.96 Td[(t)-1(hat)-250(transl)-1(ates)]TJ/F49 9.96 Tf 57.56 0 Td[(eps)]TJ/F73 9.96 Tf 18.18 0 Td[(\002les)-251(into)]TJ/F49 9.96 Tf 37.09 0 Td[(pdf)]TJ/F73 9.96 Tf 15.69 0 Td[(.)]TJ/F75 14.35 Tf -153.42 -37.46 Td[(6)-999(Licence)]TJ/F73 9.96 Tf 0 -26.78 Td[(The)-250(pa)-1(ckage)-250(is)-250(d)-1(istrib)20(uted)-251(under)]TJ/F109 9.96 Tf 132.35 0 Td[(gnu)]TJ/F73 9.96 Tf 17.3 0 Td[(General)-251(Public)-250(L)-1(icence.)]TJ/F75 14.35 Tf -149.65 -37.46 Td[(7)-999(Example)1(s)]TJ/F73 9.96 Tf 0 -26.78 Td[(Here)-250(a)-1(re)-250(some)-250(e)14(xamples)-250(o)-1(f)-250(pstricks)-251(code)-250(and)-251(the)-250(\002gur)-1(es)-250(genera)-1(ted)-250(by)-250(pdf)-1(L)]TJ/F73 6.97 Tf 296.17 2 Td[(A)]TJ/F73 9.96 Tf 3.54 -2 Td[(T)]TJ 4.42 -2.24 Td[(E)]TJ 4.85 2.24 Td[(X.)]TJ +/F40 8.97 Tf 0 0 Td[(\134c)1(onfi)1(gure)1([pdf)1(grap)1(hic])1([widt)1(h=2i)1(n,li)1(neco)1(lor=)1(red,)1(back)1(grou)1(nd=gr)1(ay10)1(])]TJ 0 -10.96 Td[(\134b)1(egin)1({pdf)1(pic})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{l)1(ight)1(blue)1(}{rgb)1(}{0,)1(0,.5)1(})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{N)1(avy})1({rgb)1(}{0,0)1(,0.5)1(})]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -62.77 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(5)]TJ +/F37 9.96 Tf 0 0 Td[(5)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -166 0 obj << +157 0 obj << /Type /Page -/Contents 167 0 R -/Resources 165 0 R +/Contents 158 0 R +/Resources 156 0 R /MediaBox [0 0 612 792] -/Parent 19 0 R +/Parent 12 0 R >> endobj -165 0 obj << -/Font << /F49 12 0 R /F73 6 0 R /F75 9 0 R /F82 170 0 R /F23 34 0 R /F109 174 0 R >> +156 0 obj << +/Font << /F40 9 0 R /F32 18 0 R /F45 11 0 R /F37 5 0 R /F38 7 0 R /F14 161 0 R >> /ProcSet [ /PDF /Text ] >> endobj -178 0 obj << -/Length 2226 +165 0 obj << +/Length 1857 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -477.48 -692.1 cm -BT -/F75 11.96 Tf 133.77 657.24 Td[(7.1)-999(Ex)1(ample)-249(1)]TJ -ET -1 0 0 1 128.79 632.58 cm -0 g 0 G -0 g 0 G -1 0 0 1 -128.79 -632.58 cm +1 0 0 1 -343.71 -34.86 cm BT -/F49 9.96 Tf 133.77 632.58 Td[(\134conf)-1(igure[pd)-1(fgraphi)-1(c][widt)-1(h=2in,li)-1(necolor)-1(=red,bac)-1(kground)-1(=gray10)-1(])]TJ 0 -11.96 Td[(\134begi)-1(n{pdfdis)-1(play})]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(lightbl)-1(ue}{rgb)-1(}{0,0,.5)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(Navy}{r)-1(gb}{0,0)-1(,0.5})]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(LemonCh)-1(iffon}{)-1(rgb}{1,0)-1(.98,0.8)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(ForestG)-1(reen}{r)-1(gb}{0.13)-1(,0.55,0)-1(.13})]TJ 0 -11.95 Td[(\134Spec)-1(ialCoor)]TJ 0 -11.96 Td[(\134begi)-1(n{pspict)-1(ure}\050-6)-1(,-6\051\0506,)-1(6\051)]TJ 10.46 -11.95 Td[(\134psax)-1(es{<<->)-1(>}\0500,0\051\050)-1(-6,-6\051\050)-1(6,6\051)]TJ 0 -11.96 Td[(\134psse)-1(t{arrow)-1(s=->>})]TJ 0 -11.95 Td[(\134mult)-1(ido{\134ia)-1(=-5+1}{1)-1(1}{%)]TJ -10.46 -11.96 Td[(\134mult)-1(ido{\134ib=)-1(-5+1}{1)-1(1}{%)]TJ 5.23 -11.95 Td[(\134pstV)-1(erb{/x)-526(\134ia\134spac)-1(e)-525(def)]TJ 15.69 -11.96 Td[(/y)-525(\134)-1(ib\134space)-526(def)]TJ 0 -11.95 Td[(y)-525(0)-526(eq)]TJ 10.46 -11.96 Td[({/Va)-1(lueTemp)-1(A)-525(0)-525(def)]TJ 5.23 -11.95 Td[(/Va)-1(lueTempB)-526(0.5)-525(de)-1(f})]TJ -5.23 -11.96 Td[({/Va)-1(lueTemp)-1(Z)-525(2)-525(1)-525(x)-526(x)-525(mul)-525(y)-526(y)-525(mul)-526(div)-525(add)-526(sqrt)-525(mu)-1(l)-525(def)]TJ 5.23 -11.96 Td[(/Va)-1(lueTempA)-526(1)-525(Valu)-1(eTempZ)-525(d)-1(iv)-525(def)]TJ 0 -11.95 Td[(/Va)-1(lueTempB)-526(x)-525(y)-525(Va)-1(lueTempZ)-526(mul)-525(di)-1(v)-525(def})]TJ -5.23 -11.96 Td[(ifel)-1(se})]TJ -26.15 -11.95 Td[(\134psli)-1(ne\050!)-525(x)-526(ValueTem)-1(pA)-525(sub)-526(y)-525(ValueT)-1(empB)-525(su)-1(b\051)]TJ 36.61 -11.96 Td[(\050!)-526(x)-525(ValueT)-1(empA)-525(ad)-1(d)-525(y)-525(Val)-1(ueTempB)-526(add\051}})]TJ -41.84 -11.95 Td[(\134end{)-1(pspictur)-1(e})]TJ 0 -11.96 Td[(\134end{)-1(pdfdispl)-1(ay})]TJ +/F40 8.97 Tf 0 0 Td[(\134d)1(efin)1(ecol)1(or{L)1(emon)1(Chif)1(fon}{)1(rgb})1({1,0)1(.98,)1(0.8})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{F)1(ores)1(tGre)1(en}{r)1(gb}{)1(0.13)1(,0.5)1(5,0.)1(13})]TJ 0 -10.96 Td[(\134S)1(peci)1(alCo)1(or)]TJ 0 -10.96 Td[(\134b)1(egin)1({psp)1(ictu)1(re}\050)1(-6,-)1(6\051\0506,)1(6\051)]TJ 10.76 -10.96 Td[(\134p)1(saxe)1(s{<-)1(>}\0500)1(,0\051\050)1(-6,-)1(6\051\0506)1(,6\051)]TJ 0 -10.96 Td[(\134p)1(sset)1({arr)1(ows=)1(->})]TJ 0 -10.96 Td[(\134m)1(ulti)1(do{\134)1(ia=-)1(5+1})1({11})1({%)]TJ -10.76 -10.96 Td[(\134m)1(ulti)1(do{\134)1(ib=-)1(5+1})1({11})1({%)]TJ 5.38 -10.96 Td[(\134p)1(stVe)1(rb{/)1(x)-600(\134i)1(a\134sp)1(ace)-599(def)]TJ 16.14 -10.95 Td[(/y)-599(\134ib)1(\134spa)1(ce)-600(d)1(ef)]TJ 0 -10.96 Td[(y)-599(0)-600(eq)]TJ 10.76 -10.96 Td[({)1(/Val)1(ueTem)1(pA)-600(0)-599(def)]TJ 5.38 -10.96 Td[(/)1(Valu)1(eTemp)1(B)-600(0.)1(5)-600(de)1(f})]TJ -5.38 -10.96 Td[({)1(/Val)1(ueTem)1(pZ)-600(2)-599(1)-600(x)-599(x)-600(m)1(ul)-600(y)-599(y)-600(m)1(ul)-600(d)1(iv)-600(a)1(dd)-600(sq)1(rt)-600(m)1(ul)-600(d)1(ef)]TJ 5.38 -10.96 Td[(/)1(Valu)1(eTemp)1(A)-600(1)-599(Valu)1(eTem)1(pZ)-600(d)1(iv)-600(d)1(ef)]TJ 0 -10.96 Td[(/)1(Valu)1(eTemp)1(B)-600(x)-599(y)-600(Va)1(lueT)1(empZ)-599(mul)-599(div)-599(def)1(})]TJ -5.38 -10.96 Td[(i)1(fels)1(e})]TJ -26.9 -10.96 Td[(\134p)1(slin)1(e\050!)-599(x)-600(Va)1(lueT)1(empA)-599(sub)-599(y)-600(Va)1(lueT)1(empB)-599(sub)1(\051)]TJ 37.66 -10.95 Td[(\050)1(!)-600(x)-599(Valu)1(eTemp)1(A)-600(ad)1(d)-600(y)-599(Valu)1(eTem)1(pB)-600(a)1(dd\051})1(})]TJ -43.04 -10.96 Td[(\134e)1(nd{p)1(spic)1(ture)1(})]TJ 0 -10.96 Td[(\134e)1(nd{p)1(dfpi)1(c})]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -567.88 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(6)]TJ +/F37 9.96 Tf 0 0 Td[(6)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -177 0 obj << +164 0 obj << /Type /Page -/Contents 178 0 R -/Resources 176 0 R +/Contents 165 0 R +/Resources 163 0 R /MediaBox [0 0 612 792] -/Parent 19 0 R +/Parent 12 0 R >> endobj -176 0 obj << -/Font << /F75 9 0 R /F49 12 0 R /F73 6 0 R >> +163 0 obj << +/Font << /F40 9 0 R /F37 5 0 R >> /ProcSet [ /PDF /Text ] >> endobj -181 0 obj << -/Length 2268 +168 0 obj << +/Length 2028 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -345.45 -348.21 cm +1 0 0 1 -348.69 -365.13 cm 0 g 0 G 0 g 0 G 1 0 0 1 4.98 0 cm 1 0 0 rg 1 0 0 RG 1 0 0 rg 1 0 0 RG -1 0 0 1 0 321.32 cm -q -[]0 d -0 J -0 j -0 w -0 0 337.23 1.99 re f -S -Q -1 0 0 1 0 -333.27 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 333.27 re f -S -Q -1 0 0 1 1.99 11.95 cm .90 g .90 G .90 g .90 G -1 0 0 1 0 -11.95 cm q []0 d 0 J 0 j 0 w -0 0 333.25 333.27 re f +0 0 343.71 340.23 re f S Q -1 0 0 1 0 11.95 cm .90 g .90 G -1 0 0 1 11.95 0 cm 1 0 0 rg 1 0 0 RG - q 0.90721 0 0 0.90721 0 0 cm + q 1.16516 0 0 1.16516 0 0 cm q 1 0 0 1 0 0 cm /Im2 Do Q Q -1 0 0 1 309.34 0 cm +1 0 0 1 343.71 0 cm 1 0 0 rg 1 0 0 RG -1 0 0 1 11.96 0 cm 1 0 0 rg 1 0 0 RG -1 0 0 1 0 -11.95 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 333.27 re f -S -Q -1 0 0 1 -335.24 -2 cm -q -[]0 d -0 J -0 j -0 w -0 0 337.23 1.99 re f -S -Q -1 0 0 1 337.23 13.95 cm 1 0 0 rg 1 0 0 RG 0 g 0 G -1 0 0 1 -474.24 -343.89 cm +1 0 0 1 -343.71 -34.49 cm BT -/F75 11.96 Tf 133.77 290.24 Td[(7.2)-999(Ex)1(ample)-249(2)]TJ +/F38 11.96 Tf 0 0 Td[(7.2)-999(Ex)1(ample)-249(2)]TJ ET -1 0 0 1 128.79 265.58 cm +1 0 0 1 -4.98 -23.67 cm 0 g 0 G 0 g 0 G -1 0 0 1 -128.79 -265.58 cm +1 0 0 1 4.98 0 cm BT -/F49 9.96 Tf 133.77 265.58 Td[(\134conf)-1(igure[pd)-1(fgraphi)-1(c][line)-1(color=bl)-1(ue,back)-1(ground=g)-1(ray10,w)-1(idth=4i)-1(n])]TJ 0 -11.96 Td[(\134begi)-1(n{pdfdis)-1(play})]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(lightbl)-1(ue}{rgb)-1(}{0,0,.5)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(Navy}{r)-1(gb}{0,0)-1(,0.5})]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(LemonCh)-1(iffon}{)-1(rgb}{1,0)-1(.98,0.8)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(ForestG)-1(reen}{r)-1(gb}{0.13)-1(,0.55,0)-1(.13})]TJ 0 -11.95 Td[(\134newc)-1(ommand{\134)-1(MyNode})-1([2]{%)]TJ 10.46 -11.96 Td[(\134Tr{\134)-1(psshado)-1(wbox[fil)-1(lstyle=)-1(solid,f)-1(illcolor)-1(=#1]{\134t)-1(iny)-525(#2})-1(}})]TJ -10.46 -11.95 Td[(\134newc)-1(ommand{\134)-1(NoeudXt)-1(}[1]{\134M)-1(yNode{Fo)-1(restGre)-1(en}{#1}})]TJ 0 -11.96 Td[(\134newc)-1(ommand{\134)-1(NoeudMo)-1(tif}[1])-1({\134MyNode)-1({Navy}{)-1(\134textcol)-1(or{whit)-1(e}{#1}})-1(})]TJ 0 -11.95 Td[(\134psse)-1(t{armB=5)-1(mm,angl)-1(eA=90,a)-1(ngleB=-9)-1(0,level)-1(sep=2cm,)-1(treesep)-1(=5mm})]TJ 0 -11.96 Td[(\134rene)-1(wcommand)-1({\134psedg)-1(e}[2]{\134)-1(ncangle{)-1(#2}{#1})-1(})]TJ 0 -11.95 Td[(\134TeXt)-1(oEPS)]TJ +/F40 8.97 Tf 0 0 Td[(\134c)1(onfi)1(gure)1([pdf)1(grap)1(hic])1([line)1(colo)1(r=bl)1(ue,b)1(ackg)1(roun)1(d=gr)1(ay10)1(,widt)1(h=4i)1(n])]TJ 0 -10.95 Td[(\134b)1(egin)1({pdf)1(pic})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{l)1(ight)1(blue)1(}{rgb)1(}{0,)1(0,.5)1(})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{N)1(avy})1({rgb)1(}{0,0)1(,0.5)1(})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{L)1(emon)1(Chif)1(fon}{)1(rgb})1({1,0)1(.98,)1(0.8})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{F)1(ores)1(tGre)1(en}{r)1(gb}{)1(0.13)1(,0.5)1(5,0.)1(13})]TJ 0 -10.96 Td[(\134n)1(ewco)1(mman)1(d{\134M)1(yNod)1(e}[2)1(]{%)]TJ 10.76 -10.96 Td[(\134T)1(r{\134p)1(ssha)1(dowb)1(ox[f)1(ills)1(tyle)1(=soli)1(d,fi)1(llco)1(lor=)1(#1]{)1(\134tin)1(y)-600(#2)1(}}})]TJ -10.76 -10.96 Td[(\134n)1(ewco)1(mman)1(d{\134N)1(oeud)1(Xt}[)1(1]{\134M)1(yNod)1(e{Fo)1(rest)1(Gree)1(n}{#)1(1}})]TJ 0 -10.96 Td[(\134n)1(ewco)1(mman)1(d{\134N)1(oeud)1(Moti)1(f}[1])1({\134My)1(Node)1({Nav)1(y}{\134)1(text)1(colo)1(r{wh)1(ite}{)1(#1}})1(})]TJ 0 -10.95 Td[(\134p)1(sset)1({arm)1(B=5m)1(m,an)1(gleA)1(=90,a)1(ngle)1(B=-9)1(0,le)1(vels)1(ep=2)1(cm,t)1(rees)1(ep=5m)1(m})]TJ 0 -10.96 Td[(\134r)1(enew)1(comm)1(and{)1(\134pse)1(dge})1([2]{\134)1(ncan)1(gle{)1(#2}{)1(#1}})]TJ 0 -10.96 Td[(\134T)1(eXto)1(EPS)]TJ 0 -10.96 Td[(\134b)1(egin)1({psp)1(ictu)1(re}\050)1(-8cm)1(,-9.5)1(cm\051\050)1(8cm,)1(1cm\051)]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -179.45 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(7)]TJ +/F37 9.96 Tf 0 0 Td[(7)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -180 0 obj << +167 0 obj << /Type /Page -/Contents 181 0 R -/Resources 179 0 R +/Contents 168 0 R +/Resources 166 0 R /MediaBox [0 0 612 792] -/Parent 182 0 R +/Parent 169 0 R >> endobj -175 0 obj << +162 0 obj << /Type /XObject /Subtype /Form /FormType 1 -/PTEX.FileName (./test-fig2.pdf) -/PTEX.PageNumber 1 -/PTEX.InfoDict 183 0 R /Matrix [1 0 0 1 0 0] -/BBox [0 0 341 341] +/BBox [0 0 295 292] /Resources << -/ProcSet [ /PDF /Text ] -/ExtGState << -/R4 184 0 R ->>/Font << /R13 187 0 R /R10 188 0 R >> +/ProcSet [ /PDF /ImageB /Text ] +/ExtGState << /R4 170 0 R >> +/Font << /A 171 0 R>> >> -/Length 189 0 R +/Length 172 0 R /Filter /FlateDecode >> stream -x[ˮ%~YvOذa"H4n*HQ %r9_Ǘ+&W_|ʑ}|qȯϑR[`( BthB(pH)G+?MH>|nrpWzo.$|p8AtR=|Z3a_ua2 #>U揚qV9%4FJG,!l9Sڎ#;F9d8G6T\l9~yy5ןI #9~ -)U^?=A?܇Ba;*qģLȶv7P܎#*xOu'?F~͙3 *g;w# ;1XBu̯F;ӄ4_MSݿ3fFnEGZ sDͨDrj|G>PK#; - 5F~kb-nLRvD>p q?>o{}.;(ġC܎#;*⮖1Wgۖ\WkYV(1E:XBl!6@z̰FA uZnmŕmB\ड़^\UTCT^|Qy^9#8HTnSSy^1!*<{CjQ jy:;.Ệ3:Gȉ G`ɔx&*Uo(Cl7f:LQhςSݞT0uYTXko9 K;ҐQUdN$R_ %,lCES -\>8Uipm̀9iU:au7Ƙ_1@k"}{5&{A%oew9#H37݉ȶր$oSMy tN3HmL,X Vu3M|LKzӧDzѩkJAms;|햱NTv u.p! ,I!'sTn22QWp \ ~}ڄ~QBUWP[Edxm8^-`E<; -o2,/t -.WJ[dD[?fuP3ũ 3'2'8憜PJjG1AF ζWI C8RZN+sUppUhw#Hz*0)*d0g׮c^DPWb]VrXV xHO5*80LpCufFd G fN(  Egsyј8iB,cs.Uʾsñm2@́<PT PtxyOŸ2In`Mu tN,Sb(IJ_* S 2f6~Cӫbm %S Wf92+U2sAkn,f*yc1#,1csS34+"xdDS7 3^5U_W0VwxdwGdC6>4ED_M,VkGO m -Hf uNB :wD:){*k'Lz tNp)iX\L}b_u<эU7}JЄ,2Qgɏ0?1X΋G4dJ웍 afj~u(eRkF kpKS`3L#6ҼTWm^rx ۲&y -aBT:=yw%L[Ip*UlyJɢ~=NH7Z+Ùf2^Im:Y8{lb6Q'םMI6 ٧DAXE%:1%qkj | &^r^Sl4P]TT*NxɊkhÑqDEe[씣 -KHn(U~L^GֶY&tZyi ]\_<%֌M#2^/e!`K? vҐ3rw1䀽pSA`*`8{P|Q$wt"][mTY [Œ-SE_[uCkLҾZ(}w䳞݁u"z@S+ 8!g[ћ|[8+7 '\lF) -ӓfH]ÖM7t=ORZ7s +g/-8 l|Np;C._N)aȃLSYdPA)G"_(ȣlU}v,Q ,_ 23uvn%4Vhb&oatC-y,.o&!"k>;fZ%o+PKmE&oY cDnY[_*L[꜍YFcQcX-0Yj@X8ˉ7 -m¬+/ &fU6y)(mlfza0cZ ɫb'k ǒOWWEj H:K*/ Lbnia~C_QWai AoSie5M A,w2QQ f<. 7%k2YdgH߮FeԘ5ŧ՞L唉B? ORC˥3wPDŽwң>0)cFjrRQ"1,ru$ZדEy 6\R10GBq/wlU=lmvtGQF`k1XM%`Q[vCsHа87R<qmkK:nDM#zO Kmõ}sopꜦ*[y=MX$sqn -X0\oUWO1["h>7Ҹ:'a\+qHޓv2K;_VPr$]w:ҢS7-NZ&˴D*_6+JrGz}`)Þn(KZgj>rIK9`o:WfȐgWd{@Ӄ#oEԘB}ʹ2kJs`i~19`1[ vCs횊uô{HzJW3:jT2M}*.m,5tNÔyq{0{~;a{g9NwHzٝJ9X(a^s0ԓN*.nX F*.Q&8?0-m*.:h tߟ&XP`i -1ڻT暣9-b$2͈57Tɮ dAKuԼKmo^;XN#F+ Vyar=^-8Z޶}tdaKL{\)٣z@Q4d.ۑ^zpumF2OdXk6Ϣ/F_[uCs7mnv}ݰYp%aF:'YMAF(=I'h=o֟6&.fdkzfm>[\,{6?C2VFpfl{ʐkw 1n/PU; zU7}'`,ZðobAE"laBt@.G{=gW[ -ڛh g4k Dqlz i/W89y߮sHVRg7_{5d{\]jy$`)X=@Xk]f;Ң夰owR7 -[EaslRuΥÌe`c{=N`ݬ w߈z7:b\sϡ_ -)Ou}(o_sHXCŰ`&̢'4G7:W:1` -Fcçz7> -endobj -184 0 obj +x[ˎqɦBKgѲX/ h >-,97>bu9U,mo_|] us!-d %Bڝ 崇&/bk # Ƒw͓}H˅"{M۷;ֲ[<\t~/a>8W×qN]R~f:3!y~}=AXx.n\g2dEɑ# ʇ红ȂJ^vY%ΑU]ܳ12Qۜ:V__lnoZqsl^_ן`?Jѷh??u˗`Uycd.z5G&*ASǑ(ê92Q0o#?A 7OTA.7*Qu~6`00@w_ 2|aXOP\q?:>Ljz~Ci +7Q}B6rCEwGn^eE,>eŷ/Z!xW-uO=uO}dE%LGV׆"}dE/߫E{;΍/w^w;3tn gxun-0 x&9 H$43GY1Z~fe> NQ0d;Ρ-=9#PNF+ČPpX@GhzL T`uq U ]cO,s 5~~ 3VˁC=xp ?Պ5CG(T\Qq`9y(F%Ò%39A-S.QbO׆#0eW*''AM,vb:TTS1X7 +]gs<22#6: +śoڄyo+>Qy8&h,Wٓp]26O^(46Ac +v BbcluĔ_"QustbjlE!,}_a˺:itX[W)OED;Bv1{N ":ہn6n '# +ٜ9:VBtƐ5'ab+ݵtPo)/[F:KMYC +4֤}Spd|`ܱxXFtwfc8B϶ʨ#+coLf̕oTP(rl0UN;DET %x-VmH%ȋbWhqNrUこc&jB>Gh 0؂ŤDr/ܣIz HDȶZYM< R3G .h=Q8a޳%<.2ypLz6x ""đuy:-AZOF;s|g,$6=Q\yuP*+[9=7Wp.~\,ZfմdՊ,Ur89eV .i:&>VN_ׯ9B +dDС&N#Sbj 0ߗDD2Pf)MQ' ),@"J(@q"RùBi֛<ϓ!U;b9m遚xf-n-x>qf6Ly-59;*oޘMLm >Lyu cc X,'$Ɲ@5fۼ}X`ty71Sr@-Hqy;0tvfE޼1~yw7 +WJ-lAUܸz%>,%y!P(UPgժJW +8l FɌ#{艷6pv¼-WMjj^S5a/fHѤ {/UFeQ1/PT{&\a{p{/߮űf(MHJ8#!_Eh[+rew72zADˋg/>Åݗ\Z^P+:#Zi|hma[JztT# 3G*Oea^$c^]O%H<~'洒~Cp(JH%:Z iQZP4!iˏ}J!PxOњ[*ᩩ#EY*&Q@PYV꽹Źyz(iΤQF'zQ{i+LGCE&@k< FfcZ'Mt >WY},)R;[[̤lTMĐД'Sd#+HV:aͼj  ٶgv`z+z`r“V.[gIʢe]/sS"5䬳Y2c%Hn1;i lAqi ޑJ ;fն/aL?x3b@C{ ):j"I,@COvѨXDOf/283n\j^/(u<8@CUyQ>Nkc$rܷ7$xO447A~:=I/~ٝڣ]gjoF{Լ^@,*Wk`ڭ2~8^+Վ^?5w mǭRy:YX?ߞ,5'ub}luε̩Gʱv:(wc%eVzA4(74{0=V)|7j^/s8氞Ow~,|bNU1ęwkuΠbqs;eLldB,=:;gVi~#.,"J7VK Tuofd̈'_:`XiQAId#v<9zCo_U9ߞ2}H^kvs =S3_fyDoB)Jrң?.^P{&>؊۷gJp<5RQQ>jCpګ# ĤW +0endstream +endobj +170 0 obj << /Type /ExtGState /Name /R4 @@ -4028,167 +3976,225 @@ endobj /SM 0.02 >> endobj -185 0 obj +171 0 obj << -/Type /FontDescriptor -/FontBBox [ 62 0 1000 285] -/Flags 4 -/Ascent 285 -/CapHeight 285 -/Descent 0 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 1000 -/FontName 161 0 R -/FontFile 33 0 R +/Type /Font +/Name /A +/Subtype /Type3 +/Encoding 173 0 R +/CharProcs << +/a5 174 0 R +/a4 175 0 R +/a3 176 0 R +/a2 177 0 R +/a1 178 0 R +/a0 179 0 R +>> +/FontBBox [ 0 0 61 71] +/FontMatrix [ 1 0 0 1 0 0] +/FirstChar 0 +/LastChar 5 +/Widths [ 0 0 0 0 0 0] >> endobj -187 0 obj +172 0 obj +5217 +endobj +173 0 obj << -/Subtype /Type1 -/Type /Font -/Name /R13 -/FontDescriptor 185 0 R -/FirstChar 0 -/LastChar 0 -/Widths [ 638] -/BaseFont 161 0 R -/Encoding 186 0 R +/Type /Encoding +/Differences [ 0/a0/a1/a2/a3/a4/a5/a6/a7/a8/a9/a10/a11/a12/a13/a14/a15/a16/a17/a18/a19/a20/a21/a22/a23/a24/a25/a26/a27/a28/a29/a30/a31/a32/a33/a34/a35/a36/a37/a38/a39/a40/a41/a42/a43/a44/a45/a46/a47/a48/a49/a50/a51/a52/a53/a54/a55/a56/a57/a58/a59/a60/a61/a62/a63/a64/a65/a66/a67/a68/a69/a70/a71/a72/a73/a74/a75/a76/a77/a78/a79/a80/a81/a82/a83/a84/a85/a86/a87/a88/a89/a90/a91/a92/a93/a94/a95/a96/a97/a98/a99/a100/a101/a102/a103/a104/a105/a106/a107/a108/a109/a110/a111/a112/a113/a114/a115/a116/a117/a118/a119/a120/a121/a122/a123/a124/a125/a126/a127/a128/a129/a130/a131/a132/a133/a134/a135/a136/a137/a138/a139/a140/a141/a142/a143/a144/a145/a146/a147/a148/a149/a150/a151/a152/a153/a154/a155/a156/a157/a158/a159/a160/a161/a162/a163/a164/a165/a166/a167/a168/a169/a170/a171/a172/a173/a174/a175/a176/a177/a178/a179/a180/a181/a182/a183/a184/a185/a186/a187/a188/a189/a190/a191/a192/a193/a194/a195/a196/a197/a198/a199/a200/a201/a202/a203/a204/a205/a206/a207/a208/a209/a210/a211/a212/a213/a214/a215/a216/a217/a218/a219/a220/a221/a222/a223/a224/a225/a226/a227/a228/a229/a230/a231/a232/a233/a234/a235/a236/a237/a238/a239/a240/a241/a242/a243/a244/a245/a246/a247/a248/a249/a250/a251/a252/a253/a254/a255] >> endobj -188 0 obj +174 0 obj << -/Subtype /Type1 -/BaseFont /JWQCKA#2BTimes-Roman -/Type /Font -/Name /R10 -/FontDescriptor 190 0 R -/FirstChar 1 -/LastChar 255 -/Widths [ 333 556 556 167 333 611 278 333 333 250 333 564 250 611 444 333 278 250 250 250 250 250 250 250 250 250 250 250 250 333 180 250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278 500 505 505 505 505 505 500 500 500 500 278 278 564 564 564 444 921 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722 556 722 667 556 611 722 722 944 722 722 611 333 278 333 469 500 333 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 480 200 480 541 250 250 250 333 500 444 1000 500 500 333 1000 556 333 889 250 250 250 250 250 250 444 444 350 500 1000 333 980 389 333 722 250 250 722 250 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333 400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444 722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333 722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500 444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500] +/Length 129 +>> +stream +0 0 0 0 61 6 d1 +61 0 0 6 0 0 cm +BI +/IM true +/W 61 +/H 6 +/BPC 1 +/F /CCF +/DP <> +ID &|^MR +EI +endstream endobj -189 0 obj -5215 +175 0 obj +<< +/Length 214 +>> +stream +0 0 0 0 41 70 d1 +41 0 0 70 0 0 cm +BI +/IM true +/W 41 +/H 70 +/BPC 1 +/F /CCF +/DP <> +ID &|W@ ?WCaq]K^a/ / W<@ +EI +endstream endobj -190 0 obj +176 0 obj << -/Type /FontDescriptor -/FontName /JWQCKA#2BTimes-Roman -/FontBBox [ -168 -281 1000 924] -/Flags 4 -/Ascent 924 -/CapHeight 924 -/Descent -281 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 250 -/CharSet (/one/two/three/four/five) -/FontFile3 191 0 R +/Length 196 +>> +stream +0 0 0 -2 45 67 d1 +45 0 0 69 0 -2 cm +BI +/IM true +/W 45 +/H 69 +/BPC 1 +/F /CCF +/DP <> +ID & `57A|0a +EI +endstream endobj -191 0 obj +177 0 obj << -/Subtype /Type1C -/Filter /FlateDecode -/Length 192 0 R +/Length 220 >> stream -xmlSUeZPړ615s lέ>hsמ7vm1Rl j + E!Q#|:]>xog{9$t A}sc}EuyAbͳ4gn?Oj,Veye~Esf+9{_.޽G~H7WVBA+))m*x("rrx B !#-l !T 73 jr\ Ɉ"P.H" ,$Hd2e> 78kCd+"Ac]e -20F4L#N2lMf|H5eXt/" ТRF||_iA`2gLm$K"9,0A-_j -,M ˺?$Av^AGXA,%jd!$˵nuP;I,|S}ZK̶g}CT*rjoJ8h+>~JiL)mG}9K*G.#oR\yډ)u&ﯧlh {RBTW?PKW׻*޲U[iƎi} _t|>Vbr%dJJ,$|azHڕ9z^=Ӟ>jۺ>eH?_? ~qܑF|RߍzjJ@],+K.=%sgWدi nw<{[j|T`_nXzw-f,g.dM]og㫹1^ ZuRۣ=y]ݻqb j>UPlYK4u偈Jq"LK?]ihj\R'[ǚN{Ne)jyKR{9C8;;{n(NѼendstream +0 0 0 0 43 70 d1 +43 0 0 70 0 0 cm +BI +/IM true +/W 43 +/H 70 +/BPC 1 +/F /CCF +/DP <> +ID &bB Fz/I ~ %렺,.Ap <|<0%[` ج0[  +EI +endstream endobj -192 0 obj -966 +178 0 obj +<< +/Length 205 +>> +stream +0 0 0 0 41 67 d1 +41 0 0 67 0 0 cm +BI +/IM true +/W 41 +/H 67 +/BPC 1 +/F /CCF +/DP <> +ID &=Qa{7߶>{7.@ vvK0\ !@ +EI +endstream endobj -186 0 obj << -/Type /Encoding -/Differences [ 0 /minus 1/.notdef] ->> endobj -179 0 obj << -/Font << /F75 9 0 R /F49 12 0 R /F73 6 0 R >> -/XObject << /Im2 175 0 R >> +179 0 obj +<< +/Length 167 +>> +stream +0 0 0 0 34 67 d1 +34 0 0 67 0 0 cm +BI +/IM true +/W 34 +/H 67 +/BPC 1 +/F /CCF +/DP <> +ID &l/MB  +EI +endstream +endobj +166 0 obj << +/Font << /F38 7 0 R /F40 9 0 R /F37 5 0 R >> +/XObject << /Im2 162 0 R >> /ProcSet [ /PDF /Text ] >> endobj -196 0 obj << -/Length 2377 +183 0 obj << +/Length 2390 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -477.48 -692.1 cm +1 0 0 1 -343.71 -34.86 cm BT -/F49 9.96 Tf 133.77 657.24 Td[(\134begi)-1(n{pspict)-1(ure}\050-8)-1(cm,-9.5)-1(cm\051\0508cm,)-1(1cm\051)]TJ 0 -11.96 Td[(\134rput)-1(\0500,0\051{\134L)-1(ARGE\134te)-1(xtcolor)-1({red}{Se)-1(t)-525(of)-525(Mo)-1(tif)-525(widg)-1(ets)-525(cla)-1(sses}})]TJ 0 -11.95 Td[(\134rput)-1(\0500,-4.8\051)-1({%)]TJ 10.46 -11.96 Td[(\134psfr)-1(amebox[)-1(fillstyl)-1(e=solid)-1(,fillco)-1(lor=Lemo)-1(nChiffo)-1(n,linea)-1(rc=5mm,)]TJ 57.53 -11.96 Td[(co)-1(rnersiz)-1(e=absolu)-1(te])]TJ -47.07 -11.95 Td[({\134ps)-1(tree{\134No)-1(eudXt{C)-1(ore}})]TJ 0 -11.96 Td[({\134ps)-1(tree{\134No)-1(eudMoti)-1(f{Primi)-1(tive}})]TJ 41.84 -11.95 Td[({\134)-1(pstree{)-1(\134NoeudMo)-1(tif{Lab)-1(el}})]TJ 41.85 -11.96 Td[({\134TC*})]TJ -36.62 -11.95 Td[(\134N)-1(oeudMot)-1(if{Scrol)-1(lbar})]TJ 0 -11.96 Td[(\134N)-1(oeudMot)-1(if{List})]TJ 0 -11.95 Td[(\134N)-1(oeudMot)-1(if{Text})]TJ 0 -11.96 Td[(\134N)-1(oeudMot)-1(if{Arrow)-1(Button})-1(})]TJ -41.84 -11.95 Td[(\134pst)-1(ree{\134No)-1(eudXt{Co)-1(mposite)-1(}})]TJ 36.61 -11.96 Td[({\134)-1(pstree{)-1(\134NoeudXt)-1({Constr)-1(aint}})]TJ 41.85 -11.95 Td[({\134pstre)-1(e{\134Noeud)-1(Motif{M)-1(anager})-1(})]TJ 41.84 -11.96 Td[({\134TC*)-1(}}})]TJ -120.3 -11.95 Td[(\134pst)-1(ree{\134No)-1(eudXt{Sh)-1(ell}})]TJ 36.61 -11.96 Td[({\134)-1(pstree{)-1(\134NoeudXt)-1({Overri)-1(deShell})-1(})]TJ 41.85 -11.95 Td[({\134Noeud)-1(Motif{Me)-1(nuShell)-1(}})]TJ -36.62 -11.96 Td[(\134p)-1(stree{\134)-1(NoeudXt{)-1(WMShell)-1(}})]TJ 36.62 -11.95 Td[({\134pstre)-1(e{\134Noeud)-1(Xt{Vend)-1(orShell)-1(}})]TJ 41.84 -11.96 Td[({\134TC*)-1(}}}}}})]TJ -146.45 -11.95 Td[(\134rput)-1(\050-2,-10\051)-1({%)]TJ 10.46 -11.96 Td[(\134pssh)-1(adowbox)-1([fillsty)-1(le=soli)-1(d,fillc)-1(olor=For)-1(estGree)-1(n]{Core)-1(})-525(Xt)-525(Cla)-1(ss})]TJ -10.46 -11.95 Td[(\134rput)-1(\0502,-10\051{)-1(%)]TJ 10.46 -11.96 Td[(\134pssh)-1(adowbox)-1([fillsty)-1(le=soli)-1(d,fillc)-1(olor=Nav)-1(y]{%)]TJ 15.69 -11.95 Td[(\134tex)-1(tcolor{)-1(white}{L)-1(ist}})-525(M)-1(otif)-525(Cl)-1(ass})]TJ -26.15 -11.96 Td[(\134end{)-1(pspictur)-1(e})]TJ 0 -11.95 Td[(\134endT)-1(eXtoEPS)]TJ 0 -11.96 Td[(\134end{)-1(pdfdispl)-1(ay})]TJ +/F40 8.97 Tf 0 0 Td[(\134r)1(put\050)1(0,0\051)1({\134LA)1(RGE\134)1(text)1(color)1({red)1(}{Se)1(t)-600(of)-599(Mot)1(if)-600(w)1(idge)1(ts)-600(c)1(lasse)1(s}})]TJ 0 -10.96 Td[(\134r)1(put\050)1(0,-4)1(.8\051{)1(%)]TJ 10.76 -10.96 Td[(\134p)1(sfra)1(mebo)1(x[fi)1(llst)1(yle=)1(soli)1(d,fil)1(lcol)1(or=L)1(emon)1(Chif)1(fon,)1(line)1(arc=)1(5mm,)]TJ 59.18 -10.96 Td[(c)1(orne)1(rsiz)1(e=ab)1(solu)1(te])]TJ -48.42 -10.96 Td[({)1(\134pstr)1(ee{\134)1(Noeu)1(dXt{)1(Core)1(}})]TJ 0 -10.96 Td[({)1(\134pstr)1(ee{\134)1(Noeu)1(dMot)1(if{P)1(rimi)1(tive)1(}})]TJ 43.04 -10.96 Td[({)1(\134pst)1(ree{)1(\134Noe)1(udMo)1(tif{)1(Label)1(}})]TJ 43.03 -10.96 Td[({\134TC*)1(})]TJ -37.65 -10.96 Td[(\134)1(Noeu)1(dMot)1(if{S)1(crol)1(lbar)1(})]TJ 0 -10.95 Td[(\134)1(Noeu)1(dMot)1(if{L)1(ist})]TJ 0 -10.96 Td[(\134)1(Noeu)1(dMot)1(if{T)1(ext})]TJ 0 -10.96 Td[(\134)1(Noeu)1(dMot)1(if{A)1(rrow)1(Butt)1(on}})]TJ -43.04 -10.96 Td[(\134)1(pstre)1(e{\134N)1(oeud)1(Xt{C)1(ompo)1(site)1(}})]TJ 37.66 -10.96 Td[({)1(\134pst)1(ree{)1(\134Noe)1(udXt)1({Con)1(strai)1(nt}})]TJ 43.03 -10.96 Td[({\134pst)1(ree{)1(\134Noe)1(udMo)1(tif{)1(Mana)1(ger}})]TJ 43.04 -10.96 Td[({\134TC)1(*}}})]TJ -123.73 -10.96 Td[(\134)1(pstre)1(e{\134N)1(oeud)1(Xt{S)1(hell)1(}})]TJ 37.66 -10.96 Td[({)1(\134pst)1(ree{)1(\134Noe)1(udXt)1({Ove)1(rride)1(Shel)1(l}})]TJ 43.03 -10.95 Td[({\134Noe)1(udMo)1(tif{)1(Menu)1(Shel)1(l}})]TJ -37.65 -10.96 Td[(\134)1(pstr)1(ee{\134)1(Noeu)1(dXt{)1(WMSh)1(ell}})]TJ 37.65 -10.96 Td[({\134pst)1(ree{)1(\134Noe)1(udXt)1({Ven)1(dorS)1(hell})1(})]TJ 43.04 -10.96 Td[({\134TC)1(*}}})1(}}})]TJ -150.63 -10.96 Td[(\134r)1(put\050)1(-2,-)1(10\051{)1(%)]TJ 10.76 -10.96 Td[(\134p)1(ssha)1(dowb)1(ox[f)1(ills)1(tyle)1(=sol)1(id,fi)1(llco)1(lor=)1(Fore)1(stGr)1(een])1({Cor)1(e})-600(X)1(t)-600(Cla)1(ss})]TJ -10.76 -10.96 Td[(\134r)1(put\050)1(2,-1)1(0\051{%)]TJ 10.76 -10.96 Td[(\134p)1(ssha)1(dowb)1(ox[f)1(ills)1(tyle)1(=sol)1(id,fi)1(llco)1(lor=)1(Navy)1(]{%)]TJ 16.14 -10.96 Td[(\134)1(textc)1(olor)1({whi)1(te}{)1(List)1(}})-600(M)1(otif)-599(Cla)1(ss})]TJ -26.9 -10.95 Td[(\134e)1(nd{p)1(spic)1(ture)1(})]TJ 0 -10.96 Td[(\134e)1(ndTe)1(XtoE)1(PS)]TJ 0 -10.96 Td[(\134e)1(nd{p)1(dfpi)1(c})]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -567.88 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(8)]TJ +/F37 9.96 Tf 0 0 Td[(8)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -195 0 obj << +182 0 obj << /Type /Page -/Contents 196 0 R -/Resources 194 0 R +/Contents 183 0 R +/Resources 181 0 R /MediaBox [0 0 612 792] -/Parent 182 0 R +/Parent 169 0 R >> endobj -194 0 obj << -/Font << /F49 12 0 R /F73 6 0 R >> +181 0 obj << +/Font << /F40 9 0 R /F37 5 0 R >> /ProcSet [ /PDF /Text ] >> endobj -199 0 obj << -/Length 2669 +186 0 obj << +/Length 2522 >> stream 1 0 0 1 133.77 692.1 cm 0 g 0 G 1 0 0 1 343.71 0 cm 0 g 0 G -1 0 0 1 -315.61 -272.87 cm +1 0 0 1 -176.84 -34.86 cm 0 g 0 G 0 g 0 G -1 0 0 1 4.98 0 cm +1 0 0 1 -166.87 -253.8 cm 1 0 0 rg 1 0 0 RG 0 0 1 rg 0 0 1 RG -1 0 0 1 0 245.98 cm -q -[]0 d -0 J -0 j -0 w -0 0 277.54 1.99 re f -S -Q -1 0 0 1 0 -251.96 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 251.96 re f -S -Q -1 0 0 1 2 5.98 cm .90 g .90 G .90 g .90 G -1 0 0 1 0 -5.98 cm q []0 d 0 J 0 j 0 w -0 0 273.56 251.96 re f +0 0 367.2 252.8 re f S Q -1 0 0 1 0 5.98 cm .90 g .90 G -1 0 0 1 5.97 0 cm 1 0 0 rg 1 0 0 RG q .8 0 0 .8 0 0 cm q @@ -4196,99 +4202,71 @@ q /Im3 Do Q Q -1 0 0 1 261.6 0 cm +1 0 0 1 367.2 0 cm 1 0 0 rg 1 0 0 RG -1 0 0 1 5.98 0 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 0 -5.98 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 251.96 re f -S -Q -1 0 0 1 -275.55 -1.99 cm -q -[]0 d -0 J -0 j -0 w -0 0 277.54 1.99 re f -S -Q -1 0 0 1 277.54 7.97 cm 1 0 0 rg 1 0 0 RG 0 g 0 G -1 0 0 1 -444.39 -419.23 cm +1 0 0 1 -367.2 -34.5 cm BT -/F75 11.96 Tf 133.77 371.55 Td[(7.3)-999(Ex)1(ample)-249(3)]TJ +/F38 11.96 Tf 0 0 Td[(7.3)-999(Ex)1(ample)-249(3)]TJ ET -1 0 0 1 128.79 346.89 cm +1 0 0 1 -4.98 -23.66 cm 0 g 0 G 0 g 0 G -1 0 0 1 -128.79 -346.89 cm +1 0 0 1 4.98 0 cm BT -/F49 9.96 Tf 133.77 346.89 Td[(\134conf)-1(igure[pd)-1(fgraphi)-1(c][line)-1(color=bl)-1(ack,bac)-1(kground=)-1(gray30])]TJ 0 -11.95 Td[(\134begi)-1(n{pdfdis)-1(play})]TJ 0 -11.96 Td[(\134TeXt)-1(oEPS)]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(lightbl)-1(ue}{rgb)-1(}{0,0,.5)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(Navy}{r)-1(gb}{0,0)-1(,0.5})]TJ 0 -11.95 Td[(\134defi)-1(necolor{)-1(LemonCh)-1(iffon}{)-1(rgb}{1,0)-1(.98,0.8)-1(})]TJ 0 -11.96 Td[(\134defi)-1(necolor{)-1(ForestG)-1(reen}{r)-1(gb}{0.13)-1(,0.55,0)-1(.13})]TJ 0 -11.95 Td[(\134psse)-1(t{unit=.)-1(825cm})]TJ 0 -11.96 Td[(\134begi)-1(n{pspict)-1(ure}\05010)-1(,8\051)]TJ 10.46 -11.95 Td[(\134psse)-1(t{fills)-1(tyle=sol)-1(id,line)-1(style=n)-1(one,line)-1(width=0)-1(})]TJ 0 -11.96 Td[(\134psfr)-1(ame[fil)-1(lcolor=l)-1(ightblu)-1(e]\05010,8)-1(\051)]TJ 0 -11.95 Td[(\134psci)-1(rcle[fi)-1(llcolor=)-1(yellow])-1(\0502,6\051{.)-1(8})-525(%)-525(Sun)]TJ 0 -11.96 Td[({%)-525(Ra)-1(ys)]TJ 5.23 -11.96 Td[(\134psse)-1(t{linec)-1(olor=ye)-1(llow,lin)-1(estyle=)-1(solid,l)-1(inewidth)-1(=.3})]TJ 0 -11.95 Td[(\134degr)-1(ees[8])]TJ 0 -11.96 Td[(\134mult)-1(ido{\134i=)-1(1+1}{8})-1({\134rput{\134)-1(i}\0502,6\051)-1({\134pslin)-1(e\0501,0\051\0501)-1(.5,0\051}})]TJ -5.23 -11.95 Td[(}%)]TJ 0 -11.96 Td[(\134pspo)-1(lygon[f)-1(illcolor)-1(=green])-1(\0506,0\051\0501)-1(0,2\051\05010,)-1(0\051%)-525(Gra)-1(ss)]TJ 0 -11.95 Td[(\134psdi)-1(amond[f)-1(illcolor)-1(=red,ga)-1(ngle=-4)-1(5]\0508,6\051\050)-1(1.5,2.5)-1(\051%)-525(Kite)]TJ 0 -11.96 Td[(\134rput)-1({45}\0508,)-1(6\051{\134pnod)-1(e\050-2.5,)-1(0\051{Kite)-1(tail}})]TJ +/F40 8.97 Tf 0 0 Td[(\134c)1(onfi)1(gure)1([pdf)1(grap)1(hic])1([line)1(colo)1(r=bl)1(ack,)1(back)1(grou)1(nd=g)1(ray3)1(0])]TJ 0 -10.96 Td[(\134b)1(egin)1({pdf)1(pic})]TJ 0 -10.96 Td[(\134T)1(eXto)1(EPS)]TJ 0 -10.95 Td[(\134d)1(efin)1(ecol)1(or{l)1(ight)1(blue)1(}{rgb)1(}{0,)1(0,.5)1(})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{N)1(avy})1({rgb)1(}{0,0)1(,0.5)1(})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{L)1(emon)1(Chif)1(fon}{)1(rgb})1({1,0)1(.98,)1(0.8})]TJ 0 -10.96 Td[(\134d)1(efin)1(ecol)1(or{F)1(ores)1(tGre)1(en}{r)1(gb}{)1(0.13)1(,0.5)1(5,0.)1(13})]TJ 0 -10.96 Td[(\134p)1(sset)1({uni)1(t=.8)1(25cm)1(})]TJ 0 -10.96 Td[(\134b)1(egin)1({psp)1(ictu)1(re}\050)1(10,8)1(\051)]TJ 10.76 -10.96 Td[(\134p)1(sset)1({fil)1(lsty)1(le=s)1(olid)1(,lin)1(estyl)1(e=no)1(ne,l)1(inew)1(idth)1(=0})]TJ 0 -10.96 Td[(\134p)1(sfra)1(me[f)1(illc)1(olor)1(=lig)1(htbl)1(ue]\0501)1(0,8\051)]TJ 0 -10.96 Td[(\134p)1(scir)1(cle[)1(fill)1(colo)1(r=ye)1(llow)1(]\0502,6)1(\051{.8)1(})-600(%)-599(Sun)]TJ 0 -10.95 Td[({%)-599(Ray)1(s)]TJ 5.38 -10.96 Td[(\134p)1(sset)1({lin)1(ecol)1(or=y)1(ello)1(w,li)1(nest)1(yle=s)1(olid)1(,lin)1(ewid)1(th=.)1(3})]TJ 0 -10.96 Td[(\134d)1(egre)1(es[8)1(])]TJ 0 -10.96 Td[(\134m)1(ulti)1(do{\134)1(i=1+)1(1}{8)1(}{\134r)1(put{)1(\134i}\050)1(2,6\051{)1(\134psl)1(ine\050)1(1,0\051)1(\0501.5)1(,0\051})1(})]TJ -5.38 -10.96 Td[(}%)]TJ 0 -10.96 Td[(\134p)1(spol)1(ygon)1([fil)1(lcol)1(or=g)1(reen)1(]\0506,0)1(\051\05010)1(,2\051\050)1(10,0)1(\051%)-600(G)1(rass)]TJ 0 -10.96 Td[(\134p)1(sdia)1(mond)1([fil)1(lcol)1(or=r)1(ed,g)1(angle)1(=-45)1(]\0508,)1(6\051\0501)1(.5,2)1(.5\051%)-599(Kit)1(e)]TJ 0 -10.96 Td[(\134r)1(put{)1(45}\050)1(8,6\051)1({\134pn)1(ode\050)1(-2.5)1(,0\051{K)1(itet)1(ail})1(})]TJ 0 -10.96 Td[(\134r)1(put{)1(-10})1(\050.8,)1(1.5\051)1({\134ps)1(diam)1(ond[f)1(illc)1(olor)1(=yel)1(low])1(\050.6,)1(.1\051\050)1(.6,.)1(3\051})]TJ ET -1 0 0 1 133.77 89.36 cm +1 0 0 1 0 -255.92 cm 0 g 0 G -1 0 0 1 -133.77 -89.36 cm +1 0 0 1 169.36 0 cm BT -/F73 9.96 Tf 303.13 89.36 Td[(9)]TJ +/F37 9.96 Tf 0 0 Td[(9)]TJ ET -1 0 0 1 477.48 89.36 cm +1 0 0 1 174.35 0 cm 0 g 0 G endstream endobj -198 0 obj << +185 0 obj << /Type /Page -/Contents 199 0 R -/Resources 197 0 R +/Contents 186 0 R +/Resources 184 0 R /MediaBox [0 0 612 792] -/Parent 182 0 R +/Parent 169 0 R >> endobj -193 0 obj << +180 0 obj << /Type /XObject /Subtype /Form /FormType 1 -/PTEX.FileName (./test-fig3.pdf) -/PTEX.PageNumber 1 -/PTEX.InfoDict 200 0 R /Matrix [1 0 0 1 0 0] -/BBox [0 0 327 300] +/BBox [0 0 459 316] /Resources << /ProcSet [ /PDF /ImageB /Text ] -/ExtGState << -/R7 201 0 R ->>/Font << /R13 202 0 R /R10 203 0 R /R16 204 0 R >> +/ExtGState << /R7 187 0 R >> +/Font << /A 188 0 R>> >> -/Length 205 0 R +/Length 189 0 R /Filter /FlateDecode >> stream -x[Ksy~7Ƴ*UqZ*%J1Es%VpKlyB͒~̏ӫ_y<딀؏&J5H)d`WnzaVӫ~C/oMq!*UظRךN/BBYU: }yCPzٵoaiitv_!C_%:6N UȆFfh%UUF6dlp7R;@MЍ˙fh^0XàPቍk/"72o@kؑ*-S iM0u2ME0H-͕7U:.o\Qdȹ.0FNgZ*md Qڤv_O%y M]H }&ๅbua2TZUdѾW[gV^0J`әGkpsx\7C꾠"Hшcl -Z?qGaH>JeHua.(۩hHVpD}) ?r:h/c\-[HۭJ;?N|ÒO RY6@]Aq1g*m(A ,cM}F/K*B985OKDӐq 0V E*(,+W/kzG+g.焂"pY32V"%:k*BR{px]z9a9ĢԐ)W -Z\>0n*X/| L毥3|\Q3E8H ~Y§8oSCE@,b[ZEή ]`t_Pj{:GDtǏOoxH Iypt6B.&ǢuEi.h#qi#q%ZhPVpD2fpҔu"HhV1Sɞ_hQVw>e@!djK|i_PIEQ^BՐ31cxzt3fY -tɽj3ԫA?b]0|'aoT V):VjF&Eݹ(TYˇضCӉԛ$*W;!2;Ђ2UCNōi {ۢmSm7> +x[sGIB’0`,YAh(6D8FPT@=۽N ||3uoϚ31r-φprtlf28wQ #8㿟pp[q;3{pOu$O +(?Ζ(veLa\yٯ> O_|voo~~p?՟_yꫧ% m' Faa. "M,3F[cӂY5j7g08B..sL2L*A@k;`+4#S6#)c2)*2˸(=ǂB>}>}<+5x 0[Iex\ M pzBγ“B + 9zRQYFL$S!Kf"Br +r>qGƮ{[ǭSjz /_Y ,*0>8~Y! (k}̅BhDki?0h\XlnYlD-ϬCxE# 獢.yHRp kūpG/#`_;cg}[[(t.4P $!Zf=);vpAG&( 7b0f1lXc0 +\w&̣ B9D[\f/.[Cbp)v FgI 8zz)"9$}l4XAQD#d‶q!qQRx$DaѦ4ͧ1H?hyì2;Zget6!v,eW["٦ ZWbL!BA(2)1߸+P<[pˑZ?>p|Vj@890L9Lt)&k"&6:bPJveĻx"е>2]ܪ4"m?)n#a.Ihr +~pNi*ͪZOQ +mœȕ A0er%FcYM:wS S)RHQŘ2^ %5$H Qkl@A]gt੺"iqR4_q^elq6ٸ,d$`&wP9K5?q& l(#*HCs3V)ӓ^6YeF2 +N:C豊i;l7},bζobL/c٣}>~RAs*aO3\,VKSeM_fzNJrfbvRz NlHAj(3EL;_QƥݠL~E!~ +&zUWqi'8Ҏ +jXP8 X]+l\"w섙C3GViނϬ:*bE|9 +ߔw2-|@tl5R,IUҘo25(O(aP5"1r]4vK. +_;wJ޿bxth$SNX񳂐[Ic6*f}i^{"GNf˴[6iJBۿm^cGG'E-WiO>xbWp2Ydendstream endobj -201 0 obj +187 0 obj << /Type /ExtGState /Name /R7 @@ -4297,763 +4275,1881 @@ endobj /SM 0.02 >> endobj -202 0 obj +188 0 obj << -/Subtype /Type1 -/BaseFont /SAHHBA#2BTimes-Roman#7Ec /Type /Font -/Name /R13 -/FontDescriptor 206 0 R -/FirstChar 1 -/LastChar 255 -/Widths [ 333 556 556 167 333 611 278 333 333 250 333 564 250 611 444 333 278 250 250 250 250 250 250 250 250 250 250 250 250 333 180 250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444 921 722 674 674 722 611 556 722 722 333 389 722 602 891 722 722 554 722 667 554 602 722 722 939 722 722 611 333 278 333 469 500 333 433 505 433 505 433 333 505 505 289 278 500 289 770 505 505 505 500 337 385 289 505 505 722 505 500 444 480 200 480 541 250 250 250 333 500 444 1000 500 500 333 1000 556 333 889 250 250 250 250 250 250 444 444 350 500 1000 333 980 389 333 722 250 250 722 250 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333 400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444 722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333 722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500 444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500] +/Name /A +/Subtype /Type3 +/Encoding 190 0 R +/CharProcs << +/a105 191 0 R +/a102 192 0 R +/a101 193 0 R +/a100 194 0 R +/a97 195 0 R +/a96 196 0 R +/a95 197 0 R +/a92 198 0 R +/a90 199 0 R +/a88 200 0 R +/a87 201 0 R +/a86 202 0 R +/a85 203 0 R +/a83 204 0 R +/a82 205 0 R +/a79 206 0 R +/a78 207 0 R +/a77 208 0 R +/a76 209 0 R +/a74 210 0 R +/a72 211 0 R +/a71 212 0 R +/a70 213 0 R +/a68 214 0 R +/a66 215 0 R +/a64 216 0 R +/a63 217 0 R +/a62 218 0 R +/a61 219 0 R +/a55 220 0 R +/a54 221 0 R +/a52 222 0 R +/a51 223 0 R +/a49 224 0 R +/a48 225 0 R +/a47 226 0 R +/a46 227 0 R +/a44 228 0 R +/a42 229 0 R +/a41 230 0 R +/a39 231 0 R +/a37 232 0 R +/a36 233 0 R +/a35 234 0 R +/a29 235 0 R +/a27 236 0 R +/a25 237 0 R +/a24 238 0 R +/a20 239 0 R +/a18 240 0 R +/a15 241 0 R +/a12 242 0 R +/a9 243 0 R +/a7 244 0 R +/a5 245 0 R +/a3 246 0 R +/a1 247 0 R +/a0 248 0 R +/a58 249 0 R +/a40 250 0 R +/a43 251 0 R +/a84 252 0 R +/a57 253 0 R +/a53 254 0 R +/a80 255 0 R +/a67 256 0 R +/a38 257 0 R +/a59 258 0 R +/a56 259 0 R +/a60 260 0 R +/a81 261 0 R +/a99 262 0 R +/a89 263 0 R +/a14 264 0 R +/a50 265 0 R +/a19 266 0 R +/a30 267 0 R +/a69 268 0 R +/a104 269 0 R +/a65 270 0 R +/a98 271 0 R +/a45 272 0 R +/a73 273 0 R +/a75 274 0 R +/a32 275 0 R +/a13 276 0 R +/a33 277 0 R +/a4 278 0 R +/a23 279 0 R +/a34 280 0 R +/a28 281 0 R +/a93 282 0 R +/a31 283 0 R +/a94 284 0 R +/a8 285 0 R +/a22 286 0 R +/a2 287 0 R +/a21 288 0 R +/a103 289 0 R +/a16 290 0 R +/a10 291 0 R +/a26 292 0 R +/a6 293 0 R +/a17 294 0 R +/a91 295 0 R +/a11 296 0 R +>> +/FontBBox [ 0 -45 127 123] +/FontMatrix [ 1 0 0 1 0 0] +/FirstChar 0 +/LastChar 105 +/Widths [ 0 0 85 0 66 0 117 0 77 0 107 141 0 63 41 0 98 118 0 43 0 86 80 67 0 0 115 0 69 0 46 75 62 64 68 0 0 0 34 0 26 0 0 27 0 56 0 0 0 0 42 0 0 31 0 0 36 30 25 35 37 0 0 0 0 50 0 33 0 48 0 0 0 57 0 60 0 0 0 0 32 38 0 0 28 0 0 0 0 40 0 135 0 74 76 0 0 0 51 39 0 0 0 90 49 0] >> endobj -203 0 obj +189 0 obj +2650 +endobj +190 0 obj << -/Subtype /Type1 -/BaseFont /BGQHMX#2BTimes-Roman -/Type /Font -/Name /R10 -/FontDescriptor 207 0 R -/FirstChar 1 -/LastChar 255 -/Widths [ 333 556 556 167 333 611 278 333 333 250 333 564 250 611 444 333 278 250 250 250 250 250 250 250 250 250 250 250 250 333 180 250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444 921 722 667 667 722 611 556 722 722 333 389 722 611 892 722 722 556 722 667 557 611 722 722 944 722 722 611 333 278 333 469 500 333 446 500 446 501 446 334 501 500 278 278 500 278 778 500 501 500 500 333 390 278 500 500 724 500 500 444 480 200 480 541 250 250 250 333 500 444 1000 500 500 333 1000 556 333 889 250 250 250 250 250 250 444 444 350 500 1000 333 980 389 333 722 250 250 722 250 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333 400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444 722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333 722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500 444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500] +/Type /Encoding +/Differences [ 0/a0/a1/a2/a3/a4/a5/a6/a7/a8/a9/a10/a11/a12/a13/a14/a15/a16/a17/a18/a19/a20/a21/a22/a23/a24/a25/a26/a27/a28/a29/a30/a31/a32/a33/a34/a35/a36/a37/a38/a39/a40/a41/a42/a43/a44/a45/a46/a47/a48/a49/a50/a51/a52/a53/a54/a55/a56/a57/a58/a59/a60/a61/a62/a63/a64/a65/a66/a67/a68/a69/a70/a71/a72/a73/a74/a75/a76/a77/a78/a79/a80/a81/a82/a83/a84/a85/a86/a87/a88/a89/a90/a91/a92/a93/a94/a95/a96/a97/a98/a99/a100/a101/a102/a103/a104/a105/a106/a107/a108/a109/a110/a111/a112/a113/a114/a115/a116/a117/a118/a119/a120/a121/a122/a123/a124/a125/a126/a127/a128/a129/a130/a131/a132/a133/a134/a135/a136/a137/a138/a139/a140/a141/a142/a143/a144/a145/a146/a147/a148/a149/a150/a151/a152/a153/a154/a155/a156/a157/a158/a159/a160/a161/a162/a163/a164/a165/a166/a167/a168/a169/a170/a171/a172/a173/a174/a175/a176/a177/a178/a179/a180/a181/a182/a183/a184/a185/a186/a187/a188/a189/a190/a191/a192/a193/a194/a195/a196/a197/a198/a199/a200/a201/a202/a203/a204/a205/a206/a207/a208/a209/a210/a211/a212/a213/a214/a215/a216/a217/a218/a219/a220/a221/a222/a223/a224/a225/a226/a227/a228/a229/a230/a231/a232/a233/a234/a235/a236/a237/a238/a239/a240/a241/a242/a243/a244/a245/a246/a247/a248/a249/a250/a251/a252/a253/a254/a255] >> endobj -204 0 obj +191 0 obj << -/Subtype /Type1 -/BaseFont /QCBATP#2BTimes-Roman#7Ef -/Type /Font -/Name /R16 -/FontDescriptor 208 0 R -/FirstChar 1 -/LastChar 255 -/Widths [ 333 556 556 167 333 611 278 333 333 250 333 564 250 611 444 333 278 250 250 250 250 250 250 250 250 250 250 250 250 333 180 250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444 921 722 667 662 722 611 556 722 722 333 389 722 614 891 722 722 556 722 667 556 611 722 722 944 722 722 611 333 278 333 469 500 333 445 500 444 500 445 337 500 500 277 278 500 277 778 500 505 500 500 337 385 277 500 500 722 500 500 444 480 200 480 541 250 250 250 333 500 444 1000 500 500 333 1000 556 333 889 250 250 250 250 250 250 444 444 350 500 1000 333 980 389 333 722 250 250 722 250 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333 400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444 722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333 722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500 444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500] +/Length 183 >> +stream +0 0 0 0 34 71 d1 +34 0 0 71 0 0 cm +BI +/IM true +/W 34 +/H 71 +/BPC 1 +/F /CCF +/DP <> +ID &gfa> +EI +endstream endobj -205 0 obj -2557 -endobj -206 0 obj +192 0 obj << -/Type /FontDescriptor -/FontName /SAHHBA#2BTimes-Roman#7Ec -/FontBBox [ -168 -281 1000 924] -/Flags 4 -/Ascent 924 -/CapHeight 924 -/Descent -281 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 250 -/CharSet (/A/B/C/L/M/O/P/S/T/V/W/a/b/c/d/e/g/h/i/l/m/n/o/p/r/s/t/u/v/w/x) -/FontFile3 209 0 R +/Length 242 +>> +stream +0 0 0 2 84 71 d1 +84 0 0 69 0 2 cm +BI +/IM true +/W 84 +/H 69 +/BPC 1 +/F /CCF +/DP <> +ID !OɩCb0`i?OOoOMM?c!2\7? +EI +endstream endobj -207 0 obj +193 0 obj << -/Type /FontDescriptor -/FontName /BGQHMX#2BTimes-Roman -/FontBBox [ -168 -281 1000 924] -/Flags 4 -/Ascent 924 -/CapHeight 924 -/Descent -281 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 250 -/CharSet (/M/S/a/c/d/e/f/g/i/l/o/s/t/w) -/FontFile3 210 0 R +/Length 165 +>> +stream +0 0 0 4 22 71 d1 +22 0 0 67 0 4 cm +BI +/IM true +/W 22 +/H 67 +/BPC 1 +/F /CCF +/DP <> +ID jDkXQ=?0 +EI +endstream endobj -208 0 obj +194 0 obj << -/Type /FontDescriptor -/FontName /QCBATP#2BTimes-Roman#7Ef -/FontBBox [ -168 -281 1000 924] -/Flags 4 -/Ascent 924 -/CapHeight 924 -/Descent -281 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 250 -/CharSet (/C/L/M/X/a/e/f/i/l/o/r/s/t) -/FontFile3 211 0 R +/Length 176 +>> +stream +0 0 0 2 55 71 d1 +55 0 0 69 0 2 cm +BI +/IM true +/W 55 +/H 69 +/BPC 1 +/F /CCF +/DP <> +ID 5v7Jo  +EI +endstream endobj -209 0 obj +195 0 obj << -/Subtype /Type1C -/Filter /FlateDecode -/Length 212 0 R ->> -stream -xWyTS?1$ԁޒI^T vZQy!@0$1 $$aC HA&q(բjk_vn_u=}{ksooޛE#X,?1vM%EIܔ=t(Of4Wy -ȟߍ͒w)CZ3tRsR |BsY9~ -gn-T'v_zQKKѩ; ]wݐV^+JV );Q}fب';p -}f_'ٗt+M胛zo`2I\#SA7r -vo%lVܨ{&}7ܣgH4w>>N= Drᅩż+zfNIioYv\@w[rEZR2l!g/y$+ JYWȁN=8o;pX(,APk+,*08 -}Ѳ]I[wIQ/[?H~ā&~I:c(A$H:/B;~DƄ[v)wPe/ *z1ji'+"!lQzd'y;7L>֑#=qPzi+U٢I[crY)I/@+;:y Ű3ؼ/at@H>QE3_? p_>;aJ-Ѭét\'/"Ϯ b\F_У@an15ʥ_C\6h>,c3Yk^+mקeH~MzOw}*y$LF^8oVZҫ4ȂER'_R'O8@u -*k1Nh(܆= ^`xBٟ7BA\^j6Ss[IPmy7: >W]t-_ΐƆF0} I/6+Etug%1|ӡ4Jz[vKj* Jqߒ!g}Ji)^+|=D͸^n{t1?YYTz͇ݼ6WQHmbʡTTe1P))cpu0ȔF!84r;ַqw):?dvL{_g8vz/я+}#ǎKڅEmYO%ʋ| ND2HGM]p X[>FʯA8fn]]64)^ҍ if.wA&>Hʼ]Zaّn4UrF / n\HޚΥpОQC|h7^رn޵bwƤ8 ԅ#[EL oZL{mW$s,!&i:BTM h괫h [mU{}bi1p05w0%@S U*Et 5[mVmsQ0\9gjHhj-S- (0/B'I{\l;?DG\9%q Z n<[ -mk;= ɣP_(]>MwwA9% Fщ˸5Y7]oWP:dE2]+(,T\jj{z֦qPxP`8]\^\_ -5+d81V=_>d"o3K'jpCrB~苸6̈́>P}ofqA0IސVft$Aa7RYe PEtYa$ E1si?+<}M.G[ n>9g \- /ѡLi2z1Ю$BGpm5UyA - Q[1Ho C8-;X뷀,u˳L[m-V爃3iD2-d"mER-ѭ[؀zMmVcTF? ^t::lyLvjZ&3Yy#m&|jsYRȶׂv.kWdkcxz-s&9˺3̲-ֆ=F l4qd\S.QOdMc^b٦0N'\#{"_g\;C7V @i J%ao)=jMlF&Xs8T\չ]zʓI&j(b7}uᩫB7a ,b2{UYڨ*H1|ZD•ShD("<3^4*9v$ -}_iu7y׀̀<_3^&#\/im=u Y(ϕAylyE~}Agȁ: PYYm:S1 |^@F0&tlOHĔZŵzO**-N7(7m`ZS\= `yr眸Џˀ --G"%!)V8I]H&0'lNqO&4:ɁC@Mw*EL!^.Z!R%߶uנPBDѯ^wӇXl` -/)A̿`p΅endstream +/Length 196 +>> +stream +0 0 0 25 32 73 d1 +32 0 0 48 0 25 cm +BI +/IM true +/W 32 +/H 48 +/BPC 1 +/F /CCF +/DP <> +ID 0!_ m8 7_ PU/BX%Z8PD3kkapboN<@ +EI +endstream endobj -210 0 obj +196 0 obj << -/Subtype /Type1C -/Filter /FlateDecode -/Length 213 0 R +/Length 209 >> stream -xTkPSg>sE%b3ήڕ"nӮ+(rWp!I8rB !!@rȢ*^8tmgW~ ԝ;~W@8j| Wh|׿aC{~vnU k~+'|MQ',nHOyưhJkԑ\0222AM4:PH)m>a\WjK<߰C!5nd6CfxWR:\Ϧ49$CR:A -٤BEلZBO4IW -'5j}OWR(*:[GjW۹uL$㔒̡j~q(b|:YCZTZ&57aP)t9j^uM}Ujr$Cje~2?KOnH<'TzB? ̎rfZ ;p$مF {D$ IEb(d?3? V +)KQ3dlwXcI.}!o]VeQ鷺@zrS , j؎q<~g';e}Y,J^w ~f^-~ޒ,BҒXqQK;q(r}ӈ4+X:!wHU -ߢזmR7i cz6,c~vs|ۿl{'b#'BX`Џ2Z^BIned)'mktolO&gV֥rmLbY;l˒s(1msBn- Q> -^j :`UPx᛿\,qj!:.`6Ig} dh'#s_ ǏtC HYڝ dw~gwg!2%0ISs`R-X | -:P/x6&KU]uMt4]΂6qy]bG -媚Oȣ"e-ՁF[[] ހ(:Ns~'`i[^_džHNФwh[#ʓjV;m=0{Җ4pNBh+* 8;'z@M=3'R]gBG&xXԕe*+X.5'y -fόÕX&{`G4ۃ΀oЪ)endstream +0 0 0 25 47 73 d1 +47 0 0 48 0 25 cm +BI +/IM true +/W 47 +/H 48 +/BPC 1 +/F /CCF +/DP <> +ID &IϟFm<,zA矠c7\?~ |ʿ!?w__A K A~A +EI +endstream endobj -211 0 obj +197 0 obj << -/Subtype /Type1C -/Filter /FlateDecode -/Length 214 0 R +/Length 164 >> stream -xTkP]!Ԡ(*(8v&qSƱ#N@ ЮBXӼ0c.M(]אI8tƓm3v ĝwY۩)u$=YTV_W -؝asB w>@vbOEv}4 -˂ܗS)HW0+IIIx4Yw3 ITx#puvH*;Y--%xGզbYBO/e=%dHJO'4iQBju8a)! [@GaY agl5k"uN+Jсi kM5*&U[i70E$ @(, B/˸`ު/D"FA_ruM[b'A?8%pppik[ݏn#;eS$ɁI67fG3fWhNh q;w].y pCa5vUDGA_8GS:` cռ]NqljVW`:@ -2 -[|Ïf<Qؾ_,aO;܃-q?)ov(A{{FYG֗8ѻYZ6:gVR |#?bYd͵jlm΂ $242ѯoo/iG*\f5Wtb7)₹dN1yGbV0QvE7A(/Zg]SM+\7NVμ3 +A(6$S|z?_ȇ -6޾ -XUL>I - 54KCNby`#_cxJYUxu,M1Hw6b6Ims ބ1uYY[wKu*6\o:2=V4uv{{ Q9@򿰴ר5T^%9 (p &FKMY#)7552ګbf,8\zo, t“T[s #uX-+>+Uu7O5Uz%\l||D! ld.c=ZTv4wIh6bҍzynijk¤~},Dх)E]X4ymJ*x %`w0aԵ*[˽W#]-}ޖn ݎچTg}ք>Hǩ)!*eYf`f#AfDf|.􇄲NqoK_K&{'U(ȶש<[r 5Sa<|šԛ1h{ M < fm.\R` $6'56vLtEDl FD"ȿ'endstream +0 0 0 1 22 71 d1 +22 0 0 70 0 1 cm +BI +/IM true +/W 22 +/H 70 +/BPC 1 +/F /CCF +/DP <> +ID jDkɨ +EI +endstream endobj -212 0 obj -4005 +198 0 obj +<< +/Length 181 +>> +stream +0 0 0 10 32 73 d1 +32 0 0 63 0 10 cm +BI +/IM true +/W 32 +/H 63 +/BPC 1 +/F /CCF +/DP <> +ID &A|fo_?$$}  +EI +endstream +endobj +199 0 obj +<< +/Length 225 +>> +stream +0 0 0 2 69 71 d1 +69 0 0 69 0 2 cm +BI +/IM true +/W 69 +/H 69 +/BPC 1 +/F /CCF +/DP <> +ID *"Jz vk_Xm. mߺ nwxZ_=}&zPOWMCI@D* +EI +endstream +endobj +200 0 obj +<< +/Length 192 +>> +stream +0 0 0 25 39 73 d1 +39 0 0 48 0 25 cm +BI +/IM true +/W 39 +/H 48 +/BPC 1 +/F /CCF +/DP <> +ID &8DFb0Iޯp%h j_ׇ_h,=a a_' +EI +endstream +endobj +201 0 obj +<< +/Length 172 +>> +stream +0 0 0 26 34 71 d1 +34 0 0 45 0 26 cm +BI +/IM true +/W 34 +/H 45 +/BPC 1 +/F /CCF +/DP <> +ID *8k +|a>- `IC  +EI +endstream +endobj +202 0 obj +<< +/Length 194 +>> +stream +0 0 0 25 45 73 d1 +45 0 0 48 0 25 cm +BI +/IM true +/W 45 +/H 48 +/BPC 1 +/F /CCF +/DP <> +ID &@13PzMAXz Ow&_K_ m.ް !~( +EI +endstream +endobj +203 0 obj +<< +/Length 227 +>> +stream +0 0 0 0 60 74 d1 +60 0 0 74 0 0 cm +BI +/IM true +/W 60 +/H 74 +/BPC 1 +/F /CCF +/DP <> +ID &C D@c6$Xx A o &}'¿__@am[k0{Da8 +EI +endstream +endobj +204 0 obj +<< +/Length 172 +>> +stream +0 0 0 0 44 36 d1 +44 0 0 36 0 0 cm +BI +/IM true +/W 44 +/H 36 +/BPC 1 +/F /CCF +/DP <> +ID &hOOO~o[ooACx[I}Pq  +EI +endstream +endobj +205 0 obj +<< +/Length 196 +>> +stream +0 0 0 0 61 36 d1 +61 0 0 36 0 0 cm +BI +/IM true +/W 61 +/H 36 +/BPC 1 +/F /CCF +/DP <> +ID &li A[[ ?h?_}4/8 ! 7@ +EI +endstream +endobj +206 0 obj +<< +/Length 167 +>> +stream +0 0 0 0 30 35 d1 +30 0 0 35 0 0 cm +BI +/IM true +/W 30 +/H 35 +/BPC 1 +/F /CCF +/DP <> +ID &<>Fdh?OW|0\10 ? +EI +endstream +endobj +207 0 obj +<< +/Length 185 +>> +stream +0 0 0 0 42 37 d1 +42 0 0 37 0 0 cm +BI +/IM true +/W 42 +/H 37 +/BPC 1 +/F /CCF +/DP <> +ID &8/FFc  7}&&IK놿   +EI +endstream +endobj +208 0 obj +<< +/Length 158 +>> +stream +0 0 0 0 30 35 d1 +30 0 0 35 0 0 cm +BI +/IM true +/W 30 +/H 35 +/BPC 1 +/F /CCF +/DP <> +ID !՜q +EI +endstream +endobj +209 0 obj +<< +/Length 182 +>> +stream +0 0 0 11 28 45 d1 +28 0 0 34 0 11 cm +BI +/IM true +/W 28 +/H 34 +/BPC 1 +/F /CCF +/DP <> +ID & &3<#0AMP0c.kl4kAO7m+~83 @ +EI +endstream +endobj +210 0 obj +<< +/Length 189 +>> +stream +0 0 0 0 54 34 d1 +54 0 0 34 0 0 cm +BI +/IM true +/W 54 +/H 34 +/BPC 1 +/F /CCF +/DP <> +ID :l_OA8&A7?a[8Pߧ +EI +endstream +endobj +211 0 obj +<< +/Length 167 +>> +stream +0 0 0 13 30 45 d1 +30 0 0 32 0 13 cm +BI +/IM true +/W 30 +/H 32 +/BPC 1 +/F /CCF +/DP <> +ID !MY oka(B'H +EI +endstream +endobj +212 0 obj +<< +/Length 153 +>> +stream +0 0 0 13 30 35 d1 +30 0 0 22 0 13 cm +BI +/IM true +/W 30 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID !՜qb +EI +endstream +endobj +213 0 obj +<< +/Length 154 +>> +stream +0 0 0 13 30 35 d1 +30 0 0 22 0 13 cm +BI +/IM true +/W 30 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID &< }!8O +EI +endstream +endobj +214 0 obj +<< +/Length 169 +>> +stream +0 0 0 1 39 35 d1 +39 0 0 34 0 1 cm +BI +/IM true +/W 39 +/H 34 +/BPC 1 +/F /CCF +/DP <> +ID #B&|7 z^C\.?o !p +EI +endstream +endobj +215 0 obj +<< +/Length 172 +>> +stream +0 0 0 13 43 35 d1 +43 0 0 22 0 13 cm +BI +/IM true +/W 43 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID &M [[qpA/o/_E?É  +EI +endstream +endobj +216 0 obj +<< +/Length 169 +>> +stream +0 0 0 0 42 35 d1 +42 0 0 35 0 0 cm +BI +/IM true +/W 42 +/H 35 +/BPC 1 +/F /CCF +/DP <> +ID !& fg * 4؅\_~_:]m/k@ +EI +endstream +endobj +217 0 obj +<< +/Length 161 +>> +stream +0 0 0 13 31 35 d1 +31 0 0 22 0 13 cm +BI +/IM true +/W 31 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID $jgioXmZzzxF{aP! +EI +endstream +endobj +218 0 obj +<< +/Length 157 +>> +stream +0 0 0 1 41 35 d1 +41 0 0 34 0 1 cm +BI +/IM true +/W 41 +/H 34 +/BPC 1 +/F /CCF +/DP <> +ID & p z x  +EI +endstream +endobj +219 0 obj +<< +/Length 161 +>> +stream +0 0 0 13 20 35 d1 +20 0 0 22 0 13 cm +BI +/IM true +/W 20 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID . .|V.]hNH0 k +EI +endstream +endobj +220 0 obj +<< +/Length 158 +>> +stream +0 0 0 13 24 35 d1 +24 0 0 22 0 13 cm +BI +/IM true +/W 24 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID &x@h^7+섹5=/ +EI +endstream +endobj +221 0 obj +<< +/Length 185 +>> +stream +0 0 0 0 28 37 d1 +28 0 0 37 0 0 cm +BI +/IM true +/W 28 +/H 37 +/BPC 1 +/F /CCF +/DP <> +ID &2)??7~ \*ɌGQ(hDw`xu0@ +EI +endstream +endobj +222 0 obj +<< +/Length 144 +>> +stream +0 0 0 0 13 35 d1 +13 0 0 35 0 0 cm +BI +/IM true +/W 13 +/H 35 +/BPC 1 +/F /CCF +/DP <> +ID ՜ +EI +endstream +endobj +223 0 obj +<< +/Length 168 +>> +stream +0 0 0 -1 30 34 d1 +30 0 0 35 0 -1 cm +BI +/IM true +/W 30 +/H 35 +/BPC 1 +/F /CCF +/DP <> +ID &ω>&Aᄹ+'O +EI +endstream +endobj +224 0 obj +<< +/Length 164 +>> +stream +0 0 0 12 29 34 d1 +29 0 0 22 0 12 cm +BI +/IM true +/W 29 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID &fg!Ago\?d&;5+@ +EI +endstream +endobj +225 0 obj +<< +/Length 151 +>> +stream +0 0 0 0 34 34 d1 +34 0 0 34 0 0 cm +BI +/IM true +/W 34 +/H 34 +/BPC 1 +/F /CCF +/DP <> +ID _&|?t +EI +endstream +endobj +226 0 obj +<< +/Length 158 +>> +stream +0 0 0 13 31 35 d1 +31 0 0 22 0 13 cm +BI +/IM true +/W 31 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID &>}?H0}oAp +EI +endstream +endobj +227 0 obj +<< +/Length 154 +>> +stream +0 0 0 4 19 35 d1 +19 0 0 31 0 4 cm +BI +/IM true +/W 19 +/H 31 +/BPC 1 +/F /CCF +/DP <> +ID &p?k  +EI +endstream +endobj +228 0 obj +<< +/Length 168 +>> +stream +0 0 0 13 49 35 d1 +49 0 0 22 0 13 cm +BI +/IM true +/W 49 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID ! 5gpl%P +EI +endstream +endobj +229 0 obj +<< +/Length 147 +>> +stream +0 0 0 0 13 35 d1 +13 0 0 35 0 0 cm +BI +/IM true +/W 13 +/H 35 +/BPC 1 +/F /CCF +/DP <> +ID ՜?PO]@@ +EI +endstream +endobj +230 0 obj +<< +/Length 163 +>> +stream +0 0 0 0 37 34 d1 +37 0 0 34 0 0 cm +BI +/IM true +/W 37 +/H 34 +/BPC 1 +/F /CCF +/DP <> +ID #&| L,>|?a^ (\  +EI +endstream +endobj +231 0 obj +<< +/Length 161 +>> +stream +0 0 0 13 25 35 d1 +25 0 0 22 0 13 cm +BI +/IM true +/W 25 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID & +K]јxPbXoTx>AaP +EI +endstream +endobj +232 0 obj +<< +/Length 149 +>> +stream +0 0 0 13 20 35 d1 +20 0 0 22 0 13 cm +BI +/IM true +/W 20 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID :Vp/~@ +EI +endstream +endobj +233 0 obj +<< +/Length 161 +>> +stream +0 0 0 13 28 35 d1 +28 0 0 22 0 13 cm +BI +/IM true +/W 28 +/H 22 +/BPC 1 +/F /CCF +/DP <> +ID & A>?Ok `؅ H +EI +endstream +endobj +234 0 obj +<< +/Length 180 +>> +stream +0 0 0 0 38 37 d1 +38 0 0 37 0 0 cm +BI +/IM true +/W 38 +/H 37 +/BPC 1 +/F /CCF +/DP <> +ID & 'z3Mt_\?kmmF> <8X +EI +endstream +endobj +235 0 obj +<< +/Length 270 +>> +stream +0 0 0 43 71 122 d1 +71 0 0 79 0 43 cm +BI +/IM true +/W 71 +/H 79 +/BPC 1 +/F /CCF +/DP <> +ID &A@3xA <#t t m&?z~7y߆0u \k Я ٯA^x^[ %44" A +EI +endstream +endobj +236 0 obj +<< +/Length 195 +>> +stream +0 0 0 0 35 120 d1 +35 0 0 120 0 0 cm +BI +/IM true +/W 35 +/H 120 +/BPC 1 +/F /CCF +/DP <> +ID 5u kk, @@ +EI +endstream +endobj +237 0 obj +<< +/Length 238 +>> +stream +0 0 0 43 61 122 d1 +61 0 0 79 0 43 cm +BI +/IM true +/W 61 +/H 79 +/BPC 1 +/F /CCF +/DP <> +ID &C K t" OAޓA7OZCW`K ]K KzB BX2h +EI +endstream +endobj +238 0 obj +<< +/Length 250 +>> +stream +0 0 0 43 55 122 d1 +55 0 0 79 0 43 cm +BI +/IM true +/W 55 +/H 79 +/BPC 1 +/F /CCF +/DP <> +ID 0΁ , h=qAtm}֫MAkd2uc  p )`њR༃Uu 5kap` C@o +EI +endstream +endobj +239 0 obj +<< +/Length 316 +>> +stream +0 0 0 43 74 156 d1 +74 0 0 113 0 43 cm +BI +/IM true +/W 74 +/H 113 +/BPC 1 +/F /CCF +/DP <> +ID &j2 +a|4a | ޓz? ~Mzl?h-2zC0GAa@ 0_AQ{`N ooM[ikvAᆩA"Fz~ A3C1_2 b @ +EI +endstream +endobj +240 0 obj +<< +/Length 280 +>> +stream +0 0 0 0 79 122 d1 +79 0 0 122 0 0 cm +BI +/IM true +/W 79 +/H 122 +/BPC 1 +/F /CCF +/DP <> +ID &H + D a0E@~΂L8- ߅A(_A?v8m}_ 0 G/C4_r + VA  +EI +endstream +endobj +241 0 obj +<< +/Length 273 +>> +stream +0 0 0 45 112 122 d1 +112 0 0 77 0 45 cm +BI +/IM true +/W 112 +/H 77 +/BPC 1 +/F /CCF +/DP <> +ID &l5_XB{p߿'~O? +Wﮟ}~ᯫ ߇^?}WzT(O q* &@ +EI +endstream +endobj +242 0 obj +<< +/Length 195 +>> +stream +0 0 0 6 33 120 d1 +33 0 0 114 0 6 cm +BI +/IM true +/W 33 +/H 114 +/BPC 1 +/F /CCF +/DP <> +ID 5u\UA= k ( +EI +endstream +endobj +243 0 obj +<< +/Length 332 +>> +stream +0 0 0 2 127 120 d1 +127 0 0 118 0 2 cm +BI +/IM true +/W 127 +/H 118 +/BPC 1 +/F /CCF +/DP <> +ID #Al2ɩ! ,0[^ 'IaO&? Oa?[?MH7Oo[X?𷄘qɀ߄ +EI +endstream +endobj +244 0 obj +<< +/Length 222 +>> +stream +0 0 0 -1 52 120 d1 +52 0 0 121 0 -1 cm +BI +/IM true +/W 52 +/H 121 +/BPC 1 +/F /CCF +/DP <> +ID &l,5 B0N1݄ ]0Y #@ +EI +endstream +endobj +245 0 obj +<< +/Length 243 +>> +stream +0 0 0 43 70 122 d1 +70 0 0 79 0 43 cm +BI +/IM true +/W 70 +/H 79 +/BPC 1 +/F /CCF +/DP <> +ID &t ς%x"@xAzAޓ}?M[A7O_x]m- 4 @ %` BY  +EI +endstream +endobj +246 0 obj +<< +/Length 220 +>> +stream +0 0 0 14 52 122 d1 +52 0 0 108 0 14 cm +BI +/IM true +/W 52 +/H 108 +/BPC 1 +/F /CCF +/DP <> +ID &N2ODxAOJ7ޟF$Jʃ +EI +endstream +endobj +247 0 obj +<< +/Length 235 +>> +stream +0 0 0 43 61 122 d1 +61 0 0 79 0 43 cm +BI +/IM true +/W 61 +/H 79 +/BPC 1 +/F /CCF +/DP <> +ID &C < = '@ޓx[a'Cz>ԂR_޿w o޻] [/e  +EI +endstream +endobj +248 0 obj +<< +/Length 313 +>> +stream +0 0 0 0 73 123 d1 +73 0 0 123 0 0 cm +BI +/IM true +/W 73 +/H 123 +/BPC 1 +/F /CCF +/DP <> +ID 0Pdvp5<"77h&n :~tׇ/דP, ]/K,i>CPAo((g+a \ Z @̄F֯ .Z]SA_UÅᯮ˶ ? |0^x^ (O!n+ +EI +endstream +endobj +249 0 obj +<< +/Length 16 +>> +stream +25 0 0 0 0 0 d1 +endstream +endobj +250 0 obj +<< +/Length 16 +>> +stream +26 0 0 0 0 0 d1 +endstream +endobj +251 0 obj +<< +/Length 16 +>> +stream +27 0 0 0 0 0 d1 +endstream +endobj +252 0 obj +<< +/Length 16 +>> +stream +28 0 0 0 0 0 d1 +endstream +endobj +253 0 obj +<< +/Length 16 +>> +stream +30 0 0 0 0 0 d1 +endstream +endobj +254 0 obj +<< +/Length 16 +>> +stream +31 0 0 0 0 0 d1 +endstream +endobj +255 0 obj +<< +/Length 16 +>> +stream +32 0 0 0 0 0 d1 +endstream +endobj +256 0 obj +<< +/Length 16 +>> +stream +33 0 0 0 0 0 d1 +endstream +endobj +257 0 obj +<< +/Length 16 +>> +stream +34 0 0 0 0 0 d1 +endstream +endobj +258 0 obj +<< +/Length 16 +>> +stream +35 0 0 0 0 0 d1 +endstream +endobj +259 0 obj +<< +/Length 16 +>> +stream +36 0 0 0 0 0 d1 +endstream +endobj +260 0 obj +<< +/Length 16 +>> +stream +37 0 0 0 0 0 d1 +endstream +endobj +261 0 obj +<< +/Length 16 +>> +stream +38 0 0 0 0 0 d1 +endstream +endobj +262 0 obj +<< +/Length 16 +>> +stream +39 0 0 0 0 0 d1 +endstream +endobj +263 0 obj +<< +/Length 16 +>> +stream +40 0 0 0 0 0 d1 +endstream endobj -213 0 obj -2130 +264 0 obj +<< +/Length 16 +>> +stream +41 0 0 0 0 0 d1 +endstream endobj -214 0 obj -1850 +265 0 obj +<< +/Length 16 +>> +stream +42 0 0 0 0 0 d1 +endstream endobj -197 0 obj << -/Font << /F75 9 0 R /F49 12 0 R /F73 6 0 R >> -/XObject << /Im3 193 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -219 0 obj << -/Length 2294 +266 0 obj +<< +/Length 16 >> stream -1 0 0 1 133.77 692.1 cm -0 g 0 G -1 0 0 1 343.71 0 cm -0 g 0 G -1 0 0 1 -477.48 -692.1 cm -BT -/F49 9.96 Tf 144.23 657.24 Td[(\134rput)-1({-10}\050.)-1(8,1.5\051{\134)-1(psdiamo)-1(nd[fill)-1(color=ye)-1(llow]\050.)-1(6,.1\051\050.)-1(6,.3\051})]TJ 0 -11.96 Td[(\134rput)-1({-80}\050.)-1(8,1.5\051{\134)-1(psdiamo)-1(nd[fill)-1(color=ye)-1(llow]\050.)-1(6,.1\051\050.)-1(6,.3\051})]TJ 0 -11.95 Td[(\134pnod)-1(e\050.8,1.)-1(5\051{Taile)-1(nd})]TJ 0 -11.96 Td[(\134nccu)-1(rve[fil)-1(lstyle=n)-1(one,ang)-1(leA=270)-1(,angleB=)-1(125,ncu)-1(rvB=.9,)-1(ncurvA=1)-1(.4,)]TJ 47.07 -11.96 Td[(li)-1(nestyle=)-1(dotted,)-1(dotstyl)-1(e=square)-1(,linewi)-1(dth=.25])-1({Kiteta)-1(il}{Tai)-1(lend})]TJ -47.07 -11.95 Td[(\134newc)-1(ommand{)-1(\134bunting)-1(}{\134pstr)-1(iangle\050)-1(.35,.35\051)-1(})]TJ 0 -11.96 Td[(\134psse)-1(t{fillc)-1(olor=red)-1(,labels)-1(ep=.01})]TJ 0 -11.95 Td[(\134napu)-1(t[nrot=)-1(115,npos)-1(=.15]{\134)-1(bunting)-1(})]TJ 0 -11.96 Td[(\134nbpu)-1(t[nrot=)-1(25,npos=)-1(.15]{\134b)-1(unting})]TJ 0 -11.95 Td[(\134napu)-1(t[nrot=)-1(75,npos=)-1(.4]{\134bu)-1(nting})]TJ 0 -11.96 Td[(\134nbpu)-1(t[nrot=)-1(115,npos)-1(=.4]{\134b)-1(unting})]TJ 0 -11.95 Td[(\134napu)-1(t[nrot=)-1(115,npos)-1(=.7]{\134b)-1(unting})]TJ 0 -11.96 Td[(\134nbpu)-1(t[nrot=)-1(25,npos=)-1(.7]{\134bu)-1(nting})]TJ -10.46 -11.95 Td[(\134end{)-1(pspictur)-1(e})]TJ 0 -11.96 Td[(\134endT)-1(eXtoEPS)]TJ 0 -11.95 Td[(\134end{)-1(pdfdispl)-1(ay})]TJ -ET -1 0 0 1 300.64 450.01 cm -0 g 0 G -0 g 0 G -1 0 0 1 -166.87 -285.11 cm -1 0 0 rg 1 0 0 RG -.70 g .70 G -1 0 0 1 0 282.12 cm -q -[]0 d -0 J -0 j -0 w -0 0 359.65 1.99 re f -S -Q -1 0 0 1 0 -288.1 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 288.1 re f -S -Q -1 0 0 1 1.99 5.98 cm -.90 g .90 G -.90 g .90 G -1 0 0 1 0 -5.98 cm -q -[]0 d -0 J -0 j -0 w -0 0 355.67 288.1 re f -S -Q -1 0 0 1 0 5.98 cm -.90 g .90 G -1 0 0 1 5.98 0 cm -1 0 0 rg 1 0 0 RG - q 1.46886 0 0 1.46886 0 0 cm -q -1 0 0 1 0 0 cm -/Im4 Do -Q - Q -1 0 0 1 343.71 0 cm -1 0 0 rg 1 0 0 RG -1 0 0 1 5.98 0 cm -.70 g .70 G -1 0 0 1 0 -5.98 cm -q -[]0 d -0 J -0 j -0 w -0 0 1.99 288.1 re f -S -Q -1 0 0 1 -357.66 -1.99 cm -q -[]0 d -0 J -0 j -0 w -0 0 359.65 1.99 re f -S -Q -1 0 0 1 359.65 7.97 cm -1 0 0 rg 1 0 0 RG -0 g 0 G -1 0 0 1 -359.65 -75.54 cm -0 g 0 G -1 0 0 1 -133.77 -89.36 cm -BT -/F73 9.96 Tf 300.64 89.36 Td[(10)]TJ -ET -1 0 0 1 477.48 89.36 cm -0 g 0 G +43 0 0 0 0 0 d1 endstream endobj -218 0 obj << -/Type /Page -/Contents 219 0 R -/Resources 217 0 R -/MediaBox [0 0 612 792] -/Parent 182 0 R ->> endobj -215 0 obj << -/Type /XObject -/Subtype /Form -/FormType 1 -/PTEX.FileName (./test-fig4.pdf) -/PTEX.PageNumber 1 -/PTEX.InfoDict 220 0 R -/Matrix [1 0 0 1 0 0] -/BBox [0 0 234 188] -/Resources << -/ProcSet [ /PDF /ImageB ] -/ExtGState << -/R7 221 0 R ->>>> -/Length 222 0 R -/Filter /FlateDecode +267 0 obj +<< +/Length 16 >> stream -xWˎ5e_]/ -D2," 9==(ʽuz:+mo/w(Xh\v|6쓂VWWO埏]+}~_Wߕoʛ3Bf~U]k5)KHx( ^ǂGl -Dp@śQR^符bT~l -0: 2[pY"{ҭJN_CnRadv/F ~Idj] xPզDV9}zTJu[5G]iekU?DR  ?ԙc_Y58(e}K7H9ߌwZEUԤmaZc\So_~8:>fr/-<ǚ39k.O>J|muz}\a5ӧwGMU%[5(hJ1`Y ^!8RkˢXRHjnrz-yUo+#ۺIm^_gbriAk[poN%n@jm;KŠ6Vͫ:xs'k<}GFoW7z?e< eQj_s(-VnUҽFzwORflmy4-TH90<{_(qB5^4.pbhgD6wmiXMt8_MmaLҷ$Mp}a`V?,'[V s8 =ɫIq`Ap +.{lOA/f_5ژ³6d6kSX{2*Z$268mI.@CN˅2iQ mP.Ġ!翱 {X +%]Nը"l59:%#<{niBa:2]=BǞ$G ¤R}#bOs K4n¤Dzs) .ZN~:@ʦ<;4zԑ \D6zdrZER/ -:'܈?l<nDŽP2m-![ypq6h9t - *f|C>R 6Ӏh-W{M'8ȰĜy]D טNn怫nESeyu\IkD)[v x{n?7;)oe3 +/P6'n7Yyendstream endobj -226 0 obj -<< -/Producer (GNU Ghostscript 7.05) ->> -endobj -227 0 obj +301 0 obj << /Type /ExtGState -/Name /R4 +/Name /R7 /TR /Identity /OPM 1 /SM 0.02 >> endobj -228 0 obj -<< -/Subtype /Type1 -/BaseFont /LBDEZS#2BTimes-Roman -/Type /Font -/Name /R10 -/FontDescriptor 230 0 R -/FirstChar 1 -/LastChar 255 -/Widths [ 333 556 556 167 333 611 278 333 333 250 333 564 250 611 444 333 278 250 250 250 250 250 250 250 250 250 250 250 250 333 180 250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278 500 505 505 500 500 500 500 500 500 500 278 278 564 564 564 444 921 722 662 662 722 614 556 722 722 337 389 722 611 889 722 722 554 722 667 554 611 722 722 944 722 722 611 333 278 333 469 500 333 445 500 445 505 445 333 505 500 277 278 500 277 778 505 505 505 500 333 385 277 500 500 722 500 500 444 480 200 480 541 250 250 250 333 500 444 1000 500 500 333 1000 556 333 889 250 250 250 250 250 250 444 444 350 500 1000 333 980 389 333 722 250 250 722 250 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333 400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444 722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333 722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500 444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500] ->> -endobj -229 0 obj -1012 -endobj -230 0 obj -<< -/Type /FontDescriptor -/FontName /LBDEZS#2BTimes-Roman -/FontBBox [ -168 -281 1000 924] -/Flags 4 -/Ascent 924 -/CapHeight 924 -/Descent -281 -/ItalicAngle 0 -/StemV 149 -/MissingWidth 250 -/CharSet (/one/two/A/B/C/E/I/N/P/S/Y/a/c/d/e/g/i/l/n/o/p/s/t) -/FontFile3 231 0 R ->> -endobj -231 0 obj -<< -/Subtype /Type1C -/Filter /FlateDecode -/Length 232 0 R ->> -stream -xV{XS?1$竳l# b3mUhݔND!@`Hbr# IH(AEZ֪ŵݪUnnٞ;=gA+#)Y^,>**9\fs_Eh*wO,4}zLs҆ÉOoڴ9F6i:jkTTcP2@IgzB.)uTLF -eT\!CmVHJjEJr\*^+SjeOS* xA媔yr\FPZJJiղ\TAɌ2uLebVˮ)*H:YSQre$/@W)uZbbaM%:mFQ,cBGwJu^)U>3O[[L'+NfxrdT\VHM,/kJ?BV,}3H5y -@T/jo:LqH^Sf:DYAB_|$"4ZW~(F-K+Iҭb-2K#89b $ -J'^$Kvb#qK"-'"9[87WWp-3!.|<FzzU+spCR>pg)+ -hv@_HPBH.8HvD"##yn]7`4*T5Eũ>j*-b>>瘅=~E;ruM9eX]#<:&l{>% lg3.n̏#71b&8|O,ơ[d~$ 61O0c/KTs7&7[sEddž.~HSm TP6#!G̅fQ)Z ] IFm21k}xkYsa74%cۗf3S$.q}<]Jbc̨ -ЂYVna10fػM=FpC[2FNߙP&9Kv#k^r[n#B X?}jv_w)`~v:TpBގNwgD#kHN8e!m1נb2-$iոe,l4׈^C -:C˯zNLr#A˱WK PKsFWzk&DN七`V@~K 063 2D/ xHeO$*>Ex1ԕ9}xG} ie=&\K -. \ζ82%˅$ UHތXFx+yhq^?tcRpYUX_hK6=fnf86,}ތw -VDR^1MT#<ϯx1);ڛ -i3sԱ?^y1so=;>0:x o_ tabN(+cxZx4܅7ݯ =26yz(wzNn#yGŽ -J6^rW~ OnLHgH^Ǻ6],C: POgl-ҦgCMt# 8=xl;Q?9fVUd׉yPl,[)I ؛VuX!aˉZ: H+g}8.zU \zgϥ0᫿$ luZJZnu @1$F\,R `}{ٔ!6U](n֗=}~N [ g[ZLLVLcӏ}LMګix]>?qyc9'؊!Е9Â#='Y]^Q ]Ҭ~ٱhGa8-pQ"lյױime [mN6JvXˈO5Wa!? fkHW9-$9,%c@Dg|^__cmSmU --hporvPyX|d"+e% -~:k~zwn^,HmOs,lr}֪**T}MHµ14zyYlʘ#yV e9.YN'BWZn)ֲNy]unx-n8x>V'D[11| ~YZ/>.7:&:6>+;?cǼ+W>{n]^Ϫ ߑ > -/XObject << /Im5 216 0 R >> +298 0 obj << +/Font << /F40 9 0 R /F37 5 0 R >> +/XObject << /Im4 297 0 R >> /ProcSet [ /PDF /Text ] >> endobj -235 0 obj << -/Length 766 +160 0 obj << +/Length1 772 +/Length2 576 +/Length3 532 +/Length 1880 >> stream -1 0 0 1 133.77 692.1 cm -0 g 0 G -1 0 0 1 343.71 0 cm -0 g 0 G -1 0 0 1 -477.48 -692.1 cm -BT -/F49 9.96 Tf 165.15 657.24 Td[(\134ncl)-1(ine{3,1)-1(}{4,1}<)-1({\134textco)-1(lor{red)-1(}{No}})]TJ 0 -11.96 Td[(\134ncl)-1(ine{4,1)-1(}{5,1})]TJ 0 -11.95 Td[(\134ncl)-1(ine{5,1)-1(}{6,1})]TJ 0 -11.96 Td[(\134ncl)-1(ine{->})-1({3,1}{3)-1(,2}^{\134te)-1(xtcolor)-1({red}{Ye)-1(s}})]TJ 0 -11.96 Td[(\134ncl)-1(ine{->})-1({3,2}{3)-1(,3})]TJ 0 -11.95 Td[(\134ncb)-1(ar[angl)-1(eA=-90,)-1(armB=0,n)-1(odesepB)-1(=2.5mm]{)-1(->}{3,3)-1(}{4,1})]TJ -10.46 -11.96 Td[(\134end)-1({psmatri)-1(x}})]TJ -20.92 -11.95 Td[(\134end{)-1(pdfdispl)-1(ay})]TJ -ET -1 0 0 1 133.77 89.36 cm -0 g 0 G -1 0 0 1 -133.77 -89.36 cm -BT -/F73 9.96 Tf 300.64 89.36 Td[(12)]TJ -ET -1 0 0 1 477.48 89.36 cm -0 g 0 G -endstream -endobj -234 0 obj << -/Type /Page -/Contents 235 0 R -/Resources 233 0 R -/MediaBox [0 0 612 792] -/Parent 182 0 R ->> endobj -233 0 obj << -/Font << /F49 12 0 R /F73 6 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -173 0 obj << -/Length1 953 -/Length2 1430 -/Length3 544 -/Length 2927 ->> -stream -%!PS-AdobeFont-1.0: rtxsc 2.2 -FontDirectory/rtxsc known{/rtxsc findfont dup/UniqueID known{dup -/UniqueID get 4360157 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -20 dict begin -/FontInfo 16 dict dup begin -/FullName (rtxsc) readonly def -/FamilyName (rtxsc) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/Notice (Version 2.2, GPL) readonly def -/em 1000 def -/ascent 800 def -/descent 200 def -end readonly def -/FontName /KQXZAP+rtxsc def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 47 /slash put -dup 103 /Gsmall put -dup 105 /Ismall put -dup 110 /Nsmall put -dup 117 /Usmall put -dup 120 /Xsmall put -readonly def -/PaintType 0 def -/FontType 1 def -/StrokeWidth 0 def -/FontMatrix[0.001 0 0 0.001 0 0]readonly def -/UniqueID 4360157 def -/FontBBox{-35 -163 750 681}readonly def -currentdict end -currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIU7#I\6:4hf)NvV{*GcUqLu.'}va)EB78XpTDl7 -Q/0Y8N⼉!#QrA,P;+߾r7f^h@~IXKA?f]ȕ,^"4'<ޟdr Ծ/w?rYf-OqY-^y%`,?"۬JD 9x)cRaFLf3a>ez?T~эQ;YAZg:_cyég+SVtfBjjw; X&&>*2)tUY\3`:@(˲q|ZOkgaƩX6Ƅ#E`@kBkJ/=K3>A+lz|y&V}(bHjNĢzU:]a(%|窣[E`bSݴx -5#5 O!}i7]望 n6vO?oڎUZpQ=? Ë-(\;xYczb+QIfĺ<˖M ~(ƒ2RZ>u`"%wO#H{KM$X9_Z]RWvf&4~Eڳ &A|X6=B,()(ȯ[lbR7(៎*!rH{ y=Lik1jˎM{9iތ3^7M"M \x'ՑV9y kʨ`aB*5;.+i}0'A>N84̿wݝ:>DœOww{*zN7VW1{tO;> ̛"6N aT;nl(u=xZVe6Yez4&(<=i -SBeV5ЊSn؆3vɵxy-v~N!<-ӛh;ԻP)2FL{pD> n;M耍nxq^/3|w&Q'iSkNg{Ld4gZyG'x9 cH1MNT&lU nA+v~#6|W–K)f`x2tscֵ%7xyfd*L92.希t$,^'m80JZ^/0\LU abpPMq mb(P0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -{restore}if -endstream -endobj -174 0 obj << -/Type /Font -/Subtype /Type1 -/Encoding 236 0 R -/FirstChar 47 -/LastChar 120 -/Widths 237 0 R -/BaseFont /KQXZAP+rtxsc -/FontDescriptor 172 0 R ->> endobj -172 0 obj << -/Ascent 450 -/CapHeight 0 -/Descent 0 -/FontName /KQXZAP+rtxsc -/ItalicAngle 0 -/StemV 87 -/XHeight 450 -/FontBBox [-35 -163 750 681] -/Flags 4 -/CharSet (/slash/Gsmall/Ismall/Nsmall/Usmall/Xsmall) -/FontFile 173 0 R ->> endobj -237 0 obj -[273 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 484 0 245 0 0 0 0 493 0 0 0 0 0 0 509 0 0 500 ] -endobj -236 0 obj << -/Type /Encoding -/Differences [ 0 /.notdef 47/slash 48/.notdef 103/Gsmall 104/.notdef 105/Ismall 106/.notdef 110/Nsmall 111/.notdef 117/Usmall 118/.notdef 120/Xsmall 121/.notdef] ->> endobj -169 0 obj << -/Length1 847 -/Length2 803 -/Length3 544 -/Length 2194 ->> -stream -%!PS-AdobeFont-1.0: rtxb 2.2 -FontDirectory/rtxb known{/rtxb findfont dup/UniqueID known{dup -/UniqueID get 4975543 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -20 dict begin -/FontInfo 16 dict dup begin -/FullName (rtxb) readonly def -/FamilyName (rtxb) readonly def +%!PS-AdobeFont-1.1: CMSY10 1.0 +%%CreationDate: 1991 Aug 15 07:20:57 +% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. +11 dict begin +/FontInfo 7 dict dup begin +/version (1.0) readonly def +/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def +/FullName (CMSY10) readonly def +/FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def -/ItalicAngle 0 def +/ItalicAngle -14.035 def /isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/Notice (Version 2.2, GPL) readonly def -/em 1000 def -/ascent 800 def -/descent 200 def end readonly def -/FontName /YNEVIW+rtxb def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 47 /slash put -readonly def +/FontName /NKPLTR+CMSY10 def /PaintType 0 def /FontType 1 def -/StrokeWidth 0 def -/FontMatrix[0.001 0 0 0.001 0 0]readonly def -/UniqueID 4975543 def -/FontBBox{-57 -203 813 694}readonly def -currentdict end -currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIU7#I\6: ? -7Mg,CNGsjL#q0+m|9 5aWM /H5UaS&:d -0vg4%,ؾKgR =1[> Z\g)B[9B{"*j@E8cJ^0rt|Ί&ETOCSF$MPJ|)_kuÛȒG5=;m+4U&rF]!%XRnn})ڛ /bPcQNPc4H_[bI-]::3=Xk ;oVz9̱Kg@JfӈNӭ/"o9SЖ2Bl.]TR|W~Q^Eƒ1<=pVՠ<{Ԑ薴%:IQgo}@ _ѡn`y m_d 4F[:HgRKe/08OYfmv񤜕딖f NzK O:9۷wALq7oVw}|.b{!2HQYDqP - ;"״o+k8n#3*qhG!Fwz[B,BDFFŊI3Z/S0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -{restore}if -endstream -endobj -170 0 obj << -/Type /Font -/Subtype /Type1 -/Encoding 238 0 R -/FirstChar 47 -/LastChar 47 -/Widths 239 0 R -/BaseFont /YNEVIW+rtxb -/FontDescriptor 168 0 R ->> endobj -168 0 obj << -/Ascent 0 -/CapHeight 0 -/Descent 0 -/FontName /YNEVIW+rtxb -/ItalicAngle 0 -/StemV 141 -/XHeight 461 -/FontBBox [-57 -203 813 694] -/Flags 4 -/CharSet (/slash) -/FontFile 169 0 R ->> endobj -239 0 obj -[280 ] -endobj -238 0 obj << -/Type /Encoding -/Differences [ 0 /.notdef 47/slash 48/.notdef] ->> endobj -33 0 obj << -/Length1 849 -/Length2 840 -/Length3 544 -/Length 2233 ->> -stream -%!PS-AdobeFont-1.0: txsy 2.2 -FontDirectory/txsy known{/txsy findfont dup/UniqueID known{dup -/UniqueID get 4595112 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -20 dict begin -/FontInfo 16 dict dup begin -/FullName (txsy) readonly def -/FamilyName (txsy) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/Notice (Version 2.2, GPL) readonly def -/em 1000 def -/ascent 800 def -/descent 200 def -end readonly def -/FontName /LQOQBB+txsy def +/FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 15 /bullet put readonly def -/PaintType 0 def -/FontType 1 def -/StrokeWidth 0 def -/FontMatrix[0.001 0 0 0.001 0 0]readonly def -/UniqueID 4595112 def -/FontBBox{-22 -944 1227 866}readonly def +/FontBBox{-29 -960 1116 775}readonly def +/UniqueID 5000820 def currentdict end currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIU7#I\6?9 7IO%w{gif^8"+V6 O@lKǎ:>Y5tJvJՉ\"TkQD33RÍ -ngO"AŻD Biyj C˅EL/:UX(KS;׋\.:#TZ{`wy9yG;"WwvkTvS\\Z[`ncZ)e*J%/vYeZfbL4X7z!:5#/Bu>Ul ( -lߌ{ x*rj!xʃ<Դ~ j}3:`}z3}F˼M}V}?z/9[?Ko㼖m>u#(xZ=uXhUi_iE v ǜ~0ǶpXSzv:A2?`bB"9E6N'~U$ -4*?zs=A4m4/lYSVӹ>2w/O3ydk _S(ex*k0;"h?$gu36V [UDIQ&qث>䀹W}`0000000000000000000000000000000000000000000000000000000000000000 +oc;j~EЪ/ ȭX~id}S5Q!gtⵎkJc;rN^X5.Sy +'IqV:r㚉#,# dBZ *R*"7٨y=cLIPsF'f> ba +]fv+QAwdO[x"%Sx~{p҈덡|O +BÄ/GL3h+Ng03jU1~akDzq=U}.KY碌 ֻ1?C N2Muh/4Gm |Q] +OaFދp7 ? +S 'nJ;Gnشp @xG(fêD3}M6{#=!$znR@g&|n97#еRE7xqOx73I֔zěAU}.rQ +i?Le@W/- JՁq9']h[_P2;%3ܗ;O0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -5062,86 +6158,77 @@ lߌ 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark -{restore}if endstream endobj -161 0 obj -/LQOQBB+txsy -endobj -34 0 obj << +161 0 obj << /Type /Font /Subtype /Type1 -/Encoding 240 0 R +/Encoding 303 0 R /FirstChar 15 /LastChar 15 -/Widths 241 0 R -/BaseFont 161 0 R -/FontDescriptor 171 0 R +/Widths 304 0 R +/BaseFont /NKPLTR+CMSY10 +/FontDescriptor 159 0 R >> endobj -171 0 obj << -/Ascent 685 -/CapHeight 720 -/Descent -150 -/FontName 161 0 R -/ItalicAngle 0 -/StemV 52 -/XHeight 441 -/FontBBox [-22 -944 1227 866] +159 0 obj << +/Ascent 750 +/CapHeight 684 +/Descent -194 +/FontName /NKPLTR+CMSY10 +/ItalicAngle -14 +/StemV 85 +/XHeight 431 +/FontBBox [-29 -960 1116 775] /Flags 4 /CharSet (/bullet) -/FontFile 33 0 R +/FontFile 160 0 R >> endobj -241 0 obj -[497 ] +304 0 obj +[500 ] endobj -240 0 obj << +303 0 obj << /Type /Encoding /Differences [ 0 /.notdef 15/bullet 16/.notdef] >> endobj 17 0 obj << -/Length1 862 -/Length2 1004 -/Length3 544 -/Length 2410 ->> -stream -%!PS-AdobeFont-1.0: rtxr 2.2 -FontDirectory/rtxr known{/rtxr findfont dup/UniqueID known{dup -/UniqueID get 4895456 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -20 dict begin -/FontInfo 16 dict dup begin -/FullName (rtxr) readonly def -/FamilyName (rtxr) readonly def +/Length1 807 +/Length2 766 +/Length3 532 +/Length 2105 +>> +stream +%!PS-AdobeFont-1.1: CMSY9 1.0 +%%CreationDate: 1991 Aug 15 07:22:27 +% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. +11 dict begin +/FontInfo 7 dict dup begin +/version (1.0) readonly def +/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def +/FullName (CMSY9) readonly def +/FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def -/ItalicAngle 0 def +/ItalicAngle -14.035 def /isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/Notice (Version 2.2, GPL) readonly def -/em 1000 def -/ascent 800 def -/descent 200 def end readonly def -/FontName /JMOFWE+rtxr def +/FontName /SKINAX+CMSY9 def +/PaintType 0 def +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for -dup 11 /ff put -dup 47 /slash put +dup 104 /angbracketleft put +dup 105 /angbracketright put readonly def -/PaintType 0 def -/FontType 1 def -/StrokeWidth 0 def -/FontMatrix[0.001 0 0 0.001 0 0]readonly def -/UniqueID 4895456 def -/FontBBox{-70 -218 792 683}readonly def +/FontBBox{-30 -958 1146 777}readonly def +/UniqueID 5000819 def currentdict end currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIU7#I\6:4hf)NvV{*&xk ЯKbs)Yb\̣kȐCm#5j'FCL:ژQyh hC.B15qyJ`~yC JKsv$S\ % U*l)a@Q1n!M:k~HhF-I._J pc(̯M<+ddg ӣ\JU?&I'tʼnڋi >7j) "2M踸J& ->/k-N*.">XWv)i5 n( xWOm&dk4\;̻~Ί>~d_–!bWlI53"0hP@ -}<HÂ`1's6>\VܹHh jxLxxKS x1_6 >h ~?zgY -phϴXb[L-Ә]>y`;lW=R"[J!~;y\g~nj#;&!#DO;J"`))j(5src5]BoՑ3BKE;qY/V{ݫpmZ!L`*ܬVȟЯ?a\ :yM=W~ J{! - kP|6?%p3ncBb)m kPqKGo_s ];U+IU~O${7B Ft%̲/X,+ۈvp-/0L].2NY0000000000000000000000000000000000000000000000000000000000000000 +oc;j~EЪ/ ȭX~id}S5Q!gtⵎkJc;rN^X5.Sy +'IqV:r㚉#,# dBZ *R*"7٨y=cLIPsF'f> ba +]fv}3N/+ > endobj 16 0 obj << -/Ascent 0 -/CapHeight 0 -/Descent 0 -/FontName /JMOFWE+rtxr -/ItalicAngle 0 -/StemV 85 -/XHeight 450 -/FontBBox [-70 -218 792 683] +/Ascent 750 +/CapHeight 683 +/Descent -194 +/FontName /SKINAX+CMSY9 +/ItalicAngle -14 +/StemV 87 +/XHeight 430 +/FontBBox [-30 -958 1146 777] /Flags 4 -/CharSet (/ff/slash) +/CharSet (/angbracketleft/angbracketright) /FontFile 17 0 R >> endobj -243 0 obj -[600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 273 ] +306 0 obj +[400 400 ] endobj -242 0 obj << +305 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 11/ff 12/.notdef 47/slash 48/.notdef] +/Differences [ 0 /.notdef 104/angbracketleft/angbracketright 106/.notdef] >> endobj -244 0 obj << +307 0 obj << /Type /Encoding /Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl 22/.notdef 30/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 130/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 141/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe 157/.notdef 159/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] >> endobj -14 0 obj << -/Length1 893 -/Length2 3285 -/Length3 532 -/Length 4710 ->> -stream -%!PS-AdobeFont-1.0: NimbusRomNo9L-ReguItal 001.005 -%%CreationDate: Fri Feb 11 1994 -% Copyright URW Software, Copyright 1994 by URW -% URW Software, Copyright 1994 by URW -11 dict begin -/FontInfo 10 dict dup begin -/version (001.005) readonly def -/Notice (URW Software, Copyright 1994 by URW) readonly def -/Copyright (Copyright URW Software, Copyright 1994 by URW) readonly def -/FullName (Nimbus Roman No9 L Regular Italic) readonly def -/FamilyName (Nimbus Roman No9 L) readonly def -/Weight (Regular) readonly def -/ItalicAngle -15.5 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/FontName /CETIOU+NimbusRomNo9L-ReguItal def -/PaintType 0 def -/FontType 1 def -/FontBBox {-169 -217 1010 904} readonly def -/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def -/Encoding StandardEncoding def -/UniqueID 5020937 def -currentdict end -currentfile eexec -oc;jtD[1ƅpTo9`.:ypJ*l'e}#)&7+/^ W{LZ60VQR^λ3r)#v$p~c&'ſ+ %;v &q?ZU{MLӚ54(^!ꣻ;KL] #{ M 6{湔 -|BVw)\4n+.}(߷4U$d0th:zqmbZ.4EcYFjc&2XI twp -?f?Ku -ʲ.f\;Y,h?uۙ)ՑQp|]ZqTv"6q2D1c.]AE '2g!oE^=?W'P'C=_| a-#a }stܣbGpdobXWo4!_唩wL -ǔuumox:P\CX]4ܝ`Ir,;AM3nݨ?!WDZZuAzՕM(x?⦽3bqk9yU\N_NAtyъ{K:r(w7gTH<Q4@{n<.`W4/EԽHߨY[1K1W<fe9#X8d9Pf>՘[<;FzL` -7w<`3;B'"|(vE_SX,(ҀAr+`D}c]> -}q -VzDh=.u\GF@:qDIAY-j`4nF數HSĕɚaKi+mM+l_B"@B8 eI*j㌀g-kP,<LE/ӔJݝ<+n.="hsKCa,1]3[H4J_Pڕ?o9T]^a|I[_]xRnu"m%>JYTwYB -p;ƋcsJ^Q6Rd "-k\ Hzk؊L[[F>֟7š @G+KpY b+R__i5m1\Yk7}A9`,ג3I;r s߸½׳@yS(Fu`r=H.HxUxr=H.HxUx/^vya*6P[43i!imi1i6Qal@5{,Su|9rsh_һ|8[ !&Eq]y윊OKSDܮi/ v< `;is%> #7g&Я-39͇4]4>?^WeqA5B Aw[xJ#%tF/e2Id\\ǣUiL?IʹA$ JO6'< MMȂ UŠp4 :o٘w - "ps(+}Z튰yÒ$l^_PJ@?ғCoix$_аfÿ Sqr-ȋś1ơ 5usLX)'Q ' L<{bS8gG/7&OSkOcVy"@y|&|*&YYq2Go~[Oɔ -_OXn=g8VMqK `uBD]l5oJc B=e+FCjAͰϲ"%je7 |.t9T}&怍zzXpR @EA\޷l6ZӒ5liWy1ދB%ӿv":zh0.Q|+ǼZxݾKm &7;Vq&r3 (I(0@! 7+&L0lzE[qn#ၹ QP+~Cqm=+ņ9Rv=a|cXg4FeuQTAY;bCNmQUi!Rhަ5hLYy -޼d_w'4;PlY|nO+n std'WRcWv'TWJa3 \n߹8M*R|DNq/áNБ(Sno> t|oז0q^G>MU -Lh1nmXT`yOHݘosbL1M/?u wqܱ).R>{*h&e𞸏oqD|P@Z4CR""> endobj -13 0 obj << -/Ascent 668 -/CapHeight 668 -/Descent -207 -/FontName /CETIOU+NimbusRomNo9L-ReguItal -/ItalicAngle -15 -/StemV 78 -/XHeight 441 -/FontBBox [-169 -217 1010 904] -/Flags 4 -/CharSet (/period/i/v/z) -/FontFile 14 0 R ->> endobj -245 0 obj -[250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 0 0 0 0 0 0 0 0 0 0 0 0 444 0 0 0 389 ] -endobj 11 0 obj << -/Length1 2160 -/Length2 8877 -/Length3 544 -/Length 11581 ->> -stream -%!PS-AdobeFont-1.0: txtt 2.2 -FontDirectory/txtt known{/txtt findfont dup/UniqueID known{dup -/UniqueID get 4733282 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -20 dict begin -/FontInfo 16 dict dup begin -/FullName (txtt) readonly def -/FamilyName (txtt) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/Notice (Version 2.2, GPL) readonly def -/em 1000 def -/ascent 800 def -/descent 200 def -end readonly def -/FontName /GWBMWO+txtt def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 33 /exclam put -dup 35 /numbersign put -dup 37 /percent put -dup 38 /ampersand put -dup 40 /parenleft put -dup 41 /parenright put -dup 42 /asterisk put -dup 43 /plus put -dup 44 /comma put -dup 45 /hyphen put -dup 46 /period put -dup 47 /slash put -dup 48 /zero put -dup 49 /one put -dup 50 /two put -dup 51 /three put -dup 52 /four put -dup 53 /five put -dup 54 /six put -dup 55 /seven put -dup 56 /eight put -dup 57 /nine put -dup 58 /colon put -dup 60 /less put -dup 61 /equal put -dup 62 /greater put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 73 /I put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /bracketleft put -dup 92 /backslash put -dup 93 /bracketright put -dup 94 /circumflex put -dup 95 /underscore put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /braceleft put -dup 125 /braceright put -dup 126 /tilde put -readonly def -/PaintType 0 def -/FontType 1 def -/StrokeWidth 0 def -/FontMatrix[0.001 0 0 0.001 0 0]readonly def -/UniqueID 4733282 def -/FontBBox{-5 -183 542 746}readonly def -currentdict end -currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIU7#I\6:SJiJej L&8#U׳ -OW -T{h`魭)# \;ˆCoF! -Eyc5"&#jbR]$"fP'hp3 T=2`F3#%j?8?6$U򇱞$2`YR#1Ady[5X4g"rSTtWAij>oUuߛhz1Y%k|cſ1{,4(kp)cH[qISVj l O[y!._!q h>kҮ-#Tq9V i%= yv m6S> }SБK7 P/niC%w g& $n&O Xj68tu{LGdFe - -=)`/lNhk~zY&2R kiN;[^ U @ƔM;bo$\(DFTE sbQ -y#(yft閺̱VgBm;dj(tĹOj[%QaC gPxD-Q28u+q%ɭmV{nŐ!po2VR~& %6=NǭM ]&JE|[fg<h !d{>@ȗ91 -tP}2Yzρ(O' ⼶k -q%`ɣ(WDHz?0RD6~!V`NNfrCU o SVf0ҧreq*hK(9q#hTT|ULz~L -Z"gu{SL=;5SJqPs]2K6[9!mn+.O-x~b/UhE38u,ݏZI\!<ߒDŽQqDQYO3):jCllcum겾UHx6*i05zrVM (c]ٲn#kMS5sZ5SxT{=Fy:/pi[g~Y?J# _a$t=LNC:s/5\6jLbm8Uܾoc__ao2l ŬӤ4ɏH3VN`_9B߮ya}~3}uCs-И"L_$,$ R{D1(~%kT"["Z+V/^ IZGX$zG=9J -`?H-cr=m܋ov%E -8AR; *̫27&C )[ffGrVyeУT[`MPL#1k=7L?j[6%"GVpj@{(q5w>ȇZ "U7dmc35˴FR7KemXaMsC-7=mM!rX1ux9 -Dq7SZΊNiP u@JpIN; -ar[pGGA8&{/5zt)5Efe -9q|J5Tiê<1uëo[dvkE tK v&G#!R >'S黨̎,LBtsԚG2k[\2ũ{8S*a ׻"3UA7/je مm\&߷>.1 V+̨'(ڹnrbb"_ɯ -**om*?~|5<1^ -cAJnP~;ఆa5z#er[4GEJY*j@%H؉#9tWyd4F2M6 cs'/Hoc됇:o5NI)0B`Ɗ+ۥ80C$Yk-#T]Yۺj )Ԟ *@XFܠyP] -;.phAaO >@^3 Z+*dNgc: O>\eR۔dh۰}+\ -뺽@nҒ-#?{FYmO"Hd]3T>l(xFAX6'vwڵk 1"Za5{3;)ьwz)kD`זkّdG.d% -?Fϩm\vZd3'@v^K{s[KfTڒd940wBNOla"Ww#Jf,nQhY6KirԒE>fh2WṔj*月uNq1cCW.yإ*0!pW${שh8J'?RoVxq3}%aE]5ݶsHnfsAAXz~.=xv>& cܷ)tDG>U;BJ=/:ӟ)w Ho.=i`8g,*dVr -6b -g\_&{`pU\n=GqN|D74umz/lo( I ZYX_BިW#6"%ajS"ELjWl|4tu>9buR&dE=$sqsB"u,3GMR XL:Z==殉||H=!zZ?f\ZUoD6'Xsb`Ǐ>$*2.>iDo ̻!M쳡%$.`K cKymQpXxǜw7cńb%>bVo'!,gLuܩ7A8j2%|̯Vd6'YyH)aq[ܾB^[ ;"V7V/8E%< G'#oZIL&PYn|xd+vQ]`he y$9+"e hH1Kb@-5qVd1u7$1إÍ6'ߡFqolwQ829"FbFRW,U1HC*tC2f +bE܌˹#UҚVg:ߨHn ԙ%._K{]YE.]U@# 2r8؝vӵ8&c3at1~3_n=jco /1ݯpqNNpFya(1>FsΖiTj 2U­;{ ~+ )s(|"A13, ]1$c"eaqV$ԉK\)J*2Sqj0E.#͉`met -*Ԫԧ4jͅ,v+Kv|}`_WFmI+[_,=Du ~,#vvd[GFl" %2lMׅVm[ah2JgDB9([3YHdg4N؀?E=z0h\*ļJ*hdni97.(x]dc֘t&!Xj0Ao d aJ F,2D t D_(f5@Wm)}vZ465vF Z`8o1o3MAB$MkFצpL`@^o/;/$ve@ffiwH:퐜p=4H<oD\5L֯esQ K$EQOU;v 69+WȞϜA/yݰ L $ 9LSBC8ԷxR%'d vȹM?o}Ԗ@&'i,# TJT yB de" bmg#6kJjFbu{u^ ' :MVmM=LgmO 8k!i,ӴH`hE\\ i> axpBDD$8MuPMTt6[zK¥M#{x.`#ɞ֗\pߋDtQ{SdǤϱָ0(S82? 9 -+RLwuV. lH׽#$?ʣ ' \Zkz=-DI{Arn7-#@ۉB -_$0]v+:nʨN2Z{ q)EPP)fIN3VjvAرåx39:v-J ̀;zIfh'A7"c71Q A[T.(n۶׎SN]/ʹ{FgOd2lKkBۂdJ ȋEۜsZWD.YvHE!UKIetuך539pg-#_{Ka7d:|C& ,e0+Y/p@-l3w֏> C,4}G,7HaNJywb@Bן疓S/*nU!\,7&|ȯĹ)U:H"?W@zmgOH>kf{.cbo5=jh&5,Ϗ]YV"szƒHTxo&3ej:RV5aC-ËNj:՜fOV $v|huh }lN+vcMD $κ{1tg Ph_K3Q 7-b92-f~DQȬcnQh8תK[R,ho?upSO.,C)5=dxvgv.tHr - HǗ5izv,Dofox*ֿ@NXA!h@>ݣQ# e, -d؝ZS-|%pck~_hufEp*d pi)!/ul+mS[l]{n/I*Ý٬hgH}aGUDZ̍ S9T[xQ/9R-? nӚHN't-{ĺfK f+a=e4fR,?ƒ%c*aS",\màz=!]d&?hQIYRn<&m W%Qi%ڢR->+=$1me|VԽdL[l1;Rt.ZWH -0`:Æ@4i!zpR#seQW~v@ :WԱj>wk>:ՇY+e(-_CO}Aexb90Ft^|SrBd$SʸpI;}c_ݻo@^VķGf`%l{ >eN: k3TH^< @;R &̲٦'䒧9ƤԊm+֖Q@FjUl!T: .pV䎐5{NGEgWi- -[ 1\ofA LIqjf4^|DdA={-yP~f68Fk-2Z@:5l?/}Q0ҡUjn]xXE0~{+q,d$uLVj]{_"aK-w p|R˄z_+nl <񒃬5qyjd8~FgdNfA+tQFJ$'IA/Rq7*i{]' ] *@0,v/fjRw{"-2X/]tBsHTױDKI8L` J~0[w죋gpƃٴ ~^~woQ-1WנyilfE[s 2DZUp&jQa;ݩ@cmb{s/(1ũc*dp~x_laXDhb{1Ɍ: Q)C)6 t)%pZbڷADKM&/N؇Imm* -: @!`ܦ;؋;;׉X3p?I¢Ԩ[:5!Yj$ h) -B -nGjwgdX8z']%.Dm{bc]JLx3O\)ر!ٿh0rn১Z]w>7{azZmNΝv~&rpx%yf}XWCk0] 6Nd8xAAd4eڦh DZ{* wR_^w/\r >9.3<_p*4R%OVv!`ݛ - q;<j3 ʼnidϠD)Q˧.b}|Ƒt7 5Dp p -9p{:te71F&,/#g%Wmq`:n 'ԯI?3^ ey5fQ :C-&=9#usDp|\;IW.j7tC9UIXqG7cB!^.:}RsU uWţX+zoPzv^H\aYq/n:-}ss%(V &pK++(w,kmA0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -{restore}if -endstream -endobj -12 0 obj << /Type /Font /Subtype /Type1 -/Encoding 246 0 R -/FirstChar 33 -/LastChar 126 -/Widths 247 0 R -/BaseFont /GWBMWO+txtt -/FontDescriptor 10 0 R ->> endobj -10 0 obj << -/Ascent 668 -/CapHeight 622 -/Descent -167 -/FontName /GWBMWO+txtt -/ItalicAngle 0 -/StemV 85 -/XHeight 461 -/FontBBox [-5 -183 542 746] -/Flags 4 -/CharSet (/exclam/numbersign/percent/ampersand/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/less/equal/greater/A/B/C/E/F/G/I/K/L/M/N/O/P/R/S/T/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex/underscore/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/braceright/tilde) -/FontFile 11 0 R ->> endobj -247 0 obj -[525 0 525 0 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 0 0 525 525 525 0 525 525 525 0 525 0 525 525 525 525 525 525 0 525 525 525 0 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 ] -endobj -246 0 obj << -/Type /Encoding -/Differences [ 0 /.notdef 33/exclam 34/.notdef 35/numbersign 36/.notdef 37/percent/ampersand 39/.notdef 40/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 60/less/equal/greater 63/.notdef 65/A/B/C 68/.notdef 69/E/F/G 72/.notdef 73/I 74/.notdef 75/K/L/M/N/O/P 81/.notdef 82/R/S/T 85/.notdef 86/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex/underscore 96/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft 124/.notdef 125/braceright/tilde 127/.notdef] +/Encoding 307 0 R +/BaseFont /Times-Italic >> endobj -8 0 obj << -/Length1 872 -/Length2 10266 -/Length3 532 -/Length 11670 ->> -stream -%!PS-AdobeFont-1.0: NimbusRomNo9L-Medi 001.005 -%%CreationDate: Thu Nov 17 1994 -% Copyright URW Software, Copyright 1994 by URW -% URW Software, Copyright 1994 by URW -11 dict begin -/FontInfo 10 dict dup begin -/version (001.005) readonly def -/Notice (URW Software, Copyright 1994 by URW) readonly def -/Copyright (Copyright URW Software, Copyright 1994 by URW) readonly def -/FullName (Nimbus Roman No9 L Medium) readonly def -/FamilyName (Nimbus Roman No9 L) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0.0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/FontName /QJVELS+NimbusRomNo9L-Medi def -/PaintType 0 def -/FontBBox {-168 -218 1000 948} readonly def -/FontType 1 def -/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def -/Encoding StandardEncoding def -/UniqueID 5020933 def -currentdict end -currentfile eexec -oc;jtD[1ƅpTo9`.:ypJ*l'e}#)&7+/^ W{LZ60VQR^λ3r)#v$p~c&'ſ+ %;v &q?ZU{2_w"~vAỖau*J>Dʴgw -={J'g`ZLŚM}}Q̚If#sXϋM[-diٽnmbM<'_i !SXWB陇 =c ͂@iCeJg42A$/mȍKX%)9x R4(k{j`ѥNUoX!uuWQ"+hN,<=}|x)?3:TB!򨗏4[ .7HɱB_ YB݁r6 Sc5_1ַh H@jp!Ir<e&ʰmzO`:2>.cHD&ڝ5n)rs'^݀dX#Ì mL׆ڿWQ@dy潋 x;W<'ɧ5˓f:CQ=,yπ_98hz,"xZ ¡ByM? -gFL.׆E (}IOB_C=8AD)jCFw%MT0{Vf.;S4P_,nj(bUr4u`>@t9Oϊ, JL0$ި[qa)fHl9n[dUt1;UA!X84\6P]Bsh.=fl۹xںo.S"_ "3'nb@L!Q "9/ Br%("H]L7)p1/X y{2d !ZòSX[7'o*DcUqt1ؚȘ?a9g)AEl3j#pZ~ -yk8A^r= "GkDWL`r0o+@Ϳ+Cz`b 7*vXaoo Y73~΂41;P暯k|T>; YG2y\[ٜM,msJ#M Ԅf%Թ(KM^ԁ:0dh,`7rxC NQXܬ$Û29SDAx[$O u:q$߻.[եV0d+URSXN=}v:pqW&uŚ펉WX1}kL48 -~n]%6*G|e]OeǹZV۽K)ʜ8M)Kz\JAUJbK %E5J~ذ%ײ!~mKE(i{A%'ݺGx Q#C.y<,>]"e /<;7KbXBr?cL\Z !Iőv, ')Dh4 -}V{VO-"۪ vEFn; O|W眗C?u;5}$y)VݘÏJi.L/+;ɰDZPfIE_3gA~P}Lm YOI͔Et*ƣBWG/s!%Ep[s ?E1Y[a`y4*ͶNh#':ch0`pv].c'F[G/?+\hKS?XWr.0nJ>˹M=` -eO/ERz P7!%I8cSXE~ɚ'"(Q G86$<*P ^L JK( dJru|*(w1=D|(8 a -ZhM}5 37o)Knc8r٬0AU}T -dT):t~HgыlG5)x"e݌ZC p#M=ǡhbHʑ9Ïg*y.WVn0EJT]st.7k+L$ mC>Lh\ЧcR43yfb(ЌXH Mđ<-Iܷ R -fW׾U(:A:NO߈u׎BԚ;ߥ{2Oza3 OSX}I:0خ -5sg.lY(y'ҡdZݢ -mn~3 -@/v`D fYQ@c/淫LV֧>T?xG#Q@Hb3Vx˾%h80![vhu=o"hzֶXL ӽ"o%u~'_c+E;%(v6ЮsR4 m5PE]a_@;(-J}Q ||Pn -[eŒ5<+af߽wvRjW0iwh!U7LY8o6x3>H̒ftH9r)*^ -8}ndL8JC:YCiR2-11P3B atb+E[3HT5Եsqqa>[@1­]nWB?/YmYMl9H.Dv]U85}fѓ:$gVk$@\em4B~kl֤98~*݄+ɢmK F_I)\y:. FI|I06jMpw\vw@Y؀[QA"~jT;4( ,tޱ-K((i||Wc#?B zU ӆIR]9uK7[ P>qWY-궩o/4V)¦JsRlɉH292Vg,*@;?!&į,PM|~|7Hd+u4r`ixo L)V׫ uM}anN>ƨS,۴=RV@vc-̹I`ZA[[x ! ^3eRk1nVMJqcٷ;W,b=i"TShlFln z`gX -񃓉mFCto(|opSb -i&偟8Ifc+|L'Y3.Zp[5ۿ_7,Qi~ւUeA?ѿgUBJRw{Q2~y,7e7= kFqpL_|pޙXnbh:V6n: PZ6=B;51&& W3Zh ['|k!FLNuMHGmd_?R%ɀX163~R1u({WtP6|N(x ZO7UțNB5A>N)ZiGKZ %_- R}d믴)%e{ -\O~x9)1˿|K@^DEZr6it878I3kQJWR`U犜~ :6ښiBUY9;G-?Wlև'qNڱiU+$I!я[ne_@_TkϺh&$4 W@!UwϽ~)3c"%fyĞo3L@,adBsьF݅?ҭ vv=CpXj6 @W -?V\aW[drdJq-:`;2 -\|=HN4HcXOjw\BJ1_ƵZ+uFHLADJ -bu -]B -R0-o>YLi@|*7hݍQ&/A$/rqF&3tOKaA쮭s~ w@c;2FERVނGdE;xSa,{8pL"X V8mBf-1ĺ_. qb3f&^ύZ>UP\K¸ -mݝ$ :ֱ"tP9vyv-%; Dp 9}vT%mjp\<5IU (@G^w#5c '>2dd%z1VxgNwf/?SΑkeIm>LtJXT@eY iNZbΈ@ì0x]@>;7~WWz6Ͻ߀5n$! -B3*|AC/W-B4՝QU930/uqv`^KiY+U CyNqv ` Pqglwk#/Kк}pw>3в/4 I<{ZD,FkDP>PS6YBɔ#p -tk_W~{4d"V=x&ۼSdW$9fzyps -xnpgT+/1͊>uVg/٧`ʌr\|[x;fU.:֣ Z? QbIz0ዦ "U' -Ћv歵 euOٟTeh]IѴکg$nyu[|ғ*hW\;ږԒ2O0q;¼|mO@qOXaǀ}$u}1GZrlE -A]wĆ7v?o̷h'>b?vޗg| B2tniU<|JĎ'hߡ-VP -_Gb?Vw2@b+g K~|C5 -*dXr"8S5{x@[11vF -Xb fM -7k2O^"UuuڒM㳳pa~}s9LxmOiWZ kQ-6 `\iX Y2K3//UDb0 Vnt#:D7OԲF4UoLMf( ;|z{n_싥#?Bᚕ|hKrϓ/a_-8Qz1D,w/m! 0i@ :((PVc:xh'sR> -Iׄ˟W(} j0A$PIX 5]OB cG2v+ e0IUbuoP|!nf? a[5KG@Pu5Mv3ɴID# !$xWܵԮqm|yd>=E l -Sɸ= Ij eXWu-/ Vé)'9K?DA5K{zߺh]@[deAGV#w&R L῏2:vl{@rbY+k @=†"옍.m{MC9,5h-a; Ytdq{gЇa\8$uagҭ.**$r]AHE-+CQBWfY UdS\=Q@p9]Ƌ w>I&d[ _EF".+)ȱݿ\.jiZkJúҬe?8.E!vlTNhzB1@%j\@+ M-Wbeoǚۯ W6Ė֊%sҮ%dJAJI|'\<$;8f?bcNct|ɮrS;?Zy,W+uΙpF?Pp:ns:Kl0·50I-e{w}U gFVq߆MW8=-œLUYeu<9%fV9˰OZ6{ pV_ 9Ne[ J Vl9Qӭ@NP;w۵p^TE28,H8j=d:tad _ڧU(m/A<̀CB5dr_ -οG7&5faG,|L3sQq{|Î!X/jeaMCY4^CPf1(W ☙(&J7B uka ?7p+Ǻ'AASg0Į -Ъo< "]B651V^?.GZj㖷ǰxѵRJ :&]ʊLGO =)2lᐁ*vxQ^e0d-a(l]n]’w 昚$TIqjLӞ^pG!Q -`,K|t~SW*$C/XR/bǧ$>%Fƴfrywd;F17 0T "UP0%D@5;QّdX3z|8wPYCṿ8\Mǡc5epiwti -.p3)QBanK#UQTxȻh`Vij+|}$/f]۰0Wmf1رtUJ&s&p?/j9q&?0\iÂupՁ JP,CC>|xHPjI6.̆6uC"QJ#À-83ݙ[HmxÄx{I4Z5]2=X -88nzF$!]:* ""yn R!['z`Ɓ$2IO& >/1X-[J -w8.vqibǿ53736FѠi"qtA*Ac/|ī~BYcbUdhZF:WٞI{{C,";.U <^UXqR:7n{ՄP~SuyT7)bAF5:iZ#o Y n -jL_o2'cᝢ ԙZb+TėK:{JUxԻqPb8Lļw&"gCQb~]O19U[!űO^k;0v%C|giyRիޱ fZ>q>Ʋ6 .+0&jt_oL2'EXo3CfhҜ괮|sH^W\(nOIԻDgq0>ͨh+ -PXr//0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -endstream -endobj 9 0 obj << /Type /Font /Subtype /Type1 -/Encoding 244 0 R -/FirstChar 45 -/LastChar 120 -/Widths 248 0 R -/BaseFont /QJVELS+NimbusRomNo9L-Medi -/FontDescriptor 7 0 R +/Encoding 307 0 R +/BaseFont /Courier >> endobj 7 0 obj << -/Ascent 679 -/CapHeight 679 -/Descent -205 -/FontName /QJVELS+NimbusRomNo9L-Medi -/ItalicAngle 0 -/StemV 140 -/XHeight 461 -/FontBBox [-168 -218 1000 948] -/Flags 4 -/CharSet (/hyphen/period/one/two/three/four/five/six/seven/A/C/D/E/H/L/O/R/S/U/V/W/a/b/c/d/e/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/x) -/FontFile 8 0 R +/Type /Font +/Subtype /Type1 +/Encoding 307 0 R +/BaseFont /Times-Bold >> endobj -248 0 obj -[333 250 0 0 500 500 500 500 500 500 500 0 0 0 0 0 0 0 0 0 722 0 722 722 667 0 0 778 0 0 0 667 0 0 778 0 0 722 556 0 722 722 1000 0 0 0 0 0 0 0 0 0 500 556 444 556 444 0 500 556 278 333 556 278 833 556 500 556 0 444 389 333 556 500 0 500 ] -endobj 5 0 obj << -/Length1 876 -/Length2 14674 -/Length3 532 -/Length 16082 ->> -stream -%!PS-AdobeFont-1.0: NimbusRomNo9L-Regu 001.005 -%%CreationDate: Thu Nov 17 1994 -% Copyright URW Software, Copyright 1994 by URW -% URW Software, Copyright 1994 by URW -11 dict begin -/FontInfo 10 dict dup begin -/version (001.005) readonly def -/Notice (URW Software, Copyright 1994 by URW) readonly def -/Copyright (Copyright URW Software, Copyright 1994 by URW) readonly def -/FullName (Nimbus Roman No9 L Regular) readonly def -/FamilyName (Nimbus Roman No9 L) readonly def -/Weight (Regular) readonly def -/ItalicAngle 0.0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/FontName /GPOZXF+NimbusRomNo9L-Regu def -/PaintType 0 def -/FontBBox {-168 -218 1000 915} readonly def -/FontType 1 def -/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def -/Encoding StandardEncoding def -/UniqueID 5020931 def -currentdict end -currentfile eexec -oc;jtD[1ƅpTo9`.:ypJ*l'e}#)&7+/^ W{LZ60VQR^λ3r)#v$p~c&'ſ+ %;v &q?ZU{*@AIaYKS$hieFxQʤF/aPnR0PHa.'!p3F -t[lS׏ʕm$u,`~sftZ:m/K&eo20֜ 3stzci_%[KƯ;y]QAX*3Cb~F 2O"_OmN@4쎬?e>>%$~ҐhCrG ־MV {"u8 -^ 80=6H -1{?зp~!~-' mhܚ|ΜFu#RHZY۠ARlubIU0yTJ7=WPqKāv>x9D?X?%ånP -j,3 0𬄻hH~ʕ )=<3z#'\Ma2 -vq'6; - JM *Beg}ڥEBNƬW#AV -,6q(AA^Dߔ@ ~;=ab )>-C{3x!1 - "dV.kn3$ZCв-ɿ *QVrB-ֈ.>6Ϫ$;/$2e -a0 vNoW>YOpЍߖ>O += E;}Oih kܛB5;V3YY~i?N`na毋,4eZk!N -kl)\5gv*WC'| lմ\!!,/%Re2uX>, \igYɸ\~'!./̬Baݧ`B+l?3,m!)"l_(H.@]#Eu IwX*ܙJ&8_DGIŗʯ;̉{$rt{J|ӼU$הQ  ȕ}!jY}'ÁR]E-IPepcح.]OL3'5 *ԌOb*Ks5/`A_di:j4qfq=~])DMMn`(ڸkEOJV -|B;X=0k$tc*})4JK1IiN -/U1 FZծ1㩸كe`?)]{ -, M+V.#B/z}A78*D qӞ WOovz7br IHF-jJP?,-rZ45 &shЁm#[7ky4:#Qz= !±!kh>Ѽ[*BR&S_r$&#E?-UEK=\Ȝ> Um)rw?*/J8p kWEt`9EH.+|/>E0sH]F<37ԁ -͝םZ8-a佌tک;uǡ_M]#OqlkHkǒl&zF+ _ZS"IIWPg"鄯"f<.,e^:'#[ʊfvB/6\"g!'WϘ8 - ~tmd+s憩߇_'`Z8uYJ]XiG/uPe&`8FDu!P\թҚM2hl!TaGwRz(< @ )$ -ԟ^%Y{C?X;Thc̎a/om& K*rڂ8D؂FrJnT_7*p銩^eH]:"sb ~c/= ny GK-vsMSS {R%nfrCc9943wg=;<9G,}ej#]Z ITycjZZp8F8Nc.ˋo7x,ļp𹷜 euc Jc\LN msP!<ƍJm9g`l[DaMb'yl]4˹|G&ܶ%FZ7 qkp" 8i+H@9{ -hpoߘ︀((`:6XhSamK -=P -*/} v+z1=Cl|HסXBTy-0^@Kfm%9|Ѕ/`U,d%`J0 t.K1$cceŨ">;b0mBriRoM va0Z,eGH¶C7 {kΡ73{0rĈvTY(‰K'3qG17y?Xbm`~:#Ȕ0ZY58p -.ANe 6q;%nb&qA <4̈́GhaӇ_=L77~$Dg3:R_DVՍO&[=AcLiVxt1Tbt,wI;.tO 7d> -$-?L -[q]e4ty>3Ǥ8YBd^ѐzX  #/kؔTYv!qqymk9yj iLZ~ZYOV@zPqݫ/$h:gL+p"G壙zNJG>,P"0ٕd]uQ/Τ=1 -\QL+Jڔ{Cpuݜnkd8@gb%i>#9'&ddk6AHvk` ;bIe,@в!;gf?xw.ւ|r.rB6ga~mE9^4ut9-@uPgNjN$EvWT(=8s-jOdBtȇ?.<郁e+J6TR&&AQ(8VbLw3A%*I .@'Fd}$]ؐ6GmN/I': ,2HUp_ak,,"d'{ɽ/Qj#*cJ[3bRۂ3mlExյ޳0xe._[V:LS r18?gcxoEވֹO:([%~NV8G%JcH!,_P -RM ⍪g*9;=ZKNrӒ6-~Z{ u MY ,&&c-4v?U*UU2ѣn0+m8tl631nG0 7rJ_m96u_`^Hu˟Z-dpKe@`eॐ_& -~bX\Z|PQ(]Ex%_Kε>@KSuAY#2yx[hΕP3Ž56׊>;(]7*m geK *`S+BH53T >/Ϊ Sϯ#TY0Y֒D۲%?^׹Qˌ!I'A&B`(qD]es%7_]F`Fm}p2dKߋz6O!$B/lPD3q p xf$ X_ Mȼek{X0V8R 5KѬ8M|=cK%,[ʳF -_SU5f&@ 7M%o0 fփoUWs;%[Gx\C=N*8WB6Wnǃof -ȕ;Lyod -33A'ΨBPmDߠyt3J&*TW" -P ud8ȅQ({KqJ&xu_bd0H5[=pއ3 ̍o+E[@ÿ47 #sĻ]^3%6ԓ m=a'cnʈW#Z0yjd%gAӂ,oE[;uCC5nÞ'aǟo1OnK&w7 ٵζHOP=J׍'ߐ_LLπ|&jhFqu 0僇܈>;Zݏ,ڻ7Pe؅^ --/g)>?> -LɓJOz h+RX!ҝ /uWd%Ru28̡.͜.r?$XA!P#/=nH7<kAMnr9$CHF~:_%AKxf#!Clˍ|*fj+ 8Xvr1D]V",٨,# [ΰBxqJG׵rT~:EjX/L]>@c1ZVCO%h7xj"=`v"4jc3Q/`g[th_+ l1iWP;?y|xGX/[r,,'v$cUCNT=#xI'j_zW:y׍ -e<[R^/YMmpĢP8)$vYײJM^;Sh01VUd4._oϓv3gV-FA)9Gz@?VGspg^:ٛ;a~OdS%Iɽ\F`HFeR@Cs?ܖ]hs"LHOh}/9 -Ll8z!H)n/P1d(s5j ;;wMqqZ6۱̥XőzШA1yg!_kxC8b Si hօI]=e!cV;*TyWti!EF5Μ˷}:6/ U|dF'[ܫ>`dǴn~f4$Pj8Δ[BÁM#C!Q؃{avIyŖ焛4avq㛿9JlQ#~{'5OhrvFT/&Ys_*)1TZ p*[Nxu$P@9iPhroGYNn{g]hHq{iC#QsM;0s?ZCQ#㬄 _cTՇ!f.Ǭzp]m%SϜ@g]D|lMҜjl^d ܈&H} Ľ#[B~LIrU`Ȁz+qAXG?N3`<Ϭk[6ֻ tl2 e# vْg[ S/Dk`V-+ YcL VnՔ/,jaC5s>lzЍyl_em$^WK mob]M1!uXR>AqGae9^g0HDPT)5:+g$+Vp=,l3VjZst`d+=ur#}: K_{[~#{M,5W4,)wķPFp,jLQ|01avS L7PkbTBwɠf8`!1ړ52 -wHd˅mr ̊ineW*jC_= -%CRIn6&o w!u] x(+ u3#i>->y|}(>G$D`_d-;JJfy3&>m6S0 3ZIwȞI#Crtr}=rɧC Q}yNCO2K_&y\ 􏋾.kANM3i ޤjyTy$98Fhyl391b9VrpȳVϥ 匚 -W'D>W&~!e{ ySO!Cd8Gf]Bm?X@_E0^L&;NJaҙX~UB[2ucBЌFOwbhP4ū/}uM|FxbU`JsVez`?u ޕqEyؾ}׆|6ȬOTjh:j}:F&$Pa\g1=vw[x*5ͷ(>^LSL'b\QzYe*gcl=r ~Tw]XؠwA-צ M& -FAnjY JA C1"DE6(oi[>iŁ\m+GUtaP5Z5|0([0.ĆU*!2 𗪶31&mF_._Kwh1ҟEi!N'C: qeFwv,rpib) fcsC6:7'bANzFg7[ETIx3ןG1'8p^r$/U[Tuѧ7o5 ʸC4~),Rfaz:"˴%/IZ9s1T.K)`.uhuJSAXy$)Q[ S!炑d msK -r}Dc)pEoqb;lϮ wQYiRR(O~#bANqv ʡQc9akQj"]~]s&F޶]cP֥VtVWY4c?9 DSqwI;`Ӣ xjڄM!B X@ԟҘ!͊Pb2Is`g"ҝ) -jgCD.TH#iKs b+`&֋"s5*l q0q58> qj!V63V:Hl/dK➛<@aM}G#na#au)ImhcO0 EĶ#d"5n;a4:7WT!^Oүv'X}5`xz8ޠ%!5HӂWtγiޝ5 -&Êo\WؓTw!ڐc,fG 4T-5C{B?"|V{Q,JlcN Am(6k-c9^?WyY,qz’jhfMKȡ΂bSZ*o7 KaBl+ff^lVѴ֣(߾[ jhOk,(YeT(Kqn`Iy#4qī# j3_gL f!08۵N!jA| 2Rm5/ WUф)FxsFͺ{  oT¨m {:u3+m#%6W -&< -L8U|F`!/į%"9Sҍ`Vg+DہDKT͎tqQ7G;r Q6ecUX.4V2n]_G  -DקoA|0\FhO1"F[kC;_ɝ bdž94_xE6KqwI(ܹzD`h;݌Y_r)jfUmB_lvPąB]F%,n]ՙ.Y؀}=7FHc-K&H nwؿl*KUmk.&d_ a#h"ĦIil #\/Ab7m>>Nf@0|Խ3ȯ24KCN\NU {'Yq݊wg<zMK](.}V=SLFqH4Pt8l;2j,ɷbgtgC1T2Zm?N GYh;ck=u180k)CƫtBEm#l9hcDexchI|E9ޮJ%;ퟦ].Ai0&8M4R̨ Pܣ 9H49wS+gSYN2cwˉ\n=kE?UjO+=K1,`./ %.< --ֿELK93[yK I;4чZz -|D4EV$S4#vsgy蟕vBK̿E"mw&I If1y QΫ^T;zӾcxUyC MBJ¤2fվ#,qq7s\uDہ =ڧvqْi`m@evy^V.8nt:,:Bnͯ`796AYȹ>#̴U~4Reig\!h:$*2B.Y ˆdu1 4\|t|w0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -endstream -endobj -6 0 obj << /Type /Font /Subtype /Type1 -/Encoding 244 0 R -/FirstChar 2 -/LastChar 122 -/Widths 249 0 R -/BaseFont /GPOZXF+NimbusRomNo9L-Regu -/FontDescriptor 4 0 R ->> endobj -4 0 obj << -/Ascent 675 -/CapHeight 675 -/Descent -218 -/FontName /GPOZXF+NimbusRomNo9L-Regu -/ItalicAngle 0 -/StemV 85 -/XHeight 450 -/FontBBox [-168 -218 1000 915] -/Flags 4 -/CharSet (/fi/fl/quoteright/parenleft/parenright/comma/hyphen/period/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/A/B/C/D/E/F/G/H/I/L/N/P/R/S/T/U/V/W/X/Y/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) -/FontFile 5 0 R +/Encoding 307 0 R +/BaseFont /Times-Roman >> endobj -249 0 obj -[556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 333 333 0 0 250 333 250 0 500 500 500 500 500 500 500 500 500 500 278 278 0 0 0 0 0 722 667 667 722 611 556 722 722 333 0 0 611 0 722 0 556 0 667 556 611 722 722 944 722 722 0 0 0 0 0 0 333 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 ] -endobj -19 0 obj << +12 0 obj << /Type /Pages /Count 6 -/Parent 250 0 R -/Kids [2 0 R 21 0 R 24 0 R 28 0 R 166 0 R 177 0 R] +/Parent 308 0 R +/Kids [2 0 R 14 0 R 21 0 R 24 0 R 157 0 R 164 0 R] >> endobj -182 0 obj << +169 0 obj << /Type /Pages -/Count 6 -/Parent 250 0 R -/Kids [180 0 R 195 0 R 198 0 R 218 0 R 224 0 R 234 0 R] +/Count 4 +/Parent 308 0 R +/Kids [167 0 R 182 0 R 185 0 R 299 0 R] >> endobj -250 0 obj << +308 0 obj << /Type /Pages -/Count 12 -/Kids [19 0 R 182 0 R] +/Count 10 +/Kids [12 0 R 169 0 R] >> endobj -251 0 obj << +309 0 obj << /Type /Catalog -/Pages 250 0 R -/PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b) +/Pages 308 0 R >> endobj -252 0 obj << -/Producer (pdfTeX-1.10b) -/Creator (TeX) -/CreationDate (D:20030810095800) +310 0 obj << +/Producer (pdfTeX-1.0a-pdfcrypt) +/CreationDate (D:20010930193500) >> endobj xref -0 253 -0000000000 65535 f -0000005541 00000 n -0000005436 00000 n +0 311 +0000000004 65535 f +0000005376 00000 n +0000005271 00000 n 0000000009 00000 n -0000174852 00000 n -0000158503 00000 n -0000174683 00000 n -0000157926 00000 n -0000145988 00000 n -0000157756 00000 n -0000144467 00000 n -0000132629 00000 n -0000144309 00000 n -0000132221 00000 n -0000127237 00000 n -0000132045 00000 n -0000125053 00000 n -0000122388 00000 n -0000124896 00000 n -0000175679 00000 n -0000014328 00000 n -0000014220 00000 n -0000005656 00000 n -0000020260 00000 n -0000020152 00000 n -0000014444 00000 n -0000023176 00000 n -0000056044 00000 n -0000023068 00000 n -0000020352 00000 n -0000026283 00000 n -0000026338 00000 n -0000026417 00000 n -0000119569 00000 n -0000121929 00000 n -0000028349 00000 n -0000055971 00000 n -0000028547 00000 n -0000028706 00000 n -0000029884 00000 n -0000029905 00000 n -0000030451 00000 n -0000030652 00000 n -0000030853 00000 n -0000031054 00000 n -0000031255 00000 n -0000031456 00000 n -0000031657 00000 n -0000031858 00000 n -0000032059 00000 n -0000032260 00000 n -0000032461 00000 n -0000032662 00000 n -0000032863 00000 n -0000033064 00000 n -0000033265 00000 n -0000033466 00000 n -0000033667 00000 n -0000033868 00000 n -0000034069 00000 n -0000034270 00000 n -0000034471 00000 n -0000034672 00000 n -0000034873 00000 n -0000035074 00000 n -0000035275 00000 n -0000035476 00000 n -0000035677 00000 n -0000035878 00000 n -0000036079 00000 n -0000036280 00000 n -0000036481 00000 n -0000036682 00000 n -0000036883 00000 n -0000037084 00000 n -0000037285 00000 n -0000037486 00000 n -0000037687 00000 n -0000037888 00000 n -0000038089 00000 n -0000038290 00000 n -0000038491 00000 n +0000000006 00000 f +0000116368 00000 n +0000000008 00000 f +0000116279 00000 n +0000000010 00000 f +0000116193 00000 n +0000000000 00000 f +0000116101 00000 n +0000116458 00000 n +0000013880 00000 n +0000013772 00000 n +0000005478 00000 n +0000113944 00000 n +0000111582 00000 n +0000113784 00000 n +0000023934 00000 n +0000020088 00000 n +0000019980 00000 n +0000013995 00000 n +0000056985 00000 n +0000023826 00000 n +0000020179 00000 n +0000026949 00000 n +0000027028 00000 n +0000029045 00000 n +0000029066 00000 n +0000030292 00000 n +0000030502 00000 n +0000030712 00000 n +0000030922 00000 n +0000031132 00000 n +0000031342 00000 n +0000031552 00000 n +0000031762 00000 n +0000031972 00000 n +0000032182 00000 n +0000032392 00000 n +0000032602 00000 n +0000032812 00000 n +0000033022 00000 n +0000033232 00000 n +0000033442 00000 n +0000033652 00000 n +0000033862 00000 n +0000034072 00000 n +0000034282 00000 n +0000034492 00000 n +0000034702 00000 n +0000034912 00000 n +0000035122 00000 n +0000035332 00000 n +0000035542 00000 n +0000035752 00000 n +0000035962 00000 n +0000036172 00000 n +0000036382 00000 n +0000036592 00000 n +0000036802 00000 n +0000037012 00000 n +0000037222 00000 n +0000037432 00000 n +0000037642 00000 n +0000037852 00000 n +0000038062 00000 n +0000038272 00000 n +0000038482 00000 n 0000038692 00000 n -0000038893 00000 n -0000039094 00000 n -0000039295 00000 n -0000039496 00000 n -0000039697 00000 n -0000039898 00000 n -0000040099 00000 n -0000040300 00000 n -0000040501 00000 n -0000040702 00000 n -0000040903 00000 n -0000041104 00000 n -0000041305 00000 n -0000041506 00000 n -0000041707 00000 n -0000041908 00000 n -0000042109 00000 n -0000042310 00000 n -0000042512 00000 n -0000042714 00000 n -0000042916 00000 n -0000043118 00000 n -0000043320 00000 n +0000038902 00000 n +0000039112 00000 n +0000039322 00000 n +0000039532 00000 n +0000039742 00000 n +0000039952 00000 n +0000040162 00000 n +0000040372 00000 n +0000040582 00000 n +0000040792 00000 n +0000041002 00000 n +0000041212 00000 n +0000041422 00000 n +0000041632 00000 n +0000041842 00000 n +0000042052 00000 n +0000042262 00000 n +0000042472 00000 n +0000042682 00000 n +0000042892 00000 n +0000043102 00000 n +0000043312 00000 n 0000043522 00000 n -0000043724 00000 n -0000043926 00000 n -0000044128 00000 n -0000044330 00000 n -0000044532 00000 n -0000044734 00000 n -0000044936 00000 n -0000045138 00000 n -0000045340 00000 n -0000045542 00000 n -0000045744 00000 n -0000045946 00000 n -0000046148 00000 n -0000046350 00000 n -0000046552 00000 n -0000046754 00000 n -0000046956 00000 n -0000047158 00000 n -0000047360 00000 n -0000047562 00000 n -0000047764 00000 n -0000047966 00000 n -0000048168 00000 n -0000048370 00000 n -0000048572 00000 n -0000048774 00000 n -0000048976 00000 n -0000049178 00000 n -0000049380 00000 n -0000049582 00000 n -0000049784 00000 n -0000049986 00000 n -0000050188 00000 n -0000050390 00000 n -0000050592 00000 n -0000050794 00000 n -0000050996 00000 n -0000051198 00000 n -0000051400 00000 n -0000051602 00000 n -0000051804 00000 n -0000052006 00000 n -0000052208 00000 n -0000052410 00000 n -0000052612 00000 n -0000052814 00000 n -0000053016 00000 n -0000053218 00000 n -0000053420 00000 n -0000053622 00000 n -0000053824 00000 n -0000054026 00000 n -0000054228 00000 n -0000054430 00000 n -0000121899 00000 n -0000054632 00000 n -0000054890 00000 n -0000055950 00000 n -0000063658 00000 n -0000063547 00000 n -0000056163 00000 n -0000119266 00000 n -0000116815 00000 n -0000119107 00000 n -0000122082 00000 n -0000116204 00000 n -0000113017 00000 n -0000116043 00000 n -0000068718 00000 n -0000066186 00000 n -0000066075 00000 n -0000063790 00000 n -0000077388 00000 n -0000068606 00000 n -0000066279 00000 n -0000175790 00000 n -0000074277 00000 n -0000074333 00000 n -0000074413 00000 n -0000077314 00000 n -0000074612 00000 n -0000074774 00000 n -0000075953 00000 n -0000075975 00000 n -0000076233 00000 n -0000077293 00000 n -0000082979 00000 n -0000080057 00000 n -0000079945 00000 n -0000077509 00000 n -0000098763 00000 n -0000082867 00000 n -0000080139 00000 n -0000085901 00000 n -0000085957 00000 n -0000086037 00000 n -0000087220 00000 n -0000088399 00000 n -0000089582 00000 n -0000089604 00000 n -0000089904 00000 n -0000090166 00000 n -0000090430 00000 n -0000094529 00000 n -0000096753 00000 n -0000098697 00000 n -0000098719 00000 n -0000098741 00000 n -0000101349 00000 n -0000105752 00000 n -0000103214 00000 n -0000101237 00000 n -0000098884 00000 n -0000103056 00000 n -0000103112 00000 n -0000103192 00000 n -0000111888 00000 n -0000105640 00000 n -0000103324 00000 n -0000107095 00000 n -0000107151 00000 n -0000107231 00000 n -0000108410 00000 n -0000108432 00000 n -0000108716 00000 n -0000111866 00000 n -0000112935 00000 n -0000112823 00000 n -0000111998 00000 n -0000116614 00000 n -0000116434 00000 n -0000119483 00000 n -0000119459 00000 n -0000122301 00000 n -0000122277 00000 n -0000125344 00000 n -0000125246 00000 n -0000125447 00000 n -0000132447 00000 n -0000145373 00000 n -0000145005 00000 n -0000158246 00000 n -0000175283 00000 n -0000175907 00000 n -0000175976 00000 n -0000176086 00000 n +0000043732 00000 n +0000043942 00000 n +0000044152 00000 n +0000044362 00000 n +0000044572 00000 n +0000044782 00000 n +0000044992 00000 n +0000045203 00000 n +0000045414 00000 n +0000045625 00000 n +0000045836 00000 n +0000046047 00000 n +0000046258 00000 n +0000046469 00000 n +0000046680 00000 n +0000046891 00000 n +0000047102 00000 n +0000047313 00000 n +0000047524 00000 n +0000047735 00000 n +0000047946 00000 n +0000048157 00000 n +0000048368 00000 n +0000048579 00000 n +0000048790 00000 n +0000049001 00000 n +0000049212 00000 n +0000049423 00000 n +0000049634 00000 n +0000049845 00000 n +0000050056 00000 n +0000050267 00000 n +0000050478 00000 n +0000050689 00000 n +0000050900 00000 n +0000051111 00000 n +0000051322 00000 n +0000051533 00000 n +0000051744 00000 n +0000051955 00000 n +0000052166 00000 n +0000052377 00000 n +0000052588 00000 n +0000052799 00000 n +0000053010 00000 n +0000053221 00000 n +0000053432 00000 n +0000053643 00000 n +0000053854 00000 n +0000054065 00000 n +0000054276 00000 n +0000054487 00000 n +0000054698 00000 n +0000054909 00000 n +0000055120 00000 n +0000055331 00000 n +0000055542 00000 n +0000055723 00000 n +0000055989 00000 n +0000056237 00000 n +0000056509 00000 n +0000056766 00000 n +0000063200 00000 n +0000063089 00000 n +0000057127 00000 n +0000111266 00000 n +0000109127 00000 n +0000111105 00000 n +0000067636 00000 n +0000065356 00000 n +0000065245 00000 n +0000063329 00000 n +0000076151 00000 n +0000067524 00000 n +0000065437 00000 n +0000116569 00000 n +0000073114 00000 n +0000073194 00000 n +0000073459 00000 n +0000073481 00000 n +0000074708 00000 n +0000074889 00000 n +0000075155 00000 n +0000075403 00000 n +0000075675 00000 n +0000075932 00000 n +0000081606 00000 n +0000078832 00000 n +0000078720 00000 n +0000076271 00000 n +0000105142 00000 n +0000081494 00000 n +0000078913 00000 n +0000084517 00000 n +0000084597 00000 n +0000086424 00000 n +0000086446 00000 n +0000087673 00000 n +0000087908 00000 n +0000088202 00000 n +0000088419 00000 n +0000088647 00000 n +0000088895 00000 n +0000089156 00000 n +0000089372 00000 n +0000089605 00000 n +0000089882 00000 n +0000090126 00000 n +0000090350 00000 n +0000090596 00000 n +0000090875 00000 n +0000091099 00000 n +0000091347 00000 n +0000091566 00000 n +0000091803 00000 n +0000092013 00000 n +0000092247 00000 n +0000092488 00000 n +0000092707 00000 n +0000092912 00000 n +0000093118 00000 n +0000093339 00000 n +0000093563 00000 n +0000093784 00000 n +0000093997 00000 n +0000094206 00000 n +0000094419 00000 n +0000094629 00000 n +0000094866 00000 n +0000095062 00000 n +0000095282 00000 n +0000095498 00000 n +0000095701 00000 n +0000095911 00000 n +0000096117 00000 n +0000096337 00000 n +0000096536 00000 n +0000096751 00000 n +0000096964 00000 n +0000097165 00000 n +0000097378 00000 n +0000097610 00000 n +0000097932 00000 n +0000098179 00000 n +0000098469 00000 n +0000098771 00000 n +0000099139 00000 n +0000099471 00000 n +0000099796 00000 n +0000100043 00000 n +0000100427 00000 n +0000100701 00000 n +0000100996 00000 n +0000101268 00000 n +0000101555 00000 n +0000101920 00000 n +0000101987 00000 n +0000102054 00000 n +0000102121 00000 n +0000102188 00000 n +0000102255 00000 n +0000102322 00000 n +0000102389 00000 n +0000102456 00000 n +0000102523 00000 n +0000102590 00000 n +0000102657 00000 n +0000102724 00000 n +0000102791 00000 n +0000102858 00000 n +0000102925 00000 n +0000102992 00000 n +0000103059 00000 n +0000103126 00000 n +0000103193 00000 n +0000103260 00000 n +0000103327 00000 n +0000103394 00000 n +0000103461 00000 n +0000103528 00000 n +0000103595 00000 n +0000103662 00000 n +0000103729 00000 n +0000103796 00000 n +0000103863 00000 n +0000103930 00000 n +0000103997 00000 n +0000104064 00000 n +0000104131 00000 n +0000104198 00000 n +0000104265 00000 n +0000104332 00000 n +0000104399 00000 n +0000104466 00000 n +0000104533 00000 n +0000104600 00000 n +0000104667 00000 n +0000104734 00000 n +0000104802 00000 n +0000104870 00000 n +0000104938 00000 n +0000105006 00000 n +0000105074 00000 n +0000107284 00000 n +0000109018 00000 n +0000107172 00000 n +0000105262 00000 n +0000108916 00000 n +0000108996 00000 n +0000111495 00000 n +0000111471 00000 n +0000114198 00000 n +0000114170 00000 n +0000114311 00000 n +0000116670 00000 n +0000116739 00000 n +0000116792 00000 n trailer << -/Size 253 -/Root 251 0 R -/Info 252 0 R +/Size 311 +/Root 309 0 R +/Info 310 0 R >> startxref -176182 +116881 %%EOF diff --git a/Master/texmf-dist/doc/latex/pdftricks/test.tex b/Master/texmf-dist/doc/latex/pdftricks/test.tex index 06083b49313..9ac4ef0b08b 100644 --- a/Master/texmf-dist/doc/latex/pdftricks/test.tex +++ b/Master/texmf-dist/doc/latex/pdftricks/test.tex @@ -1,10 +1,8 @@ \documentclass{ltxguide} -\usepackage{txfonts,url} -\usepackage[shell,debug]% - {pdftricks} +\usepackage{times,url} +\usepackage[shell]{pdftricks} \begin{psinputs} -\usepackage{txfonts} \usepackage{pstricks} \usepackage{color} \usepackage{pstcol} @@ -17,12 +15,12 @@ \end{psinputs} % 1. run pdfLaTeX -% 2. run script `pst2pdf' by invoking ./pst2pdf +% 2. run script `psrun' by invoking ./psrun % 3. second run of pdfLaTeX \begin{document} -%\NoProcess[1-6] +\NoProcess[1,3] \title{Trivial Experiments with psTricks manipulation} @@ -41,20 +39,19 @@ \maketitle \section{Objectives} - |psTricks| macros cannot be used with pdf\TeX, since the high level -PostScript language commands generated by the |psTricks| are unknown -to pdf\TeX. As such, a package \emph{viz.}, |pdfTricks.sty| has been -written to circumvent this limitation, so that the extensive -facilities offered by the powerful |psTricks| package can be made use -of in a pdf\TeX{} document. This is brought by making use of the shell -escape function available in the |web2c| \TeX{} compiler, while this -package is of no use to other commercial implementations. - -Shell escape provides us the facility of stopping a \TeX{} run midway, -perform the functions that we do with a shell command, complete those -functions, return to the \TeX{} run and finish the job. Within a -package, this facility can be invoked by using +PostScript language commands generated by the |psTricks| are unknown to +pdf\TeX. As such, a package \emph{viz.}, |pdfTricks.sty| has been +written to circumvent this limitation, so that the extensive facilities +offered by the powerful |psTricks| package can be made use of in a +pdf\TeX{} document. This is brought by making use of the shell escape +function available in the |web2c| \TeX{} compiler, while this package +is of no use to other commercial implementations. + +Shell escape provides us the facility of stopping a \TeX{} run +midway, perform the functions that we do with a shell command, complete +those functions, return to the \TeX{} run and finish the job. Within a +package, this facility can be invoked by using |\write18{shell command}|. So if you use a line: \begin{decl} |write18 ls -l| @@ -72,20 +69,19 @@ default. You can either turn it on by changing the line in your |shell_escape = t| \end{decl} which will be `|f|' by default. You have to recreate all the formats -like |pdflatex.fmt| or whatever you might need. This is not a wise -step though, since it makes you open to the assault of Trojan macros -without your knowledge. +like |pdflatex.fmt| or whatever you might need. This is not a wise step +though, since it makes you open to the assault of Trojan macros without +your knowledge. -The more elegant way will be to invoke shell escape with a switch, -each time you run the compiler like: +The more elegant way will be to invoke shell escape with a switch, each +time you run the compiler like: \begin{decl} |pdflatex -shell-escape | \end{decl} This eliminates the vulnerability to macros/packages written by -intelligent criminal minds. +intelligent criminal minds. \section{Usage} - The usage is very simple, as usual you have to load the package with a package loading line in the preamble of your document: @@ -93,10 +89,11 @@ package loading line in the preamble of your document: |\usepackage{pdftricks}| \end{decl} -All the packages that are needed for the compilation of the |pstricks| -code shall be enclosed within an environment |\begin{psinputs}| \dots - |\end{psinputs}| in order to make it available to all the figure -documents during compilation. An example of this will look like +All the packages that are needed for the compilation of the +|pstricks| code shall be enclosed within an environment +|\begin{psinputs}| \dots |\end{psinputs}| in order to make it +available to all the figure documents during compilation. An +example of this will look like \begin{decl} |\begin{psinputs}|\\ | \usepackage{pstricks}|\\ @@ -113,39 +110,43 @@ documents during compilation. An example of this will look like \end{decl} Each |pspicture| environment along with any macro code shall be -enclosed within an environment \emph{viz.}, |pdfpic|. This will enable -pdf\LaTeX{} to write external files like |fig1.tex|, |fig2.tex|, -\dots, depending on the number of |psTricks| figures you have included -in your document. |pdftricks| will intelligently find out whether your -pdf\TeX{} implementation has shell escape facility enabled or not. -Depending on this, there are two ways of approaching the problem which -are given in the succeeding sections. +enclosed within an environment \emph{viz.}, |pdfpic|. This will +enable pdf\LaTeX{} to write external files like |fig1.tex|, +|fig2.tex|, \dots, depending on the number of |psTricks| figures +you have included in your document. |pdftricks| will +intelligently find out whether your pdf\TeX{} implementation has +shell escape facility enabled or not. Depending on this, there +are two ways of approaching the problem which are given in the +succeeding sections. \subsection{With shell escape} -With shell escape option invoked, one need not bother anything. The -usual compilation with pdf\LaTeX{} will result in a |pdf| document -with all the figures appearing in the correct positions. pdf\TeX{} -will do the necessary job of writing all the |pstricks| code to self -standing external |*.tex| documents, escapes to shell, compiles the -|*.tex| document, converts to |*.eps|, translates to |*.pdf| and -includes in the location where the |pstricks| code appeared. +With shell escape option invoked, one need not bother anything. +The usual compilation with pdf\LaTeX{} will result in a |pdf| +document with all the figures appearing in the correct +positions. pdf\TeX{} will do the necessary job of writing all +the |pstricks| code to self standing external |*.tex| documents, +escapes to shell, compiles the |*.tex| document, converts to +|*.eps|, translates to |*.pdf| and includes in the location +where the |pstricks| code appeared. \subsection{Without shell escape} -A special shell script viz., |pst2pdf| is also provided. Now as the -second step, you have to execute this shell script, |pst2pdf| which -will compile all the newly written |fig1.tex|,\dots, and respective -|*.dvi| will be generated, which will be translated into respective -|*.eps| files and finally translated to |*.pdf| by calling |epstopdf|. -As a final step, you shall run pdf\LaTeX{} again, so that the |*.pdf| -figures will be included with the usual |\includegraphics| command -automatically in the locations wherever the |pstricks| code appeared. +A special shell script viz., |pst2pdf| is also provided. Now as +the second step, you have to execute this shell script, +|pst2pdf| which will compile all the newly written +|fig1.tex|,\dots, and respective |*.dvi| will be generated, +which will be translated into respective |*.eps| files and +finally translated to |*.pdf| by calling |epstopdf|. As a final +step, you shall run pdf\LaTeX{} again, so that the |*.pdf| +figures will be included with the usual |\includegraphics| +command automatically in the locations wherever the |pstricks| +code appeared. See an example below: \begin{verbatim} -\begin{pdfdisplay} +\begin{pdfpic} \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} \definecolor{LemonChiffon}{rgb}{1,0.98,0.8} @@ -168,14 +169,12 @@ See an example below: \psline(! x ValueTempA sub y ValueTempB sub) (! x ValueTempA add y ValueTempB add)}} \end{pspicture} -\end{pdfdisplay} +\end{pdfpic} \end{verbatim} - This |psTricks| code will result in the following graphic: -\configure[pdfgraphic][color=red,rulesep=12pt, - linecolor=gray30, - linewidth=2pt] -\begin{pdfdisplay} +\configure[pdfgraphic][color=red, + linecolor=gray30] +\begin{pdfpic} \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} \definecolor{LemonChiffon}{rgb}{1,0.98,0.8} @@ -198,7 +197,7 @@ This |psTricks| code will result in the following graphic: atan rotate -9 0 moveto 18 0 rlineto stroke } \fi}} \endpspicture -\end{pdfdisplay} +\end{pdfpic} The following are the steps in the sequential order: \begin{decl} @@ -210,24 +209,26 @@ The following are the steps in the sequential order: \section{Options and Hooks} \begin{description} - -\item[|shell|] This option will invoke the shell escape functions. -\item[|noshell|] This option will suppress the shell escape functions - and will assume that there is no shell escape facility. +\item[|shell|] This option will invoke the shell escape +functions. + +\item[|noshell|] This option will suppress the shell escape +functions and will assume that there is no shell escape +facility. -\item[|NoProcess|] A new command |\NoProcess| has been introduced in - this version to facilitate the suppressing of pdf generation of - those figures whose pdf's are already available. This might prove - helpful when you have more figures to process and many of them are - perfected and don't need recompilation and translation everytime you - run pdf\LaTeX. The usage is: +\item[|NoProcess|] A new command |\NoProcess| has been introduced in this version +to facilitate the suppressing of pdf generation of those figures +whose pdf's are already available. This might prove helpful when +you have more figures to process and many of them are perfected +and don't need recompilation and translation everytime you run +pdf\LaTeX. The usage is: \begin{decl} |\NoProcess{}| \end{decl} -If you have ten figures and if you want to suppress the processing of -the figure numbers 1, 2, 4 to 8 you can issue the command at the top -of the document as: +If you have ten figures and if you want to suppress the +processing of the figure numbers 1, 2, 4 to 8 you can issue the +command at the top of the document as: \begin{decl} |\NoProcess{1,2,4-8}| \end{decl} @@ -240,32 +241,30 @@ included. |\configure[pdfgraphic][height=3in]|\\ |\configure[pdfgraphic][width=2in,height=3in]| \end{decl} -the functionality is same as the |width| and |height| options as in -the |\includegraphics| command. But the graphic will be restricted to +the functionality is same as the |width| and |height| options as in the +|\includegraphics| command. But the graphic will be restricted to aspect ratio. \section{Limitations/Dependencies} - \begin{itemize} \item Usage is limited to |web2c| \TeX{} implementations. \item The shell escape commands used in this package are typical - \textsc{Unix} commands and as such it best works in - \textsc{Linux/Unix} flavours. +\textsc{Unix} commands and as such it best works in \textsc{Linux/Unix} +flavours. \item The package needs, |graphicx| and |keyval| packages; |epstopdf|, - the Perl script that translates |eps| files into |pdf|. +the Perl script that translates |eps| files into |pdf|. \end{itemize} \section{Licence} The package is distributed under \textsc{gnu} General Public Licence. \section{Examples} - Here are some examples of pstricks code and the figures generated by pdf\LaTeX. \subsection{Example 1} \begin{verbatim} \configure[pdfgraphic][width=2in,linecolor=red,background=gray10] -\begin{pdfdisplay} +\begin{pdfpic} \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} \definecolor{LemonChiffon}{rgb}{1,0.98,0.8} @@ -288,12 +287,10 @@ pdf\LaTeX. \psline(! x ValueTempA sub y ValueTempB sub) (! x ValueTempA add y ValueTempB add)}} \end{pspicture} -\end{pdfdisplay} +\end{pdfpic} \end{verbatim} -\configure[pdfgraphic][width=.9\linewidth,linecolor=red, - rulesep=12pt,background=gray10, - linewidth=2pt] -\begin{pdfdisplay} +\configure[pdfgraphic][width=\linewidth,linecolor=red,background=gray10] +\begin{pdfpic} \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} \definecolor{LemonChiffon}{rgb}{1,0.98,0.8} @@ -316,12 +313,12 @@ pdf\LaTeX. \psline(! x ValueTempA sub y ValueTempB sub) (! x ValueTempA add y ValueTempB add)}} \end{pspicture} -\end{pdfdisplay} +\end{pdfpic} \subsection{Example 2} \begin{verbatim} \configure[pdfgraphic][linecolor=blue,background=gray10,width=4in] -\begin{pdfdisplay} +\begin{pdfpic} \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} \definecolor{LemonChiffon}{rgb}{1,0.98,0.8} @@ -363,12 +360,10 @@ pdf\LaTeX. \textcolor{white}{List}} Motif Class} \end{pspicture} \endTeXtoEPS -\end{pdfdisplay} +\end{pdfpic} \end{verbatim} -\configure[pdfgraphic][linecolor=blue, - linewidth=2pt, rulesep=6pt, - background=gray10,scale=.8] -\begin{pdfdisplay} +\configure[pdfgraphic][linecolor=blue,background=gray10,scale=.8] +\begin{pdfpic} \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} \definecolor{LemonChiffon}{rgb}{1,0.98,0.8} @@ -410,12 +405,12 @@ pdf\LaTeX. \textcolor{white}{List}} Motif Class} \end{pspicture} \endTeXtoEPS -\end{pdfdisplay} +\end{pdfpic} \subsection{Example 3} \begin{verbatim} \configure[pdfgraphic][linecolor=black,background=gray30] -\begin{pdfdisplay} +\begin{pdfpic} \TeXtoEPS \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} @@ -449,15 +444,13 @@ pdf\LaTeX. \nbput[nrot=25,npos=.7]{\bunting} \end{pspicture} \endTeXtoEPS -\end{pdfdisplay} +\end{pdfpic} \end{verbatim} \configure[pdfgraphic][width=\linewidth, - linewidth=2pt, linecolor=gray30, - background=gray10, - rulesep=6pt] -\begin{pdfdisplay} + background=gray10] +\begin{pdfpic} \TeXtoEPS \definecolor{lightblue}{rgb}{0,0,.5} \definecolor{Navy}{rgb}{0,0,0.5} @@ -491,66 +484,7 @@ pdf\LaTeX. \nbput[nrot=25,npos=.7]{\bunting} \end{pspicture} \endTeXtoEPS -\end{pdfdisplay} - -\configure[pdfgraphic][width=\linewidth, - linewidth=2pt, - linecolor=gray30, - background=gray10, - rulesep=12pt] - -\begin{pdfdisplay} - -\definecolor{Pink}{rgb}{1.,0.75,0.8} -% Flow diagram with the psmatrix environment\\[5mm] - - \psframebox[linearc=5mm,cornersize=absolute]{% - \begin{psmatrix}[rowsep=0.5cm,colsep=0.8cm] - \psovalbox[fillstyle=solid,fillcolor=yellow]{Begin} \\ - \psframebox{Initialisations} \\ - \psdiabox[fillstyle=solid,fillcolor=Pink]{Special} & - \psframebox{Call to SP1} & \psframebox{Call to SP2} \\ - \psframebox{Action 1} \\ - \psframebox{Action 2} \\ - \psovalbox[fillstyle=solid,fillcolor=yellow]{End} - % Links - \ncline{1,1}{2,1} - \ncline{2,1}{3,1} - \ncline{3,1}{4,1}<{\textcolor{red}{No}} - \ncline{4,1}{5,1} - \ncline{5,1}{6,1} - \ncline{->}{3,1}{3,2}^{\textcolor{red}{Yes}} - \ncline{->}{3,2}{3,3} - \ncbar[angleA=-90,armB=0,nodesepB=2.5mm]{->}{3,3}{4,1} - \end{psmatrix}} -\end{pdfdisplay} +\end{pdfpic} -\begin{verbatim} -\begin{pdfdisplay} - -\definecolor{Pink}{rgb}{1.,0.75,0.8} -% Flow diagram with the psmatrix environment\\[5mm] - - \psframebox[linearc=5mm,cornersize=absolute]{% - \begin{psmatrix}[rowsep=0.5cm,colsep=0.8cm] - \psovalbox[fillstyle=solid,fillcolor=yellow]{Begin} \\ - \psframebox{Initialisations} \\ - \psdiabox[fillstyle=solid,fillcolor=Pink]{Special} & - \psframebox{Call to SP1} & \psframebox{Call to SP2} \\ - \psframebox{Action 1} \\ - \psframebox{Action 2} \\ - \psovalbox[fillstyle=solid,fillcolor=yellow]{End} - % Links - \ncline{1,1}{2,1} - \ncline{2,1}{3,1} - \ncline{3,1}{4,1}<{\textcolor{red}{No}} - \ncline{4,1}{5,1} - \ncline{5,1}{6,1} - \ncline{->}{3,1}{3,2}^{\textcolor{red}{Yes}} - \ncline{->}{3,2}{3,3} - \ncbar[angleA=-90,armB=0,nodesepB=2.5mm]{->}{3,3}{4,1} - \end{psmatrix}} -\end{pdfdisplay} -\end{verbatim} \end{document} diff --git a/Master/texmf-dist/doc/latex/pdftricks/tmp.inputs b/Master/texmf-dist/doc/latex/pdftricks/tmp.inputs deleted file mode 100644 index 604cb4f7a63..00000000000 --- a/Master/texmf-dist/doc/latex/pdftricks/tmp.inputs +++ /dev/null @@ -1,9 +0,0 @@ -\usepackage{pstricks} -\usepackage{color} -\usepackage{pstcol} -\usepackage{pst-plot} -\usepackage{pst-tree} -\usepackage{pst-eps} -\usepackage{multido} -\usepackage{pst-node} -\usepackage{pst-eps} diff --git a/Master/texmf-dist/source/latex/pdftricks/pst2pdf b/Master/texmf-dist/source/latex/pdftricks/pst2pdf deleted file mode 100644 index e58bfe7af61..00000000000 --- a/Master/texmf-dist/source/latex/pdftricks/pst2pdf +++ /dev/null @@ -1,22 +0,0 @@ -#! /bin/bash -# pst2pdf -# PSTricks 2 PDF converter : -# Usage: "pst2pdf" produces PDF files for all files of the form *-fig*.tex -# "pst2pdf " only considers FILE-fig.tex -# It removes intermediary files at the end. - -FILE=$1 -if test -z $FILE; then - FIGURES=`ls *-fig*.tex`; -else - FIGURES=`ls -- $FILE-fig*.tex`; -fi - -for f in $FIGURES ; do - fig=`basename $f .tex` - latex $fig - dvips -Ppdf -E -o $fig.eps $fig - epstopdf $fig.eps - rm $fig.eps $fig.dvi $fig.log $fig.aux -done - diff --git a/Master/texmf-dist/tex/latex/pdftricks/pdftricks.sty b/Master/texmf-dist/tex/latex/pdftricks/pdftricks.sty index e01bb9e9da8..61387eced2d 100644 --- a/Master/texmf-dist/tex/latex/pdftricks/pdftricks.sty +++ b/Master/texmf-dist/tex/latex/pdftricks/pdftricks.sty @@ -1,14 +1,14 @@ % % pdftricks.sty % -% Copyright (c) 2001-3, Radhakrishnan CV -% Rajagopal CV -% http://www.river-valley.com +% Copyright (c) 2001, Radhakrishnan CV +% Rajagopal CV +% http://www.river-valley.com % -% River Valley Technologies, Floor III, SJP Buildings, Cotton Hills -% Trivandrum, India 695014 +% River Valley Technologies, Software Technology Park, +% Trivandrum, India 695034 % -% Tel: +91 471 233 7501 +% Tel: +91 471 33 7501/7502 % % Antoine Chambert-Loir % @@ -32,16 +32,15 @@ % Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, % MA 02111-1307, USA. % -% $Id: pdftricks.sty,v 1.16 2003/08/10 04:29:20 cvr Exp cvr $ +% $Id: pdftricks.sty,v 1.15 2001/09/30 11:21:23 cvr Exp $ % - \NeedsTeXFormat{LaTeX2e} \def\Fileversion$#1: #2 ${\gdef\fileversion{#2}} \def\Filedate$#1: #2 #3 ${\gdef\filedate{#2}} -\Fileversion$Revision: 1.16 $ -\Filedate$Date: 2003/08/10 04:29:20 $ +\Fileversion$Revision: 1.15 $ +\Filedate$Date: 2001/09/30 11:21:23 $ \ProvidesPackage{pdftricks} - [\filedate\space\fileversion\space psTricks support in PDF (CVR/ACL)] + [\filedate\space\fileversion\space psTricks support in PDF (CVRACL)] \PackageWarningNoLine{pdftricks} {****************************************\MessageBreak Package pdftricks v,\fileversion\space loaded\MessageBreak @@ -49,30 +48,20 @@ ****************************************} \RequirePackage{graphicx,color} \newif\if@debug\@debugfalse -\newif\ifPDFTshell -\newif\ifPDFTnopdf -\newif\ifnoprocess \noprocessfalse -\newif\ifmiktex \miktexfalse \DeclareOption{debug}{\@debugtrue} \DeclareOption{noshell}{\PDFTshellfalse} \DeclareOption{shell}{\PDFTshelltrue} -\DeclareOption{miktex}{\global\miktextrue} +\newif\ifPDFTshell +\newif\ifPDFTnopdf +\newif\ifnoprocess \noprocessfalse \ExecuteOptions{shell} \ProcessOptions\relax \ifPDFTshell % we must set it to false if \write18 doesn't work. % Hack given by Thierry Bouche (Thanks !) \def\tmpfile{/tmp/w18-test-\the\year\the\month\the\day\the\time} -\ifmiktex% - \immediate\write18{rem >"\tmpfile"}%%%%%% LDL-2 -\else - \immediate\write18{touch \tmpfile} %%%%%% LDL-1 -\fi -\ifmiktex - \IfFileExists{\tmpfile.}{\PDFTshelltrue}{\PDFTshellfalse} %%%%%% LDL-4 -\else - \IfFileExists{\tmpfile}{\PDFTshelltrue}{\PDFTshellfalse} %%%%%% LDL-3 -\fi +\immediate\write18{touch \tmpfile} +\IfFileExists{\tmpfile}{\PDFTshelltrue}{\PDFTshellfalse} \fi \ifPDFTshell \PackageWarningNoLine{pdftricks} @@ -88,125 +77,112 @@ ****************************************} \fi -% warning! the definition of FIGURES if pst2pdf must be set accordingly !! +% warning! the definition of FIGURES if psrun must be set accordingly !! \def\PDFTfigname{\jobname-fig\thepsfig} \def\PDFTWarning#1#2{\if@debug\PackageWarning{#1}{#2}\fi} \def\PDFTWarningNoLine#1#2{\if@debug\PackageWarningNoLine{#1}{#2}\fi} +\def\makeinnocent#1{\catcode`#1=12 } +\def\csarg#1#2{\expandafter#1\csname#2\endcsname} +\def\latexname{lplain}\def\latexename{LaTeX2e} +\newwrite\PDFStream +\long\def\ProcessStream#1% start it all of + {\begingroup% + \def\CurrentStream{#1}% + \let\do\makeinnocent \dospecials + \makeinnocent\^^L% and whatever other special cases + \endlinechar`\^^M \catcode`\^^M=12 \xStream} +{\catcode`\^^M=12 \endlinechar=-1 % + \gdef\xStream#1^^M{% + \expandafter\ProcessStreamLine} + \gdef\ProcessStreamLine#1^^M{\def\test{#1} + \csarg\ifx{End\CurrentStream Test}\test + \edef\next{\noexpand\EndOfStream{\CurrentStream}}% + \else \ThisStream{#1}\let\next\ProcessStreamLine + \fi \next} +} +\long\def\streaminfo{\string\end{document}} +\def\CSstringmeaning#1{\expandafter\CSgobblearrow\meaning#1} +\def\CSstringcsnoescape#1{\expandafter\CSgobbleescape\string#1} +{\escapechar-1 +\expandafter\expandafter\expandafter\gdef + \expandafter\expandafter\expandafter\CSgobblearrow + \expandafter\string\csname macro:->\endcsname{} +} +\def\CSgobbleescape#1{\ifnum`\\=`#1 \else #1\fi} +\def\WriteStreamLine#1{\def\CStmp{#1}% + \immediate\write\PDFStream{\CSstringmeaning\CStmp}} + +\def\AfterIncludedStream + {\immediate\closeout\PDFStream %changed on 2001/1/20 + \relax + }% +\def\BeforeIncludedStream + {\stepcounter{psfig}\xdef\PDFCutFile{\PDFTfigname.tex}% + \message{Opening PDFStream=\PDFCutFile}% + \immediate\openout\PDFStream=\PDFCutFile + \immediate\write\PDFStream{\string\documentclass{article}} + \immediate\write\PDFStream{\string\input\space tmp.inputs} + \immediate\write\PDFStream{\string\pagestyle{empty}} + \immediate\write\PDFStream{\string\usepackage{amssymb,amsbsy}} + \immediate\write\PDFStream{\string\begin{document}} + \let\ThisStream\WriteStreamLine} +\long\def\specialstream #1#2#3{% + \message{Special stream '#1'}% + \csarg\def{After#1Stream}{#2\AfterIncludedStream#3}% + \csarg\def{#1}{\BeforeIncludedStream\relax + \ProcessStream{#1}}% + \PDFEndDef{#1}} +\def\EndOfStream#1{\endgroup\end{#1}% + \csname After#1Stream\endcsname} +\def\PDFEndDef#1{{\escapechar=-1\relax + \csarg\xdef{End#1Test}{\string\\end\string\{#1\string\}}% + }} %% %% The real meat of psfile manipulation starts here. %% %% -\RequirePackage{moreverb} -\def\pdfverbatimwrite#1{% - \@bsphack - \immediate\openout \verbatim@out #1 - \BeforeStream% - \let\do\@makeother\dospecials - \catcode`\^^M\active \catcode`\^^I=12 - \def\verbatim@processline{% - \immediate\write\verbatim@out - {\the\verbatim@line}}% - \verbatim@start} -\def\endpdfverbatimwrite{% - \immediate\write\verbatim@out{\string\end{document}} - \immediate\closeout\verbatim@out - \@esphack} - -\def\BeforeStream - {\message{Opening PDFStream=\PDFTfigname.tex}% - \immediate\write\verbatim@out{\string\documentclass{article}} - \immediate\write\verbatim@out{\string\input\space tmp.inputs} - \immediate\write\verbatim@out{\string\pagestyle{empty}} - \immediate\write\verbatim@out{\string\begin{document}} - } -\newenvironment{pdfdisplay}{\stepcounter{psfig}% - \xdef\PDFCutFile{\PDFTfigname.tex} - \pdfverbatimwrite{\PDFCutFile}} - {\endpdfverbatimwrite% - \psgraphicsinclude% - \global\noprocessfalse\noindent} -\newenvironment{pdfpic}{\stepcounter{psfig}% - \xdef\PDFCutFile{\PDFTfigname.tex} - \pdfverbatimwrite{\PDFCutFile}} - {\endpdfverbatimwrite% - \psgraphicsinclude% - \global\noprocessfalse\noindent} -\newenvironment{pdfinline}{\stepcounter{psfig}% - \xdef\PDFCutFile{\PDFTfigname.tex} - \pdfverbatimwrite{\PDFCutFile}} - {\endpdfverbatimwrite% - \psinlinegraphicsinclude% - \global\noprocessfalse\noindent} \AtEndDocument{\endPShook% - \ifPDFTnopdf + \ifPDFTnopdf \PackageWarningNoLine{pdftricks} {******************************************\MessageBreak Some PDF files of images were not found.\MessageBreak Run the script `pst2pdf' before the next\MessageBreak run of pdfLaTeX\MessageBreak ******************************************} - \fi + \fi } \gdef\endPShook{} \def\noprocess{\global\noprocesstrue \PackageWarning{pdftricks} {******************************************\MessageBreak - Figure Number: \PDFTfigname\space is not processed \MessageBreak + Figure Number: \PDFTfigname\space is not processed \MessageBreak ******************************************\MessageBreak} } - +\specialstream{pdfpic}{% + \immediate\write\PDFStream{\streaminfo}} + {\psgraphicsinclude\global\noprocessfalse} \newcounter{psfig} \newif\if@pdfGINwidth \newif\if@pdfGINheight \newif\if@pdfGINscale -\long\gdef\psgraphicsProcess{% +\long\gdef\psgraphicsinclude{% \@ifundefined{Fig\thepsfig} - {\PDFTWarningNoLine{pdftricks} - {******************************************\MessageBreak - ************ Processing Fig: \thepsfig\space**********\MessageBreak - ******************************************} - } + {\PDFTWarningNoLine{pdftricks}{************ PROCESSING FIG: \thepsfig\space **********}} {\noprocess} \ifPDFTshell\ifnoprocess\relax\else \IfFileExists{\PDFTfigname.tex}{% \immediate\write18{latex -interaction=batchmode \PDFTfigname} - \PDFTWarningNoLine{pdftricks} - {******************************************\MessageBreak - \PDFTfigname.tex converted to \PDFTfigname.dvi\MessageBreak - ******************************************} - }{} + \PDFTWarning{pdftricks3}{\PDFTfigname.tex converted to \PDFTfigname.dvi}}{} \IfFileExists{\PDFTfigname.dvi}{% - \immediate\write18{dvips -o \PDFTfigname.ps \PDFTfigname} - \PDFTWarningNoLine{pdftricks} - {******************************************\MessageBreak - \PDFTfigname.ps generated\MessageBreak - ******************************************} - }{} - \IfFileExists{\PDFTfigname.ps}{% - \immediate\write18{ps2eps -f \PDFTfigname.ps} - \PDFTWarningNoLine{pdftricks} - {******************************************\MessageBreak - \PDFTfigname.eps generated\MessageBreak - ******************************************} - }{} + \immediate\write18{dvips -E -o \PDFTfigname.eps \PDFTfigname} + \PDFTWarning{pdftricks}{EPS generated -- \PDFTfigname.eps}}{} \IfFileExists{\PDFTfigname.eps}{% \immediate\write18{epstopdf \PDFTfigname.eps} - \PDFTWarningNoLine{pdftricks} - {******************************************\MessageBreak - \PDFTfigname.eps converted to \PDFTfigname.pdf\MessageBreak - ******************************************} - }{} - \ifmiktex% - \immediate\write18{del \PDFTfigname.aux \PDFTfigname.dvi - \PDFTfigname.log \PDFTfigname.eps} %%%%%% LDL-6 - \else - \immediate\write18{rm \PDFTfigname.aux \PDFTfigname.dvi - \PDFTfigname.log \PDFTfigname.eps} %%%%%% LDL-5 + \PDFTWarning{pdftricks3}{\PDFTfigname.eps converted to \PDFTfigname.pdf}}{} + \immediate\write18{rm \PDFTfigname.aux \PDFTfigname.dvi \PDFTfigname.log \PDFTfigname.eps} \fi\fi - \fi -} -\long\gdef\psgraphicsinclude{\psgraphicsProcess% +% \fi \IfFileExists{\PDFTfigname.pdf}% {\begin{center} \bgroup\fboxsep\@PDFboxsep\fboxrule\@PDFboxrule% @@ -229,28 +205,15 @@ \gdef\@PDFboxsep{0pt} \gdef\@PDFboxrule{0pt} } - -\long\gdef\psinlinegraphicsinclude{% - \psgraphicsProcess% - \IfFileExists{\PDFTfigname.pdf}% - {\bgroup\fboxrule0pt% - \normalcolor\fbox{\includegraphics{\PDFTfigname.pdf}}% - \egroup}% - {\PDFTnopdftrue}% -} - \definecolor{gray30}{gray}{.70} \definecolor{gray10}{gray}{.90} \RequirePackage{keyval} \def\configure[#1][#2]{\setkeys{#1}{#2} - \PDFTWarning{pdftricks}{Reconfigured #1 parameter(s)\MessageBreak - #2\MessageBreak}} -\define@key{pdfgraphic}{width} {\gdef\@PDFgraphicwidth{#1}% - \global\@pdfGINwidthtrue} -\define@key{pdfgraphic}{height} {\gdef\@PDFgraphicheight{#1}% - \global\@pdfGINheighttrue} -\define@key{pdfgraphic}{scale} {\gdef\@PDFgraphicscale{#1}% - \global\@pdfGINscaletrue} + \PDFTWarning{pdftricks}{Reconfigured #1 parameter(s)\MessageBreak #2\MessageBreak} + } +\define@key{pdfgraphic}{width} {\gdef\@PDFgraphicwidth{#1}\global\@pdfGINwidthtrue} +\define@key{pdfgraphic}{height} {\gdef\@PDFgraphicheight{#1}\global\@pdfGINheighttrue} +\define@key{pdfgraphic}{scale} {\gdef\@PDFgraphicscale{#1}\global\@pdfGINscaletrue} \define@key{pdfgraphic}{color} {\gdef\@PDFgraphiccolor{#1}} \define@key{pdfgraphic}{linecolor} {\gdef\@PDFgraphiclinecolor{#1}} \define@key{pdfgraphic}{background}{\gdef\@PDFgraphicbackground{#1}} @@ -261,48 +224,55 @@ \gdef\@PDFgraphicbackground{white} \gdef\@PDFboxrule{0pt} \gdef\@PDFboxsep{0pt} - %% -%% Environment to grab all the packages used in the master doc. +%% Tweak to grab all the packages used in the master doc. %% This forces you to load pdftricks as the first package. %% -\newenvironment{psinputs}{\verbatimwrite{tmp.inputs}} - {\endverbatimwrite} - +\newenvironment{psinputs}{\begingroup + \newwrite\CVinputs + \immediate\openout\CVinputs=tmp.inputs + \def\usepackage{\@ifnextchar[\@CVUsepackage\@@CVUsepackage} + \def\@CVUsepackage[##1]##2{\immediate\write\CVinputs% + {\string\usepackage[##1]{##2}}} + \def\@@CVUsepackage##1{\immediate\write\CVinputs% + {\string\usepackage{##1}}} + } + {\endgroup\immediate\closeout\CVinputs} %% %% Arrays to keep the fig numbers %% -\@ifundefined{c@arraylength}{\newcounter{arraylength}}{}% -\@ifundefined{c@ArrayIndex}{\newcounter{ArrayIndex}}{}% -\@ifundefined{c@zeroCtr}{\newcounter{zeroCtr}}{}% -\@ifundefined{c@recordCtr}{\newcounter{recordCtr}}{} +\makeatletter +\newcounter{arraylength}% +\newcounter{ArrayIndex}% +\newcounter{zeroCtr}% +\newcounter{recordCtr} \setcounter{recordCtr}{1} -\@ifundefined{c@Ctr}{\newcounter{Ctr}}{} +\newcounter{Ctr} \def\DeclareArray#1{\Array{#1}[0]{}}% % \def\Array#1[#2]#3{% - \expandafter\gdef\csname #1#2\endcsname{#3}% - \expandafter\gdef\csname #1\endcsname[##1]{\csname #1##1\endcsname}}% + \expandafter\gdef\csname #1#2\endcsname{#3}% + \expandafter\gdef\csname #1\endcsname[##1]{\csname #1##1\endcsname}}% % \def\getArraylength#1{\setcounter{arraylength}{0}% - \loop\expandafter\ifx\csname #1\thearraylength\endcsname\relax% - \else\stepcounter{arraylength}\repeat}% + \loop\expandafter\ifx\csname #1\thearraylength\endcsname\relax% + \else\stepcounter{arraylength}\repeat}% % \def\addToArray#1#2{\setcounter{arraylength}{0}% - \loop\expandafter\ifx\csname #1\thearraylength\endcsname\relax% - \else\stepcounter{arraylength}\repeat% - \Array{#1}[\thearraylength]{#2}}% + \loop\expandafter\ifx\csname #1\thearraylength\endcsname\relax% + \else\stepcounter{arraylength}\repeat% + \Array{#1}[\thearraylength]{#2}}% % \def\clearArray#1{\getArraylength{#1}% - \loop\ifnum\c@arraylength >0% - \global\expandafter\let\csname #1\thearraylength\endcsname\relax% - \addtocounter{arraylength}{-1}\repeat}% + \loop\ifnum\c@arraylength >0% + \global\expandafter\let\csname #1\thearraylength\endcsname\relax% + \addtocounter{arraylength}{-1}\repeat}% % \long\def\ArrayIterator#1#2{% - \setcounter{ArrayIndex}{1}\getArraylength{#1}% - \setcounter{zeroCtr}{\c@arraylength}% - \loop\ifnum\c@ArrayIndex<\c@zeroCtr{#2}% - \stepcounter{ArrayIndex}\repeat% + \setcounter{ArrayIndex}{1}\getArraylength{#1}% + \setcounter{zeroCtr}{\c@arraylength}% + \loop\ifnum\c@ArrayIndex<\c@zeroCtr{#2}% + \stepcounter{ArrayIndex}\repeat% }% \def\@nnil{\@nil} \def\@empty{} @@ -312,14 +282,14 @@ %% provided instead of LaTeX's default comma character %% \long\def\cvr@delimfor#1#2#3{\DeclareArray{#1}\clearArray{#1}% - \long\def\@icvrloop##1#2##2\@@##3{\def##3{##1}\ifx ##3\@nnil% - \expandafter\@cvrstop \else\addToArray{#1}{##1}% + \long\def\@icvrloop##1#2##2\@@##3{\def##3{##1}\ifx ##3\@nnil% + \expandafter\@cvrstop \else\addToArray{#1}{##1}% \relax\expandafter\@icvrloop\fi##2\@@##3}% - \long\def\@cvrloop##1#2##2#2##3\@@##4{\addToArray{#1}{##1}% - \def##4{##1}\ifx ##4\@nnil \else% + \long\def\@cvrloop##1#2##2#2##3\@@##4{\addToArray{#1}{##1}% + \def##4{##1}\ifx ##4\@nnil \else% \def##4{##2}\def\y@y{##2}\ifx\y@y\@nnil\else% - \addToArray{#1}{##2}\fi\ifx ##4\@nnil \else% - \@icvrloop ##3\@@##4\fi\fi}% + \addToArray{#1}{##2}\fi\ifx ##4\@nnil \else% + \@icvrloop ##3\@@##4\fi\fi}% \expandafter\def\expandafter\@fortmp\expandafter{#3}% \ifx\@fortmp\@empty \else% \expandafter\@cvrloop#3#2\@nil#2\@nil\@@\@ee@\fi}% @@ -330,33 +300,33 @@ \newcounter{f@irstCtr} \newcounter{s@econdCtr} \long\gdef\NoProcess[#1]{% - \long\def\@i@@noprocess##1,##2\@@##3{\def##3{##1}\ifx ##3\@nnil% - \expandafter\@cvrstop \else - \expandafter\hyphencheck##1-@-*[*] + \long\def\@i@@noprocess##1,##2\@@##3{\def##3{##1}\ifx ##3\@nnil% + \expandafter\@cvrstop \else + \expandafter\hypencheck##1-@-*[*] \relax\expandafter\@i@@noprocess\fi##2\@@##3}% - \long\def\@@@noprocess##1,##2,##3\@@##4{ - \expandafter\hyphencheck##1-@-*[*] - \def##4{##1}\ifx ##4\@nnil \else% + \long\def\@@@noprocess##1,##2,##3\@@##4{ + \expandafter\hypencheck##1-@-*[*] + \def##4{##1}\ifx ##4\@nnil \else% \def##4{##2}\def\y@y{##2}\ifx\y@y\@nnil\else% - \expandafter\hyphencheck##2-@-*[*] - \fi\ifx ##4\@nnil \else% - \@i@@noprocess ##3\@@##4\fi\fi}% + \expandafter\hypencheck##2-@-*[*] + \fi\ifx ##4\@nnil \else% + \@i@@noprocess ##3\@@##4\fi\fi}% \expandafter\def\expandafter\@fortmp\expandafter{#1}% \ifx\@fortmp\@empty \else% \expandafter\@@@noprocess#1,\@nil,\@nil\@@\@ee@\fi}% \def\d@d#1[*]{} -\def\hyphencheck#1-#2-#3{\def\r@r{@}\def\s@s{*}\edef\c@c{#3} - \ifx\c@c\r@r - \setcounter{f@irstCtr}{#1} - \setcounter{s@econdCtr}{#2} - \stepcounter{s@econdCtr} - \loop\ifnum\thes@econdCtr > \thef@irstCtr% - \expandafter\edef\csname Fig\thef@irstCtr\endcsname{TRUE} - \stepcounter{f@irstCtr} - \repeat% - \else\ifx\c@c\s@s% - \expandafter\edef\csname Fig#1\endcsname{TRUE} - \fi\fi\d@d} +\def\hypencheck#1-#2-#3{\def\r@r{@}\def\s@s{*}\edef\c@c{#3} + \ifx\c@c\r@r + \setcounter{f@irstCtr}{#1} + \setcounter{s@econdCtr}{#2} + \stepcounter{s@econdCtr} + \loop\ifnum\thes@econdCtr > \thef@irstCtr% + \expandafter\edef\csname Fig\thef@irstCtr\endcsname{TRUE} + \stepcounter{f@irstCtr} + \repeat% + \else\ifx\c@c\s@s% + \expandafter\edef\csname Fig#1\endcsname{TRUE} + \fi\fi\d@d} %% %% diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index dbdfc0f3424..8418b4fbc99 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -138,8 +138,8 @@ my @WorkingTLP = qw( pagenote paper papercdcase papertex parallel paresse parrun passivetex patch pauldoc pbox pdf-forms-tutorial-de pdf-forms-tutorial-en pdf-trans pdfcprot pdfcrop - pdfpages pdfscreen pdfsync pdftex-def perception perltex permute - petiteannonce + pdfpages pdfscreen pdfsync pdftex-def pdftricks perception perltex + permute petiteannonce pgf pgf-soroban pgfopts pgfplots phaistos philex philosophersimprint pict2e pictex pictex2 pinlabel pittetd placeins plari plates play plnfss -- cgit v1.2.3