octproj-1.1.5/000755 001750 001750 00000000000 12540021535 013177 5ustar00topotopo000000 000000 octproj-1.1.5/doc/000755 001750 001750 00000000000 12540021561 013743 5ustar00topotopo000000 000000 octproj-1.1.5/doc/octproj.tex000644 001750 001750 00000024341 12540021535 016152 0ustar00topotopo000000 000000 \documentclass[10pt,a4paper]{article} \usepackage{tocbibind} \usepackage{hyperref} \hypersetup{colorlinks,citecolor=red,linkcolor=red,urlcolor=red} \newcommand{\octproj}{\texttt{OctPROJ}} \newcommand{\proj}{\texttt{PROJ.4}} \newcommand{\octave}{GNU Octave} \title{\octproj\\Calling \proj{} from \octave\footnote{This document is distributed under the terms of the GNU Free Documentation License. Please, see \url{http://www.gnu.org/licenses/}}} \author{Jos\'e Luis Garc\'ia Pallero\footnote{ETSI en Topograf\'ia, Geodesia y Cartograf\'ia, Universidad Polit\'ecnica de Madrid. \texttt{jlg.pallero@upm.es}, \texttt{jgpallero@gmail.com}}} \date{February 13, 2015 (version 1.1.4)\\ June 20, 2013 (version 1.1.3)\\ October 1, 2012 (version 1.1.1)\\ April 13, 2012 (version 1.1.0)\\ May 13, 2011 (version 1.0.2)\\ November 29, 2010 (version 1.0.1)\\ February 9, 2010 (version 1.0.0)} \begin{document} \maketitle % \tableofcontents \nocite{eat-om} \nocite{projman} \nocite{projir1} \nocite{projir2} \nocite{sny-wm} \begin{abstract} This is a small introduction to using the \octproj{} package. In this text, you can overview the basic usage of the functions in \octave\footnote{\url{http://www.octave.org}}. If you need a detailed description about the options and available projections, please visit the \proj{} website\footnote{\url{http://trac.osgeo.org/proj}}. \end{abstract} \section{Overview} \octproj{} allows you to perform cartographic projections in \octave{} using \proj{} library. You can take the power of \proj{} using the facilities that \octave{} provides, without know the internals of the \proj{} C API. You can use the conversion programs coming with \proj{} distribution, but for use them in \octave{} you must make system calls. With \octproj{}, \proj{} can be integrated in \octave{} scripts in a natural way. \section{Installation} As several \octave{} packages, \octproj{} installation consists in compiling the C++ kernel sources (see section \ref{op-kw}), link them against \octave{} library to generate \texttt{*.oct} functions and copy this \texttt{*.oct} executables and other \texttt{*.m} functions into a working directory. The automagic procedure can be easily done by running the command: \begin{verbatim} octave:1> pkg install octproj-x.x.x.tar.gz \end{verbatim} where \texttt{x.x.x} is the version number. After that, the functions and documentation are installed in your machine and you are ready for use the package. \section{Kernel wrapper} \label{op-kw} The main functions (the functions which make the actual computations) are programmed in a separate files: \texttt{projwrap.h} and \texttt{projwrap.c}. The files contain three functions: \begin{itemize} \item \texttt{proj\_fwd}: forward computation of geodetic to projected coordinates. \item \texttt{proj\_inv}: inverse computation of projected to geodetic coordinates. \item \texttt{proj\_transform}: general transformations. Is possible to make forward, inverse and other transformations using only one function (see \proj{} documentation). \end{itemize} \subsection{Error handling} Error handling in the kernel wrapper is based on error codes from \proj. Functions in \texttt{projwrap} return the \proj{} error code and the \proj{} text string error message, which can be catched in order to work in this case. The functions can stop the execution in presence of errors depending on the nature of the error. \begin{itemize} \item If exist an error involving a general parameter of the projection, the execution stops. \item If an error is found due to a wrong or out of domain input coordinate, the execution don't stops, but the error code is activated and the output transformed coordinate corresponding to the error position have a special value. \end{itemize} \section{\octave{} functions} Two types of functions are programmed for \octave: \texttt{*.oct} functions and \texttt{*.m} functions. \subsection{\texttt{*.oct} functions} \label{op-of} These functions are linked with \texttt{projwrap}. You can use it, but is no recommended because the input arguments are more strict (always column vectors) than \texttt{*.m} functions and don't check for errors. The functions are: \begin{itemize} \item \texttt{\_op\_geod2geoc}: transformation between geodetic and cartesian geocentric coordinates. This function calls directly \proj. \item \texttt{\_op\_geoc2geod}: transformation between cartesian geocentric and geodetic coordinates. This function calls directly \proj. \item \texttt{\_op\_fwd}: forward projection (calls \texttt{proj\_fwd}). \item \texttt{\_op\_inv}: inverse projection (calls \texttt{proj\_inv}). \item \texttt{\_op\_transform}: general transformation (calls \texttt{proj\_transform}). \end{itemize} \subsection{\texttt{*.m} functions} These functions make the computations by calling the \texttt{*.oct} functions. You must call these functions because you can use various types of input (scalars, vectors or matrices) and checking of input arguments (data type, dimensions) is performed. The functions are the same as in section \ref{op-of} (without the \texttt{\_} at the beginning of the name): \begin{itemize} \item \texttt{op\_geod2geoc}: calls \texttt{\_op\_geod2geoc}. \item \texttt{op\_geoc2geod}: calls \texttt{\_op\_geoc2geod}. \item \texttt{op\_fwd}: calls \texttt{\_op\_fwd}. \item \texttt{op\_inv}: calls \texttt{\_op\_inv}. \item \texttt{op\_transform}: calls \texttt{\_op\_transform}. \end{itemize} \subsection{Error handling} \texttt{*.oct} and \texttt{*.m} functions can emit errors or warnings, some due to errors in input arguments and other due to errors in functions from \texttt{projwrap} kernel execution (see section \ref{op-kw}). Errors due to wrong input arguments (data types, dimensions, etc.) can be only given for \texttt{*.m} functions and this is the reason because the use of these functions are recommended. In this case, the execution is aborted and nothing is stored in output arguments. Errors due to the execution of \texttt{projwrap} kernel can be emitted for both \texttt{*.oct} and \texttt{*.m} functions. If the error is due to an erroneous projection parameter, the execution is aborted and nothing is stored in output arguments; but if the error is due to a wrong or out of domain input coordinate, a warning is emitted and the execution has a normal end. \section{Examples} \subsection{Geodetic to geocentric and vice versa} \begin{verbatim} lon=-6*pi/180;lat=43*pi/180;h=1000; [x,y,z]=op_geod2geoc(lon,lat,h,6378388,1/297) x = 4647300.72326257 y = -488450.988568138 z = 4328259.36425774 [lon,lat,h]=op_geoc2geod(x,y,z,6378388,1/297); lon*=180/pi,lat*=180/pi,h lon = -6 lat = 43 h = 1000.00000000074 \end{verbatim} \subsection{Forward and inverse projection} \begin{verbatim} lon=-6*pi/180;lat=43*pi/180; [x,y]=op_fwd(lon,lat,'+proj=utm +lon_0=3w +ellps=GRS80') x = 255466.980547577 y = 4765182.93268401 [lon,lat]=op_inv(x,y,'+proj=utm +lon_0=3w +ellps=GRS80'); lon*=180/pi,lat*=180/pi lon = -6.00000000003597 lat = 42.9999999999424 \end{verbatim} \subsection{Forward and inverse projection: \texttt{op\_transform}} \subsubsection{With altitude} \begin{verbatim} lon=-6*pi/180;lat=43*pi/180;h=1000; [x,y,h]=op_transform(lon,lat,h,'+proj=latlong +ellps=GRS80',... '+proj=utm +lon_0=3w +ellps=GRS80') x = 255466.980547577 y = 4765182.93268401 h = 1000 [lon,lat,h]=op_transform(x,y,h,... '+proj=utm +lon_0=3w +ellps=GRS80',... '+proj=latlong +ellps=GRS80'); lon*=180/pi,lat*=180/pi,h lon = -6.00000000003597 lat = 42.9999999999424 h = 1000 \end{verbatim} \subsubsection{Without altitude} \begin{verbatim} lon=-6*pi/180;lat=43*pi/180; [x,y]=op_transform(lon,lat,'+proj=latlong +ellps=GRS80',... '+proj=utm +lon_0=3w +ellps=GRS80') x = 255466.980547577 y = 4765182.93268401 [lon,lat]=op_transform(x,y,'+proj=utm +lon_0=3w +ellps=GRS80',... '+proj=latlong +ellps=GRS80'); lon*=180/pi,lat*=180/pi lon = -6.00000000003597 lat = 42.9999999999424 \end{verbatim} \subsection{Error due to an erroneous parameter} \begin{verbatim} lon=-6*pi/180;lat=43*pi/180; [x,y]=op_fwd(lon,lat,'+proj=utm +lon_0=3w +ellps=GRS8') error: In function op_fwd: In function _op_fwd: Projection parameters unknown elliptical parameter name +proj=utm +lon_0=3w +ellps=GRS8 \end{verbatim} \subsection{Error due to latitude too big} \begin{verbatim} lon=[-6*pi/180;-6*pi/180];lat=[43*pi/180;43]; [x,y]=op_fwd(lon,lat,'+proj=utm +lon_0=3w +ellps=GRS80') warning: _op_fwd: warning: Projection error in point 2 (index starts at 1) x = 255466.980547577 Inf y = 4765182.93268401 Inf \end{verbatim} \section{Notes} Apart from \url{http://octave.sourceforge.net/octproj/index.html}, an up to date version of \octproj{} can be downloaded from \url{https://bitbucket.org/jgpallero/octproj/}. \begin{thebibliography}{99} \bibitem{eat-om} \textsc{Eaton}, John W.; \textsc{Bateman}, David, and \textsc{Hauberg}, S\o{}ren; GNU Octave. A high-level interactive language for numerical computations; Edition 3 for Octave version 3.2.3; July 2007; Permanently updated at \url{http://www.gnu.org/software/octave/docs.html}. \bibitem{projman} \textsc{Evenden}, Gerald I.; Cartographic Projection Procedures for the UNIX Environment---A User's Manual; USGS Open-File Report 90-284; 2003; \url{ftp://ftp.remotesensing.org/proj/OF90-284.pdf}. \bibitem{projir1} \textsc{Evenden}, Gerald I.; Cartographic Projection Procedures Release 4, Interim Report; 2003; \url{ftp://ftp.remotesensing.org/proj/proj.4.3.pdf}. \bibitem{projir2} \textsc{Evenden}, Gerald I.; Cartographic Projection Procedures Release 4, Second Interim Report; 2003; \url{ftp://ftp.remotesensing.org/proj/proj.4.3.I2.pdf}. \bibitem{sny-wm} \textsc{Snyder}, John Parr; Map Projections: A Working Manual; USGS series, Professional Paper 1395; Geological Survey (U. S.), 1987; \url{http://pubs.er.usgs.gov/usgspubs/pp/pp1395}. \end{thebibliography} \end{document} octproj-1.1.5/doc/octproj.pdf000644 001750 001750 00000603561 12540017073 016134 0ustar00topotopo000000 000000 %PDF-1.5 % 83 0 obj << /Length 2179 /Filter /FlateDecode >> stream xڝX[s۶~#yjtr&Lۤ:NebX"eNϋbw6 WoD äHud,Qi&m7ѧC{O+kYfLbm_O5S2}ojJG'+e_h*{qAH)XK9WAQJL7]" *љ)+Q-2<'exAd,&hEpAiZ_ o+cwEH҄$$)~)G%\UMM aGHpfsP,vڍ.9T/T,>u‘#gg1q7ʾ:.Ъ/ɏb;*KfL5[ / F2.h!Nsd)}^mDWnLF.Ub+,5 [3rJTAGDPpKj6pFpt۸vue[  y4x94L][0imfq7@R/aLO&ί>c4 mv ډl8B-l#: κF=cD=Gq/S/W%r1F194 /BchfkS8C׏36:Ǯ~\Bw6<s S:<)H||Tb0S|0)طR+xzQAhRMbGBSʙ͗Y[z@uɵOs[DpO|dGJG.&(xژ)&3Tsݽ(ܼRDX 'mQW_mv5C[6c\8ҹݹGg tT2ߡxG}b[5i9xKyRc]{[W;3Fx?$83bԬDMan#->ѡΏV'_zNE6Z{VG)2 4,';[@f>'l\ߠ!>)7bWvim܃G'VǠBSlvIKH"6=1]_XB[nrm` <>0m]ŏUIYg* x"b 3<=#d/b7{*cW{G/@Zj瓮1Poڄ\;,( <-X4,s*6d*]9Lʤ:ql}uTǘ>cWWlud`Mڑ˟CPʲh%//M A3Կ]1Aj_#( ?'ۗD ?"J(v.<]W^~}C'4Xſ<06#4А)1xYǮ28ش&T ye`_ Þ R&Ï'ł{:o?oG}b © : Z*}Snf4eeޡӜB߂LuwZr~:*e=eF4m endstream endobj 106 0 obj << /Length 2040 /Filter /FlateDecode >> stream xXK-b9HnlCDmKDuקU%[3dH!J{^gQ!Le.(O2!UOq[ɽlS"Mt_|ىo~{;D[%E!-I~޻b. \A,UoZ&~(? 416*?l:RB΅9 '/|*+lJ# cu|. ~ ̓</<>wRR77<8YJ_Ez [ʦ>j"Liׅ8dJfe:3' 1KcPtC26B]rxH;$o6EChil)nzGraԄ5VwۑQo`pfEB 'U. [tm׵ #p-J+es w| D)cz)=}?=zAueѯ{׵iYjȡV]2mb]X_xpAvytE;燮![&y~<{jCڨ ŬżIf;0 #|A`!&7C" Qd|Ț1DEAtu,z !ALj뫲 Fk@pLϑN, {ߞˏ sk*f $jG5uR:$ac`xXՌ3|=ؗ$a{$\4 vP': iLg#>9`et$_3Qa#O`3ybdT1|w kC`h<Br8|:ެ$30Ze644T z ]B_j< P2BHp B9½rLaLnl(B^pa"A$/v $?k_^aѮ:lx֋) K^9?2/7P>@84)7뛁1"=ȏ&#"1B+;=, oz_R\X*$|iJT J(z4>ʚY.D.ׄrVW}AYk-F0Ԏc F\=`1f](X+!z$U<}q }rBpW_=+$υ,,6 q v$ kG][y*] endstream endobj 112 0 obj << /Length 2224 /Filter /FlateDecode >> stream xYKs6WHf`q*_v7˖ڢ8dԒeo7R$Ei$\hM|X3ayOE&l˙%Jr8F)WNa8[gل˜"ڱ1`\wمi`J/FU4.2C݁ѿ?^0Xp^\X;2BG : US .^x,/NY!pzԴ>z q>hq?x [c͂3X{,Y߄C~`*w?+39\Y/EWEU4>ؙ}w6fv0Emy b <&Y2y0Gن]6[kY*mA0U*~{bI2f}Wv׵ߚQq DIJs)L"] pN}.g Jy֗!JSdmJdCOCO[e;MK"T %a*a+KAjy4}0F=ivb[X40N3%0 Յ'y"G21 /sIYDRtV ^Cy5&i=P$r ̹@Vt;bW_˼5(6܇OվζxoYw&Ew}(~痳C oEnl7NXa3Oe!5:`p*4\!,Z(qB Ґ?g\rDKa,Xh>!O{"U endstream endobj 116 0 obj << /Length 698 /Filter /FlateDecode >> stream xVKo@+;}?R[(OG)wĦѨovo&;WbB1L`CRV` Q΢7޴D(0~'xOOqm1m3a޺gS\Ԑ2LiXƮ/tF~\ZQ8#xٴnD ! BlK1&Cf wNں:N?d֣lq\_qi4C ܕ9({H0ےW˰ BЁ[S]HK6R8S!7|f:`U&:LJHM[^ra˙2^ǖzͥQNB<`W!\Z}\UB% Z}QU@ꔃ]LSEa kh/Dy#h!d(NqlmZ_RƕJKx_ja+ ( /@0]sÝ 87 2Gk$XR۴(VxICz xZ:Ի6[v8qRc9io&f:!NeCI+IʝXES&HVάF1/%k1ת1'* Lr(#YsIZGS/ J"LtXUo endstream endobj 127 0 obj << /Length 1352 /Filter /FlateDecode >> stream xڵKo8U4ߢئ@EjeɐPU]Kr8732N^a|wj򞉀 Ay@(G Wip GcBFc0m{1{&{jXS販pTJ]nζ'ؗAbI51Q)o8/X&D<1Sκݮ]onͷryI?aA^YWicVcx6~|]OO..kP#ڞ:lg8Aiᶚ7d9OVG8Y l=ZΗM6K=U7,`0dQ$0): H+LJI恤m U"hmȊ0 -A׬C ^{X߳"ܰ6Iej1?δ#I˹Bp)QvP}X1$sVx$QŌJ1yΊ#ƥ3`Wz,?FNKq3.hQ\@Xj1Jabip2)g&ר.jeШƊ-WҬ}(E|)Җc`vOH6 SĢ41m\~DTXYAq,:3ǰA x`ZZ"/TN ݠջ5 ĝR$Cb乮mğs^-4Ȗ_cBu9 SvCn8=:Xu'oD Kۯ 9ؾs*09#7{~\w ;hM\ XOqõ=Zdt>,o!Bd}ܑp-\ȝ j)W&Pk݌ȓb$ ?% kBG IڙYZ7&>rU8͌4H{+%0m@YxߝbyG[G[\Pm!H H¶lxޱEf] 5 $-gs@q}pl PoL.k |Xx'Fn Sd/whJlfm0%m !36ԇVPR;\0o|v(uvEkxx}yr閝}k'NXNg1!;z@x/v[]QV`F1shΟj}L %c($C"(H PwP`i"4BH- Vxsm0xG U`'n`[?ONw0H '(3[r|?Ɖ endstream endobj 139 0 obj << /Length 522 /Filter /FlateDecode >> stream xڕRn0+xhEɩ-#T:@]X.Z Qٙ"gu9KoѠe.rC\C)<嚼D/5~]}V7ZM|}4ԡ` P!ƴ8aFsυn*N8ͣokmf[WƉћY;[sA=)3eaVI DDeQ5@#\k=XuEjB(]ubd8 %"1DJ2i478n[MwuUi[X:ɁmzsfƩ"F&$(!,\.ꏵq{$PUx)3ݗ(+SVDї9V*3P|#y4^D=l1crTo02E9njw N}/ c3Ъ%.?ݶݎ4~X1a2qppie92!AgZ4$͇Vrs@ F endstream endobj 2 0 obj << /Type /ObjStm /N 100 /First 787 /Length 2033 /Filter /FlateDecode >> stream xY[o~ׯǤ@Y8 zNS$)z,Z9|^[@܏p.&OVS ǔ)2-1qxc$X> Ɛ %ddT#f|#9&^sQXy@>}< h,EƁ=D䙂C ^CӔ} bGZk@k `3vj A#64&QrdtDc,$!c1WC:&A)Pcl5ɲheN'@Lh<&!hD9 DECJVDlDЈeh3z!cÛe*P k8H.cfflaNClJȘes "k@ 0?lD">#^x&AؔS,ʎ/} ">4`TFhx<`[XƂ0VlJcWI8Xb/J+aptD{*^j*~rNJKes9-^MhP ST匮|^6;˳ 'jjnC~ 4&^l#jk=,FQIPb֎j،J&4oVh>4z_mn.vAwߦGi}yR:D*fxQXj:!95k:c a5i+Wټ+˦F;'Qqo^RpR명,(Yw^6Ep1t]N AIUʧڭUUՠw"1HF!UVkN78( ˳{Z=(qt$$9Uy4[#U/:5J'+j9źnza&*D^,,XK5v?(ڀ;xWB)q|RڌGJy3l\eތ#=7qv3Dm=r3lMFgCylD` /M=z_x8CNo9zᶧ yKpC;`QzpVA,.:[S{R6K}6GWy\&TU*ևEe%)1Zq(TЬSawۑ? /%"N><( =sL{[esT9~`FГX[ϲm+˾P'ďqB !qtl]垔]B&2g/[)rs[OUwenWGZV2^hY7]{V$ )\X5CjrGgYo%ԴRUe+Òpj\~RۋBa X\V VG> stream xڍP.w)Nš @qbZܝRw8r={d3RbX `(+'@ZUJJG :%G `XH͡/2s苡* Prspr8888\2dAVU6 tE8yll/yu0X28YtH:]@`9^A ubg`3wte؈1<@P[&2@wkltm[_ -5x8,`7xe 88o?:[ZB^ SazBY`? \!/ s?K7Ij_:?WKԕGy,JC]QO|ߗkx}A`+?ڰrsb݀2ۼP#B|3iiGm/'J?/=8A/m@TWsw *'' d Xm@`D/rЏ'YA^1ٵ tIk2RRO+/9wusuWl U˜U`{AK \ ?D7|.,#[ßz ?zsG/ul*ekku VS$cʁ\_8 _sL^ޒeX|9lG kIh}0MМiE ?#G!cՖ}t oTuvTw+YW4avGcOt5F'(]E +(+92'֏iܜgJfTurm..bZb"r+ܑIzJ| D#/&(SftvxXf8ZP!['U fniȵaۻ)Nt:|㈄8c)E6;n_Oʫ Xì,%t1{c+jo[u4ZEx>vo^tzXo;hPE2j*S S!Ob(H.ẘQez =8!4։&'!}EApDǨi~|KЅN Ͽ =H6G,Q ̊'Kr:V]ro2cLMi[ 2_Ϗ~h;b@Ѧ h?' 1 Cƃk;a*GUVVo6 RrO~O|^c ԁrǥ}\u6ZZyp8M53Qy nq*$6&War7 b#Zc`}͕>b0G㶳sCw|$A:4_U1`ײЬHf퉽;\=`bl}S&Է0͙# wx%ÉOxt]X TJsX~iγ>[|p+\ǒpTCQn5X9{AJ__ӌjv`B˛Z=SGV'HuXLltKʥsrPG{0a`'Go[57CE`A+Y&]n;[7Գ4^B?06V^t| R@(ea J _?}Y-/ە>(gϳ:Т٭GdMwKnkwWÎ%F@+<4~KF o-i&+b>#о.J#e 6?1",\! 9m[[Wm5Ej xȈڲ8[#?8[W?Sz/5J C6Ju;o[)PNu$`92Y viaͱvŕzI~u&b'IG*Twߞ,9G8X~b'a|C߃!sxmzl5IiK.' Nuf$mk i؟(_#2'PS$p/n} 0dY,d#=0\߮2䛽Jj~'ZFBb%֭iB1U82 39H lnbƒ?D :E9EIo8&׎Krbik+F3ebdQocm-zf} 536jxcBJ\=m+muW)h~7N_eD׳rQ=5NVFHR1zWY&cŀEՇ(`lR@5LTTt mpʹy]Nv!j?TMuM1B pyRc6]>wh8rZ뿽y3$"`Re2WcŢ4V{Viߦ)B *0 6Lw?ˬPJ.cE٧}z)``m5% ԥ0lf#LSMʮ2..!MkMdu\6uGjy.&s `~=-Dx☩xtX{(ps z&YJOeN&cu ~lw=NDHrlHQĢMq%qGBr/ɡMIF2A~]>EeTf. qLΰ3Z#*Ұ6SB` %;^8=;^^AR5M:% ~ EQ3/|/W}iH1nAù6 VV.u̇:+ux$]ŗPA7N0}F.(1e DnݙK^UHo1/ $bZϡߩS`CB5t7ZɆ=kChwIFdĐyA7F_݌}鮽IЬR`+.jwQW^`ynN0݈0 >Eg!(\AZ.X:wkGǶ̾ӝGi:?'^Xyqr@7^,=̻c4r?$=PyT(Gp8Y'xrIé* j'K\2f:)ǟZ\d 38-|*س'ؐݤM%yrɵbmg9V;Q4daȽQ߰j+My_K\ < :t:O "_'RrרYk$\ Řr{L}bj龂|n0ȿ -DnIUEo?Mv7n,YŞ b87dE)\awR J!_h&b F9yf~`(Iݲ2؊x5tv7ܵJ?A^ʇKc NZ"}z"wK 9 .ޗW^]:|r|RtfEw!\(D}n2+rr>lFl-v,0':cZXeiZ6F[_{#W&myF奝ZI _RvT 3O$+;:6auj T]ѫHŮVd"Cj;gr4|OU)Z;s2iW.~lqֱqݔpU;eNHKY#8_~"_6)y$#Nf#[hN50x=ƘM ⭥F\! },O_z(W%& "tՏIۼr]QqHV|wwt)jcg&=ݑpb*TԶ{Eu8B1y`al˪Ѽ*=on@2&E6qctX]c^!snie %zb@>ENMى0uބ[V.Ce1,C:8eaG>@<[>f nxua8M毖:e ٌ&VKt]OZQl}9a3wٴjyOS|\FS[aF;%̹{Qs`(~lp*{3 A\)5_{u/KU].β/gn4?{z.b{TB/2~mCi50a,H́az!lc0֌ox"˺et ; \1]bGG&S'ji#? h2_M#% H3_n+IH|iM=$_rġ{33A-5oUeR ["c2G;.\i1`2e+rddZnUA<ߕڭ`~ӯW<eδ{/&E-{er O}~8EH(Zl2Z Egp+@꾓ywWcԪMO=Z*^GOv7is"[dי6H^[_X{ Z 49X ʉvY#^dZ5Sb#|]\xL@KCm4y\)ܯ2UL[DUT݂ tC[pʈnV|! VK֊rv W@RgO>B>f-走*߭ `/ZS }#XcR. c5~JH)d %88HEf.E鳄])NjW:roA[PA*@Kn,* ٚWB2 31u,8 ,֙)qC.Ghd̍w>o"ri|ҚҧX"GUTdwjZ_*e8?6O4+3͕jcmAdsNRgLٳꎵ(L[OG.}+uvxc.+XW(`V@U,`POg?97)WJ'z: vNB qmBKpvk1Wjば9p)#?I`Ŭ#J9z{ϗ׮w'p ;C6N׉yWtJT=G9]MKʉ ; ئQlI~b`q;}|qfIY2VE:ˎ7^U]x$KZ XFƍc LƃwPzs}.Lr> =mb]}M:̅7t|+F` r&<%Uաb_U4/⢌7Y.b >I[Y䭵%==xs4/'f%Vfr+W$e 43X. Eobm8Hq\d`j8ݭqx~asCVjS9+_nLX{{26kHRѡ(-؜ǵ r$X/ ozs)K{`]֣&vpJ-uSÅNLv9d7)Dž[+z[xKKL#t[U!864p\%YFA=СܶīP`h[ci@^^K}:E8r"{oS`"#bniҘɄ(,^bG&;:?p+co IUD`h[n_}PpN4R'csy_1X"rho)eOhL{ėn~`vf[[x;jD ZSȭѰ)ݒ8/+ln(q?y,"у2~hS )cĉGҦ#tƫ ry@S9|s.F[QQ+yhܲk_{/E(d6%2RqKf0ed"gJʇ%mN0,)9xfG#f,|dcTň{baURgUEJ썻PLBЏV2jam- T71]_od"nXoLn S}9L[4uɱ,rD3gl0u6]fX[mq y{#wРz>{o m2FB$<QK7vڃ`1Rcsxܾ섲VF 3_b"`g6<*̖!\y?<Gip}]ڜ)Gßbz ˋ\ɇo |E==DF0(휌Ak4SP9922gӍiNPQD#gaC Ę;HBHB8zai*#{x7bGb3i$m5ZytF(>drmK+ꚟ K)[mmI# o־VۭS#|?QxYbȌ_oS -4 4Z k_T9&! IGS=z|:{rt$w*"09j}mS7i(!}hEvjwK)YbdMVe z[-r..ަ7cJ_vau`~9<-' =6Xl+C(sgV]6qG|f%WâúŨ* w"E(][竾7~oxi)nBЏEK L wQ҉ZK)_Aʎn.MLOaZ?%͠w ;^8tb(Ύ ^rBX^ULdnbɑʇQN?b7&L^i(Lv#)F[uf8i?AI:eƺk%#+vjܹ8,zomN03UNuیNaRNQ=[d#@ o*_{򄁹EL=ـzij<q=;,HQ&yL1Ct姽:d;;mFE+ךG@I ZR7@1Ffh$?x>ŁHsQD endstream endobj 165 0 obj << /Length1 1945 /Length2 12841 /Length3 0 /Length 14038 /Filter /FlateDecode >> stream xڍP C544&hkwwww 䑙7szjzm]OS3ٙ L,|qE1V6 ;3  ?v$*-_`MhȹX\||,,69$@fEfD%nghhM܌Dm @l}h ۙZ== ubs|/Dpt`3J [?1#Q4,,vۙ;)1;^e` 09+3%d=a y0ݝ @K>di2y : % L|NNN6g.r̒3q;[[0 7? KG˹{\k?bf{ 3{&,+Ő = ; 4<9Y_f񲷳4CrΎ.`;!,M&?_`;ZX^ `o/ 3x 늁$N11;w'; do?Yg.B-,f*ΦoEU,?-&V{.SE/-%!vf rty Hf`T 2C_R/~́M!nPb vP Pz_A/yE zbT1/|ټ,O h//O ysK?~n;%-_x[ rV/l_/Dev//r0~id&vڿPs3؋~xafKq|_w~ `w)✝)UMpm(4նv עc=B]eFwkѤ-I+%G:_FqjۭH }y$4Dva;娲\xTrnݾI,mTr#?L1EiFPe|'wf"A$g|5m0|^^<AN_/M]HI^4ޥƻ#! (A Y&?큾 gk!hWV#:=ў*}90 ^2عAy>`VNHSxYSxL:.Kϡ!l {YxB7V7Y<YYlqEq0 Rvܮp摉N9f\ Cz`G|Z2~/(ABV9 )Ong[Hu?Nloh+1jM(g4A>1p.V Ui)A0W(ژ4Y3՘ׅ>Zes JqNAŢ8z6pj@bl1[e&°kSј&[]-|7 mUWhs̉8-%Ji1t>r-q/ϤBO3x>nfs|Wo{4W 8[Vk6nn;K9]>n:)]pXul`mT/$5q:E\%va6-@۳/Qtzy:4 ?t0in ` G"蠡{>Z}1oSiX d$+jAns⌕XOp^kBxz[]ؔZL3K(9M پ.7s8qedwľtjn]ȟ+S- %ZRx;U<ֽFpG68k~ԙNBTL3 KSTG_l?G8+b.r ܯw?fa+.Z"35RٯA+.[IJjHAFHh#Dd?#~C" ([aX:)Ts͗/Y: (a|& m[mgV(^!5QM]h۽Xx [dZ;WA .#>PZ^]<395VN,St*ɷrѥ 3:-o*mfF3 r_'5)_/[osuwU,5opxOƈݏԾ:pˮHR;oD"'}Sz:%W'zz 81KAQe>ǠlcK)`%NzCE+¤OR'8^=&I 疒dFO2 +䛽P'ր",N}EB W!8 f a;u2k7&rZʵ|A <6JgXA&~dܰ ]bؚoBJG9k[1N0-.2.>vA-1"& %WBKLu뵟,ܼDM*\}GU#Nvth.pYJPU3zCj@^ Nn2ca8V _ 0oA~sn)j۠ uU%2TeQWsH&[tQPn4=~0Z{((+,yTXw`_AEcfG*2 <6;՘mD(11{Nsr%Ql-腼ŕoH\ iN-W$C B3|l X_xQѤ*E(8 -f&jG_M_L" f+ݯJ,h"|xqB(s'%rh3YR11"QnjچVrSV؍f,hA)*":$VOjm5E[~sF oJ_9@ra;]5*;db9b3(.l5)ުL9XS!~|×7W1V]E( DTR𴂟>Ho6 ɁFo6yK"WA>5_>@Ğ^ؘ ٧ #NbZ g'Df#W`֡I^S*/ <= ҁkqyTt$\ؗ;<@GvHoϐN)7> Qk˝;DvQ֯GA|&`w ʍ~,嵣`ݨp,7Z KLc`9x _aKMZ ""ڢ&q~!:I090 Uٶ*wRC Ӣ*2kmwʃ,UI(wt}]m9%Oxke+$k{K:s H __M}hgoCeJyܛ앎Yhh&+~\xiuʷ o ;ktOPR)k_b7'|_NS6kTm"e0uzgD&o'bf "l9$x\36):ʷZfk\0!L6 Ʃ|qbxgTO #ȹlr񩙪\=F~fZur{q~3fQ"p$;)TS+[Rqν<,[ZrjJ#TIć͊})+CmNc$*w8u3G!V\38+65'-+TOtTY e "FG ̮CQlNHeAF:{PIdKRLhhgd-i%_ Wmt,Ω^ieWip CLp#5a?0Xp(pݰzutJW@B4w?o2i-V-٣4$!r}RMe~*~Sj6ԅ80X1s25\%׮ȿSq1e0:x2 LڭUz: Dt 8Ɯ뢵Z_t/Q}() J>O%u9Ub+/IcMiLNˆܫ˩ nR_s4|&G k%Q )a,SEmι³w= {W|T )j^0Y}kvΖ:8ߩݾ:>pSc(Єм!|e an4EE.R&Ԅ-{VӓvWY#<1^<%a9'4]^*=)&9[Tju62Xl^ll+J.FXPHyJԅ.Ww s,|бfx=\nWH&Nb fOꑇ`CzDN zFr3OӠ{D շ/dkO^{@33:'bHsh5,`|lzPnVnhF,k3i' C .CK۴1fgH8^_?>%A3Z"Oġ_ӄB;p:  /P#%$l(ftT^%>a4zH 4HRm@@o۟j%u&`NS^c"0"yn3ӦKk:c' Q(8WA7[<`\`Fid{Ҩ㋸m>u^HmfPɓ18+ˏ0?N)md {vf7QyOqesUX;CIF^ΜW0襹l ` iLYw$Vk좹'e3a0IP!ĚjG9Mp˞&?SJM(}l$xu>@Cm1+vAc~}F{p 6S`55VanL(5.Xۇ3zfIꌣ6f^j1#]Qp@@m,!L.*jPWtjHkAzO4bFY$L٥JsbKk|@̱gm}y~I-)߯q˱U)y)|Ap/Gǂn;\Of%}9`H{gZ/_x5ql2L.*rfkPJzVc ͼCğ[G/ #6 Wh/+9 28I4YݦO?|-h.uAG7j\Hj_z$nB:Βkcfe-4O)IM׶ 45 '|0cB5^'B))J 2AV:gNgG\Hʰ{ʦHLgrGgTS׭h{tڑf^0QƷJ1FmŸNwi3KڬJzcľӐ4WE+I)6t~ ŷc]Y&G\ 8rh"&|)?/t,]nEnCp66gz .8{)!ŗ:u?u{6@& D,JZ&՛-1D-?d7bMg:2(!]F_` wBMLFS0 HS4Գi K 0vg$ CMlPwuI:5-mSUT631( `ϝ4Ģjڿj`EXVw?okɭIY<>L:uxcZy{Ѕv0n9R@'Nⳮ+lRJ,dP}`~|9}Z_yK,GwG'1>_XUQm&Sa6oN]B1kfaH0p8s}Xʭ~iR/w" )޶/+QkMl )2vX[(3BtȐb4ʽ(^a!W137jv23,v'4j6vMDq-&[6"/v#G]3\ͩh}7;׶UR=(y?TQr_p~ocNJJjē$7)ͤ!Imx@x3t8‚>Xucg0N}3OBTAF1  @OV7q΁*o2Zk׷(4?7G:ʬ%el2Uox=9dhגs= ϙo[b=UҶ-80y4y(LiykB,-yȏ`w:fWQ4/~>U.#Gl E( qv<c6:nщ)}U"VmFȢ3#;doC*-f3tX)s],iY1P/MeO@m쐢j!Q#'d[\A5 K\:sx=#QDQS3VE˖OF2!MA6D4s_0h|Cuq1لgGճ鏸]MAW3ko5>55X~ oGM ;9&ajY'j׆X]/vќ$"~c.MXi] -@B2h殼:1:{-:U{Md ԽCWӫo5{4vBJ9a?F zTnQZ%#KR> s+p bEvnM^pN}7$ΟE=kKAFs妝ng6cxD^xadU;VD-Ji9k|7Kat@{6a^{YɅucM |&2CzJlַ*^q5 wogm]Q3!Rp%7>l8ܚ`A#O&nd~js n G?<(1 ERҤNLN$$DA f;;uf`GP?ⱸ44FI B1^Еz;]|\kQHs.AW BNb @3H$hM KEGMpM٫HZ\'D 5J TV+OE$:M1t*zNC!&$A8FJI өFm!:6㴏ywloF?iRܲoX*kGq'`q0 3-"Ƨ^scvS7|6D[9R;QZv);Gݐ1j6] ؄?f0P6yJZ4z%+c|}b|:g[a;qe0jnhUe垨~Y䰭/%_Nf,Hq$ NӢ~ /([ k VV3*FL>^ɭg+ ;6 62|o{bҋrRvHNIYPDYQ'2l5OJ-de }dȪW`LCf' |H_K3Mą28-{?ZMﲲ1,pYmPRMh'`, z0Tn8Gl <)n7`(eCTF ՉX;zUiح_c;Diu1u#qrL'-ͩ+ RyT5ב]V!/)wRtl1xtc@@_.ԛ׎b(5vBGx{U{b\a^9_j p!o >OY\9[op (6.esilps!!ۦ9)vzө 6#b>UxIP,: cnRN\N:~(f$r&F o@m)k.4Yt$MX~Oٷ*KKo< !8H 7 Իnf|YmX70 dRO[8$ӓ1/\x(;L4+xnr7XKÐ9N) %X0<| $F@2dLVuvv#̒>gNsKnxyT;.Pʤ([l5WW@z8mj2Zӑ:ΦZޤ<5G,pچAu35RW{l2iC<;4A-J܎,1HQtRFrӾ_?_~x{Lq ŅXf̫#Жi|kY>N^+;Z>p:FAAcX̛|M.~"RTy~}=P]ŸuZh /$4MPcӂDza PPSIi>0j .UWb8TLOt|}G\#&:4I7$sPtQ]x G; 9)\* n h6 ҼZWz߫δ@+Jc#mH^.|t0es~7¸t.QeC?,NCt{!6ɡo'W Cd(qfX_V(4 i[q&,qwO<ؽ[$`㭣7 MUƠx2ڂۅQJw9$5@փCFV~ބlv%s2Ԕ#ZmoĶTfɑ8xԄٺf1þMЪED"U>kT2үx'߽pм.W Rsy(<Ϲ=C(ԃƬ ދĜiB#ͭ Jg޻Vxm5Td:LT0S!p!hOf,*/FӁ/X^6IyAǏq'ҕE$U#\;`«wiW7Dۘ|B:w2q틬p0 "j&mV&:O} n3S;-G dm!:F8)͞gt$t`i|".˝Ur%xG*;"krpt+窕{x=ϑ !}IwHwa,A@,EvR#MtAW͝@f$_Rr;}\66}ېv heʖYn,4319bDc1䟑"U2}).! AFD%+s2&8|u@K=v%kS2}12CqwrD' }ֿ6sJ ,}lل\pM͋l5lW[|gᓐhpQm{?m"jTKN\NMs)LcXQ"f1HV=*VL0!=_Q&%?zMUpХ0`5\HqfKj"BWbYB=OUF$J1 qK)hUȐR= 4W$_?lt.J2@y؅[ƨۡ> F{Ax6Zs5c)ONdΥ"II %+ۂMbR"8X4{&g= 8ޫ:&6KC /L6Gzb IFBY=T̆Ɂu2knN .pgD̸W)xoV;]Q ҳ8'*%&j+R$O3JT̒XDZJ 3?s\aPY'?cbzoǸb/jAdϔE}/Ż3O^ZT$[D0T endstream endobj 167 0 obj << /Length1 1448 /Length2 6897 /Length3 0 /Length 7874 /Filter /FlateDecode >> stream xڍw4]6тDFeFE] 3 w;E'z zD I>}^ksvgƬ#AZAW>^8@ASH  @ll0W8/1(D vEh;M$ DA ?$/C$JvA5$BtBl\k pv9BQ0k0 v:wzHk!8$\]ā@^ /e+ t.P;U0@ S/@Gq"\n@oS|` Bs{e{m|J54To<#$ Ą"?haWaݦe8N?ci!Ѭ8&Hd?Sῢo$jG v2@=H ghpT]1CD2 цZPm ץK,k&o=7R a0~!a{>|I@=SE ].tq~$y rDV#1߈ODDq( Bo6K}7@PkDgrt<_F&پr̡.^rVe<[BȽ|Mq,vs^xKN_Z fǨ?l1nt}Ռ١Ɩ&JG~ѫYW:?6EgJXt' ,x-*s>+dS'dn^p ,??^,we5a:&gFѧ(N-,ȆbQ,X1'Y{oOJuV}eӐԊO{OӾ;xOH"PռƁD{V L_nM, Z0U}>Gډ*J{WEP"rt8Ho5:!ֹ{DC%ڗ3Fzu9$3 goM:iEMΚvkM8@uРV45rS@k|U/S*:;# zr=/Ea,a&QP[ Q-z{'?_짷OvRe20){`ȶVRqU,G&?|ׅ2;΅(UG$'Ho ۷4Iy_SJi}WRE"}&:g{ѠQ(m߁Ҿl-~ҙ [#CqEǹ5,ɉ&簃#qA"iۤP5H"Ԓq*H{ lJ|,@H;QrѨ:pe=` ʐO鑔Ҹr[]`#F-vR-uNj%cOlZFYIore utl7aE݅܊4(rT'*OyF\MǍh{bUt*'SP$Ҫ âF sC-KEDQld>ߚq Ȕd=QӥoqQL^ E8uEpoઽYZD [F5:%3N LwB>lN/^5Y@>?(-+u ˜!ieaQ>(nadb&n~X\!Y66O,%Wχ^drz <_86X?ר뙨aB"?]-;}LD;Z41s93EZ2&(|M=MwkpBBum .ّc)F=U|!xsy2;oBr/Ec2R(]x0 ET#h"J, Fլ=wM`\'DsAƮ8 ^:r!J,<`b_ta Ӧ!S'Bn% ^3Z: 1kyrvIOVKtᶘC'ƷbӨ)5moalW'͎g[%I^ߍ"XYS];*lӁlMc{ yZte>>KRzJ%6Ke!1׋5C@noG%d cM)ڪzOxGmG^KS9E׸ne1#(>)M1aFclkqtGj>S?ۜc9}dJw8Čթslc8m2G,=ih<,k‰PMB5QFC=y qn=X lM&=am;pbō'Rzǥc8`p+e"a/SV}7Y'AlOgQf3}WN,gӥډOwlݡ{^w΄3w 5,#ɡ|docjT@ jwֶٌ_-{ЈQ {E͇@/,?^lUme7-ݳ.i<.R_R)*y3sK#&<4Cԩh=(ҌQ~w|n)6+ZeqgGvKN֫oK_}V=US;3ͯO9V x.Q< L\?!BuwJu9x"/8ڷҥG6 awpاzuq75x#>ty܍Է鬀1ZT.s{ƏuDd"9>8$NŨb4.f[c$f^|>ը>om햴C #.FJLod)p53áB xM9EqD'WO+*HɅ&U5aoW7UvX}I@YߊOVdG=U͵T1џ>58'՗mA_1j'+*%HTnGWcQitdx3g<|[za4Ve. &-ci%z[K0dqu7P(?_QQىq;-c!6ƥk%vt|PK-3~*oLHYvȏ.:e _^{NM' tDj|X.o庥p>6TMJ>=`h3]Bd 3l. _32<8,Nܽ"w1O%?],Ȼ%w8oIXaBzI$pdjMwOɛJ %}{Yz4(M0(&=Ϫ>:GXu'dzYeD]I~5qxFP,LS;k)<,E M4~QbC5YHHM+4Ť@{ޗy(E͍> ǯ SviQneU!EzCBS7. 8q$.H'l#[UV.(;tDpn,U*휟GI$JZ#>0kSCD9-{FG-g3o&z:GG dֺP?91p!eK|73x8TwٻSghtmF ri uVK'psw`p475U^/KuG1{D*cw-Bɤȳ_J#e}ɽ+9v6b3' &'OHEשUS=Qm~0 .qܺlk7"Q +$<0{22CM|fzԪ,KdT.BZa61ŶkŋȻvϘԩ*B*}sFWlJbZ01)'stil bxLQe 2⬰8LTEZ4If]Lx= '^1D,/>q*׈=ۇ> L1((|^<8uyZŴp+~Żi|':t"sl\>ZCX994 K9#H{q|[L9(*qgR8ÃNB<c=7]*Cv2+j2c=qs,uGv7ojpY8My/TXŀcq̈́OLGZyyl [Lr9 dJ{8%df4mqB>fUAbX]:_+OS6\8|o"+I]z57n-ca^[fcG(-pJ醥WGWECrҥ \ eGrHrp.^.4I 75/`9]0) .D,kU~9Ei19 nz}:/#~6nLnu`szMT~N(|ǮԘlOai_CYZApMƑ84@4D&z|,x40X3"ɾШ~^Py3] PhBuz}3!ٮ (}DBOG%5t-,^ Pft,C!11]+'2Wl4y!yƓl4p~-e){F+}=ۼՂo/:=:x1=5cV^s(T\Q3GKԳD;_(vH&s(QӓUQē(N>MS e08+g~Yb1.wDZa/PIFԁٶx)dM/o䲕P␁ ;;N:JP?c@3J$ eM5U/ʤI[% kL0ev8fƏ='ER2-j~V &qa.E`J+ɉmgisd\eA!o8Z,|f4rIgMEMx;l3 8QpMNNC* ۉ/\ HZ2ʜY!fM?4hK`ZqG]ʻ#K^F=['L#] W+7(}1s9E͓Wdw@.ysazNԤ:wI57\]vS19` Cr6K\~;O\Q!*|᷼U=;W3@Vm<`ȅL0$@a@V^t4u*/b<}y PĨy$=)wkz;cU""IX\3Zizi.~xNY6-,avFnGMdIqShÂ:٨Ht`خ?K{8fOc@@v&"Ɠ]tDӔR Rm\!_MOӍf쥍v^yF?,duФ+xnO56>(0=#k҅cb=J*[8% endstream endobj 169 0 obj << /Length1 1630 /Length2 9244 /Length3 0 /Length 10295 /Filter /FlateDecode >> stream xڍP\-{[03{p'00 2Kp&8 ݃$cUT٫{utTZl`s̕C *%f ӆAq`B]0Q! ' (8|BB.B; Pe(9 .t^P+kק~0Z08YHC @j :drB\+wawpcbx@]; 4@ d7v :5Ox2A- 07 x:xIV k:Nv;G0¬P; ++&\A G _ X8C]]]vN4gYXsu] b4x/k s-0Fn@ (Ʉ!8 Gh{9Bpr6?u|j(x.((~]$\*E!T NӁ.բe^H'(ǯڢQ KAݣMMۼ$ 9q[ij"m7U8C˸=QJAۧa/exPtfK{KY}!f5݁;!qPٌsZP=Rh.̛ \S*3]*,ЮuaW&'(m!yu<o!}F!E(XI>dC~J(;[@4@GZϟLDh 䉺/ȵm4y\R5I-oȲa$^m ^'Jlk/6:pC, OgD]6^ FG %ӭqeMʽ, 2_İ8#F]U % 飩|YkݧTEN`*iR@c0 z18!]Q&FöYx uȐS*^ s ~ n2}߻ַV(xDA;ھc^kʾDYq/lW0??;nf䩺&]vRM>J>wsN30fBwaE-o#Wxsナ߈ʲ0 N G2? f\"J^٧/]zI 1Wu70gxW`ф o'hA+‘*L>l{Pkכ8꛲lw~SN LHkc)pן:XzOY^qK6&+(5{Ǚv/@ߣ=sJ{_< <:/u)(4|z 7ᴲ/Xnrd$L sP%Z5 &;.՟ƃM@E)ܓ=4V-PRz%&יU O.bνwl*d*OLz߮v(|KfUQsȫ@;5pT^R;(-}CJ&PB(ySFӭcz gq *^t|RTRcxR0)~V_LIHbsFpYYZ?NOUl"&þcH'm# 7O^(L0^ (c#Yಪ yKEKh˧8(":s3DLmR9\8tiNfڝ"0A?C4>*g$хbQ(^G%o89fwNvOk|^6Wߣ1$,hKz ߲>NuYĝ4=dbz67t9]px^Ci|d ̝*GCx{eW,fl'x&FMrfbQzxW٨- ](?B1gi$`N|=Hh~SnZvnI3鴬k1܈6_biYLU1P=S8U3skYdGqBu5w56/P #DM%x ]6܋tV[^- WA[hX~VN,P-zG)>i< y2);"+b(}.$ӚKY_ º$7fԹ/`evQg ܊W&/YTP1p ԅJmU;MĭקmRs|@|Dg=ѿ&uсݼ\|5bMpm_U8`PQr1|! [P|/VW=L7}xxO5EkGu_Wv7s]B^L֩< 3#dƺyۯb&U[eYӍ"]/@]:ώ`,{)9p:,舍lnlX"媁y.%yB,z6MKj\&,ƅt}c3u9FqC4WCb'>Y<}xíJ=LRYfZ"O M9T2]r "D0ECEA5nB_%͢4-}JD hmXιms= ; fe-BLPI3M6ZӜl$N[ Rw # W8yMshv_b(7ƢDz 7Dp2HA^!o#~֨=CgU/>5:T .qrIb!n(Kؗ\ZL0 20G#c(~W ;b8߫0(b2!ϣ(-k2eˊ{+Xl4,*3ʣb*8-㹧p(SߛtLX%|VE,{p؞&&o"SMtd=mKQ%EnnKn^bD"(I65>K* \.IDŽ7y|kb\O `RYOBhgcAKcfSV,MAAqCX2 n3U!yxJ,Bkڢ?Eu<:hOƭi)9A2z4u!F < rya^w馚vyTkd/im%+D qkjQ?- Ęu:\BRX=yPR$ya<bk|vRi,wShjPюvț[Ԥl+;ފ ʔL Zs@I :tT`>J^nVYAzm»\w][XBkh/:@$ԖgӏJPRoWo7ĵ-#}ou&Q`q[/!@?UVyU{F~Ʒ׊, 5VZhA~WC<+$Em!!TxM-0ٵb]}K(|-²Sә?3ն,D/Sc\=t5<5GXϞIjzB pw~{c`[:(QXj; q,C%>Ibp?-^\ȝHUv!$k5ҽYSu=dNsw\n}auu<=>&h/J1 U0f.bn:?^!BNDcvbܾu\0ݕS16>2!8y~c]b雓"A쎔ڰl] tH*< 1x;Q/|[[igqA,rj7y> ) nlsjJ޳<1]J;)QG,׌S`|WrXڌ;(cP˸-dseiD+HTnOJyȦm8,b6AW*/a}}pRWDvaI{8D3q[E ov7s mYvbq>F{~ۉhhib,߹  yIy? 7=j/h` 3yZnP d^*(H կ>:vK-z9)+2]wuF(O3r/)g( bCO6 D8(:@{i(zVI}T|yRCOa٣#ɪv@tohH},׍P}ջWوzjRK&pJ+uN\'qā' O@f+ 2D9ܯ^o3q.$*m.potGHQo4{Ͷ5F0_17|A2T&wW֞>p*+},]gbJ~ .UHg J%Xg()٪hWI삇,ҁ~vF>Nr+2l##u31;w?ag-c;ýR&_N`cċcɴC{yi M!*SBw#'ydNɕY,OP,OO;jam̕tzeV I+Y*\|<~]^e͒ˆ\{op1> hDpj`m2k Gz};r6`{;J:jd>W*,|ӮEʀ!K6a>fAC xCGEX<OWI7LW3NP":_5 "=iA>nIt'w^ԸQ+4N"2.6ѤgEd҈|nrD2u)uWj]4b7a+ndm*owc0잁VwܞcgJWtAx?yQj_|槿9/DW3W~M+)!}Lg%gqu]¶s–`wY+0gZ\E`m2?qHJ@O3r_,դZ5vr.Fz6W!}c-Ou>PpdnH(%$E0_x!ȭ2Z^ ݡx;tppH`e1 AykͤЎˢ|YM4:{+`1ޒ~jmkJ>d=]Ү4./^7//>k$~yN"^OD:cAj&+&et~[[:V"gESvDWxX# "үEMH0#e὞|pb\Q#qXs#WiײLdH~n}{Je%7RVŎ=PtCYGH~f;n=E:uTmGmW],eP_hq~uIٽR6ʹݡNou[KbzWh,=[~s8VLPڥ&d+ARrB4Nw8iSEġ¦aq<}; moV I}Y[F+I33rG-ft(KkvXَݵ9K-2&*#>!%Ђȁ o6{yL|v) .قuAɴA,qP!U5WYR-o Eo (5ض#W |}^/M)C6)N5E&&B 斷 #W$iO-IC9x/v./\l qq^ejԜ 2:$X.^fDRL6e_%U7),ͼ{V^_ou|CߗW[r-I?FJD/dX!⎲}U]EſY ;\_"W&Om9?S.+H ZK} ^ʏSaf9#Jb᧌4 cYT ΘKnJۨﳦ8{q>̍M1]6bERmYΚkIcu P" H o_?ThԵ߭[:w#_v o<C*PA<1%Q+a 8W9bv2@+mIƹlH&IQcCH'c} h5TPb139래cULVKoe~>u)F|e8ݖτdqȒܾ=W&yFfC9'eMOAzy  wG$Iq"k\[v, 82ťȰK|ig=혬CU#<Ѧ%\>8:[ ZP܁>& it>]G&P*̟l>8E5+])VƬ$HFqT֌ѫ0Q|p >PW J/ > ;vD/dMtrNĶY'c<2EXFVoXs[ )&ڟG2#'Ah_}: $DdːM89$κY74z!!:.˙9霁_[g冟")5Y/C#Rɦ[seF=fZC *P#0; ][#d;ݗh? -y;vh5P)<-_t{O;{x tڸ+k#& Q0A\өJ4X1q4 L]/ Q1C{-axe@)A ӯ쭐=ȝt(E@1kI;5@CNjDnR&6-LGN6'8/V}z@BԶ_ qvv1B&ADʪF\\#}|(WYW<*"]rإw֟%͌,P)e2tckׅ4 rn'MFbrWbj+3vGb=,Te3wC V Vk8C~ʵD1:ҳ6[=->bXv{e#lM5j*GWÁ`5i \Lf{+: ٣F ?At}h*[Irdķ*\\6M龬!(Uzsg9-^Z%Zm?ϼ}ϧG3KS.aɁKJMk/iq\21 |6dd fNT1󌝽CFmC:W}f.,#.iկ<j- qP-6pBEOq[sB8H# zzD:IR@vOQ}QUڀyG!w582A)(Iaga,4.ĕͭn$t3 f>R}߿>?e*}[!tC0FM68ЋzuH<6[4uᭈQZqC8xNsJ_ ުjppMwe27<'B& {VM YC21kE h H/Iư'I}Jz9*;)ۈcڇ3d:npsi{ סz[W_gk$4 mC_?TC˽3q:mS'l w w蒆9B. O𸵸:z2u\I`yx8vc_wꋚwT*w 2z ஠%xsaBz? JNbmLG_V3VΛ]ȯ1/;Ģ/j`83r{OJ\g"yyGo{l`#:iAyL9/bcD={#l+awtp=_д3D#kKY=~8kb]eʖ=GQ-Xp]~eud+*[HWŐl㑉ۆ_35u&\Moh&%}DO"sOtF%V/67"S`E'fXb]S`{!xS<2w_Sw鴜YnOttwgQJR:0D~ᣬ> stream xڌP۶-'@pkK4 &Cpw' z}>+S\*(IUELR WFV&>+ Ro1"qg+X&a StV.>Vn> :8$LܭL9R>4fV^^nDf& `f t/ +WWG>ff&{&gK!Z@ tvJdb;3&DJru Wg ,6\n s3.Pv6VۀXXCo￈Ar613sw4yY,v@+dl𯓛DU& _)2E$\ruA|@3pٽ-o`a 2+ s7GfMPV&`%:fVkx9dK `NgmAq1q\݀~>T7Bde[L ?`1o n'@<{~e/sYYLFS[s0r8Y 7iTL}ʂ,\9A o.%4\ y7߆H_j?j{k;5oSmK4vZYW",SFk)kO\-U\V/xlW x$7CJZ16N."` a9_C `f9]Έu,o `x/Y?, v` p?A?Ab0A8Ht p< ^4:o9`j N0#Kbo'_g6aڛX \%?H;9lb\X+/G+ `? 6`0s]A \?;;Cvpj0#W9X-qqN:#89n +j)+D8N.@{οl,'OEj G3z8\A@pǤ L's7o}ܜs=f f6i>]nOdo:2~mWNd礭]D{jogjKS؃? OD5D|_|l Q:c>xK{6 /p#=0iQf2a\zD3=i{-yJ 6n< DwT>bG)r8>EkKmE$_QR3eXŀZǗ~R b%Օ|0r&Sƪ0tc}[caJ;Cѵ: l>2:x02]"< LhJ'iʗI [:խ a 3IO>N! G>qs\߫xKo[sv!o!\JoS// %i2%{6UMs!̗[ULe^$ ;KWCE}#^6LZU8 TINc'By3:vz͋E9]Z4~wLC̝Ծ%M[Ciwك\VhYq@X w`I6P;%K9zD..]~ G+363n`ͦ MlEt놦h a] ptxF];S@auֆBl'Vjwaݺ‘?|S UdDYP.$.N#*AdВZÛC SOHRTa# eCFzECa]s-UH57}2 3Ot\6*hA&řqI[*0y84m,MR &ql򸔵1buYuT[)یwW**Ap']IJ⭙+ʿ~iy8*T8j1 >$9x?R=NRW}f3p(TZٟK5/× {qwlPJCq@Te'59?qh_:e|1i fXMTd?EZëp L)Y`鞌3N%m&1[euQHkҪ)0csblgWu#ѐ/c By|Ԗ{5ph/LE_}0fS7_ ?wx)qVvݛ(1gCH]$7{)*.NI||Y׃|k+aWXA+'T YK#;Ԣ>jǐwQr݊]!7]ޥtԥ3Sk73ts[veHt|]qJzjMrþkLoT_d$bŎ/b>퍧9eTu Vb8E!Sp~q*Uv#--ΉYTje&-kNӾ0˯["dR[ORy> ^1['m=*O~y4PeũT8i] m]3Aޟ{U-*xģ_;#E嗇+I|Q楐U~J]$qyAF!$H)7] #쟨L*Nj⎺'lS6=/6R/OBhLPu^2gLs{yEe濲C"z1]zUg#;`(P_b3H7+q%בI* =<0tw 9%'֎0H7o_"۵`N1ݸџ.=_2x4NS":tlzB/ ahJy8;JXkkZA&3 M-qtA& kiY7 Ԫ+^%Zn.B~_1e1#_ ;_s..Hi)V&kdbMh/.żM (aZV[]#XIRE*];!基Ȧ;UxyO?ƹF@RV:h?)% %Y giQqx`y#P̱i_`{ *)0Xg.6*UCIWK EWf}wdenThRNѠ.ϝPOp\<{7y["D._ҍPyEԔ?yGo*2&JYխWJO9j\wK=j۬wE0 2}SFIA?@jR"j\44>3V)0_5)̃lyp߹P\k?HeMt};wwq.C~!󃩈g$xRqq3x&퀏ͧ,8 -S0K4s i_5sT a0Z0}3yFS-&JCHżG#߲ uA[Ӂ4) /GLYX&}/+n*Al2 $%۝%Z*9y}LrD/2Aœ#P&,;FUiu1n9oef+XS&8xظ:^n\ϣ-inPE>{UZ7E.QW3$R3~`WϩXRyp"f|GZA@of°݂xCՀqast滇eẖsH[q;[QuUHB~p喼VDO"K3m9+ =N:`d.DK-D7uѭ*{/Ng0tIK[1'~VHuEG>a,vݤpj\!.|"^(z|ŞHRrg PH,M[{Nrn&?_+n;?z?ytwT~䛼8Q8.`M0i  SyJyԘ1hEpΜ52x%Zf2̷qɜ^Sb<kP ?~hͰA.i, :T;e71_F1bZyH ~C_ K){S׿ u ?G%b-n*Zѯv~q C[.Di9aɭQ*w:]Skr ꉮjA'R Þ)'C}Vٍ?}Qb)`M ST{i(7ٱD3~qo[^YDi蝷/1u$OKR3&#[UF^%'cS~;"r4mݹdhaޔ{%RjLh:%k)na 3% C7w:=,uV[ pA]mR-V LK Pӌa ȏJXS␷5HHqj&޹_3Kgۜ 8RF=q!К91:MC"h dIC~ =h/楓eÞm'Y‚`\qۓʲ_. S,ɃYA[}i=4ǷenC^Vii(M$QZ;aWu*i7,د_aQ3/Т|޾W"aR_^yRҳ\Z6q5 n#/ܘ7LChWq9^y_Hư_6>}BL{T m[# ^Y6EUpԱ&WCַП`yqܹghZ=JSOG|8ŊM 3D\է]$PN/j.+N`hFΒg[\.RW-_{i`[Q!>aTh1,R@`pxx6`|eǼc:']/Bzz$j_s(T&O6 {Nߪ݃׊@9A#7eA$~D/'NQJ3wxxXoaW#1ZaS 4|zjyk[dxMwڧpdO~"ZZԎĽkyyRq#aq2m쑰DfиS+CIjܦR90YU8~YJzm٣Ex56 IsT_s)l/ڬ-Sݣ6n6 ޚ 2ӝĞ܎s8CDM@~eE^*+Kt>ʗ o(`b+Arzcڟ!1EQ3U"= ~B UC5Hv1dwFtd#ƙ4 *Np$-^WX_驯+4!m).}t'o[%1_ڰ5Q4$oUR"nPt|q|71-b^]ӹ"'a$$%#H("KA{eQ?bʉyZ(Vn_D;Bvs-]7M;@*^(UߩI5<-|'|ڎZTɟM@[4 yԔK \ڍ?d*z򭢹^`^Vٗu_.ޱ{ȗ y|ǝD:Gd<#Ҩd:Sq7$hZ"X27ON6/\2B-G *Ȉ$^3!/?iXNDn4{Z_ *XABnYkN:ېw.Rr<,$h 2bFn]{nt@Ÿ FVo; E8ٯ(z&q=d7dWH]?p򡅗0ʸK Vz|}XQo!M$ӯ< ca(>DZ ŀV*cB{Q@g5m(hnɴ6*)Pջ6ǔdFOևUGn y7r>yi {v6q6*> 4y^Ka0| -|/ֆ2,-lAR}%VNsX2-4Nk&>[s1d!_n#ȿleiRd:16֥@ѲNPH֚CTȪ/﷦XJy6y~>+BZ?f6C9L1Sw}@fR$B÷)C-K /$bD@u tM^Ӷ 뜕Z.~ %–UECS~FPE% `wm=>%d7w)=f\?˾ֿǂ S@am{oGMH[,kG2 x"y1Bv;ꔋMߩDNDC˜%8 t4!ȯ +ec 4xVqbFzKnZ"/IyZS HO2Wjў×H[ ɡ֣xxs ҞRw4Z`9[)DYNbUe>g%y};#fPfV!G8IS9a5 wݑϖSf?ί+QdE-#6}]w9١hosê! ]2f٢>@ [re+qj2!rIJ 0ʆY7_dce :sm~i\&Cܵ SŹCv '*J!M!SV1}W-GDEror]I˫DAïU-V^c 'a7xZw?ei4ïSyr#t|(2KR3q~JR bQWWŞ:7S$&Y;xS<<z=@Kws182N=XAj| ㍤AD%KDZ}ѭq'֠O$*qJ 0{EcP>nH5M#a̫m'ޘ,Mշi#a*{ãꪩXNWN%9R>)±{~o6f櫪=k[] ߇8PaeMwO6D%LzQEtJm9Ĵ)]+0ÈSȻ|I ! / _! J.4\X~9Ff4TN6!2,PMiOpi[[:"dvB{ 6ΙsH+M"y@PRѷͼhnC#gtҺ(r6R:u bF[djb<}(B~OAzZV5 UZ\v. 2OWၝ:9"ySY_;?W4~pŜ=Jly<,]' :6!ڇL˿5*ܤ 3dbEAg.;_JBW8JAh5Fnb2-J%r+gm{yy7t;aSXeG?q,#%՗\4btCWv\f^Ѿ *?4:bNzAUZ28™OY<2Q~Zd9-;TП3-Rd4LC?'zFlҖARi}Lw+-w̿ڵN{{_oT;d鿾}&FqJ?W3t [#nF Н9X{!bԤj<'B5H5*bTvqJ,G]x2V4r\/\}N"|s,JStMtPZ:T(YAp8Г2t*}?NxPg:7ݷ|SwF:'eeS#Ẅ́=Ca%WB*& g'HP/ZO+ğxyʲ 5a*9Lzjhp4!9~b|N1<;?`  &I՛Z_^XsNCD%\t+xhGH/iR co k)p?}: _Ɣ,BCAuAֆ8 >ztye|1voR 0%!ѰD L/طJ9\52.6"#X~?YxɊv΂d\ %idL4i u|z6 &Ck46x'*A͝Ŧ:hXÍ*)$*T˝E yQCuO OufPfrޅSet2T=͆[Ulܓyza?/Jvcboԃ]? _"Rqc~,s@6 v.PMXcd7+tȼݘ%{6sD⚺s90e_`I9x8l2|р7rә{\>Wk} ŧO@TUwSy_FXn,3 ܌"jg͟KdT rHhmgu@nGehJk@6aSz:G!.IP\Mxueͣky2yrLp{GW_ Or/QrHo\@BܼˏF Gs5MDgumUp̈v:tPܴ>iRVǡr v6UAKCuXer~d? 0z9iyx#10k517͓2՜X*K")ž5"D԰r?2@#AY?{%bz" B'mPN.ndž/eDMe냠O)yS0qȼfs}4h 8[iZ>,"i5L[0 \ hZ4UR{jo[ w9|G_9jH|Lc%P[́Zj)Nb[M *?* WT lj2WQ(ȯph= aΧ2ݘ+@wHtd;" VY1T<rK顉Yu tM7xIcQ~$% q45!CD,'5aۍ5LI1Yj`\]G9]jr+4x6/#w9oWF9iXƱq,\vn-d˃#3+cqf%LD/(r6FA:"rVFwȠNE@@^9s7(o߆@BTeӷJeOfb\fK.v,Օu}-T3AW|Kڞ0xfV2o/D7=BОcj!]'bSWNlva4a:JETAҽ~$N>2)}祣W2]}\rHy.SڑQ誊h90>9c{bl.NEe&6V݉P62WC.ҏdnC+<;`Bl_SK3BaaiML;0O/j."qL1wD8_Sl@sn9>oYF7ϮjUp΀p9%On;tFéҰ?UQPqVo4:`yaYX,:ͳwݴ P÷ҜY2V@43N/ꥐ(cvz>on ZRJ^OR"H!%@c8*jxy4Xܨf{u[KHN(ʷn.%qݥ ͛tHпPV YYSu7n*k }e: FP$2V@-[H%%vOKƭ.ZPdidCC}i{)R72Ȅ5O0z3@9\4W[Fو[.X T&Ko˟ʦZmlH/W8] Z9yZC lzCX 6r3/*O^xjJ@7Eݞvaf` y+RK誃A_2DmџF:4쏙唷tg56ٽq5`ϻq˪O Xz5l6.'ŅRQ{h/f5l6MД* 3Z?#/L# D8&(0_=?U3LΏ:EBA(ݾ:$4v~~ALMvcKi_:nGChJWj7N2WШZF k4+@Du:e\oޝE{M:r4 WIסou)dB "ޯ:S 5}nݫݯi#=p*%:W>8 ˟MM f``wIAR fw mƈ ls1 qq4+jjcpk:1)#*ϥ~ݲ7 _Z KuUsa/g1`-^# :z$:f/,ؙ΅Ϗ47Ido$T2f["qP=G8FU0(VNY#:N͙T7*sE2VMEriG^EWЧlr7Q.?حiv{NJyy" [M=hv*ZV{x ": &ۜu*dʓVE5ej|t|_e#["}ڝP۵D&lG&'+3VY]~ԲiΧ;XE8nmD2-3:)/ ?{t|G:h/:E!Bf_}Lj_)򀧳_;n?u3&4dŮR"OL_\" ʭD]"|{xjք2mgMt(?1-!D{Iwd?{QT}>{}Qh_] \nl*.ScqD`2}ӆxs/D ^^d';٭ݴ\H}z XKSY#L}%@ɵ8f'+-}Df?*gR0C8*=MҒp2 Fiߪetq։դ/~]ās˷b l^+x0Z_x$I-<-X@&u)0-o ޭN >`u'e#u^R6L;fJx&;(œ>'xcZҶRCVN<7IuHN+1rknn}6ʏ6,`-36R*jn}["%)pg7槚wbUmar K&q5lo7Bjg:rQ1u\d*H-^0 Lz:zouyfa wq|F&Whݖ/ C0WѬv2Iv-)wfm  E_ `` Jʐxu -3^9s`@djBQb#+Q]C]z/gpgߕ_q{gt$7rF Mԇ'p|U!'!m  MOt]W'T՜3o>΀|bn8nN @,F0KK&P\y"'1!/;b}pT 8-=Eha:gJPNy3B*FZ$)c~ ne֑HpM8Bo(_8v>'(Jx?bÚz0Yr yȆG}*cDE'O݃ܽW-mKl&UGZ–}9wT,:h˶Me8ٍ%k BUlƙss;Ri35Уϛ;?QfEPCۉbpL`N}9)Lpz:&&Tov.} u:um^)DҼ~),R)u+Cj$ fN a*A|}烜 G؂3n݈ZmvLp;͢m&rE4\9-v>on"S1.֌)͹ϦjSU&\, w~K+#RNߺt ]|hq@\ z̀YSCZxE{ Xa 0P3kCtrݨPbHn)1ɋ$秉'Qnr3~RfS;őfuH 5x$ l G )D'knŦu סɏwlfAJo:V*{w]Q1՚WRA<412"mV:B]#2w7,ULzR!uȡ~UZWK)T=Cku۞|-o>}v 24kXv>b;r! %f׆8{"5"? {9;d{Y'j$R|ZYڄGsؿztSG[YT}̀l̊l 4c\&e48sn){ңvJ<ɨ1O ^)9^p*ܠ1+v 4 t@q3iogs?S\Xc,KZD) n<ѻۺD_E/g+Aݏ;.3^ǦbA 9%w} BPe?˕ReBQ R4{o@r\7kZѶS$i\nN4pUB>BZ%}bsAlb"*!ubR$za sPY{찞cjՓi&UI*XTG#q35d#ch-cQu#p3 "F˝fA.-E2//q{ڊDOJ=i<魇g`SFe)Z഍1EVMv#t QWlMyQ\2PѰ>BYe pJ"EKa>LwlUV:N>N_I ļ=Ȉrd:2)ٰ܎P5m;9bHr?g2; ՛,ώqܵ^בAdPV `e2[L$\ftZ. \ x'-(.̡```paZsěDn_؊!+&L>3'7)$@\\c6,փ:X>5k!D^pn}+NiV6Sƀ@?9d@_j(zbс*6tlGmX#͐.6l7ǝ'z>ܘdQ-F,T@0"?(P=`[L7ٹ.Ausay_/OHke.2"bY#D|*=Xgo:= "ߵh+C|wFsa%?/ٛٿ]J*19da=8YI)[!su;Do[ƬŸrx\9MjBfgĚ㯴_V0'T(m~s,$4吪G;3-1f9q%J}Y }*__k>uF\dy&m(z' 'QKع: yy`ikgή;u?;ٮ S~Rg$<>Ce­&!xzj1+\͂*U[&Bo 2}c^2-Ƅ:`~0[4 *iylT)$Wvzh{*%d`5i59XЗy π$8p6 < rSY~k Q'ePp;8q*ic\6Qk3iO*SW:!I ʰ) 62m4#i8~\{ui$#,P;\q4]4Kk^%;QJ'A AzH `J [Vz!7(櫊kj˘RC!EEvKrkW XÉۼX_d0dEN4O%N\+QH?sh?OJ)rG s󙨁S`;ad(El ٛz9ʐ~e?^6 ED˕ʂQD&TD1\.gGٌŧǫV]`%^cFMZV8wJeEILݏT9&c&azn|=_WlsT؟ S[KoH@,Yrz-'Q`w-'5.q̵~CJ+9ԃP~˩(FU`CN*}{[T;:jrEB/,E4V`qB7c@=۱(M|NTn%#>\- ®RhuIWsU7,q͠XWW L(RL&Z2F<-կt af3_)oWպ| 7#&{MGP3 0)?Kz+X*Jr*˻ KVIj/-nՔ^R(ȅϬW#4v+J(j[kl1ҵ)!!,v kvr.,R+ =_$10}+xCVOf!?ױ@o1kdc9ɚ񝽒lhmÇ\gVV9 D";!Θ(a:2;-G ;ogx2k$Nȇx}]l_*y8,%v+$}VS uZ%`-o \Y)Y9ĘQf`qh _Yf mD66\\i.|u^ ;0bg XڟTQGǾ!M(˙;?,Vfaޏ2aZe?m71T|_PApLHȿBs endstream endobj 173 0 obj << /Length1 1950 /Length2 12105 /Length3 0 /Length 13316 /Filter /FlateDecode >> stream xڍP-<5KwNp \kpx'ޫbfuݫw\UY`qCYJ66N66djjMko326,Ig)&e ySr\vv^66Rn@ @ rAtpt:sz;??/ӟt= P2X_N47h8[ N q`euwwg1waqpg[C C0@2dj_v  3b6]^` r8@C^WYI7D?ɦ`Ok%PQdx@`v./|S7Sk;S?+7ȈL_-bmD?ҼtY t!.'e 2i'_7k vp{ ,@?D]YN yC^Lȿm  r<̭XHE#Eb@]Av7Bfg!35w3/rcxv_V]99me]ƿ㓐px3sr9||^n6gQ5 Tyb_w߹^=ظ_?O#m W;?t?nS{k;Ͽ^f2J/[P_;ZWb`Kh"cZC̭Z,5bǫ`fgcf۾./ 8}4džqpLM=^@ǟ3 `e;@^(y g?n*O`U7*FV߈XUA|/'_x HSd2^ z^_j:<..ֿ/K;#7'_/-7"C=^__~Bv/鎿/_^cUeJғ)aQ/EV3_x9/‹N/ <95wu~)#2G<@ȋsA6Aw;;:iދUk7=WŖ[C[~2WiC^70Qx(^OYSlGS:ɕ]5νO֣ty4dnGm-ʯ)hw3yfYfW Xg37X9d ȾGќE1^59\ H`F'i%SK֜GSg:6v.h' Xaq#ZV'2A޽ဥP9i5N0"6lF)jOۭ Q =U!p[0x"5 +{оVKM/lV}>#r<[r H:B|C/`~r^Sc-Y 5HyIM%N˞i,V:E^zR5%K#2Q銌>dYh)QuʏR]Rx{a[ߐ̭ku1ٺ2#!91!'ZjV, ŜF8į׈p$Jeڔ/IkDK=2tA'Ď֟Fޢv8H]UKO}*d$ WXE7ۡʄ e+8iNg1n(q3&:`Ylx*vh!/:10G@wĩބo;\/RCPgџ dkw>q7tWbm`ی^㥈-:P>$rt^Gxhk\Ǥf lAϵ|ɓgq K2uX9? 7ePZ~Gv'9,UYp5x '?ЋIZM65ڴ| Xnܕp-SOFL/iVXZ>ṗD)tx$ŵo9qdnZWv>ڃgeY$XX4{xW 1.iA$ =c>,xGgJ! q=֙*F}NB{EE0Ff=eEX>6R+9);lj)E"`ې7@ukKkda+va<C&igd0/:z^Ei{hÿK-d׆X%\;(ǚXĕ$GbanGwIJ`T,vy)َc8:A7r x7;T|foaD4;&l7^8W)#\uLE0He9-IQE+v#HcD-Z׮]Q?wiy&kh..bVJ#Z7o{8w:0/jT&?׵cLy2#C+ʔIĻ(Is;ws5*ض D fT!F._+nPrs\|J"z]~YHrs%JS(W;mtM M_rCM0&J)s;/T8YW:޷RNttyΈ?N~ bȾs+=E0 C p Ev4Ӡ 3n $4wZw;N6bczQ*GɌC׌tJ1HK?#TF!&l1}~|zt a (DUI#`Qiǘ S'wU?hs-|}W12_Վb0 =`җ[>T*s$vR=bd?aTEZsAT8GF.SRܻ|[Jwnލ HCr1;}\] Ŕ8%vaȸ!r ;`S?Ҫ|{f逘@E|vE ,JZ膳˧fG||61Ըnf[^}E) ӂ+]y736^a>V(lټ%DA844@Ƽ7La;wz忐}ht*w*;p!h ZCF3+ Eݲ/U:b.q?t1mݕ|N#- /h}Ur9u#/o-"\Ux>u4.}Q㨕<}`DA;v?.0@v[l|% & Z7 iR|rUPJ{ԩ^Dk=i~w3 V~ Dzt3¹_8<%ח͝Z.u?SuG۸oIU$?o[r y{=/eK ^Uι JJH ,K/"$#Y0n_WBi6xONj0IM<UlVWQm=q;3uAuj? 5/(*nL3¯)DmΒ2^ɸ=[`yV/f J? ";$>Zn*:s{-TF.`4cE"^ܣY~AVÈYGF%GU*Ԅ.z3R2f]O}}ۖS7cX.*kŘcepp@T#;_$rfp4#D(M0z.)p-kzK69}tQV[pXc'EOdS ^H)I.va;F|86( +aQ# o>rQآEBU<)WI {6M.`Z`93r%Y8QTշF ,_͌L q66#7&BUc'Cs~K[^iʂa q|rH(5S{̍ٽaG c!62=@;uv~Ep.a!'Dkm9z.+`\b|_bwe DDQJ R 09u 3~ @ ?eLO@/t"OWN_]#+|¨ÿPȮ0^!zǦhskn%|GB5b0G`ry8xk Кb{VKGlLp^uM+7]%0hbuJquyf@m|]<Dzҏ}Ï;غ]n]w] d<K^(@Ӭu+Smv"6z(Y[XU v}yG00Mu[֎*5F!u ClE-f\NFoXDS3KzxyyTq?Kdy1<44gj goQ"fki͛760@|siߪHӠ`q4蔶9fbӸ0c.ĸaS*lgi .`y\7Z$Q%ė"܏Ȧ&*>N[4Սq"V>SJM&QUyv|sz-_\K j.f->Ic'65w1E}p.J麒gˢq(*v@wk˺|-` wy={m&~i&;W5.^jM}ZQKC' ͸x~fڏ#/Zg5{w_&vw 6O k2 ZfO;|+tϪtmU+CE0du'Ea>fn7;T:uT@ C ;UT Y:U놐#nP^porR)qK7">&\/6D.yDlah֎M C1:jD!uK: { է$k`C[E=UZ5Xv5)M~P,l3m93Dvh~'T ?HHj& *2a&sݱ_@Q aaըV%1XVx`TRlA I_'`O++HlYFaដd{;-ˆ9+V Mb@=fTrxRX!,{>̾c{M.Գ(8*0O!=* ʃwPY fz9 '09/.?f\k#0`tDĿ42Y#W^-r\5=aKmnFFwDܗt8$ܙ9R{ '\ 9@ Mo/$ؤy"2_+´HуU"ڕM,;l]㣸LE hM[9CKm0bw' ߥ86j;6~&.H}T2nÓg̴vힰt1#0tW1\UL@yjZi+#G1R>4bPa}{s%z&W^L0$J6D:GMi$(0>@qՈ}oųv!%@4O8.QSjInX}LaS+*_+QS8&$y8|}N~\e%ۅ!6j}ؾ@ˆ߻=3j"v !>bWDU<]mY8p0 e1D}~?^cS$8ڗDcdY8 B*4_VLO0[v+ޯ%m"*nz~Az*.f̓)<6seѷ2+<7ꏊ#I_\XyG0Q[t8iRb}Zo 2bLO3cT~^Ĭ2RB0(2._.>ƿL]׆ÁƢ`>Hq⎇3 ?Eyd$.={ϯNZ 1ӑkFWיOSkd2P['GdDL;2c{-) Tc=\^4L K'7 .sٺ?Nh:ޔOXnc^AߏcИ}^ݿm qW0n.$j3]$tm{﵎b `vG9w8툢_;XJw~9a}amz:)3WN }Nq8at3zXFn=oM%W s++*K΢uY{V LHé ;sjk%`ha+פњ]]28O>FQUu vR4qk-A2ƴW7 !FVHľ*[U<\z/ @ۃDlAVv(XS"|-mp{, ;\⊰'=77rqQ栜o-J3C_ =O`q4HJs(&mH$G "f5%::kT/dm3(ĮL"*ScNDmUYxӾ#v[RjK~U{$k1ܥ.n|4>V毫*0q v kaEV鞍b;z5E$kM gsǴ&LI+M2G5$*F֣oDi$#^xE@ 72Xl cP6jF Y\9Wę7}nXU$bMnHm|sV,j}$;B)!U^⦝rQo; &$'! -[l)mgbnIpkYĦR.$K\ F\U.Xhqȝ;/"MEjE-;N )û?/JxĴ7~4pQUX]6e l+{Kȫ|FD JiWE  -uef`^J<5ШxEWQ7EY9a1k0p*EN^oKL4lG|fq]zA>ZƚKm[uKBmu˷mmu-̋XƸ=OB|vx)cnk6u%/h&Z*vr T6sq w[8ret Qs%M|`+C/:998fZazJctytOXX8v$pO7T VbcxolK J?uiuh׏"6GN0f) ͌BAq=uy=ߥEC;Z b3Ļons߆{e7;8"-7q|Q읂~|`TGZ&#b(=8yCE{M[n^.W6וJL }hr?>eŷSӳVZq{+nGmkh"P 0 { 61ʍP. # )ޔi^=& S=cP6tGszOݏm$twϕdk[ibgp?ɶ =т MN3FӚ:me&RǟAHu[#ZDM K-Þ>2Ue+Z֠x2P]̐iuȪ*'# t`i++ =*7gˉɒ(1M~r 'bI zgiT}Lx+3-K-~;DBilMHD^j5 Fx6@8RGM{ZZ@"Tyi/Vƹ5K93k_`Q5b0_Ȱcղ_VQ~ia˗"x@yݕ:@_LL9 X+,A&*8#MK|WHۧ~B,v^ӕ)&bLi#/6 ' %bJv-ܷbzD4URkBG$O%Lw jydt+LSb%cl;5GFyPНpC5SV-7?Źr%Fp>SSM!1$c0gd*wպǣt5/ &R\p#.DֈSDBB:$|ɥrִ 35|p<nAn?fC74+ ůG VhMkrg߯|1ڠ˄rRP.oZla43;-~\̫؎o@]%M/AK͆g5La&F;*!U~?ҫ:QֺSH#4Z4z$fyhQ7y6*xḝO_ďP-~E4 mOgE59mT:c/᠍**$Q,9\>Y mWɚ!37M,l*E_qͦLi&a}g⩊/j(Eꇜ ZzEm3T'a qOTm+ʆ0h{QJ*s>Os:gdN!ׅ|N4ˇO=YOm˕Xweqȳ7 D~{hvBj.ZB]AE~ۃПgwqsf5"| f&;sO%jD;_z6wN-_a ~f_h]0DtVKݣ.s*s7B1 ՌEvGn `hDMihhh $X5O4Q<ܨi2b_ޱo8C"ԡ#PY U'ȕï@J2YU#Ks(ڶCtܬl(=5NOþ~&䜎zqռʈs7P >-l=4ӉأxnX@f *R(ÈvY-Lo4x>HfStq@Wp#R3uO::x)0Mx~&\MmKEOd֮6e}CF*g^qoY{}dz6ꇪwQ\tDz'?L{y N2-hY( OpbRc/éZa3P&PI=>SL9Zǿ0VvhP?"&OA%VX wY+"i >b"VQ0(4;,:\*ӉO; (wdn~Lh߾B\U*BV<tWi6X_teښ0ȸA{H ؅N o̝ gɕkbhbEA@ Lb'ܟD ƞ{IɀMj߆HGϪ0L};V/ZRA/..y67'wƜڦ\'&6Ptn(Y.q(*rVL2;]~&D@SvZns^_Ì; ZksAsIG*kmz~ K`Kj)mtPj1.,aC͏'wb ld`w(-;*m.ǝ1%Ki{CMI~57q-SVYՄG;bޖWQQi #\,$V$WVdiX,P;7^,UC?fׄAH\ Sۀ,%pL4N 6` pudko!F3G Y̞Qr[D-,ܞ~qS*Xfo2C#6Bfd2EY̟$~e͙*zp)r67 w(CgC]4 oXQ_SQH wj'p[*t }r$kFΤAb+x7"sפ;.#"yB̳6Ȓ MIIvFk~19Iˋ'ZNJ7c~{#ŀ'Tt!APH6FgBC&":ᵿ') p)Ŏ%[Ղ(g=gJA>YPrrReata!q%8~qT$,F^gF!g.ݾICzW16'و/1Eh|qgOJ3Ta~:s6ȔBqa'1\t2fc~#@ߏ WH:js_ɋEYVKRT,r,8\WIا-wl2R{;5z`'o|)jłԶQ39 =ԶQd%ê}Ez89Ej(}ث=TNqڐ˝FGRJүbɯO.!q͹)ŅE-+-̏PP[ld"o%)H͈=R 9abQt% t7Y>ϫ,i3uզyV|,8%h8ա(vNʫcNbI--cz Vscc3!a+XYjKޮtdWefO:p7ΰ,UA  KsʣgHȜ{$ jT6 8P=N5E8̇QܿEJ7'&C#z.^x ь]ċ/> stream xڍP-w.i!; 4H7.݃ kBGf̽WW]Eڲ} j0s H*kp@.6 N jˌNvv t\lR ק8efp r N P?0gAb Pf(`t:I30Z08XH;! (@jvx:dЄY@^E(l(rpa9[2< 6 l 0@36t: O& <!`S x:)PuC V3ll#daspA Pk PQbsteA.|;b2 r@F\zj\,!.l.-y4RO x7ky@V&,ٵ'7_!O&l`W`O Z^?Oz;VOM}!V/to;:b 0[C?Vwx Oe$/K?]_@]Y՟퓐yY<@7[,j _UIZ43LR= `GF@g',7oA2n _Ous}ҿ2i  sg7ʻ@jm!.2OOid(X X9=m?\#0 9;ЁOBxs<% ٠0קS{+3K68 ~?H7kX@HǓjvA./_'f |:/ `w >1knO/ @_Yֆ_U{L1z/:w`cz|!s/ʶ4%{-(Im>w m _'  PQjshߥ@ƏOp/Y7P<6Wl5V;(x.D6p+dD/(`4 WA:؈u| EF=y#.YU7T_ֳGAjPa8b5 \kz9QP ,ޗSs:_z ҹABO{]mZR~.etN̞fѦHcbdn'tJ6iv' d;-~ƼЪLsȒ'>"J8g =&L֝?ܻ`ܲj_oHqNΖ;!s4^.e5BXYn}SngLOYjOfklZV7x7p XB(5c._XƗ4^& 8d1SLoUá xVIC(ؤ~M}Ts&`]S~hSZ3.=7:U t;s ¢VGn3N+[307zDt_(7ԕ FEI QCQ8"?nFM73V ['yQ/ƍsr2O%U|I::w!ɚZC%`2yJ@C/-)رC&m\捩GUۯwt©qU2ag׼x./&HU^"KĜe*NZNEJ,ՑA:9\srB1n*!wBKIL SAtզ\⨠gRBMb#EjL>yse{+[0ǿ#h ތڝTW>rȦ(hr4R:BŞ6| )a5w!)\FUTh 2 1Ge:0++qqPP]GV`v_>36CPY&plx-l2lYT=ÛWҴ":2k9`$ν)j]8L+'BVgt-۝꟱T,oy|ʬI` )<ꕱ¼Ԡ[3?!]\˜?8"^Q"etEk68u oo5C7CUS 4?[.{ṁ=˨P  RGUd<-E.峋EmhCœ)5OjgzZ:4B$1=8/tuk&6R_=]ZB%{TE?oւtGf  ~#;14 FMK <_XˎDk\N /libCj$S=SfآpSr~`=]]=)5ߤ{Š䦟^L h̘b]t__F,aFُ/WQ"Hu)8FMB3xT%}qtYaJ-曆$"`Y*GE1!ӟcrD]7/vi}W+OHo Mt<ʁ =y.%%q_W:\!N~bA")%Cn(FG _ۤMp:[ҾxVy@5]TۣNnQ`z%Q2ة\vGHκdR%.b%GA lJ/5|5&)DW\쀱A}=q1lMj,bT*\@ Iu:Ґ]2_UE&ɛa5۾ëH{D+ ڶ|+ΩK^B/p^tWp4cqgxp/M/f:8߉,ee yC۲HSuB*Ƨ-WHU䒛ܱE'* _Q$tGKųB9ds0~FM ʬܫ`!Fih8um%4vL/b,KD}i݊im?IԮmH ٚxʱɱa"},3jҤfib%Y@kQ%\?Ɂ9.xOK=C$2ym"ش8WЗZ eF3rW q(zIImJ(\wti<( #`!1~&*Q{)$qM#/>,Ϙ[S} @rA4̨"8.c ACgR; 4o-=j-ʥ@ [=X3%Ȓb -*~Ҕ 2ƒ {>|ZnV%QŏQŇQXjl3UD|-,@e;H*b<\B[J,ZbFjV=Q5p*ae`ـCl6JIcCq8mjqc_fgfθa6?,MC,_ԫ DzX3f,܋V8tn/ۜ# ,;)ZYϖowh=Rcˢ7e\姧mľXۥQ1pV[[Lm pw2 uK7EFw <\>8Oh@UhV >iC I:+C'k6mW=֥hfNIU5TC"mPDUFamLS@E} aPDiY Og݆f* 6_T0U`zӐ4-K6h᜔$:M> )M3.;l;oERL@o ͰSysy(fDɃ(D.5Qs6pkO9}sm2aq._E*jJ95IUB{W/x Av!#w ˳ke -I8YwH'q)1:a1Ѝxv[LTk>t3ѽL*)D&as>?%~eꂔ #zj@LNQaҒtxuQ,謉Vu|hUĤFk̩*P|d)_EڎҧhJ}~!ywҨ;bR4p#YQ2|;v MNbpg`SZ iF26\ŘBckXBoJ QyV?]YQRTNz+4F`E- ;B4EάWXQ*kWKG?j_9h*]BY"2vXxbJat nUحOw9N+v!D4\2OHc;ZYD?ƆLa+S# ra{/p9*f(EciF`~/ YL=/⍤=1a0.G/Vм;-0Px(Rޝ[-dkrYnYZXKƩh;:~vZow&sAvОP9Ĭ.9St u@*/*k5:C4?^药gS?Y o$;EvZWLeJ4v }m55$GoM|=Z{a\oԅ/I 21@}f}D*+il gbp[B6ޯLj?0}Z6ũ@OSElS&Yp9+=.LA;)%:?NQ1_-镥=<)"-o];Tz?՛9j/jߎ 䲫Xy+8$+hL ^TmQjf;M~`J馒JweyF<|S"Ѷ b&:V9Ґ2>ez u\?.Zm/5t)uvBf9=K>l9=U„g5E7O앪x1X}q|y&[ծ(J l|Y  M8êw;Nl gO{/x0SYH4KO&\ܞUp;@'Q FH*8tn?4,q^>Jm\&}D@OsShΟb688|4 ~dgXC0\]Т$2rib$Bp}zDuE|TO2KF/foX#WKTBOW)xcl֧f 6_do^5(Nhi8Kʦ} " hTXSJ^mg8LQ{?ʌbUq]gZț7IHgy&̡Z<P]sRif"}jV}RU/и31~)[Ux&_2D 5Чj+t8u h r(B?% CiƠ $xF{;ڌ|&>h`!0j~ܶ4W7m9ir15 ՞NFFվ6G>HGF/Ĵ.n vMB$qSC]LJ!Yp_6=!2)YPEtE*'Qufiު%YdS]JXA:U[5̽h +:_unT)9^'@EeN; ҵ4 Eu)qW)bZ>1pF ;a8Lr>S|}Ԕ\o.M5@EQ^,GӨ=Z;.`/5Xs?収mrbTo#{Jȫ7ɷGAg_IfŤ!\Aކs]>{Z_a:xқdD.>5_ }SD C+m_zf^`z sqV(s#5jXVI``Lz>ƐO*uE|j/:",Uoޱ|]<]cWV*G;`㰨 H[}GM=Q1{:.=vج8Ap*S/o\V)qU Ώ}(xz-ĩ>ʼnoGZxh _ӐK _"j /lm$뚾ܥ'9R8ɀ6\Q5#^ݗ,&N0rt3QAxQ*'Cɳyo@=y?hOQ?~΅\u/@>§ y[ԋ׋ }-|]E=v9*mǨqQ> O[N'Aľ!J&߳zjn'VEG}gHt9e a'dٴ\2j;D/cj!%po'<'ʞ4!fN~en:Մlt(TLS[,@; o{"K-/NeNiDՏ{މ~!-VʽsMvCBΒzwt"cVS%PS4 - 2ORhZ(ҳ< n]B{Ճؕ$u5<@Ij(m 6Q#j|itЬءyZ}hHtzшIB &G(vJ3-)@%",˭xԁV a1=VqvW_AC_3;Mp ->XBN[/Rܻ> stream xڍwTl7ҍ #FnPBc6F74 !tJJ7H! !Ny~;;gw3 #E@5}I$&f0/- !ˮQ:qG:n1,d@>0G@z~H S_G "##%'E `8@rc*BnSE# !+,+vB y0 E@ݡ"\`^MN(_0 (`(  w"Sm=_Ww'!;`nP Ꮏn^L< s;`4h y`n'd  GyOB0[sp/<௳ {Goas8FE3@R2'Nnc8aF/BzCA08cPd#ah5<'[ p7\f:VIU @ sg#0.@Ն;!25ҿy&/ B< H|O ݿ?hz6V;o;( ]0ojD& u4 .A/oP#ˆahxaŐ%5ovJHH$؏sI #a!8 ` 8!$S\ y~+Ș:(_ H$f_NCh(dn|TvVrWpmDafW0`0:'|S%=W y֫ǭo^%%-VK|GLy=3"C-MnTHsQ ]]0=f^-KzY6!`oV X;NKG}ts:oU'$h'A8jU4|LԫɊ. 8WFLPi"n+64M,lgA-tejq uY<J |~ΌXz^Pij<@E{H6̒z*֪r6YwW͔%IOǘ=OC SAQ|`jo0(97!7q3TX ~(r'QDREE9/$6Z#Q QiqJ :uܮq=.gmnXN|\2~eZ/ SߴJ*K[ "`AOt>>{{\S*gȷ ^5Z踓݋|lQ_tzO`Qcvԥ{c5.qv]_$[7(4$ZyP,l#l}"kU[/-uinDdH>pG+fܚz`{AEWrkl>^yӏ&IqTt>V48˳mXmǿ`Uޒ|9]\Ti=&Fu^V—LkvCÍD9)'jgVߦYwqHARK=O՜4r$.4me] 91 ts]4)Vyv!9_"~ d|* GM5jH3l=xZʼnĨ; i8=GH=y[B~u:od-t$х>gv-VsOzmvJ/11r QqΎ!enIdRPY)/;<Ig^\]RKlu#5dFTڭ`B"#ֳ{ 9T#t,E/yi-i;Ǘ dZiiɒiRה"& NJA3(oSK˞01/|bCFCE@7{3ZlR}Qj5ʊA,Qx[4GG\8Yg3X^b%MƵ^8ٱڰ,X斞Ѽh,[gp0ߺj)yq_DnPOgYҷXaBs+n;'h=uo ﱵUtxZɷ,#&I0SZR=. Ӌ)Qw([r}FsVoȴ}0jg-@B!˓Tn]/Շ5)ۜZ,$Ģ'V6֪vt}v pgJztCXL Aw'*dw~in0>jBL[=lz+A`FR~>,%fC3f&n)K"ֺEyFM *VQg)&X*pǀ #Ȩa8@Gg_(*1lF V_Г 1ՎdT[E+bE蒋:y`=.Tfvt{ }LTzJg2U2f> <}՗'CoB19BųWFsXKUw'w)v zkjsȃZQBM;,/o#v6>,l "" XV?Ɉϑ7AEY ?0Lj3U5{ȜGͧW #M0z^#{1zD(źMU>)PY [5οДEG>>PۏOj:-%OԾ\И~\8 sXƭrH/} L^e}NO.( į{? qp3;|+q,Y|(G^Cq/&?gIU~Hgn›k-W 2K%#[j^%M#҅HDrin󓙿\K5r} я;9Y4TjP1c2>ܒ_hL[_^:cKMWf}pjgݚ7sD0T=[X鷴9I UK[yV$MyS8gIYܸ=̈́6*w) ]I t)Rut6Wp8W' /FUT\p+s?zm'JUDǮ9WvMhNw/zY -dp ќ{ONU)vf63V{dHDBt~A0u1WcΉ~f,Dǜ4/kn_vM (mF簪ŔK> 7k^?~\& !i"뭆l*Dە@NȚYRGEѮBȻ .Ⲩ+CTZm0W(dI?r>aV1|R43or/}Be$yى9ْ?N >#~H1*3j07}iON!zN$WX?;Av5njsϿS2PpMJ'OS_>k:qt3 NOߏo8|\n%T64*xƓ䫂g@S[28$7]oN1X.6=ߛ/$9 ţjcb!+Gfd$7t/y5:)vTp<^!cq! \8AM4 Xy'Fgؾpkט(=9O\rB['B3N#y &u{YfrHT'By^$."ו3O.`l8aIE@\z1~W<<iq9<ɧ>}X{ǹg'cԀL|}3usnB\"އ_ QI0,p@v珆ϵHkgiάphVoӉYJ9abV:Brc٪=]Ivo-b D'񎰇l,bɧ"صa{^6W*8{m;J&i>e -`G ? {+y^PZpvy*s%gSE| 3IG$^"汞JQ~e!72}{D5>Ju.Cϐ+%Ҭ<MHE_dq uh;߀TF J4U*7-"yXz(!B>u|.;֧H4]!:H;AJOqNJwOWXyRjYiiκriJ#nPQiYA5Vb w7cfwSY~8UQS!6s8:&*,p>G5K:"{ '2x+Ԏ1%_VthE1myZYDbAogogܾ3,楶`U._C@襼֣x VQrw7?φҤTo HW"I]:Xh@wɌ#83E*4<;;A x3Q=a×@ ~Q8 54~lFk+m{lv(V?mxnnNl:"Vtٽ /TnkΖM峣q)mF[6Ē)CFw?YIXȪl](72)-ORT,^| [nZ5Dlqq|M> stream xڍPٶpwwwY!{p ܃KpA/ݽOw^սE1*2U &1sS+3+?@BIʎ@Ei %E:X;K/ 4q}I)9@67??++ &%f=J=|hl||<f&%W+{F3@_!h\]YX<<xl?~2|-s{?^. ß w0qpعXl<jb*X񕳷pU)O},c);O,@πrb?](H@jiP&v }7~J@sk7s5y1{K߇h"m 4Wv5kTk` k{ ޷py?URfl;7 ߉ @?'lxo`}rX$E"7 ?`8G(C {L=? `,Z{LNKGzכMq%;?^ټ7 X,[ sX ߋw@AbyyTrWl﹝]tWkܜ_?߄y=fK f!6!bL;BT;|;Q`Sj?;ߊnIވ.6†%?>'O#,:k 'b}qlwrEQ-l(_ [QۭV@|.aՊ1:G4gƕuv#oT>8G7{üJMvzxĐ7c>q}Jםq:7R@;FTx,Xr1mIv_ɒ`8sW=.yZM]UT@<(W .i9i-U~8urT\"< 7f`n:dh=UYTGR3/c5h\L a|U!SqT[ƿԉjniZ%LIzB|ƣUJeB -eK+',I>F.Kcz 'ח=t71eUyu5 6%m#XGVñL~YJ%|޵88Sq*<R-Aw9d('lӂg{.d}q qO7\'zO퉍EހkciE84A%zgfyYwW'=M=2kz\P"Hy3ɨ?w.]N{hLؖ :TlD$*?s6C= =;`qڹ6:t?,Ւ}KzeئA&Z#r6XeOWA}tl".kyry.H ( .@563xz`De˩'%ELZ=v"e!4p]h K2/^D>f8Pwl]f0#[-i56"stPm"Jc'2]:7֨ȐHȪK:+G1C=}WuZF"?F-أZrG/xn#)=O::o>6Rc-FYKi@S Rp,q+u.g8L"̢3iqA]c3J bUzt_5\¹wvth:--ЯNjLD*0IgyFڮ$Ċ_g Tx4oSqg-7>PBQȲHn] Hb[x ^ͧzb湻NR?eIO_-|^r9*Iﴗ8E6EGΊo.-:dNL!J4/_ن\_ɤ._jX(`8@6+K^ d/phƣeqZՐ@=<)zDZe],bfmS`eb=ʳ>0o'_n*+, is1#v9+l<;}ȀQE q7 Rf;\B{ɔN،#k YɏBq!H-J2Q&OP߯o/%N.o4Fz2#NEu1ڮM64%a݄G<ccW lX/)n^ elNJ&G?);7;LIk bm,aGv\2& Vcny}"^ Q?TKHMKIS˝nEa*! 'X/2Bi6u<3[َ%|$N +|' 1䛆c[IofXP,/{<7}:Ě!X&~1B~EJtyk 5,%unoOU7R0 M&LMj(; w r |9d7f71QxiWb̂ݏs8?6 6*WˌL2VClI}=lN}. #KN_WlMUNJhώ*2:j&&-,s^;{RE 3Vgf%~1p, %D@=b5{b*?BtD=}TbSJɏYpEZBiF˔6mKexLFڔKis4˶7?B+2N,h8Ik"ݰ E. 9~< IO(WApl7V.Ȇ~yx.1r >-NJQc8-ZKEsBbz&ڽL?-sbQg=gzv(ۑG C;AdI$E 5BRGd!9eDHPqތhd3  .8@YkrG<;mj7˲zV{S5qV%N[Ɠ7̢̆> D$y}SIݍti #}bl [%E Eu_xA5n'x7 kGz㠗,n&R Yߧ čVPa8_iV;L$VXV0J?+jQ'o<iIϭEy `?(mD%G$^#-.8F=L  {_m.T!ù>KDr.a,Gp`MڰhT쬀_֝CHQ]]7Xʴ}OO3iagl> KDKda$a>9@}ps ї&t2ߘ-8Ell\f f-W2c` <<@.U:|_KCP?3L?C%Y8Хu:NXb"?+ ^cŶdBnh\ WwriU3_$Ho堮!H%;k;anL9hx&1P=EZ 9+C9還YP,t/[x.jF>fIm۴_W+넼&2Xdsr1vLW+?]f:"c%L?3Zg0W,ۣɋ>9u`H~1̅\j]g+q9If`5yl5];Y#Fv/h:zڳ7Abbx%fIQ1MdKⲤ%40 ^- _ToZ$2\9-ƖUtò8E k**&ؿ5bUw{[Yj #ʔ-/(~I erER~fJ/,|O636)s 1: ~ׅ EsIS)dW)Iыؕz 2cbhze YWOz:VKpi e)XxZsvɓ NTN8:* o 6u _0x T .hd׃8eo*ɘb3~NP: '8TW$&3 x@pLD-yQO.CJVP|t߀kw?Km`7c.(+멟Kx;C!fۑ#\u>15epF=9Z|ru_5<#J,F"e>uzR楷qI= ={Iۥ=fVEiL~` ׋JL$xqvUN@v?3Gb.$}(džk/9̨82fŰR܅ <3Yt´'kʉfr:,m3I quz@Syyt1y+_V4Z8Qbӗ/`3\rO8jJpBOXѓ 5ܬ7 |c71tdU4jri2c(ε&7Dc;{tk_3蔏]vn7Nk^!ߐQ1}1t,o~`Fsp)v> sEP՗́DGv3VO1Q &?34m$Fp-A7:X-/8*G \GYgz(Z hfOՆǤ46C ~_5۰LBMw8&;npJPQV2G O?4"'S}XgleNN(jdB}4z װ* bsFA|D*U߹Z7*u3E|(;xqר_.LnG~Z3&&eX聃wfaUQvXYпUYXRDEf{# BɔG0dt ,TaZpoBu*|Ҫfj֜|u-l>t} ǵ䆺_w(z֐9a+7U 069(Hm (,+hLkQϗ}U 8oګY v1V(Bwk^@7IBk/9o_ws1X`w"-٥tE&n7^])y{)+b)&:o2\&;3$~`+߂޴EmGK᎕T{=b+ D&@қ}{piȆ7^f%>ӓ?'§[ϭ(^E<T3@+7{(4ϑM ZL@z=uWqט$U1*A};'UilRw#Vnݰ 5 ?Ӥ1,+L Ym{pqz4j>w4PT n4UƳj=\irB)4JO . u. :w< XCv5*߆ѮZ(\fH~<:(|#|C .XA3tlr0140Ѷ@ɂAt51;ϳeiQʶZk볜|/ŕcÄDh^J(z~Y<;Bz!\&Y_[%FlG[ˇ3G6-J*mMJjO3FǝF%sa+`S*xg lJqQM{Ƭ#dӻ*>0ȟS@/֧iydݜЃf[ؑ_r=]QtzhԿP jg99MuM|c^*p}NTmBMK_ q);2;.T̤i{]!رj 5 weݕ=dh2UW|ݽ6axL6ĦP)t e٦r' cc62 RH ܔޖ.3+Hj:К>)R#D~Vuӟ8էVxgC4'C- y#IbRֽ7Cڞy'88k;Fq' R (F̗LG'o tlP ^v Dnɤ9jpYbhi":&꼳)L|ͣ&>1r[%/$@=KX>i{ lWw*y_xȵiYB > 5+bsV0Ux<UDM9d<ıQNR;%8r *MZxskrֹ8\Y2l-b+ f%x@A 2,H".DB="b?IC߬POHiH^#dx9t(|qZ/2Z~'\6%'\[q1^ԩoP.FU=u|JqQ-F:Xz0͑'8AFb'*L WzTlˋԍSGޓUwS Kcy^j=oh2~\ͯҥ@hfdLq47u+sAvuaiqڕnoWc4:= .Ph0ҕtosd'e n~ʌXMwؗ!-B{G:jSv-J(ISvmZq%`?I3*)|~!C< j/1c2EBE\r+2ɦ\a{mêZd*UvԲ #h TlQ ~ 4biMVة1J o&^0-vA p)^mY@c " Gǖ/HRVZJ,w~Tn! d$vI2ɀI#R b`Hwֱxf!!Bˤ3yU:Fi\4>4U䟺ME#&P:GdG#+WEэPe> '|L"W,u~>=im1N:%dsLǺ龅(9f}L dZ& [U#QYۦDSB?\#͚E"#X$:3朗(34MkitHoJˆ5b\@d1}O\Mbl6꾯hNݠrt89!:1i(ղI=jocJ7"R+GnQUЀt}"s(Fx~*5O`3--LL5TtIb% uq$%Ꚃi/$jp"=X#,Ri ?BidXhNd\[k(`>OhzdԄ՞/Ӏ6Gj˽i#'APdFfhvWrFSLN:go%mƔPpo0б"pg1ܡȑQ(B< .rZw~i'7Ε6vxPB b8_GTL }>Gx@@N9= H !sG" 3xX}"zՖ$O i"~ApH*Nꥏۡ1 (,].w1sa8MdV믒!"JD|o͔m)PƋtZ2]h3i+vnχЅJս6c[! h2T@d ɾu# f.HPZ[E»5ײyd!sAZՈ-^!HlB$+J"2z 3"v~KK(yy6b[Zh5]ќltf`˭%YutzRoiQKyS~6ʧ+l#8xiՏ 9U6| G4++ofm+(â R;O؄k6a,K6 She ,9Ŕ- ,ǜY!sō2?`%f c(ϙIf,mύ^eT @=iY# 6B q65C7&PP}ؒ=-]_Lj:iȩ(3M7pbE%o?| l1ۈtWm=ޗ,]l{,kK)}׌Mp߃oOmeoR:cyJJR!n ԃ)uӜNX$|+RA> H|L3M) Kz1x6zֹpwo:}b8Q-?Y Ǐ=ET̔>%N{9uRb;#T OªdR"y'gfj]p;HL*~x@iM8~U[: /tnjwL\)$y8+Q\9,mt%1uף# ZQ'AxgkeI+2,I(lRcI5L\A$zwF>A'f)a-/y%"3;7Iay6F6b")\a:=BTFnVKD1c ~= *c-%d ͊ŸJv|c3["Uzv _ 2(8gx3u >SiSN(yEv =(v ύd|K&J(e6/v8At} TOYG*4;ˤ7zjӅogXt/_?ۃwD049Z&g5?U*I- 6`{x-?$RԽ]9{9 #bK5!²N*a7zPsqQob5D{!Dت]|&0y͂bQ'Q؈~gu/v-$s7hޕ %Ĉn?oZb1-Ugr"/YS)8i==*uYhf.A74:BTԶʶrڕ8!#FGE.!JM)HۡiBC?y%; s~+WH\AT@'VL> jm87+BS_={W 9)O/ l꿟Tzt"B مw-&; endstream endobj 181 0 obj << /Length1 1819 /Length2 12885 /Length3 0 /Length 14017 /Filter /FlateDecode >> stream xڍP!@pwwww8l\C܂Cpw 23眙sޢj=սVS)1L WFf^*R*&3}MMuX8yYxqkg{1y ￾--(͑I (#/%,fff.V 4b##O#}A.&@&+hiwe_~֞=c0/29y2*)(JYL O7 z,&RwS`>߹A Pf?,mg_wGO+_~us}}8qU[U}D,s.֞@sekW3Zu? rA003}l ~|R dtrpLMޯ8,chL {y 3`c/b0M&ſf0M&ozb7g1gy @V?]?=?]?d|Wi|i|i7rU9]>} G,ʜ\wenwewe#22?s{ z@f|!6u!5" Z4 n(4ՙAη"#hk$oWH_Z`[Tڞ|Twp1 8hBwR:q(ü([[U٫C|.aՈ,3͚#qe 8DF*@{V譻0iBե_c|[WYEµ%Bd54֪߬}˝,;ɀ;IXFJmFјl@ߝ=6)D+<3oy.ZHumn$YT9' |gcF[wq-ubU-ݛ[g529rᾡigcٹ!ɉΣ,\H0AȂ Qi ;Dj0pZl7L:~t*W\&na|NsK5B5B=)|{uK62>I淶$cNXCm8)|Z j<AbFc s_tTbE>5ַkc$=/19s] 2ݬBMCC7D_3s$4Bt%JUh7q-́2) ~oў7'arڧ=wI!{\ J OeBc0ԄXP?K>Q@)>'.hq~֟'LƩxAe־6v-|Ik=O)ID.hxy!OJ@=ں"U5BY4pɛXN:[(-ݥ!!X]!eK2DT½9{&vH}#SywD(CE~--ƴ1?|o:l9 ~qy38Oob!0Q l q> ,O?QʌYqH= g3<(OJu8yQ$n(xrqhfmb3 ȞW[6~.5X|ɟ $b"cHfK2/vFb*f3^ bwk$rT @3}"!DMƒ\àRU+ȯl,D iO<>yt".|56Dsgv$[񷛮nPe{}U ٵzq" t?Ԥ N|LeِjRsd=R%S!xpu6̕f-\U}Yw5~ag[^ļX CS@sMOލļS-e,fJp3sW yL #kӥ8YFpX^/n2+Ş3wz^.)_(xMN:i"rP%˛~\Uwpۂ4=KHxX*݆-R?h,2"- LżW" 9~ =kj ~MP&u\"!Wv԰C)r=>9,v tޚW6aPvgXnھ0 W +55jCt9.FYL#p`~}שkoxm-UbcSLR?_ŝ(*%IWWVq\h 8Kg_.r񈾞z7Cdb"97t\"AeMO-H[5^-3lT4K8ȕ4}Fd|[51oЈvw{w é໛JTL̲3J!tɛ{͎^[4}2M cO7>|ד`3 dw\>Fi9u 1 pY WS5ź)R|P(7xZ Yt" &̬/w|Wqof[{X!5Oy#lݧ9]e_P怺>Xr6F9:z=#PިPڠUfFm.klίc{)|b7 J^1l9A ԧR4O! ^X*˾.!R͈md3+Y\ @E`ړ8faSLm2sƼ8ۂOH-t(<im?}Z4K^[HJV7i?U{K3cpd"HSXF~|Xf&ѪNL .b% M> <,>ADbY7(zR2ėe4Ɩ6 GA0iv<%ͨ0tA1[8 9vZxPU M$#C-=2]s1/zQ Kn91c4咀^R(GQ5 76uo=IoB?"N`Epa%Mn`y"%cmyDY*@*xR i5l!d}Oc~)Ձ,<۴<LDDٵ1'}Fn|lS-E\ d yżW^g,I]ֵ-YR݌zX;r3}5axX2nu{{!-]:zG?FZ4x>\N4#5r=bކJ1O!u*pg?BtMZuywg}7r~JHWAMǁkv`Xc3.J#byb K}a[_gʜQZtx~$=jM֗[7E@ؽhMmx78d*mwRʅg0)BόDB!l@ S M^f:կWb(&Ŗ!)08&)`-hx 9ZH%Kcbv0#w`tbbj{N.!.ySR|C}Ks.ib!U'H Ԙ'-e6ތ`dIH|:pڠ6}~ 'MtHJܿuG^ fcf@tǓd}j:Z*ň-CVY#.u*NH/Gɨ[h)%'љɐEjtzK.ή_ƻa0ꀲnp4xZ9=x2x UW\_ 8ad\F`bљHYl~%2:Gsr#YߜN(el: .?M 0ZX|LחFzם,Ց¡:*1$Mfdp="|zXqq#ϪT3Żĩ︁Z7%+œPJ+`ȀM^Dz:(gG8nc[/zP#ڄx{* ,h[Hk3REC^Y)h|>/gCs\T(S@+}L}>@Un>o&FEŕ^ war-VE~iZqu@NU-lD-ɯbn;P?/>H%`Z̼[og|k߈KP9^(B?6TNoC;Z[́uZT@xi&_dfcRk?UIw=/|ffku:C")MJ$RCWwdöZ6q.S{xY=i='*.H{ǡFjt^5EKXrl D0?~>O0%#*EБ{q _e>YeHcu1GWYsT;|~sb_̱;;v엎khy#c*,[Q#|#;:XG1?\q;,٥En5& d`cHȋWKPV\oIg$Wm*"Kc C+:Gp_LGE31<-j7F,ueZX<$hLJ|ur?.vNc q"<0&7(#xUQt`w*^G OۥRd%j*@ ʼz ZBֲ Ae[Ig?UGt(.$Һo슣Q-G.׉!hc:I2UKUmqnK,mCmI"/" C] i;,kꀒ$?r#֐:I XamntxpDzoVݎsaBKkhδpxN,?P4Ex؀2h8W4iaUL[V ]*`ú,#[ڈ'} 7U6Uh8G?Kڗ>k(KPK_UˤV1 !0Mʶ(Jl~DL^&Q5orVWQ1HW>vL)ƹܾ L4## lX0{׼p tVܔ/7 1ɑ_.& |JoT59)mb=9'ԔƌȮIxٿoXvWY[w6j ^Ey8|,_}jpYPv iM(NsVɏ*HPLZI]*|ԺurpwJSA;.qwFMr>z,n䞡*'YW-]_ڻsC~|x xI%3 m C( z\jf:euAdBqLxr1S Q*T/Iw6;*}tE})"},orl_ns"z5Z(m\1PZn-_8X Ae"pII:ɯ Wf;1L 4Qb,'] KD-%- czhpQ%ˑu onHn*n48mϖPʗyȇV={wztcʖ !:o}rOPb| 7F;pq}Xlcu.Q$;囋<_h?ѴGUuLK ؼ轕@+gK_ѐJ͂+Tges~ՓBvPhaZVC^D0O}-Ωd31)"7h FSoy"/~4m˻YҊZƟZ1pэV#4&{_"0z EzʤpGKCz%PaFnEuʱwj)֒,V/( 5uCTfyyR4 (8Ejl_e:5 ݧI5w8T w&<=1.e vOR/-jF_riRc#*d߸ ctŃ.BӐcӱ`,THhPw`lu旦УH]8:t73*ُmx"5sm/u"~DB3X~b\?/fFF4{g#|_B#|d$D p]!Ef)'X_,nP*Np8fDL1It}Q7E*;ossyTᄽ|B=>0k>oLyi${EpA']EZ`奢ȷG嶱 ^'chUJARdJdU@K2#[L+ĒIsZ=5(UJwU-ڞ;rIi\N CzcS|j٤&T*&OMmy(_W7;XibZCH)g"|i]C/?̈́:_u"v؏m>ޝCԱKn==| WfEb-@.0r] ]uC@xh%ۦNg:&<4)ٷa+;. dssYMzɈ@Vd`Ǐ >Z}qI KH֣σEB5nad2>68i*v"x DVZuY} ئ _QtDۖKroŃ/NBT;5l7x9 !ܵx㤢r Gæ+2!j_jnQg T֫9}=0 jP= Po|R(bWy+5GȽ ~`a o@Z24ibt r{3>hmjg;h(dz/kpefrjξ&$MٽB<`ԭΛoz${~${# 3ŃŽdSp< ч h3dy:~pTmfxu$Ȑ)t-9\Xw<JL0n⅋Hd82A7}`5^(fR"1ƺd:yx\ZM~hJi(;jz>3pH,JT0W8ihYʘ^|}X"Y* u'領3C`BBFK qQeƞ,Ti 3_6elOҽ]FAQ:AW|Ǩtt<=7Ut|,f]~EtDLs/>PRY(94(WU FUpff>kn?hRqϢdq"^qAF1݋P*V7pA-==,v WR/ώic #y.%~f}o]E>e & I\\O` SߴBwBaR6Lw,v`#]ʈj[nlx q9js .ck[cpڱ4 pQV&J}G'0 vٜbD(H,;~JÍM}4mSΩ_})c;BE*Ɯ9mћ-vf ̟>6oY%)s8_:.&?ny lDh Ȟ4ę/!a~D<5Wyx"axj%oҞ|uckşZХud&#d$D'ӂK]\@ \6S< _> Xw:?׺|[~*\(`c˂㛳lY­4vcaQء5gYz>΍S7*vX FVG}CGX~NW#1C Z5]2|}νeDеy{]%ѐ'>7s goK^nd;w "LhN˳+65XTdGL_Pʊ*[DmZCa˝Ao(ɁroΞI|̧8-><'1qZq>##MLߌ>]FGq 1w¡01)`̷ך2vf>9 jp0QL{͇U(x8Ul.l $5lLvmՀj0S6S16GgDQ*d1+ͬ~Y6oF1?i?|IpB^T P[ws؃)q^+&e %"uү9lEO尙SŽvpJ}r0$ԔЕODڍ#e!#gG591$7EZ5JimhJ7PVRXI?ݶ#q9fS"9=![9+S1sKU/gro[N!=7f`P)d}5d#JQ-E73m;!x](:(3з!;丟*՛4?w-6| Gu<ȅ7Iv$ j ~>Ց.Y 8mzB8 Z撀wݐ`Ͻ ,* ̇ g"+8o!W| f▷Nx-`>l5)Gd]TMMR[NNT>Yж?{u"|Ȥv7皦Մssg*T(XTO3mPU˜tdMM#;5n@v9k[2 ~݂R+Y4D9Lv&n7 ՜w>p mvχ,,z}7\|>WgqD>LABk`Ck8ƅlb+@%z+Ǩ&N9 I%AD_|(LI"s.PQ*?WUte`Vvn˪P\soR~oj@?SWY 4˄壪T9ZF¦V4MvaU2L?(y\3NS~l4U꼪 ؍1h,zN;V WQp @He/ĥ۲V@F5W8M>O^GE D#O2ߤ,( !˕ fbВČ.3"##{g$.UGú0n:]ˆbz":%ɟ8|sݪY'R?StZ ҝ(EKDjy[j"Arԡ%qn͋?ݥ,'1`jtn_n+ݧn7+/!H(2F PԔ6_ck '6+1W endstream endobj 183 0 obj << /Length1 1405 /Length2 6229 /Length3 0 /Length 7197 /Filter /FlateDecode >> stream xڍx4\ڶ Z%zމ c 15zo!D/AtQ# JH $os{[֞u繮=6'=DAB@%E@"NNNi@@x@hMu=O8$ IȀ$e@(7!P{B{HEĩt9:1u@x iiI%W Fth'+" #!0()x:n2B`WQW C;(kdg4!"N {@"PO=0Aul$W?ѿ !08#A _@0ă08:dc&3 sCP0l^ EQDSy@!}s.7 ak {O7aS1Eā 8 *`mt8`ƀ/" @{xBA;# A35=`>+ ~ _w#p>TVFE@HJ j!-{Ka.o?! L!?;Ry?~+ a']$F C.^-4%#т 1!_vJ7!N//aDÈ y0b4ϺjD%`/1+q?J{o2H4&1 ua0 33 9_v8@w2&#4ڡP(h""N[jWL@8k~ƴCLȩw|>zB34 Xjʇߏ{,H ̘udCfVVܩ.#${Eo_uK\lxǖl VY&ZW؏a gq}׭G^ diJDRScMIλׂR?UHOb/qZy(chegJ-Go={l7rM е8 er(scdԊ piYx ]׺3Ȳ3KqDm6'$DRC)KYF_MP1pRh9zlVe8c7ɱL3dљӿܢ%~ŒOM]=MO 2*5x٥!{_Qz~=LЄbDg +KR&B)xej7OB[ҥ'o&ׯ2~&PXF2={h$XNgeCw?Ml=(pmB!><&{:h LY&w:ӷ|4.NqF4dKU͉*K41V`V7'߉AVgb!n6~T+(ɸ#Ektq͂TIIQ'BE!6 iv8R4\h1-Q3 ᔄK2QB_ⵯ~Ζ;jn^Jqd+Ee" C+u[[5mHt"mizmOH s=Vfҽ\iYpVkA:FN,v_Kk&$*րҒ^p&/Yd]kC\ ·;_cdTi]AV]?_gDDO:h+?D;GBIoR:7l^ȡ*sၜHb515jpC1DYv z$NXgi/T LlpbW G#iIÎj߻pI/ҹr TYb^͡hzɧ)HaiTX>ox#I5Prfs40\"I U'w7הG^\G8p.=yh aJG0HsoЎsїJ) \`x l>RIwlxg-g _qp}:>'nڸ{lxsL>IW&ViC: e?_z`)eK(Q,y!M j':#* f23Ho\U@nƙ$zXN_XmszŴou+rO>+ c١ YN^exF_4H'lp {<$:zdKg|gv!HmLueP[:&e­r4T9CK%l3$GK >sl\wLP3ĞS7`[3k,aׄnƸ]G#j_2JM:Y7M csu4K޶k89n?M{YR{VMCA| #IDiڸ|^aނ'2,Eϼ՞ʁ _\WxN؈s.v]_bō}!g^V~j /}BދQRqKZ$9Sf|Υ&4'r@D q.>~AuPvҫ4:6ٯ+pPmFsje=ܕbRnz? ~:}bTo }_527h=VZ&nxJ?ߪӉwՏk^Zau# bB]X.X5A0ɾP ϐƪ>3X7%e@@wIN|H_f*{GW97nd$܏~Ԟ<y ̷)711\k}J\.D(7vo{+qV.\U>hY yq}wҲs* >'+ SioR)Gϑm2ks[A!{c%c5#moCǥx<> iл';:f1N^__P$֜ԻB^V>7l11l:H`G` Y%0M=TdRUzj.(rzTUDݮxμӒ07>CwEۼE1CQ(ZLwǸUb0;joCSjʿ/gyx؏#$)qjw-dumu-0;`IpSei^y'+8imXhb/5s-?~:qa֤#/;iQg|UXU "l_M.r2}7 q2v7 <0ʑZƒ)M)XNG.JDBe8T2,qAFmS<yarFQ`Q(o=[J@Mjh^Q~-#p[i:Hl͐K2#Civ$g9 Ooڒ;t7=QT^EbpuX~,KTq>蹁[cw'7zY%/x=HT#IwϙucxP`a7i-?LteAsCjzn`1jQ\XxGiTr_z&o5uDqNKj~>m[۳7yK;Jz%p.JZQuɂ6-3M xxى\|6 CܗE,5Kျ+řg],S {u iҚ滅|]wQwMHvav]xz3K{|앳u#%XB^‚^yčN; sm;Ky)Ϗ\}EϑkX1$kmĝI4;ORhFJ{,ЯfSqИn91N\8\\8vjip!/Up3F>9tc>M5̎[-v;t$սK}J EJ7b-uv?|ףu+ Ɲg_h-Mn wg\ *D\yG'NjW׊}>|_H^aȒ' B8l)WWz<>P[9BOwf7|qBc\¶(Z!t{iO7P!KIլnu ju hH} ݍg-kEo,OEnI-]vpA/ڑ3OzX:Q &ɴsOj* Mg֫3=7`=_1mRVste]{(y,ۗ}8K4I)骥&(iwؐT=S Gf nGSm˜r/C{NN 5 5ZjnG-O;nޝH P zwjua!Y(kz".Ec=I'AۍG^'Aڋy3ˢ sGee)X"ȳnZ WfM!)J2XՒU(`3)jA✚Zo<Ky*EUlG.ZW6o=N I'zQɣ|>P~y||0NNXA*$M}'(x*EœK^o*NQg0oa6 ҳTM|E}Y A޳^d{})$8?3$NqXd6Z_MQR]Y2]Š֧T|8K 5S~r7Qq\uMݱҗ4*73I kt>8FHN!Z[b1ПOfv%{PsHhdu{2 w&OЭP <+@VÈAO xd桉 TXp+>VlQ)Tf윃 ?^?TK! < ꗒzWrˎKͯ@<,^>h3D8jo(M!"*V%%C\/\J*:G-j^35-{1(w^D͑Ggad1HW?#ȶ>sm{"Ek+y˹{/ǖؑx?YnT'_ٲ H+ & Ȥ׎js{Scč,'*&W~S%xѲ5H}]`-kǫ4%t =CuM7Xw6pcK ܮ;u>1ȏKf꭬ȫWB_S7Y+t i /,rCTߑ:PzE듈CF`E |D\u^\Y^ָy`h؊fF'֩;w).B3gf,jT-gD36Fͱ=[m%&"\S&ߣn;+I^)q/bg;e^e44AmG֍]dN(E72KC2,֕r-*W*8uO\>xneJE8'˛cW)szrM.GjcͲq~p5ڃó>bDzkd28ǯT|fe< i=R0gO|fǿգi=-}.aB[UE'!Qڡ,{j;NH2%Qj¡5\Zf^D~LZ/F KvwNsoXNrBAՋ.FJy"nwFo_$n*n\^~Ч);8l'YgIl?X @оwscV&{VH `cg6xg[]6Cm8@p8qe|2?}kwx'V;@mfvG.q"b/S,xH l9d«Jv:&O,5h9B7u}[ٷ[vц/N$z?|/z,GBT~ c÷.hն֡f"rTԂ! CfeLDZAsSɺ ۟_}J.i=vUYr]|JݖۑLn<=}-$ZQMS|Jb F 5 _SH'.w X24 :n3wszf&XʛrZ7}w7PN!\?X -[E:y0 ׸ȅ=Wv#7+7)oGKL@ZCT*^u V!Ց9?lE^0J}8S ؉un>/i#q#/M*8> Uū pW:H@Ո>|9`5'%֎rgqI$.fXX$㕯o?G mܹe-OLl:#i/eڞK'bHGuزX],XԖRae\^ ||{*?B endstream endobj 185 0 obj << /Length1 1397 /Length2 6309 /Length3 0 /Length 7271 /Filter /FlateDecode >> stream xڍvT6)%2Ftw( 6`6`#FJww t*R*"-glu_w}p(AQv05#ʺ 8#1c\`a23;B/; a* B<\`qXJ,-@ Qr' PHGu;:apiee0w= Ѕ``\F{ eaʉzyy!4xK@8`h' 0@ H0q(.p{@Ba\r@CCw޿!(+#p@_M H/"Cc9~Z=q{2)M}RREnUYu1ZšuhsɐÚK w_7ۥQ27)oɓso,dL3)OqTmF{P—%_LD<q&>1'Iړ )>0kѧ`QO6NАM\DbRΌI4_iAJxtV6NtWEqRj1#Ypeaiy}oK/iQ.#0]\Uc5NV\0$K5kln5(~!䅞!w{sCfІ_WCUr9/Ƹ(H"Zxef6B9$jjOi#x(._F9. Qж33jξax zS\J>9&{mU PZryH3ʋ7lgw9+&tFyHdV#K+ҥeKWGۉ*ЌcL#(hn­Pw]Yo <"Z4z"c*AŧH)-f^|S40\ Ԍjd[A\$ FȬZzԍLK?hg0g2on<S&Iw ފ dz;),_\£~2a*I[~At.*T6Ϝ$TNP H6N|{YJ,;,Udb)ׅ+c8f2I7 迸ʣKO?E(VZ%D~[+a =4$ԯ1z@rk(gJ`' 뜷v_}PX^nQ+A E05[S2)RrJ|:N2T.9*K5O 9z[rm\>Gz_5gXDQղ>]);.Ve6RZ|Dr@e3tOV ;+6$M{~yJ{t"׳xc>s|c]y39pvmvźp= Lh ",UjlI-9-ȴ}峯%-4 "#cRwL^Mq6FxIMw##RI$yp}ݕV3lj`D̠zb(u0%yN:x13 >(㳩GEyUֆEݯzw **_%ѽy:n5\~o b^=Zh]"+|0/fe3=<롉] U[KIX˛ e 訹xc(}Q{2?,jr(}툸b2"K^O"Vq""S| lrOv#V ģ)k}TcፁU!B"w{7 cLr<5 +Ix^WO?l~ ='29*}Ԯ00<+dUsg6]0P KYdk;q9u cV?#v;vE}@fɘԠ{/)Mxxa?dW D x^,ԟH*'!\]}J %? /Q_+,Cg_v(93X.N6pOrH=)]9ޘ{Xv;SG?k@L˸v/hI9܄EBr|A>Iٴˆz{Ip*<ʄe)˃Zc2 W-Ud#%и6)|Q 5۪{?z-@_7t}N9 xnkm]35繱[7q xU|8Ƽ4V`E{QU~Q1̗@=)ZV% E;7dI6$.&0=ZmWJ>&8u0!j$G ɷQtB̅UO'u̳+eE)59$g.FZۈt<,_^lj}_+Z*pyߏڵ71"O!bOE{M:22?!ǷP}EN20,633Q0$M nscC7h}}UA< –ɏ^KN|W~iB4!EI(RWzVw\0J2sE˳o6rh;iJF0uBlse"}Ѡ/\)NrsZiC^n̙=yiP0nƤ̸N\ǚo@g.6 390 XiAqG;pK'L/>a5O6W[F}| ~Bnhqq@7IX>8)$e ĠUO.C6dR ׍a}RߺRJ_g_|K ':6s}QǷvyTrl>ƚOpnTZDU|Q+ة/S%%O9Ħz-M\Df=]a !lb^fQWoTF}rÇݞgzFݲLޟ;:JY9u\ٓ7U`mĮx2Gnǘ-TH"0SD&gkY\{ϾjGOrz\%usdi)BM"\[N T!ߧ I&g$j:Op*|ߦqT}84͑qW=#O$sS_eUe7Z 5;9.;wa J>mg>dU[i{NE42ޑ% V6DgÊ,o47@% s-U&9o(8PE 74j>VyCB%=hle-PZxȰmoK=?zѼH?!09x?k*M7syE0e9}#~v#>g߭l-fa!6+>n$wmq M=o2=ŽzD\TR$/YbOm,|}GMvcVuW=fㅴ\Y&Q.%,HVӣ{<뾺&!Bh@?#|I2YJ}nC_(NYẤCzB0M2g`uU/ V$Jz+5|r:p$[iI%CfXCX i Y#*dr' ¶ʴYEӦ*z^#CX:DR0L-Ĺ[h f[CCmX|UZApxs VV^v!Krчž) ׋\q>{ՎkY0a~,SB1ASys 'Gw%&>w7M絶PU/'VI:<9^xTVbC >9E_7u cb?~(<&F]y\MW5Nc]-ءm$ڹeJZ7y5kgm7Ikj\X3o5P,1g (F2}Y2׈teM^gGIt` cwlƫ1ᆲk[fh+5޾.kQejdS]\32ymy/EpnAңaFb3<;r#aV?R|.HmE7[=Z+Sʳwz<8|xW3PҾ'PS !~M= J∜2gg>)ri~+}a@%.~"*ȹpx3"ot33֮Qz\ûȍ:QwQO2p»cny˙̼t-gRf氆Xɲx°>5&J"g#xyzXe {|1+9J#qB~D!ɑ fـ!G>h e]Y6Bd]fʍihE 4efɝ-ڦ'pnlXͤ>znN;ROY.pЛuu*oœtIlH IKC$A \}r+*qM&]lB6/_= ƒh ;FIЭQau­2#%ОyS|BMGre$^QWnۏ|E:{{Vo/VGuBrf_qW4y#9as-{8"1dQ 8aUɕ`1K+*jT"dejH%iK;_a CuH1EE*6&ډM>.{Iu![&:;s4yF|tOa=f$6|I7.3d] SnٍHaiW<5giP[uxGs } w^#~_csmωӰTi[Xyѝ0$ZNһUW뫞33c^{Qyy_'Qܦ,Fu T}$?Ha endstream endobj 187 0 obj << /Length1 1374 /Length2 6070 /Length3 0 /Length 7017 /Filter /FlateDecode >> stream xڍuT-Az{k IPHBM:A" C.t)"{s㽑1o5k=NVCA~ dj&V@HLpr"Ns8@!e@ `q1uG!:@1,dDe/ /A!pt# ]TqP:p;B!@.+,-qЎ@o h ^pa}3!' 7A9`!h8pE@H  ́&z@w8X@ED_(A"@+hpOOB_@+xA{=# Goz(a( j;e $L Gb1_#p(}ܬ {@~y !pm!?1G8(=pI_a@w;Gp~E{w+bpG0wh iO-N^0?+|ODĔTUQ>@A1PPFB(""-!j#P@?_{- g(j@$D_]_"yNioNXQ8 jcZ}8 Ym,g#N̂"B ?q3D`N$'nj$Az@u?08]NqH( g@ prݷΐ0o%(,t@UDT( 8:h4z8n;C3(\&o|mIꉖrM=wһ9Vy{ pedɐMGn|3,FϢ`~~#. 8,Hlt!b"BSlj b-tQ3aUcX9b[P$Pf×cՖ8SEpBw=b{]Ւ 4~:y)} ɹ:<.U#iIl /" =]3`kXC{X mc:@Ws7\BDZ6)gs:k< ߕm E - Ɋ}j$dr|;[UaʂAerbT|jk#c-ᦑ\L!S3ε ķ|4SGɻ{1BVFlbgY %&6"t ;/]՝EŽJ*:RzW[[b5"q255p3]W8u=oAUO-]v~tM ^@X:+O4u?"/ȕU'Q57D]A*T%mQ<Ĺ~KzA@oZN8%Xv{C*:%(Ko WK@,ukLuKޛ!K#s 3T/;='|\H,M R3DP7V;8uhc[O{W^\*vbZ)r:9&f,HJsnsH>(l)GV٩*-Wb8DX$.5Hj8RP$t[Uh"ab0D+sccnA]|Au?B SqsDܪVҎbv'H2(3k)qw8^yIwe%f_m:($䄾-ArU ~H~m"{)"Zjs:֗8Fjb%0 V5{Q|^ E9cnŮa ϗVu:n uۇ<lIi}Qח^7E;/ùCصJN[ QmXZ+mfJ8S(7tg'6hi2?^tU1d<(o[!)!ˉ/ۭ6v?/PURsOǜrG L9w(Z#4J5^tYӭ$nH޺43szcEhWLQ@j+W(0|dS;Ԁ7= =% X\K^t+.yza[GvSoMng5OQU/msqn+ʹz1 " "@ߗ=/^9΄ai%05螓, z$e>01ѓsL:O.*9|T[z#1GɦvckβPb Zh/79> YXZ0> ayÕUzT1",vpW-I˟SkGSUGZgTUy{t3!}QhKw/vbJgeyO؞kH~dY$#pVBTJ#mV77ea361'pYjoS #${hV#UhN3QƇ_C3T;C9KnoЩ0 9^V$PVt7(@ǒ4DoNjؾ6^kԥ {@sɠMaԛ'q&O=˾JՊd>2,c1峑#wJ2$k;NUh")qۼE1Ϫ"^TevZz^-,}pywq@ȕnmx(SzEBE/û\ȄD^rzk2F=lDj-$Ϸ?n« ;Gzy_5g[bsY8֢; (504QD谴HͫAn)H:F+WPHiCF,BQ3W>G.0&#S.4ĶMJ0YUu]ˑRͩDž5AP. bRP4P/;TT\5Ĵs5;u16>yl|17_|GZ%FyRϾɌ?PdP|MxG8/m tnu]b6oge& os[_Y\T2m( oQF?x^j#)~ 6bP(blD"qI6wG @Z N96bSҬh䪇̭Ԁ&gPT|I4\9@^/͘hآ]ѓSM5\e3y&$t=n^lBnY찏OTXfX>X.xʧ|`Vv>H]8V^ \݌Lq]`FžHI؊P8ez+8[Ku|8D\fv4T1_x00JP}Nt~.-O3lV QkW-NSmIyF dTW/^kdO ,g+ aԄƲkZj]??wu\hRWcn7kF?Z9*خ w9د$K(H$7"WЋ~i8q|׹3$ l(O|\O}^C#ہb7UȯH;eT}| KI0SHUqnί|in+V빑dNjI(:dbۭ@"rZ}6Jwחf4 }L4Fߒl0AUFJd^K'=Mms(0}wǺPpKhfe*$kr?+'Ntv+Z}5Io}&˥ߢ.e/ҦdwINc(j7 X R*#%˥`\npjPd&٬qb,Ll!:]}p?c "y.%v;I'7cU[eS"7na&6^-ENefxk}C [/wFlo>'rb.Tjz`ql9-ƬP2Lhʌ@WauۉGuOe}j1=N4r򈶂5Uhm"H;i\Aӝ~sk{өbKS ->do%$؉1|#<+[صZνB k8 ^;%y?* :k<3P%l*efy0sQT8%x P 4c5-fQ;RKlfBVe@c*9Z.m#s} Q"k:K*wdTinOivaXl L?wS3C_se&;>#y iژ@z]mFKt< l*(o1fY?U)l{00el Bf-hY]^ o]nnSEuxއA hEe(ݏT"ٓy3i:/E]BcuM|(-jnzw~ Bq[7[ =uRv?YGeٳc﬽Tv+c]4ļ{2c`z.ܞIhv$IJlQ1N*[(T,x2~F|`tq%w)J/1b%V[}2ܯp(qAtOظD*G A&S%ZbMq FA hS4(VeGS\D֒ +,w ٛwUC[SsC3W@\0yE10'ϯaEoGw*iu{bal(Wo{L -e̝;( ̙uUAVg]OGoߖ!l ґ<+wMb#J1ECuoAJIHḪ#/9sPʨQ\ww[!{MˎO S>}z \~h-[V H~SUn?QS?w=jl\}ZA_nu<,}5Ŏw7AS65 ˆIսbMJA{OXҽoeJ]Sy7yq7LٛHJfO_yVLq;|if*nOefXZ?5g!i+>4X 2'zĨup}v  Gԗgڦ =gw{a `~ f| ƻ͖JmӳʶDxPfǞ ]3{<rݙMVL1M> stream xڌP\ !KpwqwwwK@pw n9ܓsz1eLYs] Re!c[# #3@DVEB _9ֆ_" C7ӛ @ `aaf|`f@ 9"Pڹ;9O5I;@`4:" ʶ@sPP4srabruue4vdu0姡;@ 1w9Ckߥ1"PTP5qr5tV@㛋1,)X?􀿛`adoD69v66s+@^\͉`hc B÷ `nhnF4om189"O|;߇kicj_dbncl cg;&Us{g6o"?2Sd͘~Pqd-~`Vh898=_06:@6 w0wh3 _oflkc#fVҐ¶nO6VV;+', g/OI[}v{^rپ-@guٙoX?_.f7ߌĝSGohmn:;퀬&_SuWdllNo dcjO#@ N@f?b{fenRu4}XmoHF^CCwIdyFc_C `buzsU 0u@}&ߢ ӧ?$ n?E`RXAܜ&ۛ[-p +鏜f[fꭽd-3 axCmXb-7sqV:;oD@6x ej/jN;6Yof7Wf?ɼ9?72=/& 5[<{g߃oWc,o6gmrWH.heh/}Ƙ@:߷\mg$b\u:koG/_-[=rOsAZv{H@@y[ oEMP]+8 Ŷz* C lMefÍPP"ɳaslhKbד~v+IC>"xBg{/5KfN){g.\r+Y VܩF|*fV/52K@Gq:{}3=J"O}SkCJ.Z3Z?݇+jB)Eg2(1[xɸ [;:{ -ǣsG$HWlv]cfdghݬw4+R0Gߕٙx2vyqf=`0d+TZδ[T_É\$nzl-崔K]J'\k$v7NAlNeGyFޘ(a:,^wY;}b?KIZ% 6r#O9vl@p93g#dW/ڴ&2̮"27^h D3yr΋ibTNLp`K߉;ݡed]4XpvS `oD QaW]߯kfItn\*<7F\OI Kҗ{ XL(ZS]lL9M:UKS,4ፌigbnT-%a@_>s0@̽8W觻=V?lÏn_& E&GvI䉩(׽UR(&WJxN`@|wy@s O!:=d(؋pߧ$<ϣ*!Isؚ~PA_ v)|K2[4 Nѧ ꨓg`P7g3yd<#Y?}PB^`8ֈ[ڻf7K텾$Ⱦx 0,)r]P+4(/L宆)e:mJ4Xe:\ (`GݞT׼?׵5u/ 6j`LIE%VF"d+z狘-T+"b5j>RM杛Ω"#h #B j\>F#1in} \6ŞfىöcsZ"ҿ_eoZS'K06lnw#nM6}ܟ5f`=ޞҁ: ´G`9E;N>Ÿt"2#eՏxya\dbaM/R?.td˂k<#U d;=2'^p )"R^7ܔ'*}ct2K=X8H(G 4!z-73UEat$4FL cRWɿ$5 O2Ήݏ[ީA+݁ٮO.ص$TB{Qc̄AcDAȟ^=3$:ȃ~ʎsEkŀ}\󬔱[EUxg9tb$bߨ0Xӭ-V=?b9{Ͼc) gm39V9+ӄG@9󠰛'#'FWu4[.xo2&pOV^m~Ӹ(y7D.8Uc `T6Mri,Q/E jHũr0tܯlPz^֐{"=7Ql{ʀZ/;Z~B$+낆y m#]~q$!Xͮӓy}S:+w ܪRdv=vfQ?sƻ>BpM%xvȄ=@$<KGV\?䪿Rj$]C 1۪3N'RfP=f#͌r3D,<}W $Ō0 JtQHY!n`PHf4\XL†h&7 8-agNh"!5=Y9ȱ?Xlorr>wUj2.*Ί{<+|Dbu#E[#č 1,4Əؑ/%ax[tq0ڇϛ;_Z$!2$l gO>Z^4r"`ӿVF1B*ޜw[y64(B푞   Ѥ<!AZ0<}?ppΏ4 7w8,aP:t"H`.6#((C_nk_O}}ҙx;).Ybvaaj%` H̓нyZI5 BogYrŏ[ƯFy 됱a[R|;Z$,<$;iuO(f+gPFNDx(yp2v!.lhM/| `3) 8I4k\JkA9ȳ=a.TWφK Q'ErP Uшmnr.u[(;B)$3JK8:+Xa$WͬaO=:s6!rR$/i9e5)k;tu Ib9HusM .gR2,dޑe*vv4'g+?ZDijkVJO+o#òI8<^/c0]lDZ8M|΍?AbJLԗ\k˘`Ӄpg0vuC6!m%yZ? 1u[x*Ш RΧ'snuO]L9iJ`SR 7•#=aMJTڴ'YxW#3 B5 ֚iA?u5dity,|\uW I !mYv2-'ƨbT>쓎/Mi,;fl6D*%FK]>`RB~Hp'tX7og8^=20r'օL( qM n9I~hT_2FX6T\XCO%8b!TD/,؀Эa_*KC~.aL =Yʴ`2"AݸEVœm-/u$t^= K߇nO]A .48q=D}x:R2Obs*}5%!pq&0ɻ%fkLinUrS3.LEN0K1!xkJJkw *)*XUWNȏC^?4sПn5{Iì8FL1(#T#͜bz"sVQWz/h(o#aN޸$;qץ%]Dȧ`XE>;im闾+V^)s]7S«\9:znp{j庆>m 0x[t́}s?$eT1EKYVU1L .0ʘ5.h}9(ЧsJd@#4Vtw Q_Z@8RCiۘdJg;bLvgBH\B5\oֽ|L{kW&W_Ω$堾n (9OA9Lj"tZA)1(=oPq鞂'B*u'u>n 0z~қx8# dwM&)k͟5F~>eRmҩ8};> '0FOSͷ>s:w~I"1E#~nk;yY=74na*J JmfbRdiw be+5 eo{UHrDC$j@PGI_9zTqŗ:pX2guR`Pɰg7"9|qc'wv7YyG&4*vκ"ps.(IpOIޟ 2qhW/_97Ic l'\Ƙ>]eيAl̟&"36I# 7tn_XGF̲_pS/l@RvDTiuX+ZX{1۝#(M9nI<(զxfb FAF-jTngXH=c>""W_+ 3ƕE*v z݇gg>2W$ʢK2`%JĐ>L ~_ 3YkҶ c-zO(i:)@6Me-ٵlۮ`",ʮ 6 Y;?p,>-,urHB]djO09&;B!Fਖ਼ ny:pli\#7CDFc߄+kH WڟB"b )#{[6paԙX +bid+!c3dD:gJt{.+^ÞHu\aVr^M;쒮`dVEaEK"{~e+l,KB0YdLiFa6&RA5mx?(qܞ;0QoQNOhr[iO6}kvrte6Т zV8^ya؃B|gp=1dGZ#n(evl~c[V]cltPDtSr=4?0 zUcrU1ɼ0QUzLTrɒ\#z2n,3d/BFuZ"-e?C}9Xmj[o~ Z&IXO5_xԟmR18H0bro>֐S #ocX%탩Ժˎd4RυHVM5}0 >EPTG)zkG: H'?xҭݕrpWZx2& pBor;eƝ\u%ef%c]Ss'M͚5e, gMy_ȏ2ưW@X3&jM'auF*$R i=UT'&kw_P'9x6q+zi-CpWڳ@wv;RKSq~+N,|[i5kݦV#s݌9;h$K]_wĵXtJ|K7{v2w{:۠X _q[˳*Ӯ4}NyJ} TG b=$Хmj0#ܗbO{{{o.߽Nz+}ULZ@>.ܞa@)E!O~U:(otz3zݦ_R@2ZV gmM،ay ϱ;>TZss6o&edV~$ 9z7落F.諠F=x}%ac)HM!GYAqGɚ#o ~xYhXY)>GIc1EP-sAeJ2 Ђe*T/' 4 y?.7ܙZZq̥o];WEeoSkڨg29qwAPt-kOwf>e{vڽ|&}ָ bj\J֯,{#>U1\aОǭ=M<' G[IjE"DӧK4Cx+&wz=o4";X BѼkF>BhL]o-Ai_g ȑRYT3Дd&En/,F9$#b#% 0z ]7= &eW=0X?7~QGf!,Ng1 WasxY=πm9 P rn\!wo ,D|1/gqB!2-yɎ/qڻPsdj{_$:ƯQ(i˭ȴiJ?m8WJ+1WtZ36q"!΃ cҺvc$ͅfQ mp\ n<XLr./M"˪Rwҥv~tޡY@cdU)`p7 \;ëBN\bЪI9L҉fu>bla.N :/Rsä3\ֈو3!Q?7uYRR#ed\| Ʋ~zuIe- "Ռ4{0xaLn6gӤ^r\1|۫G3Ujܔ:# -sT.Czʝl+]Ld̐϶Zm2F~d0Y"7_f%'47|#s1C$Ԁ LC&6U2k%0~@Z%*ޖ*C;Xs%tݛ]ӫHTG0([IAؼ%apNɒ=IU[cd?^Ѩ;/1#%߀"A=蔷ؘl-_DZ6HX쎚͔ąWIvKM=,Fͮ*+JJ') 7JMB=Ģ5J~ڢLE,)Y[ϝ?:cb\~Tk^yN^:q̸\+[*O>7d'W 1iR\SS.O6{6YB`;;k>o?C U`4HBA׸d8){ ߊ60TQ;/7}{<Ċ׈hɭELi,'ꆲ>!_:GۺNj 5qgvRf{*8#o{rϮes_<*J=edOxᦃ"1x?RƵM7T`yxYxgpڨ7eTIC5]|FfbGG? u'ΌΛ.ж'qygJJ/ _X)jG^͌=\|Y:P6L~u 4aHa0u\冟 ?Mu1lNO./u%tTp!in_k}|mot_!~,ߧ}ÉBpsADQ}9rbzb\f|-bi~51.C{ȁA+b1T׉܏]ZѼBծ8θ}~0yչM$)Ytn!(qϖT8l^tޑ 9xlˍ< '~6AǯG2{\\6R3540fKX1 IL5naۺkrێ7Y`]Biwi ou m$^HY[ /rrSZQeA[DdGOTe6, `Hوs1-g;dݴxWSZN)`=>VdVA9RpOM2c]B奝 (OJBQm`0ٴ',ԏq육4OEmxnrj Ȳ$R]h_;&,o 1;K31?aZ\) Kh['U~$+s8' 96i4 b W]a|1%\3,w4Cwev8&;־[;/Pou̪q/v&|AZ[S cpzU\;/7ƃG~⯩\*N깤Af,;.Q n oO"dw}qM&3Ыp/Z)bԭǗQ(C\Xa`ЃϵS$] | C%RI=VsE.Ҥ9"RҠG S~np8(ؒZhd(+AQ0 LBI㙄*R_j\]HՌR;džl,H`h8h!rva頺 LϏY=IyBx5 }Z3M7 uV5ׁ8MuVJ}A" KG1L2o_ ے[Y %)[@ @ix\yc v/OA` #AVvtasbPW+̶pL"ZFK{B$cﻴm(i$^Ɲ#yпaUJ* Y'D ήzLE4={a n3D$,wnQ\3@)$>iJ`A_f_[ϭW]^,S*:ZWx1qe>+ $Gޮqk d~&kR`,_<ˀaN&YIh$~[yɏ0R:uZ~Lx*TÂ<-L i"ZǤ0"R(W/oS`K&ERk~y7#2WЈ`9>OωHGeJmjF[U!9ܘvt| U~6n7J }FAn>6`]PGcZXDR4.pp 7 Rt>wEkllFս0.]ִ;;~zGf? )rZxe*44ؠ\p0h 0s!:VEּ Xnd9IumӦy?_4w(!͉h1#Ɣ܌GJ"gJXoUpYp+< e{{y廉gO& ު;j@fDis ;ONR&r=RGو]{c2PolgZ ճ2e8[|2V6[u]PV};;\Mi_3Kh5?[^C^MbE~+F#svm@Fxt^$Er8+q~RO_J-0џܝgtuD; w%OxiJګAd6Pkotd+L<9b'u'+(.8-֥t. H$e# NzdžI^„o 9q0ѳbt@c _yHV9&$TǠTY^h.?"Y$АevNj1:CNpes=Ʊk|I|V4Vh\ lAx#Gqe &Kqݭ?@˜)+q:+niU/QԽLT~%zdv/c>.DOJ+Vw"㕞U\:,S}d7.[Fv7FY Xw#_#G^:o6jp<%>!7=؆yJ)IL-qQ #|Ρ5Yn?Ep>qo6E1Ū\ Mzԉ<z`Y+) ۄ_8UU9JZ;dM >KqYɋvᯜxI;PTiuU59b =T)և.H7קNڋzXN*Ο{",w^d="IP̀³tXAuj0NC{$A]̫:hUx{C~ɀ側b[x Kq˝5©KrɛSxyJZW4@ͣ~?t #\z & 綶KF bl['*u'CSצ}߫i1syڄYNCr7SrPXq<\5XMS4Y:iǍez)5ḥh8m8S\RuQHϟjNtEuTdKPYo%[< S /D6$3;8aRD 7.s`CsU1#EdqW9=)IDE+޿he\F˦u)ՆL;yVl+4LnNy`Ֆ" ZWCI lr̨9dvsӗK[>D>ߑ`>P 9Q"BwW;R{H]Uls/5*'-Q*]:oH:9YZ=*W>ho]a#xjjHo8nn`qk!Ch2 #G"u@ݵ{a Nr7-k? պs2])H\пx ;{@Ⱥ|h´+^b)\⡭TT:|$BC(uc5iь!>\5%V?Q(ܶEoMsk-LN\N7RlV8FOG\]{K0!=+]r *k# q5sRuooD'w8UEzgiגݞm|7_@bA/LƋ&hub21ѰJ{ mo åg2TjYCM(NvvZ`DU܄{9 eC-+9MIˉj̖]'\s0"/Tʅmy:Q+0/i\iEӢ:8cycfx)}rݓ(QKݯK`Qˎ>3upPw濪--m7{5lO$Υ?lZr֒-yR+CymSCd6:cHL_f.'x}Vheև!YȺ,ΥaTeYt31KSEڦyi0y.R`kǬl74G96nc'Q _C_ C$U\#ت=1%=m *GW 5ƭٟZ 5* FP^6.#DH86a]uFo[bc}PѤrq|QTr&I?vJvc\AK$L[ݧT|e3 tB$eJ{ 0M/݅d?xb0Q;Fn\OƏ*.\߆v7?}6r/f?Q/ 6A}_Wvc8m&|5Ha"e1YC1:Q xuQn ~p.uT٨6}NYr5 8vѣ߅12vHéDMFE|2BDDmWĨ kj/zyI>wVPTP1X 2ɮ~ :B|]ΔԓK$Ū'ls* 'GswՈQ]t)J|캩׉g@~GD^'bo폊:Mr6 KɉkfW[XSTח 燹 #RL'*?ODxO endstream endobj 191 0 obj << /Length1 1615 /Length2 3735 /Length3 0 /Length 4754 /Filter /FlateDecode >> stream xڍtTY6#RTW))RTuCx$BG("MdHoR.5R""H|9Igf} 11PsكZ8,Q+I  V7:Di6 $F4a=+ p8 C '0z8,H}G'"?a @<HFB8$+yyyAn(,"xaNH2`tNw9MBAfpŠ@,B:xV05Aww8c8Gn" v/BܑX @c\AXJ&H.J⑞H+ҞF;:R3G@1Dq6fM:  i` 6w؏u⼰~ 4mÁx@] 8.'%rq]3?w;` G@zO~wA"# f1oN~~LSw0 4~y@RҀ4pN^w$)"uh )s` "sh_2Q/Y{!?f_ei\] qD! R-k:`Hn]P:$L0DӞ6/+ ݗ@і B{=4I@&s]2IsG@4%I~6:{"`P,H hh{Lo0HL~!If0O$M! a.(dq?.‘it_A+ "7H wU ъ~c-;B~4Q$< 6 z:4K.IiU)S3!ꊛ+RYCj7Y?IX\puIA;qVO~]͟RX f^TK?j+ VP68-*2 ?!''Ÿ?V-rHY²j|i:$e&LɃ։poFfHFpUu"K7VC|@O4K)bX;QE g+VFEq+T&\;I)^Ky7S*0Uį?]7&Ttj gQn/П1`)J,|hUucǭN6liv$~ww?:7ۍh&QB>{D ;ʅjg&+7BIGQ3`VYzXC=֋c?2pyj%{Am0)+_]|yATj*bX` s]fgX߂%Zvn}rgKO.8ќb ^.sqbS|e)`Mv-՚8c:T d5M^H*W>ۘ!`F`R_$!=l6xF.9wahz^H =x,-NgHԇZ'ן u[=%-AJS=8Ox Y}~IJC> %E6}T$<ά>0sI5ZxLFTv`İi'x͢Qr3.O|bmuOBC…,/p)ޣin-õCd"=@/y/˃]zBJi޿}uS)/!Eh.&Nu#SC%ϰ9A8&o +{7ٸbz$A,Zs~ ZRkHdS%籕I!jA{Eє7p[gW6?HXLUj2vkH ˘*WJO:>CF+\58"n(# ڣfDVYl\ڗӍ#%2A>5UԶ$f:o箮c6xKOG=_j$HuI_m:eUsȃf:b|:h vkBܤџuV~KmniG:CP%mE֟o.5i s;t]ا =Yy%[* &J_v,t[ yS۔D9y>ۢ&&m<<n;6Ц\eGAp aBa:OY5q(LEV03YwdKm&AӒz:b!-2hΨ DlQEތ,H;7Ϳx(':+/HacƉbxo]Woeϐjs @G~QRSK{҅u;:a,̯OH v%њg4BOU4~*ۨ|@og]'u5֥ x}.[FǨeU|o8K{ 5狥7>ٵ3#9X=Lp%C*ȸ'C9۝"ϋ};a9 N-=|$~Rtv RKy9bI Gᦁ7ltt*$Dv;(+˶Ti·)ReT_t$c(m CH<},ڂ#&:[}1s-cbϲ$HW59y+9 bsfe`)we˚[Eo[nzڝ9MspNs;墤6IU? 9y1B41Gq.#Po7cJz,uQ`_ 8(K 'uur*%z|]?$*zAI56J/ 4ӭzfD&]9\u|El,ALu dV<3YjTTb_FsbaӣBmԲ{A]·đƑLmmSr~>#/SnHnM0Sn~K+;z-Lh՜U|uym^+M:kZ$1 99$O[+ˆ aO)P$ uZZTrBxk۞s(e&q)d5W簱XL)_cݴ(LYgUqS.֙YkgV fe5B=M%j`qhX,Jtq |gX'qXaG~= <78Wկ:2Y]$l =ڵ]> 2J8.uɂ"'r_MeD fLv'DΚC̋L8ٰ֕{9}zlHܾ` n^wGY=+xܴMܯɷ/:A 9Hu6/R!p-5qWMmHҪR^]xg6nPryB):Ul9q H՝et췑_쑼&[FfrJV6O~.v,zyLF~NY3W\xN8Ks9w*ФJ>ǖ 棴) R>[dEh >#_+2m3ΫRUפ{c-e=ܪkk pǎ};ltn\9y/='[*Ed"`bzVSKT"² ք(UE|'r(͇䵚my;N+/u(27*dyك+ ,! 2pƬY^f)hӻܾ̓@}7Cz%>|"gZE1J-7 lxzY2a~ Sb8!EvQ4/ig$%:瓬QoHc1C/HXmcwn^}!Fɻ×p2qZCw J釸==ߵx_pG0uG$Y8}S JklYi|m$;ReU䉺}n=B&Ẕ)r|]&:iPN(Ż SL};[!z> stream xڍt 8m>%4lV?3Qؒ] 3IyEH+;YB'Y-_]s]3ss<|Wĕmpu(*:FFLJDG/3DOqX}<ETQD O.:p).#?'0?D^PE6p *8g UO&rIkBVCw.]E@a? }/,[[hQN/EDup%j:^M"X;Aw>HD 9X>)8W蛔w@ CYElvK!xF$x)hqS0∔mTE4CHqpJ)rbA)jR 2adw)G;pw.e}}P:Ҕal1(AJ)?; 8jSrA uRj%Sݡb04w(XS&m>v1hxTmWETrG嚮Y$w^49i1,w␭AUrLJ kcw|İ)!;nRCA$gWBN?/xR92UOXTjy̫>=EL1jp8۷#Zq.FOpiYNZ|+ YZ|yP8X)0-ܣcOb_Լd *j #?IWһwP))|Wpem1 k䈭vu~*_l8p~@>s9an᱃G5 dj.-?s52da>܃:_s;ùn;O#7yYh"6Kq;>s^ı^0ynա iin'Z,JiK$Kbk^sL\yr 4Z. KBI'ՍɩK* ͨ㑥&Q|qJÃaWl*q!XXuTʊvmݸ PY( WKcMRH͞ʹ=m?Zo] ֓G;7ļ WEN_7sqqkHއk~lNH4*Si)ᢃsJQ}.si;ehg|JTJ8}R}UG(>xڴqW a!,؀|Q܀Sɏ1 L"sռg[S[ /$XXgCf^%%z 7LRʊ6'<7` w{TPt^yޣ]di-FrD6:{}(mjs@C2n>43!k^r.Y;}fmS;e(7\ϺջR_w4J}3|6mi!x/-<5Z,̻pgzy@ ŭtg"@UT:\gY NWEUrOsy>0~sT.HnK_^ȘyjپU3'qߙG0w+'&L|D⪎KSԘ  vpU[|P &}jkv;])V- Sosr_ yȏ CE7eg&lIQ5V%ٝW2יqt}xSjvvUEkLR9s5ontb|j^0)ƞ٨¶XjB3 %(Sm4_X?߷^87&Qs4"AX ~bG|*usxb*:f ´{/dW0tM ]y%L^sUXEVZ*|H_E~4ST_hs5p)= GzyV{2ƺS_A4ޯ#[~1["Jvnn"h6slǥ.+>^K\%0De+\u.f{6',?8ŋi6X#qkDh4oPqs[:|eKrgU֘ڦz̻0CִuEmէ'/U=EJx Z ט* sRDD<rӪrST \U⪳ ɞ|Wn㐑t;2ۅC+'3DyX1ݸy.FBvZ1ee E-87gܲ[W%2<\{˔Y(E94}hu47lO>I  df^c8R.7!2j Pڷ\ ư\s\!pnͰ S^d!Lb6-n{>륡L%8]uxx-t_;6wVEՖLWY\=AđTĜ"ߛe&zcY.7n#RY1WRk-$RGF 樈s,9K`]O_9}<ijDIQ{bԀ֌q' R}ucˀe]H׌إ !;wv%<9ZUq4yL+y\܊JHv=1eH>\^۩Ú< \H?w7CIs)L0)CsZ~,Tg/iIxLhs<~''ZRYd>Ho8t-489ڋ#/ 9  Kʒ7?~pvPtr§`"l ~&USse&^N|mbUfe[zM"El=E$VBU}?8ʰ:U(V(| |SܪG͉(ӁǺE47Ғ$}vZqxf|')xҐ5pF뭋?Z ﴨ/ymVXi9Y|-!ֵ礣0P9^o}Ec26j RÁǣe|0 ~caqƾ&֪A3\[/eFg RRʔ$Y^dK=~ݑ^OC^* 9x-˥kJw՟̒;o%`^C?|o$<7~_>p?Om#;\GǶp%L%.4 ޅ]V=rUE]/?nT8M8?fΧvJb7Գ1Aee|VłM)Qcv!]Yz4G)"VN)nMLT*W~],_Һ*v*ǿJYə:*Fɤ!ņo[]/kUJijts/ߞxRlvUxaE(R~aBS!pss^.wЪImcIT;vmC4QFˀu9'{Y{28`.8 --saNMM@vёY&oӖ9`,Ӭz#E8:[ԱVn֕F3:7˛5$ >RҹR-bs 4b*[?|HS ϙpsDa]^eGdm.'ya-8 VB"=BJ;g?'ꁖqxjd^rP(YD4V/aIĉsTmud0loI, uvǰ=$D=ju5 }8O =[X5q{=nI/}g]Ĝ3Ȉ"]P2SF+D^C.`֡}zgM?3-I^XXNZ| `MJ94e;LRpPӌq=eǐj^Rrt(x)p?x8mw#`=l endstream endobj 195 0 obj << /Length1 1467 /Length2 7072 /Length3 0 /Length 8069 /Filter /FlateDecode >> stream xڍwTTm.#!R!A)Nqa;A@;AiIRZ)){Y5kus_sZU[OFa$0CAA0'g%`%\=@u,E%$!$% xQ0g" \.W JHNaN(<`la+B!H@ E0*%m8H{g~7/0g EЂ0q? q/3(kp8 ' "wQ qE!'S e$zIk4B_jp#G"ˇKݐ ?{Kb15k^5 r QpۈpVAoa ~iOP@|s7/͗(qr.e$$"x ^50? L.y6h'Я A, oK\kc `ݿ-Hߖȥu+ .m7$(xa~b:9]No]`P 4T*IEۓ7|+2+FI| ܯ李zڮ,)s}b9R_Ex2Vwx45t`N&қ|r^^vYXq ׎nO'VtV_j\Q<eȿp#q8(uOXVpPqWB-tLGÜ /i'= "e&3qP9{ |V!<>q*Nd53Q"ZvOXv9Tbǀɗ넚k<[ۛGnyR f+l(M~/YK*f8cfL15-2b);cax Y6ڭh֘&6^"i6نn5!V &(79QmZxJ2\!'uIc-q$9n}vt)/8#_W7]텾D;(DRI8RXJZ) V/5u}:!g2)DC9J>1ՀŘ;]n.NOzl̞\4Dޭ{& [됹t5Pr6S%lj?!t:Tu 9!HnKsO>Wu \ /"lgmk^CA(r"5" *%^WǟUZgo +7ZkYeԅ(P ymD}PlEbw5gM0V A$i5ӞpۼJw#J%5;LRr_փa{h@q Dj~2X-BCf,a-5Cca{y's$do:09g `fh {,SVL@dj,OdO]çH{?4u=?N:G48EiG !Hժk1lrQI})xMT1'E¶™'CS+B)1b<&$P} ̝@tnd(EuJ,I97s/ݎ>ww"ŊRsRJ)hzc=ۼҿ۩pnPI2dcqڕIG3V 1a=jxoݗ/?/r)09!UI?f6@Gy4' М.q9+wPCu8 k3y-U梽hf>_;Q^gw~b@w7._ͥS}^R%)wPnbؿ $<`$^MCFȵ+<,)iM}'sL ='gW^9ė陉qm$2 @\n!嫡Ƹ[kg-=xh44vh@^۳|7B+Cx7rw>]Z唼ybg qMyչ6Qq0r.Ujpi(`ϗ:߄ 2Vz=wc"H;a٤[uBa}8x?O!9"FG{],gxA=2t{֔M2]OV~lt(=9!ҕEu++33l)`}hTfMOilU>9E ϣGrt2&6t?KXo)g&X~6wa1W[hv~ᩖ,dڢar >t;M7f k^[PMrĭu -6dpVJYwP!?UL^y"8Q#GE"ydy y˴q;2n,2BDit 9% e=U}&>كpw43`}NEm#3сHPla:Ey|z *Q yOKSgt^2 bw$f^45̗eUPVt4]Se˗8;}+'*d4Fw oBd͈׆w&97VāpQ|JG?/si=:?)O!UѢ]yp}r>Ł픑jkj|QYگ}h#L>;P<|P.kL!?7^ o7sRTTQM̵)JlG)̳qϑ .M&y&}rdLE!.h6`a=\dn?= _Xk,116sdVyuV%cOt=B,gy|s)2AsN!hI^ZtUJxuAjpk $]OE^^ !Q7PWQy'/ؔ)9;Tonsx{j4Sr#O] #6TuH#dJ0zSE67Y4{k!lu6W| vyWMJ2?*jlRM]jpMŪtG@SY0!るKzٕt2 -L,ZMk븦>&paX8MK0 s+`]6As3J$?ºij^hgή Q%/ LιUKbad59u>m"&kdʲ[ۈBo:s$ ,+heCuJSEK_șWN>Sy6lfncKJgR͕4 Yd+9-G;WJYM,u,{@_76ԖXr%3jpw4`<6~ZLZ-%F"hkM̵if8~<ƜA$Ntjj[u;A"z k=!*i|4OW v{Te.l9Ű% I-Z;yѧ"8'RwSll2{nv=bT 'q͗{A85h&yO篌n)v ? ą3 xLXDz^6{tذ,oaBxN*ee2*{%V=]؂CKD#4g)A89O*W%}d)rZ)[b<Vc9<}E> #wðawS>]- B"ș\K~X S:Cl9(o 1 j)n-CWN8(g?  T|80)pҥ'O tK#Oľ%ytN7vŝK,#`(~H=CB:XFN7K"U!INWJ>W_ym]R1RLVUSÍT_Q^0eՠUΛ;0y<|P+sJi_)`hHrul?JC>Wtq_cǷ+J6L))1(U%`I*zLi<$n7zTtrdbFj=$S YXmwxS]KcpuB6JLE3٫u_K0QcgͺMK.Qiuˢ(HSNeEwz鈴שּ44<W9: LHcDXC4КzZqǶڶJ{jtc3oF5ʒ鉟'޸T2E{ -`æ@ Yk`iMo@aa {sV\p̴H 6u+sdۻWVI׫ ![˜ݡȩLEצx]C̱;*O9]zU-J +f5uD3{_`S y؊9,dz9ve>KFӮ#VBxټ܉fx5O~X;&7x'$;` M%p8F{yAjh>j!B MTCN;ʞoϏުP hۼ_U}g0{J"~ Aday)-UXu!E@*6(hchAR$NGdl0exJ6[ɟҹ k{+$s:̶y:B0Nna,4 7ώ;a<7][[r6.אg&~,gb"#o,kkڮ{y =07qP+\LYc_oya}=udmaDdym8o?udjXZ6F V{3&I\'MѺ q[ZJ~2z0i}Ӫ)1 RH(La`^e[_I[h20+̫/b(m[}Q,b=*% ~Xt~d}DC!N㚸h\VBwẋ&lw.b[O!KvkOtq3}5 Ŵ3 S黛,棼t JEW8<;\`ډ+g$D[7Wl 믩;XIȹE faoP-MYo0ɗj>aQ}""ma68՚6Ǎ^7y>gCFqmq]m^[F–|9g{Il<;@RcXuȳ܁< %P E@FAiϚ\F3G_s9$t~mn; M5YqLm,6`& :pd7}!0fz&|fݩsE`rJ(:nP_V6$ws1cbI{gLhm4krhGpPea0 ڵ*sX3WA Eͩ{~K晧wkY2W)wMSj^~z2Ւ4Aq^㯊=/z:Ay~~nHlʯ2*Aq"¶&vI5y=-eAlM2lSfsSeW}gxczcUJ¿]cYVɼ?ș endstream endobj 207 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.15)/Keywords() /CreationDate (D:20150616150147+02'00') /ModDate (D:20150616150147+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.15 (TeX Live 2015/dev/Debian) kpathsea version 6.2.1dev) >> endobj 145 0 obj << /Type /ObjStm /N 81 /First 737 /Length 4151 /Filter /FlateDecode >> stream xkS{~|\-~?eC ML2 _ʢ9}N"/D!+|/ EBZ BG:@+B[ :j7BgXWt @ІĈcax;Ya`Ta#rvpp\ᜉ x.E7%FNEp  ' F NQ1P&A " 1 ">HN*{F} O !>^hbDJ!vqr~ E U0*F(V`Kt,X:Ԡj0 2@:Ыm #@0]0@%p t4Y8@\BTkPR8h8?¨BCA!U?ZZPJ 3r_ϊǏr'ODL/:(&jV|(ʃ;EyT}0{ ܦ,~rC4M[+7 ތ`* tFрDe4g ƣ" \IZbk:-<$pOH!A֋O\je!72QKC_S v k lxXj (xRׂT! p {\ <Ʃr]PypH!fsL(%0PpQmq~e6)#prVCڜo)h +1u@8lz%0_L82QH}H60+Ƹ/VZn%rKJ>[QpJaN8Pc|>}a*潾(oTvDz,#ٴ6Ļw O4S nH^h,e]Dڗg1Ĵ˝De<- C5A@@C4ʲXzan'#9RZ") [f5WbJ/Յ6w%_6t.G 8T @M5N -3YTͱZ΅{/ eBs=U)VY(f˱4|,o`}jA Ɂ[j!E X(9*=U3Gtin|HJNT`8>giNb@_!xwRJc5m2gCB3Q5ǔ~YSgGS=QQ QMXKh(BDkz<3V mTRݛ!vǼsZRdz`X1]Z:.))s@; PJ#m q `=9!Sia!N}P󓠻X.jzb9:\PX\؋”V3lV x nP"ې8lx9:}r}~Y@pV]Gd$MиNc_w<+KU^몼&Y9+g*gG,K8 ~Ts)z֨7~I!WgN[{/_oʷ`Oiy:_E&ǷL'窼 ThRNkTk`v={,+qʼnדdTvV˯v޷%z*I\-4C'Nom=:z}|ӷ̍ w}'ثr|%Eay<)ߓ>MUOb4NWW2SY] Z: EuM毴rGpx8VpR]?1n.o߷Y`ZjՈEV_~+& \Dž''ž gxЮ ynXOogUZ1m:<1Z4j s-J;ﱥ mi{liunKr,6ĜJ1/mUJ'G8~*m atoؠmuJؿo> =sMwYWA`KVCk=-vM;_+??xrԳWCEz#^#q0ٟRUٲGX+u>{s qoS`߈xq"`5,5Ĉ^ L.OU keϏz=k6HREPΪ)w62`/ޜ=zk1X?3o9)[kRjJkx^߷I|R w k gdz:TRlkeؓ㽧ĞjL;ݗ9XS[zǵ2k('vHhQm2~X/;jP>ݤZxgkui|]Of@5Vuم;1HM30Щlv1;{5eVWbw.:C;Lyq ^,ok/3w U;z(n2;G.۸>Ρ}!oy>̹:u/sǼYwPnaa|!ɠ~!tf.3]n%`ީJUp\:[U^cu.ŰS}i݃}rww.l-nIyq0mUV}j̭R24seXa'r dGvҭdqdcT*MQZ*]&ll󚧕r',\N&\WHÿ<nΆ٣_v?dzڔ[]Bbp1z:͠7 e# ^ap"]fab7Wk3o8&Ao`B]I #h?m5悀@#?!:*iZFd^`m+]6ZBb&Զ ]SCb. •^Ԃ13Q؋b㠼 \,..wK ]F _,iiё;e*-)PnṰ2]trÞ+/5V_WSJOj}#Lc/r|>ຐ~N)鲤ER9z9>ʷj^ ok endstream endobj 208 0 obj << /Type /XRef /Index [0 209] /Size 209 /W [1 3 1] /Root 206 0 R /Info 207 0 R /ID [<0CCEE46B04CF355C2D794635A785BEDA> <0CCEE46B04CF355C2D794635A785BEDA>] /Length 504 /Filter /FlateDecode >> stream x%rQF> MnAr!zW]D/T2W*{LL<(eXɪsw#"cM.b G!j `#8L 4Yjul3P;mIjg`8E4 ZbT@+`hP@;:Gq tcXa},R;UCÔA0Re{Ը2 v1{8tF4{(Fm#㡟xO3~C, b>LF5ߋ/Ӛ˨O/2gN^Wun!Ϩzmp ,q-Ux1Ͷ 'x"""""""""""""""z"zd>skҺ-Ӹ=cu֑b̬m]_mݙWm=++,,Sjr@?mY> e6e흍PGAi01qb<ⲵȆ7`Lh endstream endobj startxref 197753 %%EOF octproj-1.1.5/inst/000755 001750 001750 00000000000 12540021535 014154 5ustar00topotopo000000 000000 octproj-1.1.5/inst/op_fwd.m000644 001750 001750 00000010704 12540021535 015612 0ustar00topotopo000000 000000 ## Copyright (C) 2009, 2010, José Luis García Pallero, ## ## This file is part of OctPROJ. ## ## OctPROJ is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## This program is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## . ## -*- texinfo -*- ## @deftypefn {Function File}{[@var{X},@var{Y}] =}op_fwd(@var{lon},@var{lat},@var{params}) ## ## This function projects geodetic coordinates into cartesian projected ## coordinates in the defined cartographic projection using the PROJ.4 function ## pj_fwd(). ## ## @var{lon} contains the geodetic longitude, in radians. ## @var{lat} contains the geodetic latitude, in radians. ## @var{params} is a text string containing the projection parameters in PROJ.4 ## format. ## ## @var{lon} or @var{lat} can be scalars, vectors or matrices with equal ## dimensions. ## ## @var{X} is the X projected coordinates. ## @var{Y} is the Y projected coordinates. ## ## If a projection error occurs, the resultant coordinates for the affected ## points have both Inf value and a warning message is emitted (one for each ## erroneous point). ## @seealso{op_inv, op_transform} ## @end deftypefn function [X,Y] = op_fwd(lon,lat,params) try functionName = 'op_fwd'; argumentNumber = 3; %******************************************************************************* %NUMBER OF INPUT ARGUMENTS CHECKING %******************************************************************************* %number of input arguments checking if nargin~=argumentNumber error(['Incorrect number of input arguments (%d)\n\t ',... 'Correct number of input arguments = %d'],... nargin,argumentNumber); end %******************************************************************************* %INPUT ARGUMENTS CHECKING %******************************************************************************* %checking input arguments [lon,lat,rowWork,colWork] = checkInputArguments(lon,lat,params); catch %error message error('\n\tIn function %s:\n\t -%s ',functionName,lasterr); end %******************************************************************************* %COMPUTATION %******************************************************************************* try %calling oct function [X,Y] = _op_fwd(lon,lat,params); %convert output vectors in matrices of adequate size X = reshape(X,rowWork,colWork); Y = reshape(Y,rowWork,colWork); catch %error message error('\n\tIn function %s:\n\tIn function %s ',functionName,lasterr); end %******************************************************************************* %AUXILIARY FUNCTION %******************************************************************************* function [a,b,rowWork,colWork] = checkInputArguments(a,b,params) %a must be matrix type if isnumeric(a) %a dimensions [rowA,colA] = size(a); else error('The first input argument is not numeric'); end %b must be matrix type if isnumeric(b) %b dimensions [rowB,colB] = size(b); else error('The second input argument is not numeric'); end %checking a and b dimensions if (rowA~=rowB)||(colA~=colB) error('The dimensions of input arguments are not the same'); else %working dimensions rowWork = rowA; colWork = colA; %convert a and b in column vectors a = reshape(a,rowWork*colWork,1); b = reshape(b,rowWork*colWork,1); end %params must be a text string if ~ischar(params) error('The third input argument is not a text string'); end %*****END OF FUNCIONS***** %*****FUNCTION TESTS***** %!test %! [x,y]=op_fwd(-6*pi/180,43*pi/180,'+proj=utm +lon_0=3w +ellps=GRS80'); %! assert(x,255466.98,1e-2) %! assert(y,4765182.93,1e-2) %!error(op_fwd) %!error(op_fwd(1,2,3,4)) %!error(op_fwd('string',2,3)) %!error(op_fwd(1,'string',3)) %!error(op_fwd(1,2,3)) %!error(op_fwd([1 1;2 2],2,'+proj=utm +lon_0=3w +ellps=GRS80')) %!error(op_fwd(1,[2 2;3 3],'+proj=utm +lon_0=3w +ellps=GRS80')) %*****END OF TESTS***** octproj-1.1.5/inst/op_geod2geoc.m000644 001750 001750 00000012325 12540021535 016671 0ustar00topotopo000000 000000 ## Copyright (C) 2009, 2010, José Luis García Pallero, ## ## This file is part of OctPROJ. ## ## OctPROJ is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## This program is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## . ## -*- texinfo -*- ## @deftypefn {Function File}{[@var{X},@var{Y},@var{Z}] =}op_geod2geoc(@var{lon},@var{lat},@var{h},@var{a},@var{f}) ## ## This function converts geodetic coordinates into cartesian tridimensional ## geocentric coordinates using the PROJ.4 function pj_geodetic_to_geocentric(). ## ## @var{lon} contains the geodetic longitude, in radians. ## @var{lat} contains the geodetic latitude, in radians. ## @var{h} contains the ellipsoidal height. ## @var{a} is a scalar containing the semi-major axis of the ellipsoid. ## @var{f} is a scalar containing the flattening of the ellipsoid. ## ## @var{lon}, @var{lat} or @var{h} can be scalars, vectors or matrices with ## equal dimensions. ## The units of @var{h} and @var{a} must be the same. ## ## @var{X} is the X geocentric coordinate, in the same units of @var{a}. ## @var{Y} is the Y geocentric coordinate, in the same units of @var{a}. ## @var{Z} the Z geocentric coordinate, in the same units of @var{a}. ## ## @seealso{op_geoc2geod} ## @end deftypefn function [X,Y,Z] = op_geod2geoc(lon,lat,h,a,f) try functionName = 'op_geod2geoc'; argumentNumber = 5; %******************************************************************************* %NUMBER OF INPUT ARGUMENTS CHECKING %******************************************************************************* %number of input arguments checking if nargin~=argumentNumber error(['Incorrect number of input arguments (%d)\n\t ',... 'Correct number of input arguments = %d'],... nargin,argumentNumber); end %******************************************************************************* %INPUT ARGUMENTS CHECKING %******************************************************************************* %checking input arguments [lon,lat,h,rowWork,colWork] = checkInputArguments(lon,lat,h,a,f); catch %error message error('\n\tIn function %s:\n\t -%s ',functionName,lasterr); end %******************************************************************************* %COMPUTATION %******************************************************************************* try %first squared eccentricity of the ellipsoid e2 = 2.0*f-f^2; %calling oct function [X,Y,Z] = _op_geod2geoc(lon,lat,h,a,e2); %convert output vectors in matrices of adequate size X = reshape(X,rowWork,colWork); Y = reshape(Y,rowWork,colWork); Z = reshape(Z,rowWork,colWork); catch %error message error('\n\tIn function %s:\n\tIn function %s ',functionName,lasterr); end %******************************************************************************* %AUXILIARY FUNCTION %******************************************************************************* function [a,b,c,rowWork,colWork] = checkInputArguments(a,b,c,d,e) %a must be matrix type if isnumeric(a) %a dimensions [rowA,colA] = size(a); else error('The first input argument is not numeric'); end %b must be matrix type if isnumeric(b) %b dimensions [rowB,colB] = size(b); else error('The second input argument is not numeric'); end %c must be matrix type if isnumeric(c) %b dimensions [rowC,colC] = size(c); else error('The third input argument is not numeric'); end %d must be scalar if ~isscalar(d) error('The fourth input argument is not a scalar'); end %e must be scalar if ~isscalar(e) error('The fifth input argument is not a scalar'); end %checking a, b and c dimensions if (max([rowA rowB rowC])~=min([rowA rowB rowC]))||... (max([colA colB colC])~=min([colA colB colC])) error('The dimensions of input arguments are not the same'); else %working dimensions rowWork = rowA; colWork = colA; %convert a, b and c in column vectors a = reshape(a,rowWork*colWork,1); b = reshape(b,rowWork*colWork,1); c = reshape(c,rowWork*colWork,1); end %*****END OF FUNCIONS***** %*****FUNCTION TESTS***** %!test %! [x,y,z]=op_geod2geoc(pi/5,pi/3,1000,6378388,1/297); %! assert(x,2587045.81927379,1e-5) %! assert(y,1879598.80960088,1e-5) %! assert(z,5501461.60635409,1e-5) %!error(op_geod2geoc) %!error(op_geod2geoc(1,2,3,4,5,6)) %!error(op_geod2geoc('string',2,3,4,5)) %!error(op_geod2geoc(1,'string',3,4,5)) %!error(op_geod2geoc(1,2,'string',4,5)) %!error(op_geod2geoc(1,2,3,[4 4],5)) %!error(op_geod2geoc(1,2,3,4,[5 5])) %!error(op_geod2geoc([1 1;2 2],2,3,4,5)) %!error(op_geod2geoc(1,[2 2;3 3],3,4,5)) %!error(op_geod2geoc(1,2,[3 3;4 4],4,5)) %!error(op_geod2geoc([1;1],[2 2 2],3,4,5)) %*****END OF TESTS***** octproj-1.1.5/inst/op_geoc2geod.m000644 001750 001750 00000012312 12540021535 016665 0ustar00topotopo000000 000000 ## Copyright (C) 2009, 2010, José Luis García Pallero, ## ## This file is part of OctPROJ. ## ## OctPROJ is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## This program is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## . ## -*- texinfo -*- ## @deftypefn {Function File}{[@var{lon},@var{lat},@var{h}] =}op_geoc2geod(@var{X},@var{Y},@var{Z},@var{a},@var{f}) ## ## This function converts cartesian tridimensional geocentric coordinates into ## geodetic coordinates using the PROJ.4 function pj_geocentric_to_geodetic(). ## ## @var{X} contains the X geocentric coordinate. ## @var{Y} contains the Y geocentric coordinate. ## @var{Z} contains the Z geocentric coordinate. ## @var{a} is a scalar containing the semi-major axis of the ellipsoid. ## @var{f} is a scalar containing the flattening of the ellipsoid. ## ## @var{X}, @var{Y} or @var{Z} can be scalars, vectors or matrices with equal ## dimensions. ## The units of @var{X}, @var{Y}, @var{Z} and @var{a} must be the same. ## ## @var{lon} is the geodetic longitude, in radians. ## @var{lat} is the geodetic latitude, in radians. ## @var{h} is the ellipsoidal height, in the same units of @var{a}. ## ## @seealso{op_geod2geoc} ## @end deftypefn function [lon,lat,h] = op_geoc2geod(X,Y,Z,a,f) try functionName = 'op_geoc2geod'; argumentNumber = 5; %******************************************************************************* %NUMBER OF INPUT ARGUMENTS CHECKING %******************************************************************************* %number of input arguments checking if nargin~=argumentNumber error(['Incorrect number of input arguments (%d)\n\t ',... 'Correct number of input arguments = %d'],... nargin,argumentNumber); end %******************************************************************************* %INPUT ARGUMENTS CHECKING %******************************************************************************* %checking input arguments [X,Y,Z,rowWork,colWork] = checkInputArguments(X,Y,Z,a,f); catch %error message error('\n\tIn function %s:\n\t -%s ',functionName,lasterr); end %******************************************************************************* %COMPUTATION %******************************************************************************* try %first squared eccentricity of the ellipsoid e2 = 2.0*f-f^2; %calling oct function [lon,lat,h] = _op_geoc2geod(X,Y,Z,a,e2); %convert output vectors in matrices of adequate size lon = reshape(lon,rowWork,colWork); lat = reshape(lat,rowWork,colWork); h = reshape(h,rowWork,colWork); catch %error message error('\n\tIn function %s:\n\tIn function %s ',functionName,lasterr); end %******************************************************************************* %AUXILIARY FUNCTION %******************************************************************************* function [a,b,c,rowWork,colWork] = checkInputArguments(a,b,c,d,e) %a must be matrix type if isnumeric(a) %a dimensions [rowA,colA] = size(a); else error('The first input argument is not numeric'); end %b must be matrix type if isnumeric(b) %b dimensions [rowB,colB] = size(b); else error('The second input argument is not numeric'); end %c must be matrix type if isnumeric(c) %b dimensions [rowC,colC] = size(c); else error('The third input argument is not numeric'); end %d must be scalar if ~isscalar(d) error('The fourth input argument is not a scalar'); end %e must be scalar if ~isscalar(e) error('The fifth input argument is not a scalar'); end %checking a, b and c dimensions if (max([rowA rowB rowC])~=min([rowA rowB rowC]))||... (max([colA colB colC])~=min([colA colB colC])) error('The dimensions of input arguments are not the same'); else %working dimensions rowWork = rowA; colWork = colA; %convert a, b and c in column vectors a = reshape(a,rowWork*colWork,1); b = reshape(b,rowWork*colWork,1); c = reshape(c,rowWork*colWork,1); end %*****END OF FUNCIONS***** %*****FUNCTION TESTS***** %!test %! [lon,lat,h]=op_geoc2geod(2587045.819,1879598.809,5501461.606,6378388,1/297); %! assert(lon,0.628318530616265,1e-11) %! assert(lat,1.04719755124682,1e-11) %! assert(h,999.999401183799,1e-5) %!error(op_geoc2geod) %!error(op_geoc2geod(1,2,3,4,5,6)) %!error(op_geoc2geod('string',2,3,4,5)) %!error(op_geoc2geod(1,'string',3,4,5)) %!error(op_geoc2geod(1,2,'string',4,5)) %!error(op_geoc2geod(1,2,3,[4 4],5)) %!error(op_geoc2geod(1,2,3,4,[5 5])) %!error(op_geoc2geod([1 1;2 2],2,3,4,5)) %!error(op_geoc2geod(1,[2 2;3 3],3,4,5)) %!error(op_geoc2geod(1,2,[3 3;4 4],4,5)) %!error(op_geoc2geod([1;1],[2 2 2],3,4,5)) %*****END OF TESTS***** octproj-1.1.5/inst/op_transform.m000644 001750 001750 00000016051 12540021535 017046 0ustar00topotopo000000 000000 ## Copyright (C) 2009, 2010, José Luis García Pallero, ## ## This file is part of OctPROJ. ## ## OctPROJ is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## This program is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## . ## -*- texinfo -*- ## @deftypefn {Function File}{[@var{X2},@var{Y2},@var{Z2}] =}op_transform(@var{X1},@var{Y1},@var{Z1},@var{par1},@var{par2}) ## @deftypefnx {Function File}{[@var{X2},@var{Y2}] =}op_transform(@var{X1},@var{Y1},@var{par1},@var{par2}) ## ## This function transforms X/Y/Z, lon/lat/h points between two coordinate ## systems 1 and 2 using the PROJ.4 function pj_transform(). ## ## @var{X1} contains the first coordinates in the source coordinate system. If ## @var{X1} is geodetic longitude, it must be expressed in radians. ## @var{Y1} contains the second coordinates in the source coordinate system. If ## @var{Y1} is geodetic latitude, it must be expressed in radians. ## @var{Z1} contains the third coordinates in the source coordinate system. ## @var{par1} is a text string containing the projection parameters for the ## source system, in PROJ.4 format. ## @var{par2} is a text string containing the projection parameters for the ## destination system, in PROJ.4 format. ## ## @var{X1}, @var{Y1} or @var{X1} can be scalars, vectors or matrices with ## equal dimensions. ## ## @var{X2} is the first coordinate in the destination coordinate system. If ## @var{X2} is geodetic longitude, it is output in radians. ## @var{Y2} is the second coordinate in the destination coordinate system. If ## @var{Y2} is geodetic longitude, it is output in radians. ## @var{Z2} is the third coordinate in the destination coordinate system. If ## argument @var{Z1} was omitted, this value is an empty matrix. ## ## @seealso{op_fwd, op_inv} ## @end deftypefn function [X2,Y2,Z2] = op_transform(X1,Y1,Z1,par1,par2) try functionName = 'op_transform'; minArgNumber = 4; maxArgNumber = 5; %******************************************************************************* %NUMBER OF INPUT ARGUMENTS CHECKING %******************************************************************************* %number of input arguments checking if (narginmaxArgNumber) error(['Incorrect number of input arguments (%d)\n\t ',... 'Correct number of input arguments = %d or %d'],... nargin,minArgNumber,maxArgNumber); end %******************************************************************************* %INPUT ARGUMENTS CHECKING %******************************************************************************* %checking input arguments if nargin==minArgNumber par2 = par1; par1 = Z1; Z1 = []; end [X1,Y1,Z1,rowWork,colWork] = checkInputArguments(X1,Y1,Z1,par1,par2); catch %error message error('\n\tIn function %s:\n\t -%s ',functionName,lasterr); end %******************************************************************************* %COMPUTATION %******************************************************************************* try %calling oct function [X2,Y2,Z2] = _op_transform(X1,Y1,Z1,par1,par2); %convert output vectors in matrices of adequate size X2 = reshape(X2,rowWork,colWork); Y2 = reshape(Y2,rowWork,colWork); if nargin==maxArgNumber Z2 = reshape(Z2,rowWork,colWork); end catch %error message error('\n\tIn function %s:\n\tIn function %s ',functionName,lasterr); end %******************************************************************************* %AUXILIARY FUNCTION %******************************************************************************* function [a,b,c,rowWork,colWork] = checkInputArguments(a,b,c,par1,par2) %a must be matrix type if isnumeric(a) %a dimensions [rowA,colA] = size(a); else error('The first input argument is not numeric'); end %b must be matrix type if isnumeric(b) %b dimensions [rowB,colB] = size(b); else error('The second input argument is not numeric'); end %c must be matrix type if isnumeric(c) %c dimensions if isempty(c) rowC = 0; colC = 0; else [rowC,colC] = size(c); end else error('The third/fourth input argument is not numeric'); end %checking a, b and c dimensions if (max([rowA rowB])~=min([rowA rowB]))||(max([colA colB])~=min([colA colB])) error('The dimensions of input arguments are not the same'); else %working dimensions rowWork = rowA; colWork = colA; if (rowC~=0)&&(colC~=0) if (rowC==rowWork)&&(colC==colWork) c = reshape(c,rowWork*colWork,1); else error('The dimensions of input arguments are not the same'); end else c = zeros(0,1); end %convert a and b in column vectors a = reshape(a,rowWork*colWork,1); b = reshape(b,rowWork*colWork,1); end %params must be a text string if ~ischar(par1) error('The fourth/fifth input argument is not a text string'); end if ~ischar(par2) error('The last input argument is not a text string'); end %*****FUNCTION TESTS***** %!test %! [x,y,h]=op_transform(-6*pi/180,43*pi/180,1000,... %! '+proj=latlong +ellps=GRS80',... %! '+proj=utm +lon_0=3w +ellps=GRS80'); %! [lon,lat,H]=op_transform(x,y,h,'+proj=utm +lon_0=3w +ellps=GRS80',... %! '+proj=latlong +ellps=GRS80'); %! assert(x,255466.98,1e-2) %! assert(y,4765182.93,1e-2) %! assert(h,1000.0,1e-15) %! assert(lon*180/pi,-6,1e-8) %! assert(lat*180/pi,43,1e-8) %! assert(H,1000.0,1e-15) %!test %! [x,y]=op_transform(-6*pi/180,43*pi/180,'+proj=latlong +ellps=GRS80',... %! '+proj=utm +lon_0=3w +ellps=GRS80'); %! [lon,lat]=op_transform(x,y,'+proj=utm +lon_0=3w +ellps=GRS80',... %! '+proj=latlong +ellps=GRS80'); %! assert(x,255466.98,1e-2) %! assert(y,4765182.93,1e-2) %! assert(lon*180/pi,-6,1e-8) %! assert(lat*180/pi,43,1e-8) %!error(op_transform) %!error(op_transform(1,2,3,4,5,6)) %!error(op_transform('string',2,3,4,5)) %!error(op_transform(1,'string',3,4,5)) %!error(op_transform(1,2,'string',4,5)) %!error(op_transform(1,2,3,'string',5)) %!error(op_transform(1,2,3,4,'string')) %!error(op_transform([1 1;2 2],2,3,'+proj=latlong +ellps=GRS80',... %! '+proj=utm +lon_0=3w +ellps=GRS80')) %!error(op_transform(1,[2 2;3 3],3,'+proj=latlong +ellps=GRS80',... %! '+proj=utm +lon_0=3w +ellps=GRS80')) %!error(op_transform(1,2,[3 3;4 4],'+proj=latlong +ellps=GRS80',... %! '+proj=utm +lon_0=3w +ellps=GRS80')) %*****END OF TESTS***** octproj-1.1.5/inst/op_inv.m000644 001750 001750 00000010707 12540021535 015631 0ustar00topotopo000000 000000 ## Copyright (C) 2009, 2010, José Luis García Pallero, ## ## This file is part of OctPROJ. ## ## OctPROJ is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## This program is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## . ## -*- texinfo -*- ## @deftypefn {Function File}{[@var{lon},@var{lat}] =}op_inv(@var{X},@var{Y},@var{params}) ## ## This function unprojects cartesian projected coordinates (in a defined ## cartographic projection) into geodetic coordinates using the PROJ.4 function ## pj_inv(). ## ## @var{X} contains the X projected coordinates. ## @var{Y} contains the Y projected coordinates. ## @var{params} is a text string containing the projection parameters in PROJ.4 ## format. ## ## @var{X} or @var{Y} can be scalars, vectors or matrices with equal dimensions. ## ## @var{lon} is the geodetic longitude, in radians. ## @var{lat} is the geodetic latitude, in radians. ## ## If a projection error occurs, the resultant coordinates for the affected ## points have both Inf value and a warning message is emitted (one for each ## erroneous point). ## @seealso{op_fwd, op_transform} ## @end deftypefn function [lon,lat] = op_inv(X,Y,params) try functionName = 'op_inv'; argumentNumber = 3; %******************************************************************************* %NUMBER OF INPUT ARGUMENTS CHECKING %******************************************************************************* %number of input arguments checking if nargin~=argumentNumber error(['Incorrect number of input arguments (%d)\n\t ',... 'Correct number of input arguments = %d'],... nargin,argumentNumber); end %******************************************************************************* %INPUT ARGUMENTS CHECKING %******************************************************************************* %checking input arguments [X,Y,rowWork,colWork] = checkInputArguments(X,Y,params); catch %error message error('\n\tIn function %s:\n\t -%s ',functionName,lasterr); end %******************************************************************************* %COMPUTATION %******************************************************************************* try %calling oct function [lon,lat] = _op_inv(X,Y,params); %convert output vectors in matrices of adequate size lon = reshape(lon,rowWork,colWork); lat = reshape(lat,rowWork,colWork); catch %error message error('\n\tIn function %s:\n\tIn function %s ',functionName,lasterr); end %******************************************************************************* %AUXILIARY FUNCTION %******************************************************************************* function [a,b,rowWork,colWork] = checkInputArguments(a,b,params) %a must be matrix type if isnumeric(a) %a dimensions [rowA,colA] = size(a); else error('The first input argument is not numeric'); end %b must be matrix type if isnumeric(b) %b dimensions [rowB,colB] = size(b); else error('The second input argument is not numeric'); end %checking a and b dimensions if (rowA~=rowB)||(colA~=colB) error('The dimensions of input arguments are not the same'); else %working dimensions rowWork = rowA; colWork = colA; %convert a and b in column vectors a = reshape(a,rowWork*colWork,1); b = reshape(b,rowWork*colWork,1); end %params must be a text string if ~ischar(params) error('The third input argument is not a text string'); end %*****END OF FUNCIONS***** %*****FUNCTION TESTS***** %!test %! [lon,lat]=op_inv(255466.98,4765182.93,'+proj=utm +lon_0=3w +ellps=GRS80'); %! assert(lon*180/pi,-6,1e-7) %! assert(lat*180/pi,43,1e-7) %!error(op_inv) %!error(op_inv(1,2,3,4)) %!error(op_inv('string',2,3)) %!error(op_inv(1,'string',3)) %!error(op_inv(1,2,3)) %!error(op_inv([1 1;2 2],2,'+proj=utm +lon_0=3w +ellps=GRS80')) %!error(op_inv(1,[2 2;3 3],'+proj=utm +lon_0=3w +ellps=GRS80')) %*****END OF TESTS***** octproj-1.1.5/DESCRIPTION000644 001750 001750 00000000772 12540021535 014713 0ustar00topotopo000000 000000 Name: OctPROJ Version: 1.1.5 Date: 2015-06-16 Author: José Luis García Pallero Maintainer: José Luis García Pallero Title: GNU Octave bindings to PROJ.4 Description: This package allows to call functions of PROJ.4 library for cartographic projections transformations. Depends: Octave (>= 2.9.7) Url: http://trac.osgeo.org/proj/ http://octave.sourceforge.net/index.html Autoload: no License: GPLv3+ SystemRequirements: libproj-dev (>= 4.5.0) (Debian system) octproj-1.1.5/src/000755 001750 001750 00000000000 12540021535 013766 5ustar00topotopo000000 000000 octproj-1.1.5/src/Makefile000644 001750 001750 00000001720 12540021535 015426 0ustar00topotopo000000 000000 # -*- coding: utf-8 -*- #Compiler MKOCTFILE=mkoctfile #Common warning flags for C and C++ FLAGSCOMW=-Wall -Wextra -Wshadow -Wcast-qual -Wcast-align -Wwrite-strings #Common optimization flags for C and C++ FLAGSCOMO=-O2 -funroll-loops -fno-common -fshort-enums #Flags for C CFLAGS=-std=c99 -pedantic $(FLAGSCOMW) -Wconversion -Wmissing-prototypes CFLAGS+=-Wstrict-prototypes -Wnested-externs $(FLAGSCOMO) #Flags for C++ CXXFLAGS=$(FLAGSCOMW) $(FLAGSCOMO) #Flags for the linker LDFLAGS=-lproj #Export flags for compilers and linker export CFLAGS CXXFLAGS .PHONY: all all: compile .PHONY: compile compile: $(MKOCTFILE) -c projwrap.c -o projwrap.o $(MKOCTFILE) -s _op_transform.cc projwrap.o $(LDFLAGS) $(MKOCTFILE) -s _op_fwd.cc projwrap.o $(LDFLAGS) $(MKOCTFILE) -s _op_inv.cc projwrap.o $(LDFLAGS) $(MKOCTFILE) -s _op_geod2geoc.cc $(LDFLAGS) $(MKOCTFILE) -s _op_geoc2geod.cc $(LDFLAGS) .PHONY: clean clean: rm -rf *.o .PHONY: cleanall cleanall: rm -rf *~ *.o *.oct octproj-1.1.5/src/projwrap.h000644 001750 001750 00000021370 12540021535 016006 0ustar00topotopo000000 000000 /* -*- coding: utf-8 -*- */ /** \defgroup octproj octPROJ module @{ \file projwrap.h \brief Functions declaration for PROJ4 wrapper. \author José Luis García Pallero, jgpallero@gmail.com \date 05-12-2009 \section License License This program is free software. You can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation (FSF), either version 3 of the License, or (at your option) any later version. You can obtain a copy of the GPL or contact with the FSF in: http://www.fsf.org or http://www.gnu.org */ /******************************************************************************/ /******************************************************************************/ #ifndef _PROJWRAP_H_ #define _PROJWRAP_H_ /******************************************************************************/ /******************************************************************************/ #include #include #include #include /******************************************************************************/ /******************************************************************************/ #ifdef __cplusplus extern "C" { #endif /******************************************************************************/ /******************************************************************************/ /** \def PROJ_ERR_NOT_INV_PROJ \brief Error identifier from PROJ.4. Do not exist inverse step for a defined projection. \date 13-04-2012: Constant creation. */ #define PROJ_ERR_NOT_INV_PROJ -17 /******************************************************************************/ /******************************************************************************/ /** \def PROJWRAP_ERR_NOT_INV_PROJ \brief Error identifier. Do not exist inverse step for a defined projection. \date 12-12-2009: Constant creation. */ #define PROJWRAP_ERR_NOT_INV_PROJ 10001 /******************************************************************************/ /******************************************************************************/ /** \brief Wrapper around pj_fwd. \param[in,out] u Array containing the geodetic longitude, in radians. On output, this argument contains the X projected coordinates. \param[in,out] v Array containing the geodetic latitude, in radians. On output, this argument contains the Y projected coordinates. \param[in] nElem Number of elements in \em u and \em v arrays. \param[in] incElem Number of positions between each element in the arrays \em u and \em v (must be a positive number). \param[in] params List containing the parameters of the projection, in PROJ.4 format with \p + signs (see PROJ.4 manual). \param[out] errorText If an error occurs, explanation text about the error. \param[out] projectionError Two posibilities: - 0: All projected points are OK. - Otherwise: Some points have been projected with errors. This value only have sense if the returning error code of the function is not 0. \return Error code. Two posibilities: - 0: No error. - Otherwise: Error code of PROJ.4, see documentation. \note If projection errors occur, the positions of the erroneous points in \em u and \em v arrays store the value HUGE_VAL (constant from math.h). \date 12-12-2009: Function creation. \date 13-05-2011: Change the name of \em lon and \em lat variables to \em u and \em v, add the new variable \em incElem and use internally \em projLP and \em projXY stryctures instead only \em projXY (actually, both are synonyms). */ int proj_fwd(double* u, double* v, const size_t nElem, const size_t incElem, const char params[], char errorText[], int* projectionError); /******************************************************************************/ /******************************************************************************/ /** \brief Wrapper around pj_inv. \param[in,out] u Array containing the X projected coordinates. On output, this argument contains the geodetic longitude, in radians. \param[in,out] v Array containing the Y projected coordinates. On output, this argument contains the geodetic latitude, in radians. \param[in] nElem Number of elements in \em u and \em v arrays. \param[in] incElem Number of positions between each element in the arrays \em u and \em v (must be a positive number). \param[in] params List containing the parameters of the projection, in PROJ.4 format with \p + signs (see PROJ.4 manual). \param[out] errorText If an error occurs, explanation text about the error. \param[out] projectionError Two posibilities: - 0: All projected points are OK. - Otherwise: Some points have been projected with errors. This value only have sense if the returning error code of the function is not 0 nor #PROJWRAP_ERR_NOT_INV_PROJ. \return Error code. Three posibilities: - 0: No error. - #PROJWRAP_ERR_NOT_INV_PROJ: Do not exist inverse step for the defined projection. - Otherwise: Error code of PROJ.4, see documentation. \note If projection errors occur, the positions of the erroneous points in \em u and \em v arrays store the value HUGE_VAL (constant from math.h). \date 12-12-2009: Function creation. \date 13-05-2011: Change the name of \em x and \em y variables to \em u and \em v, add the new variable \em incElem and use internally \em projLP and \em projXY stryctures instead only \em projXY (actually, both are synonyms). */ int proj_inv(double* u, double* v, const size_t nElem, const size_t incElem, const char params[], char errorText[], int* projectionError); /******************************************************************************/ /******************************************************************************/ /** \brief Wrapper around pj_transform. \param[in,out] u Array containing the first coordinate. On output, this argument contains the transformed coordinates. This array can store two types of values: - If the system (start or end) is geodetic, this array contains geodetic longitude, in radians. - Otherwise (geocentric or cartographic coordinates) this array contains \em X euclidean coordinates. \param[in,out] v Array containing the second coordinate. On output, this argument contains the transformed coordinates. This array can store two types of values: - If the system (start or end) is geodetic, this array contains geodetic latitude, in radians. - Otherwise (geocentric or cartographic coordinates) this array contains \em Y euclidean coordinates. \param[in,out] z Array containing ellipsoidal heights. This argument can be \p NULL. In that case it is not used. \param[in] nElem Number of elements in \em u, \em v and \em z arrays. \param[in] incElem Number of positions between each element in the arrays \em u, \em v and \em z (must be a positive number). \param[in] paramsStart List containing the parameters of the start system, in PROJ.4 format. \param[in] paramsEnd List containing the parameters of the end system, in PROJ.4 format. \param[out] errorText If an error occurs, explanation text about the error. This argument must be assigned enough memory. \return Error code. Two posibilities: - 0: No error. - Otherwise: Error code of pj_init_plus() or pj_transform() PROJ.4 functions. See PROJ.4 documentation. \date 05-12-2009: Function creation. \date 13-05-2011: Change the name of \em x and \em y variables to \em u and \em v and add the new variable \em incElem. */ int proj_transform(double* u, double* v, double* z, const size_t nElem, const size_t incElem, const char paramsStart[], const char paramsEnd[], char errorText[]); /******************************************************************************/ /******************************************************************************/ #ifdef __cplusplus } #endif /******************************************************************************/ /******************************************************************************/ #endif /******************************************************************************/ /******************************************************************************/ /** @} */ octproj-1.1.5/src/_op_geoc2geod.cc000644 001750 001750 00000013023 12540021535 016767 0ustar00topotopo000000 000000 /* -*- coding: utf-8 -*- */ /* Copyright (C) 2009 José Luis García Pallero, * * This file is part of OctPROJ. * * OctPROJ is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, see * . */ /******************************************************************************/ /******************************************************************************/ #define HELPTEXT "\ -*- texinfo -*-\n\ @deftypefn{Loadable Function}{[@var{lon},@var{lat},@var{h}] =}\ _op_geod2geoc(@var{X},@var{Y},@var{Z},@var{a},@var{e2})\n\ \n\ @cindex Geocentric to geodetic coordinates.\n\ \n\ This function converts cartesian tridimensional geodentric coordinates into \n\ geodetic using the PROJ.4 function pj_geocentric_to_geodetic().\n\ \n\ @var{X} is a column vector containing the X geocentric coordinate.\n\ @var{Y} is a column vector containing the Y geocentric coordinate.\n\ @var{Z} is a column vector containing the Z geocentric coordinate.\n\ @var{a} is a scalar containing the semi-major axis of the ellipsoid.\n\ @var{e2} is a scalar containing the squared first eccentricity of the \ ellipsoid.\n\ \n\ The coordinate vectors @var{X}, @var{Y} and @var{Z} must be all scalars or\n\ all column vectors (of the same size).\n\ The units of @var{X}, @var{Y}, @var{Z} and @var{a} must be the same.\n\ \n\ @var{lon} is a column vector containing the geodetic longitude, in radians.\n\ @var{lat} is a column vector containing the geodetic latitude, in radians.\n\ @var{h} is a column vector containing the ellipsoidal height, in the same\n\ units of @var{a},\n\ @seealso{_op_geod2geoc}\n\ @end deftypefn" /******************************************************************************/ /******************************************************************************/ #include #include #include #include /******************************************************************************/ /******************************************************************************/ #define ERRORTEXT 1000 /******************************************************************************/ /******************************************************************************/ DEFUN_DLD(_op_geoc2geod,args,,HELPTEXT) { //error message char errorText[ERRORTEXT]="_op_geoc2geod:\n\t"; //output list octave_value_list outputList; //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //testing input parameters if(args.length()!=5) { //error text sprintf(&errorText[strlen(errorText)], "Incorrect number of input arguments\n\t" "See help _op_geoc2geod"); //error message error(errorText); } else { //error code int* idError=NULL; //loop index size_t i=0; //geocentric coordinates ColumnVector x=args(0).column_vector_value(); ColumnVector y=args(1).column_vector_value(); ColumnVector z=args(2).column_vector_value(); //ellipsoidal parameters double a=args(3).double_value(); double e2=args(4).double_value(); //number of elements size_t nElem=static_cast(x.rows()); //geodetic coordinates ColumnVector latOut(nElem); ColumnVector lonOut(nElem); ColumnVector hOut(nElem); //computation vectors double* lat=NULL; double* lon=NULL; double* h=NULL; //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //copy input data for(i=0;i * * This file is part of OctPROJ. * * OctPROJ is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, see * . */ /******************************************************************************/ /******************************************************************************/ #define HELPTEXT "\ -*- texinfo -*-\n\ @deftypefn{Loadable Function}{[@var{X},@var{Y},@var{Z}] =}\ _op_geod2geoc(@var{lon},@var{lat},@var{h},@var{a},@var{e2})\n\ \n\ @cindex Geodetic to geocentric coordinates.\n\ \n\ This function converts geodetic coordinates into cartesian tridimensional\n\ geocentric coordinates using the PROJ.4 function pj_geodetic_to_geocentric().\n\ \n\ @var{lon} is a column vector containing the geodetic longitude, in radians.\n\ @var{lat} is a column vector containing the geodetic latitude, in radians.\n\ @var{h} is a column vector containing the ellipsoidal height.\n\ @var{a} is a scalar containing the semi-major axis of the ellipsoid.\n\ @var{e2} is a scalar containing the squared first eccentricity of the \ ellipsoid.\n\ \n\ The coordinate vectors @var{lon}, @var{lat} and @var{h} must be all scalars\n\ or all column vectors (of the same size).\n\ The units of @var{h} and @var{a} must be the same.\n\ \n\ @var{X} is a column vector containing the X geocentric coordinate, in the same \ units of @var{a}.\n\ @var{Y} is a column vector containing the Y geocentric coordinate, in the same \ units of @var{a}.\n\ @var{Z} is a column vector containing the Z geocentric coordinate, in the same \ units of @var{a}.\n\ @seealso{_op_geoc2geod}\n\ @end deftypefn" /******************************************************************************/ /******************************************************************************/ #include #include #include #include /******************************************************************************/ /******************************************************************************/ #define ERRORTEXT 1000 /******************************************************************************/ /******************************************************************************/ DEFUN_DLD(_op_geod2geoc,args,,HELPTEXT) { //error message char errorText[ERRORTEXT]="_op_geod2geoc:\n\t"; //output list octave_value_list outputList; //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //checking input arguments if(args.length()!=5) { //error text sprintf(&errorText[strlen(errorText)], "Incorrect number of input arguments\n\t" "See help _op_geod2geoc"); //error message error(errorText); } else { //error code int* idError=NULL; //loop index size_t i=0; //geodetic coordinates ColumnVector lon=args(0).column_vector_value(); ColumnVector lat=args(1).column_vector_value(); ColumnVector h=args(2).column_vector_value(); //ellipsoidal parameters double a=args(3).double_value(); double e2=args(4).double_value(); //number of elements size_t nElem=static_cast(lon.rows()); //geocentric coordinates ColumnVector xOut(nElem); ColumnVector yOut(nElem); ColumnVector zOut(nElem); //computation vectors double* x=NULL; double* y=NULL; double* z=NULL; //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //copy input data for(i=0;i * * This file is part of OctPROJ. * * OctPROJ is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, see * . */ /******************************************************************************/ /******************************************************************************/ #define HELPTEXT "\ -*- texinfo -*-\n\ @deftypefn{Loadable Function}{[@var{lon},@var{lat}] =}\ _op_inv(@var{X},@var{Y},@var{params})\n\ \n\ @cindex Performs inverse projection step.\n\ \n\ This function unprojects cartesian projected coordinates (in a defined\n\ cartographic projection) into geodetic coordinates using the PROJ.4 function \ pj_inv().\n\ \n\ @var{X} is a column vector containing the X projected coordinates.\n\ @var{Y} is a column vector containing the Y projected coordinates.\n\ @var{params} is a text string containing the projection parameters in PROJ.4 \ format.\n\ \n\ The coordinate vectors @var{X} and @var{Y} must be both scalars or both\n\ column vectors (of the same size).\n\ \n\ @var{lon} is a column vector containing the geodetic longitude, in radians.\n\ @var{lat} is a column vector containing the geodetic latitude, in radians.\n\ \n\ If a projection error occurs, the resultant coordinates for the affected\n\ points have both Inf value and a warning message is emitted (one for each\n\ erroneous point).\n\ @seealso{_op_fwd, _op_transform}\n\ @end deftypefn" /******************************************************************************/ /******************************************************************************/ #include #include #include #include #include #include"projwrap.h" /******************************************************************************/ /******************************************************************************/ #define ERRORTEXT 1000 /******************************************************************************/ /******************************************************************************/ DEFUN_DLD(_op_inv,args,,HELPTEXT) { //error message char errorText[ERRORTEXT]="_op_inv:\n\t"; //output list octave_value_list outputList; //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //checking input arguments if(args.length()!=3) { //error text sprintf(&errorText[strlen(errorText)], "Incorrect number of input arguments\n\t" "See help _op_inv"); //error message error(errorText); } else { //error code int idErr=0; //error in projection int projectionError=0; //loop index size_t i=0; //projected coordinates ColumnVector X=args(0).column_vector_value(); ColumnVector Y=args(1).column_vector_value(); //projection parameters std::string params=args(2).string_value(); //number of elements size_t nElem=static_cast(X.rows()); //geodetic coordinates ColumnVector lonOut(nElem); ColumnVector latOut(nElem); //computation vectors double* lon=NULL; double* lat=NULL; //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //copy input data for(i=0;i * * This file is part of OctPROJ. * * OctPROJ is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, see * . */ /******************************************************************************/ /******************************************************************************/ #define HELPTEXT "\ -*- texinfo -*-\n\ @deftypefn{Loadable Function}{[@var{X2},@var{Y2},@var{Z2}] =}\ _op_transform(@var{X1},@var{Y1},@var{Z1},@var{par1},@var{par2})\n\ \n\ @cindex Performs transformation between two coordinate systems.\n\ \n\ This function transforms X/Y/Z, lon/lat/h points between two coordinate\n\ systems 1 and 2 using the PROJ.4 function pj_transform().\n\ \n\ @var{X1} is a column vector containing the first coordinates in the source\n\ coordinate system. If @var{X1} is geodetic longitude, it must be passed in \ radians.\n\ @var{Y1} is a column vector containing the second coordinates in the source\n\ coordinate system. If @var{Y1} is geodetic latitude, it must be passed in \ radians.\n\ @var{Z1} is a column vector containing the third first coordinates in the\n\ source coordinate system.\n\ @var{par1} is a text string containing the projection parameters for the\n\ source system, in PROJ.4 format.\n\ @var{par2} is a text string containing the projection parameters for the\n\ destination system, in PROJ.4 format.\n\ \n\ The coordinate vectors @var{X1}, @var{Y1} and @var{Z1} must be all scalars or\n\ all column vectors (of the same size).\n\ \n\ @var{X2} is a column vector containing the first coordinates in the\n\ destination coordinate system. If @var{X2} is geodetic longitude, it is\n\ output in radians.\n\ @var{Y2} is a column vector containing the second coordinates in the\n\ destination coordinate system. If @var{Y2} is geodetic longitude, it is\n\ output in radians.\n\ @var{Z2} is a column vector containing the third coordinates in the\n\ destination coordinate system.\n\ \n\ @seealso{_op_fwd, _op_inv}\n\ @end deftypefn" /******************************************************************************/ /******************************************************************************/ #include #include #include #include #include #include"projwrap.h" /******************************************************************************/ /******************************************************************************/ #define ERRORTEXT 1000 /******************************************************************************/ /******************************************************************************/ DEFUN_DLD(_op_transform,args,,HELPTEXT) { //error message char errorText[ERRORTEXT]="_op_transform:\n\t"; //output list octave_value_list outputList; //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //checking input arguments if(args.length()!=5) { //error text sprintf(&errorText[strlen(errorText)], "Incorrect number of input arguments\n\t" "See help _op_transform"); //error message error(errorText); } else { //loop index size_t i=0; //input coordinates from GNU Octave ColumnVector xIn=args(0).column_vector_value(); ColumnVector yIn=args(1).column_vector_value(); ColumnVector zIn=args(2).column_vector_value(); //parameters strings std::string paramsStart=args(3).string_value(); std::string paramsEnd=args(4).string_value(); //number of imput data size_t nElem=static_cast(xIn.rows()); size_t nElemZ=static_cast(zIn.rows()); //output coordinates for GNU Octave ColumnVector xOut(nElem); ColumnVector yOut(nElem); ColumnVector zOut(nElemZ); //pointers to output data double* x=NULL; double* y=NULL; double* z=NULL; //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //copy input data in working arrays for(i=0;i * * This file is part of OctPROJ. * * OctPROJ is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, see * . */ /******************************************************************************/ /******************************************************************************/ #define HELPTEXT "\ -*- texinfo -*-\n\ @deftypefn{Loadable Function}{[@var{X},@var{Y}] =}\ _op_fwd(@var{lon},@var{lat},@var{params})\n\ \n\ @cindex Performs forward projection step.\n\ \n\ This function projects geodetic coordinates into cartesian projected\n\ coordinates in the defined cartographic projection using the PROJ.4 function \ pj_fwd().\n\ \n\ @var{lon} is a column vector containing the geodetic longitude, in radians.\n\ @var{lat} is a column vector containing the geodetic latitude, in radians.\n\ @var{params} is a text string containing the projection parameters in PROJ.4 \ format.\n\ \n\ The coordinate vectors @var{lon} and @var{lat} must be both scalars or both\n\ column vectors (of the same size).\n\ \n\ @var{X} is a column vector containing the X projected coordinates.\n\ @var{Y} is a column vector containing the Y projected coordinates.\n\ \n\ If a projection error occurs, the resultant coordinates for the affected\n\ points have both Inf value and a warning message is emitted (one for each\n\ erroneous point).\n\ @seealso{_op_inv, _op_transform}\n\ @end deftypefn" /******************************************************************************/ /******************************************************************************/ #include #include #include #include #include #include"projwrap.h" /******************************************************************************/ /******************************************************************************/ #define ERRORTEXT 1000 /******************************************************************************/ /******************************************************************************/ DEFUN_DLD(_op_fwd,args,,HELPTEXT) { //error message char errorText[ERRORTEXT]="_op_fwd:\n\t"; //output list octave_value_list outputList; //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //checking input arguments if(args.length()!=3) { //error text sprintf(&errorText[strlen(errorText)], "Incorrect number of input arguments\n\t" "See help _op_fwd"); //error message error(errorText); } else { //error code int idErr=0; //error in projection int projectionError=0; //loop index size_t i=0; //geodetic coordinates ColumnVector lon=args(0).column_vector_value(); ColumnVector lat=args(1).column_vector_value(); //projection parameters std::string params=args(2).string_value(); //number of elements size_t nElem=static_cast(lon.rows()); //projected coordinates ColumnVector xOut(nElem); ColumnVector yOut(nElem); //computation vectors double* x=NULL; double* y=NULL; //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //copy input data for(i=0;i= 4.8.0 octproj-1.1.5/INDEX000644 001750 001750 00000000300 12540021535 013762 0ustar00topotopo000000 000000 toolbox >> OctPROJ Category Kernel functions _op_transform _op_fwd _op_inv _op_geod2geoc _op_geoc2geod Category Driver functions op_transform op_fwd op_inv op_geod2geoc op_geoc2geod octproj-1.1.5/COPYING000644 001750 001750 00000104513 12540021535 014236 0ustar00topotopo000000 000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .