[Rsiena-commits] r124 - in pkg: RSiena RSiena/R RSiena/inst/doc RSiena/man RSiena/src RSienaTest RSienaTest/R RSienaTest/doc RSienaTest/inst/doc RSienaTest/man RSienaTest/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Oct 22 23:43:08 CEST 2010


Author: ripleyrm
Date: 2010-10-22 23:43:03 +0200 (Fri, 22 Oct 2010)
New Revision: 124

Removed:
   pkg/RSiena/configure.win
   pkg/RSiena/src/win32/
   pkg/RSienaTest/configure.win
   pkg/RSienaTest/src/win32/
Modified:
   pkg/RSiena/DESCRIPTION
   pkg/RSiena/R/siena01.r
   pkg/RSiena/R/sienaTimeTest.r
   pkg/RSiena/changeLog
   pkg/RSiena/inst/doc/s_man400.pdf
   pkg/RSiena/man/RSiena-package.Rd
   pkg/RSiena/man/installGui.Rd
   pkg/RSienaTest/DESCRIPTION
   pkg/RSienaTest/R/siena01.r
   pkg/RSienaTest/R/sienaTimeTest.r
   pkg/RSienaTest/changeLog
   pkg/RSienaTest/doc/classdesign.tex
   pkg/RSienaTest/doc/s_man400.tex
   pkg/RSienaTest/inst/doc/s_man400.pdf
   pkg/RSienaTest/man/RSiena-package.Rd
   pkg/RSienaTest/man/installGui.Rd
Log:
Fix for sienatimeTest with one effect. Removed standalone Siena gui. Updated documentation

Modified: pkg/RSiena/DESCRIPTION
===================================================================
--- pkg/RSiena/DESCRIPTION	2010-10-13 19:55:33 UTC (rev 123)
+++ pkg/RSiena/DESCRIPTION	2010-10-22 21:43:03 UTC (rev 124)
@@ -1,8 +1,8 @@
 Package: RSiena
 Type: Package
 Title: Siena - Simulation Investigation for Empirical Network Analysis
-Version: 1.0.11.123
-Date: 2010-10-13
+Version: 1.0.11.124
+Date: 2010-10-22
 Author: Various
 Depends: R (>= 2.9.0), xtable
 Imports: Matrix

Modified: pkg/RSiena/R/siena01.r
===================================================================
--- pkg/RSiena/R/siena01.r	2010-10-13 19:55:33 UTC (rev 123)
+++ pkg/RSiena/R/siena01.r	2010-10-22 21:43:03 UTC (rev 124)
@@ -13,12 +13,10 @@
 {
     if (.Platform$OS.type =="windows")
     {
-        tmp <- list.files(pkgpath)
-        if (subs <- grep("sienaguisetup", tmp))
-        {
-            filename=paste(pkgpath, "/", tmp[subs], sep="", collapse="")
-            system(filename)
-        }
+        message("The standalone gui is no longer available. ",
+                "To run the gui within R:\n",
+                "Start R, load RSiena using Packages menu ",
+                "then type siena01Gui() (and <ENTER>)")
     }
     else
     {

Modified: pkg/RSiena/R/sienaTimeTest.r
===================================================================
--- pkg/RSiena/R/sienaTimeTest.r	2010-10-13 19:55:33 UTC (rev 123)
+++ pkg/RSiena/R/sienaTimeTest.r	2010-10-22 21:43:03 UTC (rev 124)
@@ -63,7 +63,7 @@
 	## intuitively expected. For now, I just check the dimensionality of the scores,
 	## as it will match the number of included "effects" on dimension 3 if uncond.
 	## estimation was used.
-	if (dim(sienaFit$sf2[,,-escreen])[3] == dim(sienaFit$effects[,,-escreen])[1]) {
+	if (dim(sienaFit$sf2[,,-escreen, drop=FALSE])[3] == dim(sienaFit$effects)[1]) {
 		rscreen <- indRateEffects
 	} else {
 		rscreen <- 99999
@@ -121,16 +121,17 @@
 	## obsStats, moment, scores are the crucial ingredients from sienaFit which
 	## screen for the base effects and make the rest of the code clean
 	obsStats <- t(sienaFit$targets2[-c(dscreen,rscreen,escreen), ])
-	moment <- sienaFit$sf2[, , -c(dscreen,rscreen,escreen)] - rep(obsStats, each=nSims)
-	scores <- sienaFit$ssc[ , , -c(dscreen,rscreen,escreen)]
+	moment <- sienaFit$sf2[, , -c(dscreen,rscreen,escreen), drop=FALSE] -
+        rep(obsStats, each=nSims)
+	scores <- sienaFit$ssc[ , , -c(dscreen,rscreen,escreen), drop=FALSE]
 	## Because the sienaFit object does not have a strict class definition,
 	## the $sf2 and $targets2 arrays cannot be expected to always have the
 	## proper format. The best we can do is therefore to die gracefully if
 	## the arrays do not line up:
 	G <- array(0, dim=c(nSims, observations - 1, nEffects + nDummies))
 	SF <- array(0, dim=c(nSims, observations - 1, nEffects + nDummies))
-	if (sum(dim(G[, , 1:nEffects]) != dim(moment))+
-		sum(dim(SF[, , 1:nEffects]) != dim(scores))>0) {
+	if (sum(dim(G[, , 1:nEffects, drop=FALSE]) != dim(moment))+
+		sum(dim(SF[, , 1:nEffects, drop=FALSE]) != dim(scores))>0) {
 		stop("The moments and scores in your sienaFit have unexpected dimensions.\n
 			It is possible that your model specifications are not yet implemented\n
 			in sienaTimeTest. Please contact the developers.\n\nDid you include
@@ -641,7 +642,7 @@
 						dvind <- which(names(data$cCovars) ==
 							effects$interaction1[effects$effectNumber==i])
 						if ( length(dvind) == 0) {
-						## It is a varCovar, not a coCovar 
+						## It is a varCovar, not a coCovar
 							dvind <- which(names(data$vCovars) ==
 											effects$interaction1[effects$effectNumber==i])
 							if (length(dvind)==0) {

Modified: pkg/RSiena/changeLog
===================================================================
--- pkg/RSiena/changeLog	2010-10-13 19:55:33 UTC (rev 123)
+++ pkg/RSiena/changeLog	2010-10-22 21:43:03 UTC (rev 124)
@@ -1,3 +1,11 @@
+2010-10-22 R-forge revision 124
+
+	* R/sienaTimeTest.r: fix bug causing error when only one effect
+	(added multiple drop=FALSE)
+	* src/win32/(all), configure.win, R/siena01.r: removed siena.exe,
+	install function now gives a message.
+	* doc/classdesign.tex (RSienaTest only) updated documentation
+
 2010-10-13 R-forge revision 123 RSienaTest only
 
 	* doc/RSienaDeveloper.tex: added details about change logs etc

Deleted: pkg/RSiena/configure.win
===================================================================
--- pkg/RSiena/configure.win	2010-10-13 19:55:33 UTC (rev 123)
+++ pkg/RSiena/configure.win	2010-10-22 21:43:03 UTC (rev 124)
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-if test "$R_ARCH" != "/x64";  then
-echo "  getting gui installer"
-allok=yes
-echo 'download.file("http://www.stats.ox.ac.uk/~ruth/sienaversion.txt",
-"inst/sienaversion.txt", mode="w")'| ${R_HOME}/bin/R --vanilla --slave
-
-if [ ! -e inst/sienaversion.txt ]; then
-	allok=no
-else
-	echo '{version <- scan("inst/sienaversion.txt", what="character"); file1 <- paste("sienaguisetup", version, ".exe", sep="", collapse=""); file2 <- paste("http://www.stats.ox.ac.uk/~ruth/", file1, sep="", collapse=""); file3 <- paste("inst/",file1, sep="", collapse="");download.file(file2,file3,mode="wb")}' | ${R_HOME}/bin/R --vanilla  --slave
-fi
-fi
-
-exit 0

Modified: pkg/RSiena/inst/doc/s_man400.pdf
===================================================================
--- pkg/RSiena/inst/doc/s_man400.pdf	2010-10-13 19:55:33 UTC (rev 123)
+++ pkg/RSiena/inst/doc/s_man400.pdf	2010-10-22 21:43:03 UTC (rev 124)
@@ -34,7 +34,7 @@
 << /S /GoTo /D (subsection.2.3) >>
 endobj
 24 0 obj
-(Running the graphical user interface from within R )
+(Running the graphical user interface: more details)
 endobj
 25 0 obj
 << /S /GoTo /D (subsection.2.4) >>
@@ -498,44 +498,35 @@
 332 0 obj
 (Changes compared to earlier versions)
 endobj
-333 0 obj
-<< /S /GoTo /D (appendix.C) >>
-endobj
-336 0 obj
-(References)
-endobj
-346 0 obj <<
-/Length 1136      
+337 0 obj <<
+/Length 1111      
 /Filter /FlateDecode
 >>
 stream
-xÚ•VKsÛ6¾ëWàH͘0¯öä$v›ÎØilå”ô@QÄš•¤ìèßw¥Q¥ÛéhF»ß>°$dCòË,yãûn1»¾cŠð”j£Y¬	œ
-›Í,å̐Ŋ|î³zÎU´ÏÊy,­›vþÇâ7Õ#Y¦¨b ƒÔÓÇÛ‡›o¤CsªÔ‰íÅC»¶+šÑSšR†XjW^(V‚–’˜3j†ýÞÎ%‹š—ÂK뤉^<Øȵ‡99{}'4a)©â0¥F(À3ÔXŽxû~ `Ð=õ_=»ÒF@Ç/‰
-•\BBˆ°˜5
-ßÐwážêâÏØ5	„–[R¢e,@
-Fba¨’‘¿Ô„J‡Põ~q@èfßOßáZV?ÍãTÈèƒÛem_¹Ú3öçŒ:zê³Þǧ›ÇÎXTäÝÏxô°ÿ–0åÊJ¼oÊÒmÜÈhÂ8§–§!pÒnÊûf9ƒy(k¯’',™ôúv1c°H#LKªMD¢)·–äÕ쯙‡øGîp}W1ò¡™}†ß%ö‘5>"ÇgÐ!ë…%rK¥>àÜ0*˜ ð”….Ý,»¾Íòþ+K“3€˜)
-ec`ú *.@˜‘:ªtzÌÿo‰LN5Be€iä©œŠj_ÂÍa™Øècý⺾؜‘ÖÍœ›¨ÅÍmµ+Ú"ÇšµÑƒƒ¤±Ñ«çhüª}ƃ(œCWtS†2NÓsCŠ søfðaI”7ÕnyÔ‡»®m6mV!S¿ÍB!a¤¡)Üä7äºEÔ<kÛÂy@%»÷¹ª89¤t>YÁMôÞçêè³Y£DÕ@ú™håÊËÇtŒå^‚óå¤Á܏ 4y åÅQS}±öy€Íòʬ¨7Á§dìLBèA%,V‡:«Š7LM7àní{·Bz…šÁt܃E£Šû¨“-d8ó9tA‡ÂKØ%íjJå%ãp×Þèzõ¯Ö„ëæ’þóô”Vh˜©”Ñb‹yázÚÖ<?›Ì0›`¿ö]m²œ´ 	cÓiœó0÷Ìùp28œ†„Õ©ïlÆ;ëSÆë„ä,ÝjB¥Ñ45G¬Ç'¸ølJ¥¢òG?Ð_·¾Gç^ÿõ¢ë:Tló&8Þ·Å÷˜M@ßeAèy.=+‹6nˆXó#rXŽ0®…L‡øu\o<ºC×»j*œðPà'«'ü’ÔêS¼)Â-½q‰÷f‡{ƒƒàЗY<R(qøöG—µ¥
-ΘK½ÑF-¼`æ'ÿÙ•
-ûǽã;" ‹0ÑL¨ˆ`WH€J‘@•¾èl
-–yVԝêüÊ|:’_Û¢ï¡'„Mh[~úfX»é÷KrÀõ}æû¸_ýº/:à¼òmÐF÷¦ŽÏ ä fs³=55WÜeè>®Ý¸vjþ²öÞo[Ÿ™GÊáá6å †^<µÎ_nÌH
-¯ [	/®!ÏÆ­	Þa¡¡¦
+xڍVÛnã6}÷Wè‘"†7ñÒ>,²»Ùv$Û&îS·²ÍØjtI%9Yÿ}‡É‘(Däs83çi–ì–ü²`ï|?®—_¸N„¢Æž¬.•N%†;*¸MVÛä/r“×K¡É!/—©d‚<4íòïÕoàkf¾\SÍ@G¯û¯×·WþÙFP­OÛž´o»¢©]Q6xÙÄQ§…N©–Ôr•¤‚S7ö{»Ì8iž‹à£Ë,y`K0×æ”ìåi®¨TZD at E­Ô€g©uñîý@  ¾†ÜO¥?΀Æo’Zš	ŒJ!aµ´‚4:_яáîëâŸ-Äu#ƒ´²#ã
+)y’JKu–!òŸu¥2±T}ºyÀï·@Ëö§eªdF>û§¼í+_‡ýt£!÷}Þ‡útË”Ã'Ŧû—nß׾ܢǧ¦,ýÎÏ‚†@gcá27¤ýmÓ7ëeÃC_!.S0ÎΦ}½Zp°„'ÜdT3“H&©V:ÙT‹2.âÿhw†Ë/O>7‹?àï-ö¸5‘Ó	t”½t‰qi*.,§’ËDpFí ­«u×·ù¦‡2Å&þ)×ÚŠÂá8芷
+ íì4ªõÿeìÔP3T˜6;µSQJ`ÛÄ‘¯õ³ïúb71=4KaI‹“ëê©h‹
+ö¬#·DãÈKØÑ„QûˆWÐ8Ç®èÎÊUÓ@9ºÀæøÍáÃÙ4ÕÓtÔGîÁðÔ6»6¯pS¿Ïc
+A0™¥Ê¹ oкCÔMÞ¶…€Zö´ª8y´tA¬&憐s5æ\Уj@~–l}9`…šÎ±üsL¾<€7„[ã2ÀIÀ‘M1žTO+Ö>°ùfmVÔ»˜›'Ó†tn8ÛcWÅ' ¦¦MH·À½ß¢½Â“!tœCDÈÅT¢\ÃÕ¥G.>|8CWО<Ñ•×Ûs0@8iêJF×áö‚ë—¬ö‘q70?M°Êc.ø48GÞQ24ŸrúÌË0×›£ÊL‹Ã@À«”’”š*¦†ê›—Ã@¨¥ôÛ3(Eã	w÷@E~.M³×
+™ÎÈˈ„öxF,…f±	‘ HXìÛb}@faí)Ë̐|çÑØA¾¯ñîØõ¾:¾Šò׎¼;KŸ3úÜj<hF¦€Õ„ÇGó¹”×y³0‚ÄV3c#h¤¼-‹Øì` –„ âñž$£†ÿi&"p¯¿ [6Œ‹òŽ†uE
+@›yQwËHJ€ˆ¯^Xyi‹¾÷õ,Þp{ÃÛ–É7M.°Tª×Tcž0_‡ÙÇ7y¼P•$¿Šv^àì&<µ¨›Ü~÷ƒŽÆÛÅ1ðu¼|»óínÄ$åÓ¾
+Éë ÷»rP#}ó+gú£‰ÛŒÂû›¤:Ëq̇Ïàþ}„›
 endstream
 endobj
-345 0 obj <<
+336 0 obj <<
 /Type /Page
-/Contents 346 0 R
-/Resources 344 0 R
+/Contents 337 0 R
+/Resources 335 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 357 0 R
-/Annots [ 339 0 R 340 0 R 341 0 R 342 0 R 343 0 R ]
+/Parent 348 0 R
 >> endobj
-338 0 obj <<
+334 0 obj <<
 /Type /XObject
 /Subtype /Form
 /BBox [0 0 84 59.04]
 /FormType 1
 /Matrix [1 0 0 1 0 0]
-/Resources 358 0 R
+/Resources 349 0 R
 /Length 34        
 /Filter /FlateDecode
 >>
@@ -543,7 +534,7 @@
 xÚ+ä²0Q0 BSK=+9—Kß3×PÁ%Ÿ+ hƐ
 endstream
 endobj
-337 0 obj <<
+333 0 obj <<
 /Type /XObject
 /Subtype /Image
 /Width 350
@@ -655,1159 +646,814 @@
 klŠÇ,T‚ÄñéïœöšwŒ¬u?ÜèéÒÃ$V¾gžedc#ýsÏqELè¯N)FËìžkñöñýÄrF|¤ùWýcm1ç’zyÅvZ݇‡´X®`Ži“P˜IG䟽*¤–là}­VU7F•Ÿî`‡i¾ñ^‡u}®A«X%õÖö”iCŒîÁ,3ù*í£I.—PŠÜ^E’[`ÊsŽ³»oÖŠ*’»ÔâÄI·qñ¨Ž@¢ghÔgcÅçýìdþ5*̆åc0)9#~pqôQV`N—$U’B6Ÿ½‚qÛŸZS~(wF¢ŠdûhôoÒ—í‹ýÖý(¢˜‡}´z7ä(ûhôoÈQE 'ÛÇ£þuêI[¶¹ö¢ŠC3ï5–HX“"û!Ï®<}­«4ÛyÁÄ’Ü8'qÀíùQEsÔo”î¥N=‡Íã‹-ý"m*iå’%ie{¢Ä‚áGÞ8ëÛëX?¼Wq{cc X㍘͔ˆãa^I8á‡OOJ(¬èÉË–çM*qU£dqÖšÄÒͪê3©šcgå³™][-²0ùæ<ŒƒüñSiz–§¨É#›¶.»9;Xgv aÎ3’}I'©4Q]5"¹Né¥ïoí®´’é}2Jó¡d1ƒ˜ðë–Và$§å⡳Ôtý:Ú(šÖå¯×y–â;‚£Ë={òxêh¢¢ÊÖ#x»”­5(gÕÑ䀮ùÃKµ˜åsÐç?t‡ÃãSH¼©DQÉ™×÷i€F9ùØŽ»ºz‘E,•‰«'1óx¾¶µ¤Ë$‰!o>uPOUè½°?Ö3OÞÝ´H…Š†UP3…àsù÷¢Šå¨­5c	ll®§›g Œ’Ö Ilc!Kc Øé¥áfW(Ós¾@z{ô¢Šê„VÇö¹ÿÙ
 endstream
 endobj
-358 0 obj <<
-/XObject << /Im1 337 0 R >>
+349 0 obj <<
+/XObject << /Im1 333 0 R >>
 /ProcSet [ /PDF /ImageC ]
 >> endobj
+338 0 obj <<
+/D [336 0 R /XYZ 88.008 808.885 null]
+>> endobj
 339 0 obj <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[0 1 0]
-/Rect [273.946 177.414 308.012 188.372]
-/A << /S /GoTo /D (cite.Snijders01) >>
+/D [336 0 R /XYZ 89.008 771.024 null]
 >> endobj
-340 0 obj <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[0 1 0]
-/Rect [312.625 177.414 333.049 188.372]
-/A << /S /GoTo /D (cite.Snijders01) >>
->> endobj
-341 0 obj <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[0 1 0]
-/Rect [336.638 177.414 357.061 188.372]
-/A << /S /GoTo /D (cite.Snijders05) >>
->> endobj
-342 0 obj <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[0 1 0]
-/Rect [379.544 177.414 437.065 188.372]
-/A << /S /GoTo /D (cite.SnijdersEA07) >>
->> endobj
-343 0 obj <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[0 1 0]
-/Rect [441.678 177.414 462.102 188.372]
-/A << /S /GoTo /D (cite.SnijdersEA07) >>
->> endobj
-347 0 obj <<
-/D [345 0 R /XYZ 88.008 808.885 null]
->> endobj
-348 0 obj <<
-/D [345 0 R /XYZ 89.008 771.024 null]
->> endobj
-344 0 obj <<
-/Font << /F16 349 0 R /F17 350 0 R /F18 351 0 R /F37 352 0 R /F39 353 0 R /F40 354 0 R /F38 355 0 R /F8 356 0 R >>
-/XObject << /Fm1 338 0 R >>
+335 0 obj <<
+/Font << /F16 340 0 R /F17 341 0 R /F18 342 0 R /F37 343 0 R /F39 344 0 R /F40 345 0 R /F38 346 0 R /F8 347 0 R >>
+/XObject << /Fm1 334 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-415 0 obj <<
-/Length 2126      
+403 0 obj <<
+/Length 2110      
 /Filter /FlateDecode
 >>
 stream
-xÚí[K—›8ÝçWx7xa¢7R望JNæt¦ç¤ªÏ,2½  ²9ááTþýHHÈ6à*œÔLW¥¼²ÁHÀ½ú÷ûd°X/Àâíà>½~ñò
-HBLZ\ß,¸à‹ˆÁ0¸¸NƒWU¹Ä0h¤ý¨—^ÿÝÏñò
-
-ƈ+BŽ¨
-—+AAðV–RÅùr…	²ò¦REÜdzÚý™Š¤º±dpó 0”vºê¯^a2í˜wË„ˆï³2+ºF4xgŸ[U‡·û¸BŒÐûßFÄΏú÷iš¬\Û÷©›X5254øš53Ÿ~\°7
-„8$€ô¯võîòwÝÎûëGÈ÷®]}1`b±‚@Ã#Ü“†{(Ô¯¯Ÿ0Ïã¥ÆÀ`¾Âq™Ú/ª-ˬԿ­íq³‘öËZÅÛM–˜a¹=ÓÖRÙoz zA¨›8q—·ejEÁ¿²2­Ì_ë!â£ \®($§~à{.Ü2 °ù_Á)äú£¶¤êwÁÛówbp£ªÂ^ö>Nì©Êaò›¹œííðA1æ†ÁƒŽJ…ØL@±ôƒY\z•?¸¸vÀûÊÊ	CHû@{‹ùp—ÅÀ($ÚÜÜ¥v7nj9A…°Ðþ›I Ž„ËϬ§áuÜhàãÑ]xoÅ?±qSE3̓Þg—u£ÃׁÃþ§ª´ÑÃû ž;S`ó™`3ökÙÄY^[7RÝXT¯-âȘD찷梾ÙëDIYŽ¼vô\a3azØ°(°Yß(%ˆ8~Æ廆yœÌ$†;bLVoº
-·m6pB(§éW4‚Ï<Nüâ ݧ2$
-áH)R¤¿F^OÏŠxÈ¢y9‘6YŠuNôH"ý]\¯1€ŽqîïÄŒXðfÉ©ͦª]Äÿº©ì¹X¹3už­7…æ.ÝÄE–g±ÚeÂSJSèôóyœÃDì~Îÿ¯Î픀t'àÃQZ,:¹w7mn!GARu²í‹áAª:»	 ‘¶$1 "ý\F7æˆá²Hû16æ;Ž.\ú+oãb›Ë	¼9Ù®hôaÂWŠA¨lÛ8¢{ò×¾žcÏÕs†âˆ²'Í‚¶-(Ža@ãÐâ(ø½mò¬”‡Éó^‚Нß*íô¡$2m•¥Ì?ïü ÏÍ´µt ï•£Š®x”7™±Øu-GI5Eg%ÿ D KÄU#·µ1vñç~TŸ½ßˆ]\P²ÖLÕ¿,W„FÁå­LÚf:у‘#ÄîÍõh(À^j6¬bGÑÓ—–/ðh$§!C|D¶ô¼Í¾xCQòF*Y&c“`žóÙï	Í5âøØESld¾u)®É—zßõ)—Ÿ0ÝxÜœ ü¨už‹ð¨†¡o‡ýQKõ·Úvʸk‡µq>r$”D(ÀxN?Ìõ÷°í‡õÅÉ®¶ÕéS=ì쑐rŸènazyö÷ƒ^±s¿+·mcgNM-éΉÉ=2Fl ˆo”½Îº¶„]£©/þ@’ý	ѹRõ]þ„LûC(èˆ/¯Õ&M«â¼Ä©l¤*t^šZξ,uÀóvL	&=?'‘í»ž¯¿u§™kY&]ïÖb©²¸£I?w†¾+ù§Ê{n°ïݧ:¹IÛ½Féýô0ÄÎL!Äñ„¸fjœáëTßM‘l©QqYûí.ƒæ“aÒÔ–(?jh<"ŽfbI}GnÛi(Y¦ÒÂê„T²k{zt>M„`AñSXçзDßgõ®Ä0N®4Àâì; [0›˜È÷æ
-kUíl!16²‰Ëµ<Z›|~æÉ!˜ÏäÂ÷Iåþþ™¡bðÙ܏‰#º÷@‰zÙ»¯©ÕŒïM3Íè·å´ÞvÇ2ÉŒ˜K&÷žIN’t·ã²·^ÕÄû­ö
-ÆÐõÓ`™,»Mµû	”²évPš¡Ò¨Ï}‚QÆE–Ô¿˜ç›”LU)W…-N¦rb2õy\-†à¼Oòèž µ¨—ZéÂØwê!ôìµN«ÝtÒéõÞ¥%¾v¹ŒÍQî²æº¶¤&FJ¤Ãš«Ge#ì1G‚gnê¥Ú+UÕõª”ÆŠÌ»5V½½ÈÒzßp¬•kS=¸Ž•ÝÄãz¶xÔ‚™ˆÒéÕÙ祟¬ŠÛÄÝ
-Ëzå—nµæíÔ2Žù95«šÎªQ¯Ù.Ò43»·5¦}´ÈkÃõ=Dž£s7ȳùeh
-¿/C¿³{€öÑF‡ÞdocÉÀC†êñ¶JñÔ£^tRÔëåîuVȾ[¨­Ö²”Yð¾ùÞ}záÛm6µ×§¶±i<ÁÀç-û‰«É$šé¿{)û[VXß1úÃAßfE·¸pA¯5¦r­ä¨Ú@}¦­ð#ˆÏQ¦Ì*ÓË#›ª‡ú“Ÿ®?™×ŸùºRæ%Ífô‡JØ9•ðu1¯¨Ä¼ü½m¶m—˜Ž¦ÃgþgSÌùš«Ý¦íìÖ»Ì.ÞLNÅy³Ýs
-皆ߗ}Ñ6•ñ‘ÉnÿÅ­oSôͳã<P~þÆå	°ö[©_UeÚuzÝຖ(hËdø›<øâP×þT]À	¸‡ÛùŸ6S}Eeׄ©‡ÿMØT÷à;	îœb쏗S(š•Ê`ÈS™È¦2W^@±Jm‰]*U©»·}
-nùò
-_}'ĺ;!@B	ÜàöÛØG\^¿ø/ÃRÆß
+xÚí[K—›8ÞçWx7xa¢7Rïj’JNÍéLÏIUŸY¤{A at esÂÃ# ©üû–mÀU8]“îJye„€ï>¿{¯Áb½ ‹·/€ûüçÍ‹—o\@bÂÐâævÁE _D†€ÁÅMºø¼ªÊ%†A#íG½üýæ_~—o°XðP0FÌõ`±B äˆÚKár%(ÞÊRª8_®° AVÞVªˆ›Lo»¿Ó‚@rôîZ<¸yP
+J»]õ«W†L`{ÍÕr!¢Á»¬ÌŠî†
+®ìs«êðvVˆÁòðûÀˆØýQÿ>M“•kû>u«F¦æ
+¾dÍÆì§ìm!	 ý«]_]þûâ¾ÛbÀBÂy¿~ôˆ|oíŠèÅ€‰Å
+
+pOjì! P¿¾~Â<—ƒù
+Äej¿¨¶,³RŸ[ÛßÍFÚ/ko7Yb.Ë푶–Ê~Ó ¡BÝƉ[Þ–©=‹‚ÿfeZ™_ê!â£ \®($§~à–n ØüY0D
+9¤~­­Põ;Œ`Èíñ{1¸UUa—½‹{¨r˜ül–ó ½>(ÆüÑ0xÔ놀R!:Pì }o”K+PùÍÊõÓrEh•’ÈT6q–‹sô]Pù+Ð$͢¬ÇóuÜGÛóÞ̾ë;>Í릛)úž_֍ŽC>å=ïT¥µ¿Þ— ñ¤3v4læÀ~í<@çª[‹êÍÆù‡Î$,öÖ\ÔWûó:QR–#÷a¿ö¨‡Ý‹›¾\pÄñ Þw½íTTà3å\Lvnô܆Í6ø HëƒFéö‡à3S†!f
+@dãœŸD!%üƒÜ鯑§†<dåÄVz‹úUïï#P,õêç¿IÔ+ÁB 8÷ï(ŒXðfÉ©Oí›MU»pÿeSÙc±rGê<[o:ûÌ]º‹,Ïbwñ1¾(tù<‘ÐDì	‰üI €CÉÈö:ÎvŸ(nÛÜ"Ž‚¤ê¸×g#©ê¸ûÕ܏?´‰yøƒÁèÇ2¹©ÀtLDEÚ‰±±ˆ°Ñ…Ë|å]\ls97!Û~ÞO8Jâԉʶ“s/ûµ¯É³s5™!/¢ì	p@M%À1A qè
+qüÒ6yVÊüy/9èŽo•ö`ÚN™¶JŽ²eŸon`àGs³3-è{%¥¢+ åMfl` v]ËQ>MÑ™ÄÄÜ,
+"+ˆëFnkÏ_¬òç~TŸ¼ßˆ]XP²Ö’ª]õéòN&m3åÁH„b&z4`//V¢£èé³Êûä¢9
+â#ñ`+ž·Ùgo(JÞJ%ËdlÒs2û-aƒ¹æBœ<vÑ™o]‚kÒ¥Þw}Ìe1®LWøŸƒlN ~ÔÍ‚:ÍExÔÌÂз´~­¥úGm;ZEܵ´Ú89J"`8§§Eû>[×Óêë’]Ok«Ó§z؝#!å>ÏÜÂôãìùƒ~±{_•Û¶±;§¦ŒtïÆèf#6 Ä7»^g]kÁõ
+|-ð7 I>ö'HDÏJK¥HÕ©5šö'†PБp<q¾nT›4­Šóž§²‘ªÐyijeöy©nœ·cañç`b|,~N"Ûw._5ä6N3×vLºþ«ÅReq3F“0~n
+}K†ƒè*ó^6Ø÷ßSÜ¤í^³óañ0ÄÎ’ "o,ÄÄõQãÄ_Ç
+üDD:°¥FÅeíGV}'#ISZ¢ü¨¡aðTÊ4Àt&–Ô7㶇’e*-¬ŽH%»YÎlj,(~ê]œG
+¬sÐwCßeõ®Ä0N®4Àâì;þd«à$ÁD¾/WXÓ¨êlg‰±‘M\®åÑÚäókƒž‚ÙLYø©Ü2ÖŸmáÑýXt„÷0QO{÷9#µœñi¥~àÆFëm÷[&™!sÉäüè!‘ä§Iº›šì­W5ñ~`«=ƒqtý4X&Ën0v¿#ƒR6ݤÉ*½@}êŒ2.²¤þÉ<ß$eªJ¹*lq2•›©Oãj1gm<Í£‹¨õTë/UŒ½ëNUBÏ^ë´d˜€“¤ç{—VðÍ°Û0ËØœÈ]Ö\×V¨‰¡é°æêÉÆQÚÈû;Ggnê©Ú+UÕõª”ÆŠÌ»1V½½ÈÒú"?
+p¬¥kS=¸N*»Çõlñ·&lÍD”NkgŸ—~´,nw–õ(Êϝ¶æíÔøÇüÙMóMj5žU¢ž³]¤iæf‚ûh‘Ö$†ú}lÚý™‡pBæ—¡5ü¾}eG€öÑF‡Þdo°dà!Cõx¤R<ñŽ¡'E½žîÞd…ì»…Øj-K™uï«×ðî³ÐŠoÇlj¯mcÓx‚¹pœ·Dì®&:Ó÷Tö笰¾cô_ƒ"¾ËŠn¸pA¯5S¹VrTm „>ÓVøÄç0Sf™é呁êÿ$ìtþÉ<ÿ¼Èו2ÿ)i6£ÿŠPÂΩü£ëż¢óDð—¶Ù¶]b:ÚŸeðs˜Ñü¯eµÙÎî¼ËìâÍd°áTœ‡íƘ‹¹¦áDz/Ú¦2>2ÙÍ_Üù6Eß<;.ÊÀß¸<Ö~”úUU¦]7¡ç
+®k‰‚¶L†çìloÿ·ï!¯üɺ€ù¸‡Û{ù¿6S}Eeׄ©‡ÜØTà;	îœbìŸ/§P0+•Á4¦2‘Me®­@±Jm‰]*U©ûǾ·|ù†/„¾bݝ !‰„NnpHû1¶Ã
+ÅåÍ‹? ˆG¹ò
 endstream
 endobj
-414 0 obj <<
+402 0 obj <<
 /Type /Page
-/Contents 415 0 R
-/Resources 413 0 R
+/Contents 403 0 R
+/Resources 401 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 357 0 R
-/Annots [ 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 419 0 R 396 0 R 420 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R ]
+/Parent 348 0 R
+/Annots [ 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 407 0 R 384 0 R 408 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R ]
 >> endobj
-362 0 obj <<
+350 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 739.24 197.853 747.459]
 /A << /S /GoTo /D (section.1) >>
 >> endobj
-363 0 obj <<
+351 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 707.547 191.686 717.841]
 /A << /S /GoTo /D (part.1) >>
 >> endobj
-364 0 obj <<
+352 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 685.629 232.383 695.591]
 /A << /S /GoTo /D (section.2) >>
 >> endobj
-365 0 obj <<
+353 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 674.67 402.012 684.633]
 /A << /S /GoTo /D (subsection.2.1) >>
 >> endobj
-366 0 obj <<
+354 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 663.711 340.137 673.674]
 /A << /S /GoTo /D (subsection.2.2) >>
 >> endobj
-367 0 obj <<
+355 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [101.835 652.752 334.775 662.715]
+/Rect [101.835 652.752 328.095 662.715]
 /A << /S /GoTo /D (subsection.2.3) >>
 >> endobj
-368 0 obj <<
+356 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 641.793 185.202 651.656]
 /A << /S /GoTo /D (subsection.2.4) >>
 >> endobj
-369 0 obj <<
+357 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 630.834 260.66 640.797]
 /A << /S /GoTo /D (subsection.2.5) >>
 >> endobj
-370 0 obj <<
+358 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 619.875 260.926 629.838]
 /A << /S /GoTo /D (subsection.2.6) >>
 >> endobj
-371 0 obj <<
+359 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 610.66 178.466 618.879]
 /A << /S /GoTo /D (subsection.2.7) >>
 >> endobj
-372 0 obj <<
+360 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 597.958 230.546 607.92]
 /A << /S /GoTo /D (subsection.2.8) >>
 >> endobj
-373 0 obj <<
+361 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 586.999 214.542 596.961]
 /A << /S /GoTo /D (subsection.2.9) >>
 >> endobj
-374 0 obj <<
+362 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 576.04 323.33 586.002]
 /A << /S /GoTo /D (subsubsection.2.9.1) >>
 >> endobj
-375 0 obj <<
+363 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 565.081 288.752 575.043]
 /A << /S /GoTo /D (subsubsection.2.9.2) >>
 >> endobj
-376 0 obj <<
+364 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 554.122 313.993 564.085]
 /A << /S /GoTo /D (subsubsection.2.9.3) >>
 >> endobj
-377 0 obj <<
+365 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 543.163 253.633 553.126]
 /A << /S /GoTo /D (subsection.2.10) >>
 >> endobj
-378 0 obj <<
+366 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 532.204 223.811 542.167]
 /A << /S /GoTo /D (subsection.2.11) >>
 >> endobj
-379 0 obj <<
+367 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 521.245 312.015 531.208]
 /A << /S /GoTo /D (subsection.2.12) >>
 >> endobj
-380 0 obj <<
+368 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 510.286 194.308 520.249]
 /A << /S /GoTo /D (subsection.2.13) >>
 >> endobj
-381 0 obj <<
+369 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 499.327 236.265 509.29]
 /A << /S /GoTo /D (subsection.2.14) >>
 >> endobj
-382 0 obj <<
+370 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 469.377 197.231 479.672]
 /A << /S /GoTo /D (part.2) >>
 >> endobj
-383 0 obj <<
+371 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 447.46 171.712 457.348]
 /A << /S /GoTo /D (section.3) >>
 >> endobj
-384 0 obj <<
+372 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 427.285 153.511 437.248]
 /A << /S /GoTo /D (section.4) >>
 >> endobj
-385 0 obj <<
+373 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 416.326 197.157 426.289]
 /A << /S /GoTo /D (subsection.4.1) >>
 >> endobj
-386 0 obj <<
+374 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 405.368 278.535 415.33]
 /A << /S /GoTo /D (subsubsection.4.1.1) >>
 >> endobj
-387 0 obj <<
+375 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 394.409 195.621 404.371]
 /A << /S /GoTo /D (subsection.4.2) >>
 >> endobj
-388 0 obj <<
+376 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 385.193 208.547 393.412]
 /A << /S /GoTo /D (subsection.4.3) >>
 >> endobj
-389 0 obj <<
+377 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 372.491 339.318 382.453]
 /A << /S /GoTo /D (subsection.4.4) >>
 >> endobj
-390 0 obj <<
+378 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 361.532 234.284 371.495]
 /A << /S /GoTo /D (subsection.4.5) >>
 >> endobj
-391 0 obj <<
+379 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 350.573 176.576 360.536]
 /A << /S /GoTo /D (subsection.4.6) >>
 >> endobj
-392 0 obj <<
+380 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 339.614 206.48 349.577]
 /A << /S /GoTo /D (subsection.4.7) >>
 >> endobj
-393 0 obj <<
+381 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 328.655 164.216 338.518]
 /A << /S /GoTo /D (subsection.4.8) >>
 >> endobj
-394 0 obj <<
+382 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 308.481 193.677 318.444]
 /A << /S /GoTo /D (section.5) >>
 >> endobj
-395 0 obj <<
+383 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 297.522 515.201 307.485]
 /A << /S /GoTo /D (subsection.5.1) >>
 >> endobj
-419 0 obj <<
+407 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 288.307 202.412 296.526]
 /A << /S /GoTo /D (subsection.5.1) >>
 >> endobj
-396 0 obj <<
+384 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 275.604 515.201 285.567]
 /A << /S /GoTo /D (subsection.5.2) >>
 >> endobj
-420 0 obj <<
+408 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 266.389 202.92 274.608]
 /A << /S /GoTo /D (subsection.5.2) >>
 >> endobj
-397 0 obj <<
+385 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 253.686 349.467 263.649]
 /A << /S /GoTo /D (subsection.5.3) >>
 >> endobj
-398 0 obj <<
+386 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 242.727 350.388 252.69]
 /A << /S /GoTo /D (subsection.5.4) >>
 >> endobj
-399 0 obj <<
+387 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 233.512 242.472 241.731]
 /A << /S /GoTo /D (subsection.5.5) >>
 >> endobj
-400 0 obj <<
+388 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 222.553 242.088 230.772]
 /A << /S /GoTo /D (subsection.5.6) >>
 >> endobj
-401 0 obj <<
+389 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 209.851 316.47 219.813]
 /A << /S /GoTo /D (subsubsection.5.6.1) >>
 >> endobj
-402 0 obj <<
+390 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 198.892 288.737 208.855]
 /A << /S /GoTo /D (subsection.5.7) >>
 >> endobj
-403 0 obj <<
+391 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 187.933 260.344 197.896]
 /A << /S /GoTo /D (subsection.5.8) >>
 >> endobj
-404 0 obj <<
+392 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 169.502 154.321 177.721]
 /A << /S /GoTo /D (section.6) >>
 >> endobj
-405 0 obj <<
+393 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 156.8 166.255 166.762]
 /A << /S /GoTo /D (subsection.6.1) >>
 >> endobj
-406 0 obj <<
+394 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 145.841 154.717 155.704]
 /A << /S /GoTo /D (subsection.6.2) >>
 >> endobj
-407 0 obj <<
+395 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 134.882 227.95 144.745]
 /A << /S /GoTo /D (subsubsection.6.2.1) >>
 >> endobj
-408 0 obj <<
+396 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 123.923 280.81 133.886]
 /A << /S /GoTo /D (subsubsection.6.2.2) >>
 >> endobj
-409 0 obj <<
+397 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 114.708 322.491 122.927]
 /A << /S /GoTo /D (subsubsection.6.2.3) >>
 >> endobj
-410 0 obj <<
+398 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 102.005 408.476 111.968]
 /A << /S /GoTo /D (subsubsection.6.2.4) >>
 >> endobj
-411 0 obj <<
+399 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 83.574 177.249 91.794]
 /A << /S /GoTo /D (section.7) >>
 >> endobj
-416 0 obj <<
-/D [414 0 R /XYZ 55.693 808.885 null]
+404 0 obj <<
+/D [402 0 R /XYZ 55.693 808.885 null]
 >> endobj
-417 0 obj <<
-/D [414 0 R /XYZ 89.008 778.994 null]
+405 0 obj <<
+/D [402 0 R /XYZ 89.008 778.994 null]
 >> endobj
-413 0 obj <<
-/Font << /F41 418 0 R /F39 353 0 R /F40 354 0 R /F38 355 0 R /F8 356 0 R >>
+401 0 obj <<
+/Font << /F41 406 0 R /F39 344 0 R /F40 345 0 R /F38 346 0 R /F8 347 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-456 0 obj <<
-/Length 1405      
+443 0 obj <<
+/Length 1389      
 /Filter /FlateDecode
 >>
 stream
-xÚíZËnÛFÝç+´!;OÎLw‰‘(⤈µs»`¤±L”"’Šôç{çAÙ)š2Ú ¶¼)rĝs﹏!ž­fxöáÞ;¾¿úå=Ó3•è4å³ùÕLéc5“)IpJfóåì©(Ö£y¤52MÛDÎÛ=bÆ	O„’ðÅ
-ìÞmx¼ºóø˜cœH8	N´Ða‚„DpAt±¨j·ÕèÇ&Šá`¢˜qŠÚþÄ—1'%Q,9°‡‡œÂïö #X¥û\ínã}zh çÝ÷l½)LDЯQÌ…DUiâ&_š¥e‰y–^Æ"ªÐe²:4$+ÃE÷˜Ölüe‘¯3¸¿hÁÒŸ‚Ü1XQ’ö sMdŠÎ·E›Ç›¬ÎÖ¦5õˆ5+ŽOÎ~‘óâÃ`ÇÃh³`žo
-@¸„ŸgmþÍšŸñæ•Á¥Í¦Èp½*ƒé.ªÒùf-ÔÔ+S.‚ÔlêêkaÖ=~¨”OçA€ÅD·ç×y¿²^Y®<DËüL˜©-hÇø+¨5 ~ëõÆ”þN^.­gÛ»pæ@oýcVuµÝô½œ²g°ê ‡ ¶{mU£ó4¹‹¨ÁX;aiú+áä©ëÉ ¸é ¸{yLLX¢(ÅÀ	‘®}"s‘¯#Æжpr0žÍÈã³½ËfΪr	¬ÓdEТ.æmËE·ìˆ;·X°<¸6à;Ï1‘ÇSÊ=ØnB¡Ï‹—Õ"-Е¶öçë
-Ž-XsøfsK8˜×~xž%io(ðåïx¶àg͈ÍÀ¿Pœ+$Ôýëxo©Ä/õƒiƒ£ÃM›Õ-äF£F¨7BB¬
-&Ñyå´× ¶°öu]åîö­KãSÍŽÿUkÖÓ3EK“%*M)$×›¢ªC`èæ:÷Tù¯ÆEÜEÛ„ Quq`Ql—¦¿üäÉ8Ûø ¸ÔûÀ™Íõ4ò9!äzVw!ÀJ÷$–/6þ )~¼pS¯†®>*Ì7«®^£*SéûQÕyÎ FþhòOs­QJÆ4²[À=ë ;…t%šKF½s]ä¦Ìºp}`Vvêê8hdReÐÇ<7mï0vàWWù	Õ¦Šú…‚Ô'皃¨ÓÇ{!ó^ø>Ò
-\­ËqïrWUíOnƒÏXž’>¢õ‹
-^øɸúÆwŒœÓÛ¨ç$»*¶mšÝO¼4‘/ÙÉq’=ÖÇ}rºìäӝÒþ.=B¢¬Øú¬Ø9ë6C92#ä9ópÖx fêav±È¶X¾åÎ'T:=䌗q:Ü?¡tDOÇ›™u¹¬îkãòÆÖ_>dÙ)'k$ž1¸ÎZ3®’Éÿü¯?	ÄÉXÉÓWìY½5×™«yòªîšKÆ5»]4ÀÓ—êš®¢ä#]õœ¨;œÐzXh”NO \:©yîp¥#¸:
-WS5œüÜwÖ’“óÚÅÇ!h;í>ŒænçgCõ¿AšO*ɘH0Q÷7)÷%Ùﶻ³m¬…Ýôav½ÞÔP7'ÙiJG7CxW†}¬ÊUÞn—yÙÑm;èà@KSô{d"})¿&†q1!f¨[6v]áUèôþÞ™(Â[5¦0‹Û«;ýw&ôèjŸgŽ:mÛ¡LD9/¡ÞÛÛ÷†qV˜ŸÚ‹R?ZäÞ ì\£yÓú“ëúÁÑ5¢BT	]¨<ìÅ}®—¦¾?úÝw³Lf)§#EF7äÞFôtv•+&[TëMV»—•`J·Ëbû_Y]äÝä¾U]7n…ûó
-šJ¤éè¼gðç•D_ÌU÷ÅXWMïoA«™piêÀ¥˜'\j8‘"8¼±w?ο›¿ú’µIw
+xÚíZMo£H½çWøØHÛ4ݽ·I”i5™Y)¾e÷@쎃ƒ8™Ñþù­þÀ±
+&8Úmâ\††î¼ªzõª<YLðäóÞ;žOÏ~ùÄÔDF*IâÉôn"U„±œˆ„D8!“é|rƒd*ŽÑ4P
+麩ƒ?§¿m^1‰Iq)à‡ÌÉÎmx½Üz}c	8	ŽW~‚ˆpt=++6UèÇ*á ƒÅ5݉o˜(!'ñÀ=?äžÛƒŽ`™ìÛjszó\~O—«\ý„1¨,tXgs=7VbÎJ¼Å*Ñ£±dyhHZø‹ö5^¹Ë0"[¦0pÑœ%?¹c°¢$"*é f=šˆ]­ó&Wi•.u£«o–1>9ÿíEÜ‹öƒö£Í¼{~ÌáO›ìÁ¸Ÿvî•Â¥Õ*Ïfp½,¼ëÎÊÂy0ª«….fžjVUy›ëeÇ>Tˆ×‡s/ÀldØÇ×i O™¨,¢yö&LW´Úa|l
+€?E½Ö…»“sÙæ.œYÐ÷šEU®WÝ(§ì,[€ù!€ ½ïÞÖ(Á=uæÒbªwÖ–XêîJbòÚù¤ܸÜ=IÊ€1pDw€+'d®³eÀZç–†Õ?^ͨš¹(‹9X ˜&Í=µ9o]ÌJ¸eFlÝ®am`åÞµAŠ€Øy‹:„oÒ؁M0àÆ%ú¶2x.RÝ`+w¾,áÈÐ\€UÔ¿Œ¶„ƒþàÆ@ä#-S°òörwœµà±zÀg࿐q,Ov¯ã½¥·ÔϺñÔMZ5 Pï„„/äL «Òr¯ <lfüë¾Ì Ýí{—§ªŽÿUoã•¢1“1T’P׫¼¬|
+`èñ>s¦r?µÍ¸³¦ö	¢lóÀ,_Ïuw!øÕãlÃàRFë)ä4!h=û3Ÿ`É=Å»?gùr⦎
+m}”ë9*´eéGó§¬þrœBŽüQg;1+…¸âÈv;ÞA7iK4+F]p]gºHÛt}`VvêìØëjTeÐûÀ¼ÒMn0¶à—wù(ªt
+&ê
+B\hö¡žà—G!sQø)PB­Õ8µ¹»²r'OÉgH§$/hýÁ¢|~Õ¶¾q#ô&ëYÊ.óu“gw…—"â]EÙÉP‹wÓª“¯[¥ý¶y¸@i¾vªØë6}™ò–ípÖ¸fê`¶¹È´X-¾Å&&d:=Œ7aÒß?9’ˆñx³!·.æ¥Å}©­nlÜåCžP~:¹FŽ‡8€¸J=Ì‚‰ÿü_ˆ«¡’§ËØ^YëûÔÖ<YYµÍ%m›Ý6›öàé{õ?’×ÕQ9”¶9ÔÙDnÙ„ö¤ÐÃD#UòöÁxTóÜâJpµ.ÇrxLð[ßYãHŒÖ#´Í}жÜ}ÍÍÎφêƒ4U’1a"w7)HìJ²ßM-¶µm¬¸Ùôaf½ZUP7÷‹ì$!H°£›!q[†})‹EÖ¬çYÑšÛtÐ!€æ:ïöÈxò^~KろÈòÉ›®ðÂwzÿößLäþ+†jëÙSáÕ¤·y÷›	5¸Ú7©QŸým‹2}嬀z‹¯Ÿ¾èÇYâøÔ>ÔâÅ$÷`ú’Սë0Ù®m#Êgß…Êü^Ü·j®«ÝÑ—ßõ¬WÌÒ˜rŒ„ܐ;@ôtqŸí'›•ËUZُ•`J»Ëbú_i•gíä®U]Õv…ûórš¤ðÿʉ<hbð àƒ ,Eñ(iÙuÙËéÙ?û7‰
 endstream
 endobj
-455 0 obj <<
+442 0 obj <<
 /Type /Page
-/Contents 456 0 R
-/Resources 454 0 R
+/Contents 443 0 R
+/Resources 441 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 357 0 R
-/Annots [ 412 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R ]
+/Parent 348 0 R
+/Annots [ 400 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R ]
 >> endobj
-412 0 obj <<
+400 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 760.065 127.689 768.209]
 /A << /S /GoTo /D (section.8) >>
 >> endobj
-421 0 obj <<
+409 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 747.362 188.896 757.225]
 /A << /S /GoTo /D (subsection.8.1) >>
 >> endobj
-422 0 obj <<
+410 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 736.403 388.54 746.366]
 /A << /S /GoTo /D (subsection.8.2) >>
 >> endobj
-423 0 obj <<
+411 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 725.445 242.467 735.407]
 /A << /S /GoTo /D (subsubsection.8.2.1) >>
 >> endobj
-424 0 obj <<
+412 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 714.486 312.023 724.448]
 /A << /S /GoTo /D (subsection.8.3) >>
 >> endobj
-425 0 obj <<
+413 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 703.527 316.984 713.489]
 /A << /S /GoTo /D (subsection.8.4) >>
 >> endobj
-426 0 obj <<
+414 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 692.568 290.836 702.53]
 /A << /S /GoTo /D (subsection.8.5) >>
 >> endobj
-427 0 obj <<
+415 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 674.137 153.488 682.356]
 /A << /S /GoTo /D (section.9) >>
 >> endobj
-428 0 obj <<
+416 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 663.178 292.743 671.397]
 /A << /S /GoTo /D (subsection.9.1) >>
 >> endobj
-429 0 obj <<
+417 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 641.26 339.179 651.223]
 /A << /S /GoTo /D (section.10) >>
 >> endobj
-430 0 obj <<
+418 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 621.086 175.704 631.049]
 /A << /S /GoTo /D (section.11) >>
 >> endobj
-431 0 obj <<
+419 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 611.871 177.505 620.09]
 /A << /S /GoTo /D (subsection.11.1) >>
 >> endobj
-432 0 obj <<
+420 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 599.168 291.16 609.131]
 /A << /S /GoTo /D (subsubsection.11.1.1) >>
 >> endobj
-433 0 obj <<
+421 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 588.209 214.979 598.172]
 /A << /S /GoTo /D (subsection.11.2) >>
 >> endobj
-434 0 obj <<
+422 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 568.035 231.127 577.998]
 /A << /S /GoTo /D (section.12) >>
 >> endobj
-435 0 obj <<
+423 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 557.076 232.661 567.039]
 /A << /S /GoTo /D (subsection.12.1) >>
 >> endobj
-436 0 obj <<
+424 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 546.117 244.801 556.08]
 /A << /S /GoTo /D (subsection.12.2) >>
 >> endobj
-437 0 obj <<
+425 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [88.012 527.686 194.974 535.906]
 /A << /S /GoTo /D (section.13) >>
 >> endobj
-438 0 obj <<
+426 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [101.835 516.728 198.772 524.947]
 /A << /S /GoTo /D (subsection.13.1) >>
 >> endobj
-439 0 obj <<
+427 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [123.03 505.769 268.707 513.988]
 /A << /S /GoTo /D (subsubsection.13.1.1) >>
 >> endobj
-440 0 obj <<
+428 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
[TRUNCATED]

To get the complete diff run:
    svnlook diff /svnroot/rsiena -r 124


More information about the Rsiena-commits mailing list