ࡱ> FIABCDE}bjbj;|uC22        8Q d @Q!?"(g"g"g"#"# #>w@w@w@w@w@w@,BEf@ #####@,  g"g"4@,,,#> g" g">,#>,,<;@<XYo)<>@0@.<F,F$@<,@< <###@@,###@F#########2 :  MySQL extension automatic porting to PDO for PHP migration and security improvement Fabio Mondin and Agostino Cortesi DAIS - Universit Ca Foscari, Venezia, Italy  HYPERLINK "mailto:fabiomondin08@gmail.com" fabiomondin08@gmail.com, cortesi@unive.it Abstract. In software management, the upgrade of programming languages may introduce critical issues. This is the case of PHP, the fifth version of which is going towards the end of the support. The new release improves on different aspects, but removes the old deprecated MySQL extensions, and supports only the newer library of functions for the connection to the databases. The software systems already in place need to be renewed to be compliant with respect to the new language version. The conversion of the source code, to be safe against injection attacks, should involve also the transformation of the query code. The purpose of this work is the design of specific tool that automatically applies the required transformation yielding to a precise and efficient conversion procedure. The tool has been applied to different projects to provide evidence of its effectiveness. Keywords: Static Analysis, Code conversion, PHP, deprecated MySQL. Introduction Aim of the work Every framework, library or language for application development is constantly updated in order to take full advantage of new features but also to fix some vulnerabilities. A software system, in order to satisfy the basic protection rules and keep safe, has to be always updated to the latest version of the components from which it depends. However sometimes the old version of a component is not directly adaptable to the new one, and it requires the modification of the instructions of the source code or even of its structure. This paper focuses on the PHP language. The old stable PHP release is the 5.6 that is going towards the end of the support, while the current supported version is version 7. The new version introduces many new features and improvements, but on the other side it brings some incompatibilities with the old source code. In particular, it removes many functionalities that were just deprecated in the previous version. Among these, one of most significant change is the removal of the MySQL extensions. This set of functions allows to access the functionality provided by MySQL that are fundamental for the interaction with the database [16,17,18]. It is important to notice that many software systems written in PHP, while interacting with the MySQL database component, make use heavily of this set of instructions. This work focuses on the transformation of the MySQL extension to the more recent PHP Data Objects (PDO), avoiding to treat all the other changes related with the new PHP version. PDO are chosen against MySQLi because they are an abstraction layer for accessing different databases providing a lightweight and consistent commoninterface. We address only this specific aspect because it is the more relevant from a security perspective. In fact, differently from the old MySQL functions, the PDO class supports the prepared statement, that is the method considered more secure against the possibility of injection attacks. This technique to be effective requires that the code of the query executed for the access to the database is corrected accordingly [1,4,7,11]. Consequently, the project to achieve reliable results has to take into account this aspect too. The system developed for the transformation has to take as input many files simultaneously and apply the conversion to each of them. It has to be sufficiently general to solve all the conversion problems, and at the same time to modify only the proper functions, without the alteration of the ones that dont need to be modified. It has to be capable to treat all the possible directives that have to be altered, according to the distinct models and styles of source code taken as input. Methodology First of all, to convert the input source code it is essential to follow a source to source type of transformation technique. This kind of translation takes as input a source code written in a given programming language that is analysed and then modified to obtain a new source code written in a language with the same level of abstraction, in this case exactly with the same PHP language. In particular, the changes made should not alter the external behavior of the software: the results obtained from the execution of the old and the new scripts should be exactly the same [8]. To perform a precise conversion, a preliminary analysis phase is needed that scans the entire code to look for the parts that have to be treated. All the old MySQL functions, which must be replaced, have as parameter the variable for the connection to the database. All of them, in order to interact with the database, have to know its specification and then must get it as parameter. As a result, the first analysis search for this variable initialization to obtain the source of this information. Then, in order to find all the MySQL functions to be converted, a data flow analysis is performed [4]. This can be compared to the taint analysis methods [2] to mark all the variable that derive from a source one. This way, the search gets exactly the only interesting instructions that have to be modified, by removing any possibilities of mistakes. In the case this approach does not discover any variable, a normal scan of the entire source code is executed to search among all the instructions the only ones that have to be changed. We design proper rules for each single transformation. So, it is possible to handle program written in different styles and to obtain the more advantageous substitution to integrate with the other settings. Results The resulting tool comprises a set of algorithms that analyze, find and transform all the instructions belonging to the old MySQL library to the currently supported PDO. Moreover, the MySQL query code is translated to be suitable to be executed with the prepared statement of the PDO methods. So, the code once processed will treat all the user inputs as parameters avoiding every injection hazards. The transformation structure is based on an algorithm that reads a set of rules taken as input, process and then executes them. These rules contain the pattern of the old function to be searched inside the code and the corresponding replacement instruction. Each rule is related to a single type of conversion, that is an individual pattern to be found. The conversion algorithm looks for the pattern of the rules in correspondence of the lines of code found by the previous phase of data flow analysis. After the first conversion phase dedicated to the MySQL functions, a second automatic conversion is performed, specific this time for the MySQL code. This starts from a particular MySQL instruction, the mysql_query, it gets the variable containing the query string, and then it searches all the line of code that deal with this string, with a backwards data flow analysis technique. Each input is replaced by a place-holder within the query code, while its value is saved in a ad-hoc array for the parameters. Finally, the array is passed to the new proper function for the binding of all the values. The tool interface allows users to select one or more files in input and possibly to modify the list of selected files. It presents a basic list of rules for the most common case of functions to be changed that can be further improved, by adding new rules, or by modifying them. Structure of the paper The paper is structured as follows. Section 2 discusses related work. Section 3 introduces the conversion of deprecated MySQL statements. In Section 4 and Section 5 the conversion rules and the transformation methods are presented, respectively. The experimental results on the application of the conversion procedure are discussed in Section 6. Section 7 concludes. Related Work Many automatic source code transformers have been developed, focusing on performance improvement, on the automatic migration of deprecated or no more supported code to the corresponding newer version. From trivial scripts to improve small aspects of a particular source code to complete converter tool from a particular language to a completely different one, or even to expert systems that are able to generically manipulate different computer languages. Among the other, we may refer to PIPS [19,20], an open and extensible source-to-source compilation framework that automatically analyze and transform programs written in C and Fortran programming languages; the C2CUDATransaltor [14], a source-to-source compiler with the purpose of transforming an application in C language to an equivalent one in CUDA C, a toolkit that is integrated in the C language and that is needed to use the NVIDIA GPU; the error fixing tool proposed by Khmelevsky et al [6], a source-to-source transformation tool developed for C and C++ for the mistake detection and the subsequent fixing; Spoon [9], a meta-analysis tool to analyze, rewrite and transform any program written in Java; Rose [22], an open source software for developing tool with the task of automatically analyse, debug and optimize the source code in C, C++, Fortran, Java, Python and PHP; Grumpy [15], a source code transcompiler for translating code from Python to Go. Focussing on the PHP language, the main reference is the MySQLConverterTool [13]. The intent of this small tool is to convert the old deprecated MySQL extension to the corresponding MySQLi functions, that is the current supported extensions. It is written in PHP, so it is usable as a web server. It can transform any PHP file although it has some limitation such as the problem of finding an equivalent to mysql_result that does not exist in MySQLi. This tool has limited applications because it supports only MySQLi extension and it does not have any functionality for the transformation to the PDO class neither it has any method for the translation of the MySQL code called in order to be really protected against injection. A similar application with the same aim is YAK Pro mysql to mysqli converter [24]. This is another free and open source tool to transform the PHP scripts from the abandoned MySQL functions to the similar procedural version of the current MySQLi extension. It is written in PHP too, and it is based upon the PHP-Parser to parse the PHP files given in input for the initial static analysis. However, like MySQLConverterTool, this tool has many limitations on the supported. Finally, the PHP 5.4 Short Array Syntax Converter [19] is designed only for a specific and limited type of code manipulation. It builds a PHP command line script that is able to convert or revert the input PHP scripts from the old array syntax to the current short array syntax. It transforms the array objects instantiated with the syntax array() to the new short syntax presented from the PHP version 5.4 that let an array to be instantiated simply with the characters []. Hence this translation can help to simplify and make more clear the source code of the PHP scripts. The projects above that try to achieve the transformation in question, or an analogous one like MySQL Converter Tool and YAK Pro, are able to convert in a basic way the MySQL functions, but they do not even take into account the adjustment of the MySQL code. So, even if the new code will be executed throw the secure PDO technique, or the MySQLi for the mentioned application, the input will not be prevented from the injection, because they do not entrust on the prepared statement. Deprecated MySQL Conversion The conversion method is defined in different components. The first one that treat only the replacement of the MySQL functions and a second one that is suited exclusively for the MySQL code that executes an operation inside the database. It is chosen to keep them separate because they imply two completely different procedures of dealing with the code, even if one relies on the other. The two are strictly related and cannot be accomplished separately. So the first, that treats the MySQL functions, once concluded, directly calls the second, so that it is not possible the completion of only one of the two. The two approaches are dissimilar because they have to achieve a different purpose. The first has to be more universal possible to fit to the different situations, because the different inputs can employ the MySQL functions in different way. While the MySQL code is more standard and has a precise predefined form that implies a rigorous structure. In addition, its processing has only to identify the user input and mechanically substitute them. Consequently, the two procedures have been designed in different ways. The first that takes in input the subject of its job in the form of rules for each element to be altered, while the second that is simply codified to search and replace a defined class of instructions. In any case they are implemented in different components to make the system more structured and ordered.  Fig.1: Tool Architecture The diagram depicted in Fig.1 represents the different components of the conversion tool. The structure is based on the Model-View-ViewModel pattern to provide a clear separation between the user interface with its controls and the remaining logic of the software. The class MainWindow contains all the methods that handle the events occurred inside the user interface and then shows the results of the computation on it. The view component, that is the graphic interface, is symbolized throw the small white spot linked to the MainWindow class. The CodeAnalyzer is the first object instantiated to execute the basic analysis of the code for obtaining the instruction for the connection to the database. As other components, it employs the methods of the PhpSourceCode object to realize its functionalities. This is an entity to implement all the common utilities to deal with the PHP source code that are used as basic action by the other operations. The conversion phase is stated by distinct classes. The basic services are gathered in the CodeConverter abstract class, while the complete task is achieved by one of two concrete class that realizes it in the two different ways. FromBdConnCodeConverter is the normal and more accurate option, that performs the process starting from the value obtained by the analysis phase. The StandardCodeConverter is executed only if the database connection field is empty. Both cases receive the rules declared by the user and elaborated through the ConversionRuleManager object. The latter has the role of computing the pattern and the regular expression used to identify the code to be replaced for each rule. In this way, the effort is done only once at first improving also the efficiency. After the substitution of the MySQL functions, the converter performs the replacement of the inputs within the MySQL code through the execution of a specific module. The QueryCodeConverter class implements this process separately from the rest of the procedure because it is achieved in a distinct manner. Finally, the class QueryVariableElement, ConversionRule and ListViewElement are the objects for the relative concrete items, without any specific method, used for representing the corresponding basic elements. Conversion Rules The analysis of various PHP source code that resolve different problems allowed to gather the main relevant instructions that have to be replaced. They have been partitioned and organized to obtain clear distinct transformation rules. Rule 1: database connection Source function: mysql_connect PDO equivalent: new PDO (PDO object constructor) Wrapper function: new DatabasePDOConnection The function that opens a connection to a MySQL server database, with the corresponding parameters passed, is replaced by the creation of an instance of the object PDO. The corresponding custom directive created is an object that handles the creation of the connection to the database and the error reporting. Rule 2: query execution Source function: mysql_query PDO equivalent: prepare, bindParam, execute Wrapper function: execQuery The function that send a MySQL query to the connected database through the link identifier is replaced by the three PDO methods that prepare the query to be executed, add the parameters to the query, according to the prepared statement technique, and finally execute the request set. The wrapper function executes all the three methods, automatically binding the input of the query passed as parameter, including a proper error handling. Rule 3: results fetch as associative array Source function: mysql_fetch_assoc PDO equivalent: fetch(PDO::FETCH_ASSOC) Wrapper function: fetchAssocQuery The instruction that fetches the next row of results in the form of an associative array is replaced by the method that fetches the next row from a result set in the same way. The custom function is a wrapper that executes one of the two instructions based on the type of the query result parameter passed. Rule 4: results fetch as associative and numeric array Source function: mysql_fetch_array PDO equivalent: fetch(PDO::FETCH_BOTH) Wrapper function: fetchArrayQuery The deprecated function that returns the next row of results as both an associative and a numeric array is substituted by the equivalent PDO method or wrapper function that returns the same results in the same manner. Rule 5: results fetch as enumerated array Source function: mysql_fetch_row PDO equivalent: fetch(PDO::FETCH_NUM) Wrapper function: fetchRowQuery As the previous rule, the old MySQL instruction is replaced by the corresponding method or wrapper all, which returns the results of a query as an array indexed only by numbers. Rule 6: number of row changed Source function: mysql_affected_rows PDO equivalent: rowCount Wrapper function: affectedRowsQuery The function that counts the number of rows affected by a previous MySQL operation is replaced by the method that obtains the same result for the last statement executed by the object from which it is called, or by the custom function with the same instructions. Rule 7: id of the last row generated Source function: mysql_insert_id PDO equivalent: lastInsertId Wrapper function: lastInsertIdQuery The source function retrieves the identifier automatically generated, in a field with the properties of auto-increment, by the previous query of insert type. The equivalent PDO returns either the ID of the last row inserted or the last value from a sequence object according to the driver on which it is based. So, they can be considered interchangeable for the same underlying database. The wrapper function executes one of the two solutions depending on the type of database link which is passed. Rule 8: special characters escape Source function: mysql_real_escape_string PDO equivalent: quote Wrapper function: - This source function makes the escape of the special characters in a query string. The quote method quotes around the input string but also it escapes special characters. No wrapper function is developed to replace the original instruction because with the prepared statements the escapes of special characters is unnecessary or even useless. So, this function is simply removed without any substitution. Rule 9: error reporting Source function: mysql_error / mysql_errno PDO equivalent: errorInfo Wrapper function: - The functions that return the text or the numerical value of the error message from the preceding operation can be replaced by the PDO method that performs the similar task. It is completely removed by the custom function because the error reporting is already accomplished by the other wrapper functions. Transformation Methods The transformation of the MySQL query code is quite standard and it does not need to be taken as input. Its adjustment is in fact independent on the different applications because its syntax is not altered and only the input components are substituted. So, in this case it is not necessary to formulate the conversion as a set of rules: it is enough to state which method has to be applied. These procedures are then directly implemented throw the tool code, without the need to create a parametrized structure with the rules as input.. Method 1: base case, standard input Pseudocode pattern: $queryString .= "AND fieldName operator ' " . $input . " ' "; Replacement: $queryString .= "AND fieldName operator :" . ++$placeholder. " "; $bindParamsArray[":$placeholder"] = $input; The basic case of input by the user is the direct concatenation of the variable containing the input to the query code. Originally this input is escaped throw the function "mysql_real_escape_string" or even it is simply copied. The transformation inserts the value of a placeholder in place of the old input inside the query and it saves the real input value in the specific array at the position indexed by the placeholder. The function that executes the query binds this value to its position before the actual execution. Method 2: fixed operator Pseudocode pattern: $queryString .= "AND fieldName >= ' " . $input . " ' "; Replacement: $queryString .= "AND fieldName >= :" . ++$placeholder. " "; $bindParamsArray[":$placeholder"] = $input; If the query contains a settled operator, such as a mathematical operator, the transformation is applied exactly as in the previous method. The input is replaced by a placeholder and saved in the common array. Method 3: query without input Pseudocode pattern: $queryString .= "AND fieldName IS NULL / NOT NULL"; Replacement: $queryString .= "AND fieldName IS NULL / NOT NULL"; For some MySQL operator it is not expected any parameter as input. For these cases it is not necessary any input substitution, so the transformation does not alter the original code that remains unchanged. Method 4: IN keyword Pseudocode pattern: $queryString .= "AND fieldName IN (". $input .") "; Replacement: $InValues = explode(",", $input); $INElem = ''; for($i=0; $i'{'|'''r(s((((( )!)%)()l)m))))))))6*7*[*\******+-+5+=+S+T+`+g+i+j+k+m+++++++!,",B,E,k,u,w,z,,hbhGCh Uh"hh"hNHh"h h"hh"h hwh"h"hz h]mNHh]mhVM,,,,,,,,, - ---[-\--- . .....G/H//////A0B001.191:1@1B1h1q1r1s1|111111111111p2q22222w3x33333444444h| hbh"h hbhbh"hh"hhbNH h"hhbhIhGChbh"hh"h5 h"hh"hh"hh"hNHH4H5I55555[6\6T;U;V;W;X;];_;p;q;r;s;~;;;;;;;;;;;;<<<< = ========;͊僊}uuuquhPhPh"6 h,NH h_h_h, h"hzm:#hp^Zhzm:CJmHnHsHtHuhzm:CJmHnHsHtHuhzm:mHsHjh"hcUmHsHhzm:h"h"h"NH hwh" h"h"h"hh"hh"hNH h"hh"h,===e>r>>>????@@@'@U@]@@@@@@@@@@@A2A@AEASATAZAcAmAvAzAAAAAAAAABBBBCCkCrC~CCCCCCCCCCD D#D$D=DMDNDODD hbQ_hbQ_ hwhbQ_h]mhbQ_ h NHh hPhPh"6NHhPh"6h"h"NH h"h"HDD:E;EJ?JgJiJKKL7M8M9MMMMMMMMMMMMrNNNNNNNNNOOBOضh hbQ_CJhHUN hbQ_hp% h NHh hp%h,hbQ_CJ hbQ_h,hbQ_h, hbQ_hbQ_hbQ_hbQ_NHH=EZEzEEEEGG*GHGuGGGKIMIyIIIIgd gdbQ_&$d%d&d'dNOPQgd,*$d%d&d'dNOPQ`gd,IIKKWK{KKKKLLLLM8M&$d%d&d'dNOPQgd &$d%d&d'dNOPQgd,*$d%d&d'dNOPQ`gd,gdbQ_8M9MMM N3NMNrNsN|O~OOt*$d%d&d'dNOPQ`gdJ@&$d%d&d'dNOPQgd,*$d%d&d'dNOPQ`gd,`gd gdbQ_ BOCOGOJOnOoO~O P0PPPVPvPPPPP_Q`QfQgQQQQQQzRSSTTTT%U&U|U}UUUUUUUUUVVcVeVxVyVVVVVVV$W&WeBeCejeoeveeeeeeeeeeɳɳɳhuhThp^Zhp^ZNHh` hp^Zhp^Z h:m=hp^Zh:m=h"hp^Z hbQ_hp^ZhJ@hbQ_6CJhJ@hbQ_CJhbQ_hbQ_NH hbQ_hbQ_hHUNhbQ_CJ>\[j[[[[\\\\]]S]U]#^$^:^O^^^gdp%*$d%d&d'dNOPQ`gdJ@gdbQ_&$d%d&d'dNOPQgdJ@^^^_6_|____vawaaaab_bbbbd*$d%d&d'dNOPQ`gdJ@gdbQ_&$d%d&d'dNOPQgdJ@dd e$egjKkLkMkOkPkfkgkNlZlvppaq( & FV^`VgdEQL & F7^7`gd]mgd]m$a$gdzm: $`a$gdHUNgdHUNgdp^Zgdzm:gd:m=gd>4gdbQ_eeffff!f%f:f4NH h`NHh>4h` h:m=h:m=h:m= hp^Zh:m=Eupvppppppppppppppppppp+q,qaq3r7r9rrrrrrrrrrr1s3s5s7sEsFsOsQssssssssssssss5t鵮鮵jShIQh %U hIQh %jhIQh %Uh:m=h %NH h:m=h %hIQh>4 h:m=h:m= hEQLNHhEQLh % h:m=hEQLh:m=h.ehJ@9aqq3rr1ssuvveww^xxxdyySzz{ |||/}|}( & FV^`Vgd>4( & FV^`VgdEQL( & FV^`Vgd %5t6t7t9t@tAtCtDtttttttttttttttt2u3uuuuuuuvv vvv!v#v/v1v;v=vvvv&w'wdwewiwjwwwww@xAxaxxxxxyۿ۱ hEQLh % h %NH h:m=h %jWhIQh %Uj7VhIQh %UjXUhIQh %U hIQh %h %jhIQh %UjThIQh %U>yyyy?y@y`yaycygyyyyyyyyyyyyzEzFzRzVzXz\zpzqz}zzzzzzzzzzz{F{H{I{J{{{{{{{{{{||| |*|+|7|]|_|`||||hBh %0Jj4$a$gdw`gdwd d`gdw9 0&P 1:pp^Z. A! " # $ %M  Dd Gm:<r  s @A? Immagine 2"R)ۼܿN>snyʐDF)ۼܿN>snyJFIFCC" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(((((((((((((((Bu }My׏.|/[ ?#THti[KƎ> R=<;iun'1u}Pi*OF׻s&7!J6>lA 큁8d G4^:H~VO,(?yG]W]Uޭh?ܜ9SQZ]%m`\~_P3T\~_P3U,A$#9/1֭$#|k'xI5xtRZ7q5]5՜IKn{l??g(?jx??g(?jxl}?ő1}v[o"UI_U/O'\?PzuSQ q=ASWOsSp>rԏڋ{OOfс|gI6ۡ*M[DmP&| c4ό:*~? x}1ld#Jeo AS ePp)?ŏ?j"8 *An%pr6ʟ167;xqb%%i[G%xywJ6KK9U]}O_?S$߲w_+Y~6n?gҿ~;|DR Ķ?4^ҖX)'ӯ'[ ]FW߅?iO/|n_ 麅.M=~h,Da[l6o*iC/ 3hO;m #iW0Y'ߋ>"^'k{^ n%u}KAҬ4gwYs??T_Km)п.߆^/mEo>d ./?lW⯂|u| ߲&{K*Sm_x_X-gPz)鯴 Yi׶Vj_"D&_?e{>Mn>[{G7 |/iS7zsp4'N*jJ5jΕ7DlVFI[W W,j)ǖUBݩ{Jr8IT- pqo+}/cOGῊ~KW|N>#w+ <7O ^$'|1+Q׾hVZ<7H,>@o/wgῇ߳_m>2&Vi^vs -oI|F)~C?jv?}ߊOIaxV&r&gƚkž|[K_ GP7wVh-GFPP)x^+gt Bw$O v~&~$ukR?d}JSB4n:J8eGe 28??e]E)t}asకySx|MD0hKލhƤಟ<[I{`{(@~%x?#?>k_G+ wu蚤zęlcc:3M/_V_;D|qL7]_?/a_4>ǩ.ͥzo|7&,(Ӵ+Uih$w ?|aG-h?ߴn '\?~+xjW?g/]|D^(kz׆t$)~wV_?`)O J?dMCS>zNɪב~ ̺+ƱhzwRW#F hšUNYB*8v$ၖgW?oRTڄT,:F+N8:3C/%SUJ\xy|+J䂚j6}zdSŸt$M7}k[\,L|Ct=65 ' MW?kO<N|1S)?hoŏg.K_!Ex?A56m=2W:o_?Wg )Msڞo'/[^|*!G?%¾$k0’^jxS[fkq~51>=JhM -<oɦ-P~/xėoO MbڙmK'7,-̞e[.O˫JxfiW^9e,U:U-4F `l=iUQ{'KF<q|9Ӥgj Ss] 67^Coc7"wAtfu;6 m7OwOmVQԼSa}s? u}g?[7wwwZU-lt{>?n|C[|?f? =k?km[fҋoM֋m?iǁ5]VGU׊jV.tu=3P?*i!/گTb{o_ bާ)s¢//xmghw5a_6??Jc>0~(?&}Y.iuux[O/kdž-eqp]60FiFNKBc ^P=Ҭ'\5:i'˅:ɩ)FpK^Z.%dqJ?Ê|]6&2rCn;dw嶅MD\(x~?$9\mO?jW}u^?Q?hGO=r8ִcu~#G> ߶n>6 k?>xNgP𖝧yz&*ÌjztPe?ڇ'1fͫG|?xT/_ #x{~ ?~8u(EaƖ]π< ki0EI/Bj__77i? Z Nw>Gu jsZϸ"^I1mIm%3c^ lwzKZ~0gX5:c-|m(5ۻ_oөূ9#ҧ=[uF7]Oxkty?$l[S$x1Ag5$>R]۫s9$y읟Gq1[OIQ%4m$Ojtn]{çB9=q ױ@Z@zgޗ4?'AES((((((((((((((((((((((((((((((((k?رZ\`gG?>ӏop1rpze2zpH 2:ɅH} +T'C_['o5zҼ7ʯ(u]{|iK? ~!xSįϊ>:8//|V7~!xXZ 𗂵{N\I[Kiů"EO|C_F>/πuo߆~5JHu[+ / )t`5 &Sn+_y1|{hϏ~|Xtߴ:gCo^a| oqM+6NK_6hπ_h|b o|c{/xw|_|#V4Cօ~+4چa?|5K_.o];<:w=8q>;^3Kf bE4񍖭x}^eW9._x°|Dּ!{[]~áJ[ouW~~?77zG-W/F^/OU6l}C&gA?MsW;J*Td[0g-gkj3JքTc7yTF2iԆU^]{&mt֪K޵nqMؼx~?մAU?+/|.MhZm.g.is4{ٻ==)_Թ744o'.5\u{jݞkj>G}:W/*MIrwRhɖiF\_K}~OkR}3WSERO?ju?Zӕ'5Ūnlx95m#i_U/ui:~?UF'O x~?mWvk{V_%өj>ֳZЏk e?[Tj}kOGu}1uR}>S?go:7_.exJ ;f&7_eW/ Cr:ƅoy$?<98 pGoٿz֙Ğ|0-: '멵t7Q y(Bbӡ C@n>1JI78<87޻XNJ"%=mmZ:ݭ: 5 Ur[<-rHhm:У·z+:㟃eEkX/zڞ]9<\>t??GOW+οG<+_&eEkϼ/ ?9p_)GoC|B:ЯWxVM>6<Wսy} <B_u9?Z4+οG<+_&|ڞ_?q_"4V=·z(} oeEk :9 jys\_[:У·z+g_#G2Ds"hϼ/ ?9p_)GoC|B:ЯWxVM>6<Wսy} <B_u9?Z4+οG<+_&|ڞ_?q_"4V=·z(} oeEk :9 jys\_[:#Ec'3^ ;dAqMyUa MxozzP>kd~-^iB9%gR5\N2Q*)%'Z*\ZrWe})𵜣Nu(U^҄n ok׽>zs~\h\g9gg8▽#(((((((3QiOo3K8{t~x?tI)s~t]}?`Rnp/Z))7?[H?[p?[pkyRnp/2=E2|_p4?#O0)2?O0 (QE! u }ϸ_Q:)QE|WLL|i߆ԏZ?R1^M|ogSskbf'+o#V'#WoM@l{nnkmr1ʄ(++$bAJ${IN>?^ԡd8ԳZN4~_7RmiJS|VN-)'}*JI]g{W]O?jts߫)ZЏk>>ְ?hhGn>R>q_9//- 玿~O/|#u¿x~'YZN|;*ڥ+C)-R8"j0v~Ml_%oMSȫG?zRzu:UeK=m{_[ZO;_Ϡ^RO_^?ҏ{KEK?>~JZ(_}'^RF-A??Җ5_j /o}(?>QKPO{GZ~J?-k/>^Q/o})h_?=,`+tKǞּevPqxgÛ[Qqexھ y ~:O|exǪ |;y JK&o0{=GLo4+[-nE>d,H吙$,ıݸ.CK"HfTY&|` Ÿ.n\ߕEu~睏 9c^?ǒuӜ)&FS`p)#̣ğ@C+~~~boEN-n}"O*F_+Xˠ|%K_)~xko O?=Z6m,co§[*fKϒTjR"F*5o{Yߜd9+Ss{SM$JMo̚s 1 m>zn83Rg?~1 I $r-|xN!OM?k1]Mx31W{(գMz ZN_j_~'|w3Ǎ&g㏅.'_ x#V5y$_|=O֬FO<'uhG h7r-4!Vҫ:t});ۖJRz8pJ2txvcJ-/GVn8T92$n-ǦS>~1ToI<qϩ|- |\־ #mK_/f-3~ :+HOn4V_jWw]|9X 蠂ހz߶G?=~h׿kHZO>)xkZmiq_~ "Sb萶=R|.F2i ߓx ):+顬+bgu)N1GwN^i'~Rk__nlCAp|s}Qp:uH_-~mfk|Q/+C|A'VO6'ޔIc? Yk"F:ޤ7Q| ~i?gO u]gľӼN|5 _ZH_h> jv,Dvz7\^E$7W)TQ8:Q_hJju"ik(S抔i(ՄzRJn^hyFZA?r1ӌc[x}g]][VvO'<) 7ºH[ǿڞTRce]JjVi [TeԽtV(B5%+[uTRrKh£oASNc*PymiC^I?ƙH\>q`0jd?0rr3$Q/| p7ߋoT(;C)u]xz.x+G4Vg:PP|=WGz>dpᏽ''jV]j2T8]9£rRtd}ګNpgvmYKjTJm%)baQ.~V3] G8?|\}?Zxw iG|}z|'vϦFzմ?(6z+'+_]e=\G̿k$R*m5hZVWzHq,Oat?<Gð׭*1_\9x¾ψ -OR[7qL,yuyy;$dٚҫRrag{]99*Q'nVRDxC'9?犑|AW7קg~񆃢xZ xI úxC 4gC4t[I.mFxnmcv?/t5:RnjIմo[jkJQ%gr-x`?%>| M?Sh6d5q`8[`Za`yB3{j(a2ID;~fVڞn4Kߢo~K_ _!)@N2G88:Y7ZWs4ۢUQW12;[gd.)j߅7cfWֹ߆>% Zzgu#Ş{mLK3UӘKot:E>~ӟi6y/f:G2,be.-]tw4pMwn׷Y:1\[{;$^o:d6?{/oW't 9gKV;~~.y38@V/8~ߴ RzI>L6cVO)>WCle?O3W zO9>׏0zy>'S;#NE|.7Wv> T׈n,uu]`f71._B5a:(ƥ7;ͫv.N>ѫE8QVRq-4k6c_ѥi,G4~*I9» |ĒI0u`'߽tJ_W{Uv}9 Pr=}ns?| >-Z s.>5e+XIiGU>ju?Hr>/|\_iiO+G~O5?~_`V|ySQ_#ŽO_~?^?Xrk'joLߏK꼯®_^szҏߴ|u d%_J>־j~1}?Sڌ|%rm][+_wn>_(|mTr_.OY,zVr-՟`t{W3V_⅝öD|/ \iⷌ-/wI$Sڏ1Z g: dEO>`  ,^ -%>WydKݦ[Uwy7f7:kѶX|6>@KxQ?C|cOּFI钸Pp;e @ÐNbR_о_M5*V5G sAtm=/s&NPkvRmskx'KG|o >\.4Xo h>*tK~$ZdIIu #P/$l/-Z_Y|>Dksƿd,ᘒh?3k=y^ /`XMh>ճVڿ-xǷ?I~ kC6>|$w}⵻K>߈Q.66/ nG")|wki8f_)ޡG~* V!۾F CxRf<_hxR'>.8LXrrU] SU6C-oV#Le5JešJjPOQ ._?O&'"hkiS/>&|~?}Oz0εO_zG|eZ|-}曠6C7N~|VX>1~k:׉38gg5w%7~#~wF;w[ 7ϊ+n+}V w$G8~~7Y| o^-14[_ 7 ;oFxzFhwҭt8R(4H4{htUb*G ]O?K>+_']WL׾7o-tmo> <'i](IcъFUB1y3=*<&ef$TsT›1*qK%B9kӥ 5ikU! = c4d2WGŏ'w޿O׋}ϣ~7/#|;< <3YӼmV4ďx_Exo$Ӯ.KY%w~ h|pko~6k_So ~7|_OAwxżUk]aw։c|P9jl_؂kK!?|(]ox~3kxUƞ%|9׭mz~!մ鵏NX@&---yc |.~#AM\jO~Ҿ-Oեe.\h_Ipx a-Ǎe(2~؞1?E |!7kqڌi>>|K#oÞ4%Ud~ eA#i~}þ=۽&|ua0n<4n8 Y~?h_߷MzOv~ǁ<~OSTTIkZo&Ҵn]7G[+o ? .3O9x]Zj kKz ikvM>W\~?ex߳u|Kk_ gOQ|8’x>=r}JQXMjBW2705![ZJ~WGѦeؚT^qX9A:ѧڟG|qa <6.jr(>!SP,|E?w?c_,RnOXi/5M .I~8*ÿ}Vu]_I>JK𞓨5;/Zj:7sc]o7|n|3'7]>'M EX@_pxZ> XimNĿ.u;}WĚl{楮~ߟ_ 7?=`kU?l?|M~'x/vuCQ_χZ֣:%`9<')tVwm4=S.|1jtM_ÿu]'o4Sேu3^~^hP9.iI4NTMa3~_~X|kZ6_ |ok#z< 6^[jizSM-QLN^"kVTJy OCލ*8*up53U+2q\jV(K,3SR2lv_5$VU2>8XUɣ7c8o?|d߈டgg{gŏ?|i>[㞗uZxVsc,^Nh~^ x%mmg_g~*cnO|3!奦cjV#s¾_l^Կm3=O 0e?ٷCi_<'FN7*iZwx>v>!X2xOmEkh/D ^Px79|e |^~)oGx?Fǎ4}#D7K5 .e1ÌԨቅxVr̳ ˙' 6edFG\~ |WX]υ>GYIoN57C A~O|[h.+ñj> FFg?~Ͽ /ŃUon<:u~5cGKB/ nu=̓4rrNp`t*7qy;~\8$ry7wX[eG?ᙾ!9z) '݇0FlU%e5w$Z?/VW#vbsk/ n>tTQEZz/▊}~ <}Hal>>{>]ahkź7fQ4}GP=molH2&;N"yon I>R2xCſV)5#kkG ?u&X}36ZFO >ү%oğVyMB-&͎snbc˴ Δ-l>>s^pE~.SIajAWqY_7׮A oդ:^N džcn1n?.Cw3'T`+-<՛Qi)KQNi[E{l?AIV_wߕoʝE0~T)[9(N{c9^Z?W)QEQEQEQE4םK?uZW E 9s/4g袝/??QG?w2=E-H8 ?>r/??˸G#~+^+|y%1u9.;:~Wx_1 ~Nf>C3t?Җe~ӈ(w@QE;_ת(\˺P (_x~w-SzQ@9LQE}-?~ږ>+ O#s||6yI < T6BG Di*cO|6~(a>𷄵ڧ1|I)x'^5xl.5' -1ek>I=[gmC;O1xuO>:2ӼSxoo |-Y1N00t|S۪ӸwP,Up䏼xۮ+ifI%n6uЭ'&;ܶ*}3UE[O?j'I-mSk~.Y&˥=/մFG~֭55/nH1MGI$go׹r.^j] ,*j-hN]^ݞN%wmݭzb>_Q?]?g/yM;d㫽N}:بIP,>dZ-}4-'_t~?DQVΥޜ"eǗ7mo'ged^,'5luQ}3VQιkV޺ɫ4֯['vnms=Z*ӥմl*t'O wZ_d_ՍB] EZo®~ֹU1_2u?1?VNf>^Eꏘm?6_YFcɿ֯& <3Օ=ݬع7_ėQQV^)QEQEW|L7O}fgٿ[5f_?;v?%`bO+8(((((((((3SsGoׁ׹<&Z=z@8o9~WQ^vivLjG_Ɖ İ[ͭx^1.gn;P'rn$sG|i<-mIٶ{z>4Iwu^Pq㟀f33C!v&\?d6<,åOL0*wo#* $-C,/U+"TTmPk]8)ҒrnQ}N%~|48[;XIdEUH >1!oF<A;tɿU_%~,O_n9kw|q=ZG+:ANVfd.M]Q?_ڇC?x{6 >5e'OzK/ icw]τQ|9, &n{CiFXeNu! ^{7YM;:hNjQ4f*UcJIǒuczuy/쪯kOIvm~q}OG+~xN[|J4_ fz~O^i~$״_&ˢ?4%t~/x{Ykľ'> .'#Y׾$ t;\0<4UNR EV}Mo(4dJ.5ohQT6KiE6I*Iʛ5;Y(8du8AS'F@sFF2?`#ϵOD<]/Q8i>=xKY[}O-; ?犓W _{M-5GM}"6"Zo>6 SuF8oi+U񇅔$+O M:4!FoiS4װFjrZu14zI'('5QU=:K>iά*TnmI|DςG/2|O$.3ߵ쟮& u>FZWƯڏok/uٮF$W״;oGYkZUǛP~ٿ|Fxgŏ|o5|4O/sZsT9cX=OgA> ?xN kldآnlSSn~ӞxS> &_x+OԮ5hb(m/:a]__쿦;O a/^0ů_ayk/?.|ij=^1T4: M֣ԬmdM ) &?kakRVJXxN (a$GMYXQ4Bq$뺊J|Yak:ҷ,: O`,@,`:?_-o٭Z\InIp75&(BD|{ |MmoR&~CyD{\x_G^ e}qkK]Z4Xq ?O~$8_ O|Ὴ~415J_xD5'$z=*XﮒݷEG/Q:uy;IRZ%UTН8vN$tmhՕ7'1b\I|lMzTCO>T~1=N;k_c dHbxC8_W#~՟¿L>=x#{C-Ex+e*JJqyeެ֝,mJzP|k)-=WV*OYF웋?X?>3xDs~_cD?2Ǡ/־ZW75bD|r?ds-࿍eo]VMncho<y .}zÖ\;9_U~ 5_Z; խ Q4#M|5cя|="i?ku[ BN(t0m4µJ5hiʥe':jJXRR!4Z:Ubj*1/iN+7(;n'8|RX_ٓY'>Lvy5xx~"_w~R\|2__ |-5&Z,<9[O+g"\0|UQ~S><~'oeo|[x/><;Y5A-nrr\QcSB'MB4ӧUJ*8R6׳&$oV\1RTe)ՌugM%J2s{EEݫh~s5#ozKǧ^!(g37z~ֱ࿉Wq]k%֗V#B>m휓K.Hgzo$j!oM?g=CW?3 .=a4xo7;O hqy_[C`Z\$xaQ0'OGϞ :&C_dms-T5QC^ʜ%:^r%ycvj?eryNJ|l;2q5$|<Ÿ/o@4?xC[[ BJm#ľԴmIl;6-)qo4i~֦Xzq86]ӋvitkOOܮK_TπG4CShܞxRu5?xO?ƿ \-u5K[d5u.lɡCknŋOa:T{GO[)''_??gޟ<|Ti}kbKK-վX7V䂷/lB{tOh:祐u*sN wGƹ/u|6Ofm'Hgk \b G1-^4t>!|uxUVC|-է׼ .m|;\u>g:>[渚;[!HZ69Roo5En_[qҴ_M>}kK{}#ZgA-n/%׈.n k.ỻ^-2ĺ粯;ߌsOSGGL|sAI%W-kinm,'w=%0\ˣ6wRo?6g߉|+תi`(ysL|3z;ob],; 6iEdO?Wӯj9J@Ey}P&|M  pƞ (5? J՞uK;Eؒ?/Czd.[ Uv\ c"+]]<-֦k廓QmݫZIshV}K_I~ҭ'_"(MSIwNNS+4yKN_u5f>Y>1_]u%-mlzJNR|]MmnIeAVtuNk=*;v[-_t~?DQV=,6eyvc_V[_?jm9m-.E?Q{?ʯG>U޻}|,Gv>J>V<nӺZNm>y1}3Q6kO5~TmUKef?TO?jQ\jޏq~科i:UAUSUAX˵UkOOsk_/_yv.]RWc_XNK^|ˉY:Vcx]l|kuuq!i(a ߍ 2T7 f?gl ͒߼N|D&&9{Zr;P9(CǝEFtivVMtWϿ~[ᑼG!ߴd?Un~|gS*hnyAQ_>HnJ~[ᒼG@x,s7 _yAQ_>HnJ~[ᒼG@x,s7 _yAQ_>HnJ~[ᒼG@x,s7 _yAQ_>HnJ~[ᒼG@x,s7 _yۆ`pGrAx #ߌ~o/Ok|=]ՖJŢ <5 xkd[߈ICi88d~N@8%wx?~=zWU?'t/#EuKk/n6DnMsƍz1XSrک%9nӆP.G^Y;ǴגÒ/Y9s-M]KƢhrI pMypP Pz0b$!/௉ hZ>, R|' VeZmΙoxsCQӭ.&(+IwP:}bjc2DaO(%^*B~.WkO$0xtchW^n3*E44|Gf֯ G?GPi/ύؿh+>$6j Zj_7ac2iw>&ѣG?u <OS5:;/HNYLQkbeWOu8F,ya R_*4*QTѵjj,2RUR}ksuRҩRiK ;ҩ5~_Lp=_|{$XyĿS /I|4ޛ|6=@]F{ŵ4b%u;~~k֟eߏzG ^_[_߳ǟxJ֖K00_IkwVn?~~|w|$_i>q_|?x-Ko&]FE7v$g?ήG~֪XQʺPQcK0JࢰЭ|N!4"8H`qIqcp%Lm5{fFY)ͳ7x1?a4u4ߋߴxO<k?Tu?a /_3O+«',t )>%ߵFۓ:y_ڣgM4}o>:vjpj6zk-76CEqՈ KS*SJJs\nQ\$8` 9{E^۪8^pѬ›'K`X%ZT95"Rui ?cg,ǿ_ @~?hO_?>%GY᾵㏉_-^i,\zS g`O?׮0Ȟ#mA? |i|#%Oǫ˽b=?"Q̑?֭'5[*SFhGJ [/Jo7^4exCaErSF\t:TjԆ"XǖT$Q[sxMY5)"cO_$_}\|=_ ^4<|Sƿ? o x3a<7|4Mޟ]^>ڿ S gUx]~ 7|6;~Xx ּ_84?kzr^xP:oM}⫻? > GomR6TaWjQJ2x|F?,̣mg?cUђN ' puئ;8*WTpE*qMWS-m؇/ |9Jڞ7Bע->ZӼ1i6~u 8_*~|JlAq>OO9|/"IoxSmϊ_*TN+Rj{(:J؊-7t:x]:uW&#'r,%O9RiJ᨟Ï?<#؟\%౟!cOow/-DQD |)tk{%mv[F-|y/MP_ٛR+7[aQO?'ÿ~%~ "?)ka&;VUt?M:熼m\XakwG?j#*s_\HJNx,ʡ^WU,/;/e^UMAr,l<#:ku?w8uJIKK1 u53O<#f ?wƯߴ_ O~8ӞOf=wZ@{'oxQ:gÛ,?%c-mlo^??4gǁ6h:񅆓b t /6'L/Q}G),E'M1t5hƮ:wJRI{ZqΧjCԪxG !\. J+ fo'$Q?O?m_ ~KOُGCඟ'J~_?|)3⮋4~?xCg/V?KѵY=oZ Կl$|'ᗅ|*e|%{"ImkS'׼QIo5QռGMCu_SԧF0*s$ zN'8ji2SK's9jp(¯4:v!*3%څ8ӗ9,ƏY>1_'*nNRmɷ&նޭ}YW$c*KM6I_.|Ayϊ ߈>֩scYܬ<ؤ@E5V6sWդf in(%j'߳\Z-I.a]%(Lj/>N> ^ NxgmC-RLtD Gw44J#'5ezz.ݗk6n|%]XG<_C|?D -6y~M ȑyciz'<@Ƴ6[²Ii<hi{KoBmv^zbwic|GjgG>z׋i ? ͆D~ <"VMCMm/:ix϶8q{m.*OX$gUhӮ$/gΛ?8'0I$w'T$_=<~j |K}{qs3,bv<6#7ҳ(2S?򯮏婁Wz3/M1mw9_[AOϕ0tϊd2OS(>(TG'7k?ҡKce?WWO2SY_<{|?+S \ƽJ?M7s+-*Ka`pK~_~О3?j_TX2?|Z?ҏS \ƽJmviorme}KAF<gK~1!TI|;?ό\z̗} o X׿iG).c^G3oGE5OGkK|8S _A71]ii߆a3d71_Ҿ7k?ғqrtKQAj_iHi9Ҿ.ߌ_ '%t?c~1w$"WB|Wևq?׸ʥg >hvjL:vj:s[X[K= o,8԰?۩M$G|6}jnqi]ߡS_׭34".eIsjZt/Mo7q<gSo/Y^\Šy|NW'e ,|^6}}ؾx[Ɵ;Ԝy\>">>1Wu߈2O 1?A<>9eII,ƥ)+ZڶF{[BMcy $r^]cqU4*t~~ %NQr״N9^ K :u\b/kSFRSZnf)=e*uuHd(\ +L?k?@27?ҽ9bqw;[v<Ҧߏk 'Lq#ʙk9~1f} o X׿iG).c^'ZoEv~]?Oy~? W?_VDΑGW›oBV5ZQ o X׿iQ)mݭaOyke S쟌Ŀ]Ayh9Xh>P6Moi"moD~ yr}rȩй{›oBV5ZT6t]-I.ݿs^/9kh͠Eu|_ͪMF&Sum^K=>/xWWU,|9=χ:%׈A⏲~xJEBqth;Q)yiq q$F>M_mQ=nVIss)#G4q_].!cYat=zO| ?![I|O$mdּ!kj\4$ \'Y`ODž?\&i6~-㯈?kiW瀾*x׀ OԼ xC.ϋ#? cX\{߅ x>ui3PljO~FLoiujlsG⽷|WwQ5ߤYN I1}AO,ƏyüRTeMrԦҗ*QkEy&ڧ{>Sbdyع{w>S O^3K?a?YfIoם?9ۀxf=(D ( ( (>|a#}1_>kt |o}\8Gz}WάOEo(__x(zP__x9? (O}__x(޿{0}?'O}ࢋz9?}?'-䜐ˁ9%q^WN/=WZ[T5;-5$u{w:vO1CaELS)NPw}{ZZKũ1c'j:)%m|QKgυ5tŴc'}^y9?'o8 |ݶFbOb/~_Tح|3;;# Wo$0N+LCc=Yy`PWiuޕ .F[+GW))8?yfbloچ\(|ae3/ x'Ÿ hO >$O/| u|3xE"| ~?ڛ I?G5gW[ ؟? eÞ:?F㇉/x.>z-/¿>,z]뺿^k:izm+fb<_SZ~83_>)|Qo~|F?4ֻ/ƻ9n䷵𕵄Id"*8i}^(ƕܪ{hœ#(UiPj^XvƭkQk\ VkJcFQ:ptn)'Nq?f;o7E/.|Iȵ+o/N'¯ٓZ qþ&O&垅\hW>;|emT_? j>,? 7e)?DS+UGLx[Ğo k~)O t_T!߆"@t_ٚ5|C]ocx+_'ǿs|lxW/> ľ-/^!񍶷xo+6z>>4⿊^_ǎZiN+-.j_ZV" e#Xmr>IGUj}3X߫͡Ef'5]> Gs߫KpGR]O?k9Gq?*}W?Ұ_>ՔF?YO?kXma>)'5e:Tw]_-qJ~kZ3Tމh[-|&a:U֫'_rjKT乭-v5Iss=e[m-'5f>Y>1_׮e֭'5V>IG`~}3Vt~?Մf\7~O7ןƏ4x* "EwAWϟٿ4UO/?c 2Os*((((((CPr>6vx[^[4]VM;R'NQn4k쫬6hȺ;ܴQ(FjQեFs:rp$%^kƹ~ s;PT2-Oc5[Myt8Suye#W5IE [/!=_ALKqW)ڨ_6%kmى/gXh9+7]u"~}ih(((((B;x 6A d<GI̹OoZjz/xީOk7ºGt]JGPo|s_ڮKƃ۟G&o2'&J\;B<ҽ֯+ݤ}|GoOzk_'콮xa^'~3| ׼w_~+YiGůx~6ԼgO +9xk1xnFW φ׺싫j0|QGc7ǽ/O_gFw߅i?xW/ě^5վxZzESs_v7>,w<1o}qo2gs躆 ͼzJEk%4@,dAq#wů|)# ?yZ|\ŵu i>] sCzG"r.}ybWMf{XK4jB{7i?k*5w('է/9*ݴOCi #'ct:<3/ ?hǧOSͪ5ݟUSq־G㟆?>JO `;A}8?^s⯉6m=?g/q"Jw]\eϪƯ8Eq7GviTIV7חftZs >OQ_AZ~>\t<ɬ?p1Ş!s݉Zjkn1w{˕s\ Ǯ{c|ÆRnPO̴U:2 FQm_qUY={+EE|>.|xo?*߳8#=<һ5/G4fi>?0KZiph*L[mVӦxBľ'<9mwqEoNz89N03E5~QEQE|YLS!bƯμ>?N% &.Z.HO7ZW/_|a'|Akو<%kmyy-mqC=43BH\m9-ኑhHVg Yr>j_6xdFjUkke> GW_?j:kFͥoRj۳j}޼6RKnIIskV۫od[G::u\uQl zj[Q+xIFRw=lMu)_ݝynS4^黮*}j};=# EZIk̗_KռobXU_Zәi_/ۿh\j}3UcZ繬[_i}wXO?j}3UՄfWz/4mo?nuu>Pӱuu>ZDz <<ɣZN>?]G/4yVyGQά5XuQVP4F},EF_x~?Ք~Q7o[//3HצEYju?J.|Q׽ﭼ7-'5f>Y?sVc_X=4v>IGUj}:_f'5]~X^gŏ@;g}SOW>~~'GVWП"#i?C.m_ z>"kg^)OFU_n#FqGʿ(GFu]kVϝUwN/ nk *qQ*Jn9˙sj;Y= ɡ— ɡ?% r2?# r3o?QCz%B84[o4/X^ O67 O67|˶ _3?-  ? ɡgD~wAFOgD~wAFK]_}/?'oPy odпma [M ן?# r2?# r2_2?;K|-C&k?ph2h_6'mPo'mPol_ <g[o4/XG%B85?$mo{?$mo{̻`_N<}OKėm VH]7Ple{/Sִ]Y#Pui GmmogaZ^moZ=[iN`֫ [-2%Hlk "B6D8|7w_n<F{ |fL𮃡EȡL]Ҙ⺹S-UrFC1m˵;Y\T`$$x8qXѥ;umį(w {u;τ~+|ׯ6o kwEo95v|M4?To Y?퉤5GI??h{zɨi >|95ޑޫ'L760j4#/n.T*F'*cqŪ0x[0li'ˠ%̓zPWʪP VaNx,F=啱> m9SZRi);s''ۿ_aynBZB>ahߵPx P2?hoڃ?>5 5φ|-xs[i7KvKZ-xQ2x?=,~:L_M'Mg-MG|=&i7">4 7C|'^P/Vw*)4Q rK OcRr<[qwwZ+<+*\N<"<iӓq,e)(Z#8tŸ]'p' `sϧڿmKh+!/ ?|-ֿث9q>xn%׉UkjW!M&}]lAw¯{g콨߶Nൾ>y|Ts? xsN]܏5UP_&M]![~Z^tJ͔ [#T)5%e5$K&PN3S.c8br-/U)95)XB4?01?@9'qC >|8Ưُ />'? m:_ |3}GWֵn~˛k?6%ӿ'~,7u/٧ /g|)<⏅?|sxű_ hڬ<'/?kо:}k~BL<ʝZX~hcs|%{gy.!B &8m!:T+S ))FYEefa]-fT%;"';D|<u֌}'P'OZk7~~_'ĿGkoozm<-⏈PZ<>+U+-uV+ӵ[k76IǨOy4 R}Jo# 4t/g Og㷈J>&nU|`~'4?3YRTH쮴8_V澱 b2ԧZK`SUeCgJ\jNS ԩ*3i p$2x—հ7G.V3bgՙKP?xǯ~?W~^x$HgSyܺ?_ Oc]O[Aּ3m,|&_ZB.=> گx~R҂OkQ['Go/⽆|7~̟%=?W^4M|3_>'LjoҼG%-_OٝCH:֛oq%bO|0 ty팱)qf|Mx3PizEƫaYiwaKpX{kybgxîo24?+[uh|m>c>~P4i.!7 *#B<#u }yt'ſhT׌~=ꋨIߜ쳧N 0:S iƚw" q6[kmTn__{KzO EžZō&KxH ox^Vѯczk_.4kZdžͥwR4\7f_,#(TAŽ@ ,PG˅B@K%)\(=}KO'BydA2y}cOKгpdq϶~.xe 8(C!R66I*AX_|l\źYşGO*:tzz?luYd{߅exIp^y#>K$_:mV9rs҅Yb+RIT:N5}8;FZy۹a՝8S|wv%+{[khʿX_z¹YU8V?z|7Y[a?4K-@? //?P.XO ^-'TU"NŸ;^-+-@?b&kvPZKt_Տ˅z|7Ss_cm~w>3_yoF[S++~^O+SE/_W?ߏ}֦_T3HG,}L[Q U/[ʟ/(|b:|2F?x[~2-@?l*ʟ/GgǬ0G.猳j>=Vx5U TeUX?^^O])_{hOaDdz{,-@:ޞުivb+~'h;zš:Ӈߏ-=+~45_oF[T{JjR_տ?9Io;~6o? ?~ߴ >韋^7ϯ_T~UoK']i_Ց?h%_ߍxRCPQk_~8=rzŸ1_yoF[T_/ksO/÷s5i_o 4鰗ZBԼW_^mZyj2JP~eUoF%w hHu1xZ[e{SW/o/3~!;j[JMC[%>5iLu湺e,7[3 "s^OnqOLcN [[w\dz:^i^ҵ]{\,E]cTnb46oﯮ8-m--!{8I`>6Y\_ <.?R5|@m2*/MsktAm[Ş-ki< ~I֍ؙxx:1v|HSWۻoz\%W#Q@rĪ0*6s 58Ǧz~~f_NQMs+kK#Q+<nK68g^9S& a9YM_/go?0{tR۵f߷&G~2  `2 Od E^?gr*^_We{I{wqSMǟ[y}אzKi_OhIE_n2jWLIG*/^xxK8ޘiQ)Wպߕ{#Rċ<| =K}X?Acurq}^į}_=;'ͣgtgxLE1\tƍ@?Ѳgɡa1Z^O*}?p?hd{<*xk<E9oc£u_x;Z]-Nz{K_ 12~gnQ oU^KJq}?GҌǫ5_zҍkҭ'?h7,F:S^ 8TKXJ}}3>?2q'zS)&0Ǭ|֘l(0x~xúϑ[zO.pGlӎz0)q?N~toq?Nz]?~EgJ,|h>~skH\ǩrT̻#G?U>u#>sJaש;ٜHM} }G+E֗<}$._zZ+ޝq +..ɹI7t2}?,)el/>49|7hiڮ/[[OUW?DhtS隶jwZx %xw$֦c\q<O> >{iiv4-b֏<8[:cܭ uok_ g ㏃!O 41|1\^3%''ύ:fkx⏆|S=m 7WO٫B_hW_.x7_u ,k3>Tfkz+ B]7ZckW0X<>rK 3*rF?^UM''C,UTI7N|wJyb%Vr1nyTXUGJ6FY,W+WVW4byǯKwC!I5--^ψXtEK j ѵT#–:m#M-/j?J|Y~ϿOeTO ž ?|y m|OwA]#_#}OH/* 4K>O߂>x_OK>|;gďw?KWl4d[(4@ v֏~>| O!OƟ1#/ODI=IOi߉|,suknϮi*O4j ⠜gN|nJ,Dm|2ʣ2*=G72iG7 rmTjJ6Pu2J~ƚZ?:o_njj>-yBJ(]|O{<{4ns}_C$ͨE'NRnRANNk C5ytAR{g);!Q''RQtUJQujʗ$Q k/|L^9S hLJxF_xZO{Vľ~%xM𞧦CHͲ$H  gO6./W~*k|KLJ|5m':vxK Ҵ iW]֑n>v}cZ)Ri9EEԍhUp]Zu?\W7,SuܟSPHu}qXhA' .0iPk>kWyHG)GUQT+k6n-'O x~?$AWS{WS-G|}Z?aSFߕ[Z[F[AH" V8b5D(G6_E3ߠ=~X^>;%nݵqs +u[Ԕyi81;7SܥJ)F+OiJ|J)]5??j+ /ڑ^Ꮘ_?< ~־éi6i蚗naM6ZaZM坵I0KOK[kO+m>׾"> _-|-_;Jּ#eO<ϿA>p*V7*#ݶ f@VEرhJۿkC9T~О?k|l?7 4_R>Mz:j6׎My>1tF!?QW_Oxk?4 GY6?¿>sHu{hh~=TFCqxNToe[/Ӕ=Uz0ҍ,5 c'(8b)%˫J0 R989[Xh,TɫBx_UU)N1ԟl_:o/'/SX65O W:;d<}sL쮭"+=@Ms@Cnc3ؾFv!g >?Q~~7wco7o/G//G/\K\j~ج'&|<x~>:K?n/QۏZ }o 韴Go_o!kß|_Jχu<)kiqxrXJUaNRWCR*pXl6+ BUgʨӦWYp>S#<xo#3?Ow~,A홤)$_j-^J]'Oƈ9߅:^ t%yj,E:<:'JߚeQSZ֍bԢcjWsKQVu/CI8өN[eKG]N 47HC;mw9 ;@PNELTSv~kUo'˦ŤAWS?*}#\+w}`zVZkB>r:Y?h!sXO/ItZ俍>}?j_:ɭw<3xJ:>/÷vږYi?7nҼ7u_]xkK:>)2ƞ euo= J>}qEe O?7c.hoj{ 4h)˲>Ög|nCC-}?VKqy)W\ˏ_>+kמ o^㿉7~#̺HU3a*n4M+W%g_=N+~*aMz&_L"ДRec+D麝&+#?d?&߀<aԼEZSfI.(>˯Y 6R6}tZ$hrxg$r}H2xf/5?"tbp]IRR2I^Nqwu! >gJY$f+;[[%fܥn]{tzHt?D&Z;=WMUtSMZꮴj뾩qS2}Q?HCn>}S?[i!h끈dF8hCɆ]caEi_sᏍ)2į|8ᵯ>2|QWăƽ<+FCIS|,ML/s]ᯗ~ |4⅞?߷knbO⍵oڇ3iW<Ξ?u;/BUj_|3g?n=~Owka\\[ @VT 2FFtXԶ]BXͷo/Ghpq^+ Eժ9>x:qK:'Vtԕu>USN9ƝFjPR*0nJ%Irܗǁ {%^=k>>_߉e~˾.M3U'~#O~ |Iᇊg 'U[/]ݟ}Vg_|ui?>51./!F]Sa2u~:x⥿O|s >%ޥ|=~ ݇<~cqq< 8~_/=9OVnu3'e?H>ʚW֪{ίokAԨa#RN]t5(Tstۥ=TaMIeU`(   RO&}T/?2@WPxrzrH\7hIԟ+ZIW)7QrOI8GEFO x~_?6!G M[Nـ>ĝrAw ~VmW_Wj.ߡ;o&\~V] Ώt {W b:CZ1vw+MKQ?_NB>z̶t~?QT+i:~?UF'O x~?;ҟ_j>ֳZЏk f}V_U#ZEZ_*??n='Ƚյ'޿W2sm%I9U94D40|*-Zލk淿lj.#_xO~^nc \bq4h:n8qNVwPVĶͫ]^0ZQ]?lE|>8x-=NGOt`8_^>!w? `MVv{~+kWǟ]OO/ѻy0຿f)yEx/ѻyǟ]OO~W?>//7?^>!w? ՘g?T4{|CF~ ?nw=?<O]_Cgʔl|fx!_# ˬ'O*j^\ZiZ&57F4Tմ6F6O ۷oMi^(f(5k ^kE6w"_^_;[x៎ ^u"0w+!9NQ{6{d oc% E(xAɯ/cjAKӍ7M(J&[7݅ⰐT(U5_jNY;*2P۾;ğ~Fve<}ĺtZF|]gÞ& v=V׮"T;"TK I H,r+FHe# x~5n_xM{sY^uΙu~dbEit߻Mc0 _;|9 |<7u/~MA~lVecvm<} hEEʜ[MbQq)ݳMY{~?Z_?ǟ]Tǟ]OO 0|]oWX;>u<z_x?x.'<0ϟKh+?x.'<z_x?0຿f)yEx/ѻyǟ]OO~W?>//7?^>!w? ՘g?T4{|CF~ ?nw=?<O]_CgʔAޓp=Ϩ3nj[mS#2ڤDHB-7NsNɧumĶPkZNji階>&RWP,]/,|i>W$񜝤@cBF7T#x9Cϯ+ 8[9?9THBG"èu(.q%^I]k%JH{h/rJ'-eehBzFlYƛ[χu-N]Ɲ3uY^u=[MxMđ }'~jf^K~j_~ |<=O+?H|=+O tib)H~%~ֿu]WWg~m3aIo? |P|(>*18k-2wǫ Oо!x^ SOֿ3_Ğ;~ u/7ukCH1c?i^̺>&|/to{GҴ [\y/5+} _:շ%jҧ7ѕ:ZQ[G,[*_' ӻ':u~ɉ]% ^xҤcK-3ը쯈~hռb'⾹T^mKmjnt˩uj)ҵ; js\Dho%3peg߁qX |mq?w."Ծ jwZh˩}DW$ZWs|W߅ ~)|\Z/OEYMo/>^!&X> >ioej3]?i(~=xx[ō߄!Ӧh~0濧EG[kȴ[ ntéc:0p^rTQIxSn 5'GiIuT\[V%SM(7$p¿}g|: w~wQ <k_ |* /^}r>F3RSQRqi5O۹eRj)JROJ2'xNvQn)Sqig4\R Z7oc%x*Ѿ ZjZu["4E᭶Zwqx.]+: {;w!>|??ʟ_QFO rǟUcړ|rao{1U7 ONhm%Vqm9 ;g_ ٗ k^(_u3|A?cj o|G/qurƝ/>yK7|h|#Co _~|0k69^x֍M#i6Fx{} =eF0֪bnJjNZ8Z:UU){ECŸK*4βUjzӌ%QA3]c|O|K~˞!EPյo onuj M~BWtM2R}JyGi~7ĭ­'7~[' 74SmᧆU krEͧ/ C)2 >9z4}WӯE%xTu+&UtމrJq撜ԤԚi6T5*UF3S-'cp rINI>{謾Kn]4WԴ?*}#T]O?k_iOȵք}Y?hG^3Bŕ$P~6B|`ł$q$nfcAI;@XđUj}k&l5Iy`a~ _60_FM.~Nj&4jxS9o{KֹpU[T7%^JwF7Z{4blw?/~̀Ŏ7֭m]wM[Ya$)ȍ5ӄBx4^xGmm՗1rpبSP(% xjVI|Z9h]c[Fstc^IsItN.<)~{4z?u|ASٓ;WдV]\R%j O?oW5?<= ѩ~W+Z)[A}? _k>%wş~#|4_Mύu7jo*>ܶionH"CZh";?vZLv4Kđ12:Zi*_X߆?:?R1_}° hի*Qm(HX2J4%/3om5oS}c‹hrȋsXo.w4MKGu72WiMm \H.-f6Ҥ&gS$ra5Wn@B*`+ TM{'Oٴo)/d9}pQp֥:%#>,zuo{_Bxe5 S??fGH|-/u3XO u3E6 ?xO/rxZVW>2|"ԭM>/߇7u?ӵ fn4m#7h=3]/ÏnuIG]kw'n.4 aa?ho,4CXm6]m4--7<|&߅>Zxc~χOo߃]\\kwZ.u-wlGo,пw_G B|J#_Ԟ?4itV4ߴ׵KK>cQ_! .i:߄?}Eu|5|!ZT/_n^3]Pvss/>xLC_ 5&>6ZE^A>q$n>|C5> zڿoJжaR8o[:^j¦+]{I%xtJѥNa_TJ1c8*IےTp|u'~W4x'hG,~??|q#ҿ ?K|'Vx"_xk>- sUN Ñ|1a/Z0kk? mtblioS{ş<#x"Bį:;Z_ԼA-um;^jW oB氹׷zWSD~1%| qA񎧩D𞧯Z#eL~gKr8N15eFfg sqӌHOGeq; ZQvw)mzZnm%whmEصQT#Z+_m>'5u:Vw3rtRNu>w>"}Z?gz ֭~֪Gn>?4T~%z~%F'dVRkaC}:g gA='Ƚ¶]v6WW-߁s,=:zd}}O oʌ/P2'?*}̟/oʟE3'?*2@ ks3oI+A &Ԟ O(IBzo߱ՁzC_nwtc8ϧ>?-w[DՓӷr2>sgzd}}O_P?__qSd}}FO~T(?__qQ>fO~Td}}O?__qSqy9g>*g/Ş0zO+3gSgRi "״ccvך^^|~Q]eeeeQE0 ( ( (>+q O1>'j"NFp( ut,X_F$cnI}?ŏ'_?RԁןE} /:ki׃M:1imVQ4[ori?xc|y@oԼo=Ot_~3xM_S4/>4ޱ>T|-r|N4_^B1/ A/\>KK|q8Y:{*ռ_&66:7}W?ҽ:![ռɣ~TKM+]9$RSJJ&KO+/jzF/'U;Owxx_E þ-uX?jyuOifh~ki |cߊ I?^*f}I|Ek^kXGii'5m:~?W;oQr?Z1vw+:?Z1vw+ K5-G}:U֯_ku2}3WSERO?ju?fAWS?*}#\w3J}~Eִ#ZϏkB>*?[Tj}k ~hKKkvW"/ Mw_)='Ƚ¶\I좞7F5m~3zZ($JAES(~ !R >-N7 ڗAI= 0|ǎIBeObD[mwMԴx;b;)~ӣjc$%f&KhujƁw2Zjr|/xH^4 |Hfz=R\->#kxkT=7=X0od&~Ѡ%: 4i=l󷓘UjA]Fy)jW;/\O?rqxΪS~(xq(ٴF@e_x;<9x5~I쮪C[[U[Z_R.Szui95`q#o;cְ.6r||˴vzmvWcNֿ%+zyَ?]k67vǭ\Oxs#_s8>эjSrRonm'\iMr{ kӻ_O+O?Vӧq ώWxo[O>=/'J}+քHkg5n׿M7N}c5{7ov^g}w n?h?O_G7kǥ#|;^?axF~ZNu^|B^V^濦}?Wğ#?pO:08B>QMj_ *eHWCcSцpu)rʽ5kiJj:GumiG]Ni; V2j|Pf ǥei7~x5籯7O_ @OW?;k\5ӻÿ1ilOFkB>1_ {m-|)?n7ϧ3k RoXowmv}w_y1?[.}jg?~g ??E}g%^e-ޡvob͒X[#\s-_xwN3֚HYe8㍥w84i܅E~f$,aw_wY!ԏS"vuC^[ ya^w0h7E6㏋VIy1xn cEs]G x:mxAy|;{{NZ&&/ %4x-RE6~U{[UAi閥-2 m>Q$.o+|?6W}E"8ぁ c_˥-QEQEQEQE!+A &Ԟ G ߅]Oy'QY>R?-wP)QEQEQEQEQE_?_ eW_?_ eW o?J:bC Q]e#(`QEQEQE|uQiA&x> Y-.|iۍkAyR Y`e.]#O<,.@ AT0h/<|@Ƴ>[²Ii#57;6큓_M/ZjOi~׎73G5xk?3\>a<ЄƪW3"]7w0_~Zc8Ӿ(az$*qHK>(׹[/g bls/o{Zu?vw+W㯁KNB~?|{"/LOn+'ѳϗob̿/WcD>2z/T'?C0*8֨mu]9t.!k짷^_si|_/|W>a?ðtc~1~?%/XKG{k8z^]vmcg{t]?шw+I9SXϷߌd~t_*+o66<1KsyOIq4Vԍ^{%g,wE8U)b)zZZtk =i4۔KEe>ju?¾iOtc<Е¬Itb=?JXw ?f?c4No5ֶa>у|ğO:Oߠԗ*j{y+']{*UZ7yO@w x~?ʾY_X?B~/VmNG(DWpW_EƜM{}Qք}_'wN>1~~/_դ~|c|_F}:rF{KG__BZm[z_h֭?__$#'lhAr _xd𭽑=İAxfMsi}J 4Yִ LjtAcQbvZ}0 Hȥ©bv^~7 GZMMFNnդnq`d5HDUv>#|RǫV ^k{_Cs߈"};vԵ}¾"]ubCx~xJS^"ܦ$B$[Qhb&FĆGHIxs.|cC)18t((=8?ez^X难giujVp_Y\r,6I,"NI%jJjmۯw˩6!ͣozJ<еWToesB{_vK+/~? tR[_iQR$V>䆛Z&Z$</?3G1_g]?>\yw1W.~ me__m?Lh˲տ՟|=?2b6&W4Q_r nz|=?2b6&W4Q_r/_wܿ͟<3#ᶆ{>8ܞ1^5Gwv"ˢ|]{x} obx{mePYfm_>|Ǐ.'g׌V/WLj9&[vP;W2V]}{c W?sC''xrG|u4|=?2Ѣ"J+O%tG'3%|=?2b6&W4QG__m?L+ ɕrGcb6&UO|sb@BgJA#)A$9 rvl'#ӥh6vs_ > ђy'Sd;?ҽ5zTckZ_%ZMݷݷa k ,5}wuU[/˰]_<ÞgG)_./5ZWQE>O?/˰17k?ҽ:-S \ƽJ?M7s+-+Өo/<|r# #l!OYu .p1њ:k{xa8(cH(b(jĉ,q.8v (ÏA-PEPEPEPEPEPEPEPEP_>|Ǐ.'g|#B?Q#_qjG]lo(AErQ@RdtǮ>#tcё?gϏ+/3I;u?z/[ހZ(_QI;җ8_5X)2R8:@ E=EMîF89c={Pb?˿oI=S+ *V''$sڸs]?nU:WxV6V}:TmN'8J½r={ dF~EQEQEQEQE_?_ eW_?_ eW o?J:bC Q]e#(`QEQEQEQEQEQEQEQE'q?WF;Փ ku'ȿ`տ;r`/`{Ai ;-vWqQTEPEPEPEPEPEPEPEPEPEPEPEPEP_>|Ǐ.'g|#B?Q#_qjG]lo(AErQ@k ^ |''>x{úqk:VgMu}_^$Isi_ۯ<cCYͩZ@ƛ#cN~G{:, Δ:<[uHln4eY+TIevWYX3$ْGvgfwv/#b] ۏ班}OCjUk)ղK٧y%(y+^_=Q;PP&Kݣz+? mL#⟉ iwy2dhoVg~zmV{im-Wt4ڥޤ>![Fԓ4r_c\7k6VҤH=Up qUXv5b\蓓/-շud[w?j_ kR Rh~;x4 ?mY +6쟲jiuS~.Y9&+PM158WnbSbaha{;,׭n-cm\}}$rY,tڏ29E^׻qZ[v`"\n/\SlwlڍUtmRR4/O/!QhkM>5m|8mdlY+Xj:`>&xx?BteՇTk${E3ڝE$>mۮ{`=9Wvx31ϦpqCYkQJ7j1rn$jm eI?޺WWNc~_oܝ7PÊ~%zJ4MLdhc[Z<|ڍKӧj,]5ԓft>1ZdQX!co*Ʉcm|?*_->:/*jtNWbwowmiRI] +޿fP`+GV״`&W7Usgfmі7VvM7ωQ :nK:{^]E&K6+[׳YvkeV/x?QuQ+7A9^[uwm~:Ivw>%Tb7dJݮo-?QaKH|F'ΧEi@nFKomcbQ=~'xelJ`"Vm#Y[R۬*}#Y kKGK|Q!&?ٺVS7Pi{q,Gje~!kuV>yGVg ;] ~?<8:a<#i< f2,hh:~?UW>#-R*Z^-ntPJU5uI6q|Kltz}cXă]ŎajoKVCgh{oeI+UIe :f, [Q`1˩-H;Xmo^K3fwqȿ1R{._߇jvO.!'Fԓ{> ۑXt5 %h~ |ck Wږ}i?(Zkj}]LjtaOOWX{SI qY~/Ǟo9q5ZaִK{VVѴ~C/Zׅ|GiwzeֱS1h>55>k>>u^^[;]b[.{o-#E׀|v5O>\~)_W~2_qh⯄^_hsyqD\Vi!/ ԼCui8g[ƿIj_2ӺO֊<?ƚ,Z̈́r[!rWƒnҀ#l$3мA#-Na,X˪iJ۽L0 :`:=+珄Q?n^|22*q|7mzq}X``e]p'Q c8-g^jr8VNߧe.8FRrUnRה:F?:N?g?fOj(?LQKN(Wo@Rdr0z{EPEPEPEPEPEPEPEPEP_>|Ǐ.'g|#B?Q#_qjG]lo(AErQ@ $^t|{k폆/5Ǥ^&/Gc.[/.&] %[C[>W緍cW)-9w~:} d-Mii[4MWXW,ȞLpOjƻa^-||f]_]=5O$ _dӆn|E?k:ƓswڝrcovdKgK~~??o~ӿW?FX|]?>$|NmEwC>Zk0#tM;K!ңT5+KmBQou Xno"5͵张5/%ݴ/# ê'_#_'~*xOj<φloI~RW< ƁYYDӬm0itPX6+ԚԨ<)¼MK›|֫s,uK TJxTl^^h?w{K CW+a4Ocx3 a &-Ƿ|)t oƝGǗ:qcxzXO-!ӯ9Okv|oug~:oiGwx?%uxᧁ~5߄~5^ :è-Άm5{!z~?4| C3xK h}_l/|A4. iֲ\V;Osy],uJ w7%ᯎ?dKoH<['6:=޻u'O|oeieI=ivg: ͉uc^iӕ,' Bsҭ%8ug(,]ժV;l4)7cΞ:fPOF2>*U?G k{Cpya<~<|L<)Ě'5xx:«kNLxk[V7!; ?x3ğOyxoÞi^#V |HW_OWί8ơ%uOdž9x4۾&/xQm2 >YӠ-l,..o5{{h/'; >mO_ hO ^ַ1 <#- GдKM>1ye3xEԫ,&w*z9jxּ',Lxέ+ܿW4OR3͟o OǞ W~.w>;~h7_ǯ5 O?]6^ w>;^ͫ[D.G']h߰_8?f?g?wڼG?|# DǏn&jg^z}>xVQ1˿ c߳C6 @g/xC}m[X_>7<_EUW^Ԯ;1G/ÿ > |"h|5/}=Sݯ?>/>;xK O|R QӮm h}W9MH|k~GE#?x:!0ρhמC߄ltb[4^$xwGa]`㯋,k??ĝ!O^zx|/ rx^=mג%4-W &M^8;6&ek x]KŒ|si۱QH`G5 +lc@4y$e_a7)5?j)?}Dm2he- NG]Z]6W\j_*T.8\ 7_9ӵ2ےzv'2xgs>yt/!$$f=X5Bz/aES((C?ʾO˿şIC?ʾO˿şIX/but#(V~G QE(((ֵ]/@][lEu}SQO46u 뻉#K&xⷊ9&Kϊi>xY}S5x\u| 9E[(ƭ>jlay>s,ÛM5lWzNvwW\ r:Y54eo_;Wh373F~ x(8?n$9>Ҟ>h ֿ4ဆ=c.~ZьմeVGei/Ihd֎|axODۻvmKQo·d)b4˥g&j_?3G[_ x^ҎᏇvJbeTiuvWRsoKA9YIgn.?:Z/է ׃| /yu_=!p^ Z-'5LQMhh`:<1ӏ_aVMDֵ"iCTx´ɧv0dWa* |[qc)ag^~ZrbrUtZ7q=FI5ĩ ( #*($ a@~//Zys/O4V*kAE #0N U80Kg|#+a?ž,ދyޕm.j?-.;ӭHIH^!5[eN3'~"c|*wæ|h4q ;m{ci4QmHūSZ_V0ʥISN,\'{:X*Xl*b*T(Δ).e^vSwkЏξug>V-k 9#uwXΝ ]QѭubW?VNn|;qi{am6}iЫ#p='#}j5TN$8It+_3J3HTQi8ndݚѴME7$g?/|w㋘v<[mxOዛ{<=&K۫a^ +]1+g|}^/o7s$Zcet)J>"ImчROΒi3upwl<qݰ:-_:^T|9%Rđrwf=?6qiug$6 t]>}n5|?׼]?|Y~ Qx𖯧:ҮM?F,ԭMu+GTK˨eRfN%$O< ,΄+҆&5\,a:%Y^7"ٯ~?~"B>5"mgeo^ =N=BMKKݿã }mҮmk+e! joWuS] BĖ<='݆_IY_:s$kǫ 2>-q)>$ž.mQ RQ~2 vSޟx[῁tIZ/^$T.ukۻ}~wx .Xڷ<-Ǻڣ? TxRIo~sE5\-|){TUxZ] qNa%Vj[$YgeܪKشpac Q\(!ȚUUS,F&ʕajJrTܥ'̾쇎h 4-G_π`|/[^OuOAҼaSS<@l,l|KsBVu h5,i/Eς׿|skXkRxj_lGb+mn94/Ѡi>|*>1h >~-W<4z\Gį𶵧 yLE/K3x[~ 48~guY4;\CvV )4ɧ1v?i?ᇋ߅ I{}|ow| |:Q-{k}K:]։Wg_] ~.>aT[U x/Ŷ+sw'|F_zn"[}jx"}O-> ͟>~/z?1 ~~Qσ">'~ÿ|6F"NՖu<%#M)мUxrhV#ax|MiUNZwu֮Gh`kP|^ҵ ?תFNPxݜ]*Oм7`N_|EҾ(qg |- |~lj7 PǏ~=Q_ éߌ)GS^X~q[Zo 7?i~mƏuMU5[zoEoִKG6V_Xi|Դ}[/?ؓ–~C>⧇sB2k⯈# /|D7y*Ra[fo/~oxĿ n=o?O>:|2sh Լk'H~"TǞ𯃼gtZ({/hjzTʝ:4ەYJaiJ-)JX|K{W ZQ9Ս81ZuR>TpW6(fThjQMǚNiٳ%_u_:ŏi'jQҵ O~խ<~$jnE/ӿh)fo_~c Sg|uJķ-ᯈ?lS> k?!ڿzog ~Ԧ>#sTm ^'$WV:PYnnV]6;Q:W_vrctWĶÌtJiSw5:U(n>eeqfť[yho7[/E#~Eɺi<8cՀb@@n8a1+Yz6]q__-QE0 ( (?CAYԚj?CAYԚj'IG]/LO~r>+lrQL(((i*:OۥpPHȺ cwߴ/,|i>ן2>bQW*a]-PpQf5 6[N-sԭ;{N SeuvxEM&M%M|OިWmً~3if/?Wٛ'.xNI}_KkxOeKZd|m$ʨ2`8\>& ,ZӟV˰ݔhak= I5Sc9'կNqX:t#h+gy~c(IK0)^yʓg/~7N8!NM~9h#{xMe|E ?PiFƚnc⫝7Jմf=ïV6zx Q?hi? _> ~^rD;ƗڜѼ3|4}{ Nt^h/ ?7įgp:TGxSᦋ5i.? _iYiEXxjKKm>V *+c}.31BI9U*7NiJ+,==:0 V:FU:JYFQN94WUqu#Z*O*k߱'=ljB?l;?,Q7I[I5O xYm&^šxh|_D~j=&|7¯ (tAH}zjhišq26dи?gmK_ƣhm~+% {KMa5Kk7:,}yc4WQ@ޤaSSa5_YƧ&>x e~|0_ >kzSx[^(Ë}7M.AL;[a|EO7bc `{+h)u+eӑZ"8ZN0q!/9(b(e,E T^Ҭr)0Vj~bt,ƔbJ#.0Xzj+_T4lO5Cj~R!+NO lQ=C>>&|j׆>KA BV4 ǠxC>4r:4Y|7izw1*WkOfgi4M[P^ox7{ᮡ>ź^Yw%oc | ǿ Uo2^ׄx7C#~ȥTH_4σ~#IAI[ Í* N?mGÖZI_W m*2z*ھ7VjXfRiK K+K%8TSJ5h:r^8.*ZJ2K5|u> |G/~ß'ljۣSCWᆝZY? \VYk%Q/-uqse?oό~!/?cS_ >/i֯k~7,?h-*ݮ5gò lhKK{-n6/g?76Ux x"~7G]7%ON֣ 4YllCzhZìoWJCj(b:*p:ҟ(2eE`~ ƛk$ҷ]9RM:4*k3*B2N3Z+ x_<$|Y/ xďϯx;Z@ήl,оٟp-53uӼSqe{?|)5]붞mN %㼚9eYYL =}t#SGRJUqRTE%EPք}XTѷ4??ĩu7|G4Ѣ~'.WYe|nnAX/mlп_m#:[q}mmq?LosO.?|xƿ_x7ƵxωW~#MO xI>y1e40YƗ>l;TtCᑷ,Ǒ##u5@EEQ Ib@]ĒX$ W [[AܶyI= sL>c|->_@]jӈ.tgVVm^o?ƺwӔ(Ygi'eu$z~i%U]5u:qgV-^iϦx@Dxm^g<=M&ٝm['v[zVoct%~91?N}$AYpRAr3F,Pܘ!GHx!vLf`4I„o,T}? > WaQg„o,T}Y<?ǿG~}?WC?W Y<? yÄQ''2']3~G yÄQ'#gOEOe_O g_*+<#gO(FG=?ʿvUVx(FGPE#ʏ<{g??/?1? ',/ϟsf^~֚ݍߎVw[M mM&7$2<2(l4lq/tRyv R1vZ/ecúE֓Zhl2ICcg&$4i_琩rI5+]Mۂx;LWu |xF|QY(0I[UeNҶКMm-ׅ۵]t:?xĚW~84Pz|C.z>wc\Yj1{.K>kdFv)s Q%>! ۿZX ,JJ1Io+/[6mvqبS(֒m6vk PG(FG=_NWn__UV| IzGӧZ>¶{K<}_c/x"_I&5iJ|;} n|FͽЦ/+ίꚔ-SnGz]LGUb:TR\Ȗǃ|A%53ym잮EͰrrJԞq}̱xJR*ҝ5_KtxQ+NqoG~֨8rF rÒb _̦ܔb*n]S>kvG0yk.'_oª'_o¹(ZuV]%֭/QIZvNZkЋWo®'5sCZMrMt-nzڿIikX=Qz/\j_Zumk+VjKK{kkn潛Vzиr/?*UȾ?IYiJ-.ei{m4}]moFi'5j/UO?j_Zkx칕ֶs^ikg&ktݛ6 -^6Ϲu:~?UF'O x~?w3J}~EAW#OTӧ\?g=7/Z?֩r/rMy>1j}3XT+g/s/|$5w64$=%tώO8' R_<-y ǐ/gaˍHU#A 6ei<=do"ԯ-[嫪lrϋs>Q'|ܗf'澾g~:فiỜl7&[/E (`QEQE!~W)w4~W)w4[,O_}EWjz/ (Q@Q@Q@C.Ꮝ?|6 3nXS! D ?i*X|6<ןŌᕶ7l*PX,(LHܒ ;`qn O8 ^ݧh׷NZFSm{Y[.獵Þ Z||uo_uJ'|Kw߁|s!x[ß| f~.|y4 ~u >Ok/?Iw__Xh[wV47c' ˬO#g ͢GF}+@յω~7RеC[v>h/>0oOk5?=}G?Sg]ū<#WSCNO% ]JjV\؇R4( ֭J4Z5Ѫt /puIgƎiKsNQ?kV<8SSw>ҿk ⿄,]K> w׉~!6_/2hx1|L0x;i[iڌ}J^ ?cDwW|!{|8֯ƚ7?|YƝ6C5>/?E\XKwoui71⋿iY/#xCv[~:M.=3LK?hw=wx~xx׊S"/U5,xŏG~*(ڿ}o ]:>!Mnh/;xG獣>?4k^1<;$cuFvoytqr5%՝)E }NcRScR 3s8MRqgS><N>_F/Aվ%9`0e OxݏkU}Nɷe4:{K$^y>i'5m:~?W*?[Tj}kN;R}#_߲w+i5~5='Ƚ¶]7?YcP{Ɗ(((((((((>S_3|!O]|Oσk5#7?袊9(lξd<W5`om?-COHޕx:ÚdN=ؚz<7m8}9M#נz|E8t ӓ.h+EN.2Z5oџz4=|7]GRS^Úމ; -.Z&iʗZ}McCKer-I+tц򠔃LR`r$w'D`[a6X|go ZեݞKEik5ga_iWYjzuޟ1[^A,n~d~| zD^ X.^f wNF :V[ꗖFmw[ վ32Y[@haMVKFn/+/Sʖ'Y"6f:2YO) Pcdk qVS$Q2̂xbI`( Ln#R8AMgj1 w ^xg6_ <1p-֖I;IGWk:|/X#TßaOi? |/O]hhVWPI4Uޛ& :Hh%8o?ٰZ؎Hq]RE!e%7ג%E"  {ࡲ 6IUM80H]#w'Ӭq࿅cH5[sN҇:Y-K^ɛ^j0C:fI~O{Ꮖx1{o_imoO$LzIn9qKqeNO俯vץ(Y!kynI yy lGmT:\[S<")d2,Ьm4Q$K4-*)-p<1o%м+Ÿ t´ > ZVhȳ^i0eXL2Mg5ԗ @i@g¥N\Ӵ9/ fN5{;m5;]I4LӭHm|x"_WYNm~xzMz)V=#͍ "5UTHy}V?+z/ԣ1G(1I3 #H#$rBunc3.`ٻGvhR3!ğ+.Կcx~):} cusi _7OoDᵽuMc֏7wv <;cuj}_ Jc?|ct#u n]Iֵqqww#R;}@sZr7vVֿ}V?/]qڳ2 bh̒崞tHtyq'wb,.moyR,1K<%ciy"YiIdYb,3~?ml5k 8SW~m:IBh.miۭ2M*"Λuq`=55~|]:G_|+F^kzv> x@:֡ikLeot}&Q( ,#G/Y:zR}u8O_>cVKHF^6+L!e6Yvl 7n-B B4"xb0%$h>()7lF#K3&? %MŗgZ[;3)]]R=Coχ0j^'FO'Ӯty4++fFJdҢ+]i@D񵞎=%/mwwWpi|s$vV;_o^Kk=O N,֖Irϯܦj]]JGBgEY?E/_WêfHahbIa)$h$F8HHݳ TRli^TKRhZyrK7󶼑,д,H!TØ5M/Fi_ 1DŽ)>[kZCn\}P/mm% s,NnU+Ęh?V;e%xWjt-QM,aZv6Rägw{UJ5oL^xw= S -{_x:ϩIwp_JnYF]3zVJKc4ﴢo&k_:DNcGpHf&M~vKZ$*sr `dGm:;iԘm@@>?>{~i6V~ilT%$Yش#4;H09zZi(((C?ʾO˿şIC?ʾO˿şIX/but#(V~G QE(((Cŏ_ , w}1^QiA&  pƞ xZOpe.]#O<,.@ AT0h|58Rl䔭$wN+/uʭ;]Z.)4խ$\ߩi_~^ۍ$j>.7htufs6ܹg$-%'W&ۼו_o¨'_o±w-i֗}Ovm;{Vv[GAʮHtAyO\N=Vҷw߮zw_мx~?մAUڭO xywO}ܹWOXO^dwS5[m;)Z*gju?¹~E]FiG]NI>уb̼kOYNu>I9®v߿w׿o6nZkB>ִ#Z£Z}W_B>q_?[~ֹ%5oR]_߲w+i=~:ΕX{h:Uj7M];KmgoAd fY©mv^7 GZMMFNnդnq`d5HDUvml_7?W`QEQEQEQEQERdz:c?.sӞG@Q@94UK{(./. nn%`Ako%8B6NUgB7m:_>8~<8oi^ M|[k~kV-sW:|E..x_znj_Y:w{'׀\kb58};(cZS޼4].'w'?Nik|w%|Kд.xn9{qx3ƞM)Ey/cLOĞ-CtռOks{J}Qӌ|Go-QL(((S#!#$C_4/+^ <J5 ?ğh7~3׼Wx_Z|Viv>*v{&}euqek=/]m@lxG~ 2,~8qJ 6Һ&g|*{OUv,]"HҞ)z5Oy~,o~/cӼ5 56^:΍wsSյxY5x4y%ݗ徳ҡ=Gk7/ [__]']KO__x4æ|GFGh:ĭ[Zwė֚FjqsiZO,6 }ڥgmŻc<}~W{^|{I >~Z'?K:OguΙh)|3𿌼5:fu)߇ OxO0?j:<mg[j%z|N-4{Rƒr?\Y}VQR%i5#yH$G'ihN>QEQEQEQEQEQF((CgSgRigSgRi X%t1?(ղ_QE0 ( ( (9x7C}g>#}+Xdi, +}CIt}B7^5kK-oAխ^iZōa"]F?x=2i MBiwM6|g]yq4>WMCZ2FG^39\d@'k a8IKIslS:iIT2[wGmX48#,2Xz8'|1ϊD2~+|-u--P\X^Cl#jJ<#OS \ʾ?]ۙi?7F7~P#_??W㯁KNB~?|{"/LOn+S \ƽJ?M7s+-*qeEo>_\SDC/ x)B?^_BsD; O?M7s+-(7ky5=X,2_+7? x%M>sX.7k?ҳ=.=-!%$_`?i?*rtΩ_ ^%6Z WsƗ%ĩ rB hy( $fp`@>\X}?2G=2y_ ~ <IW!wjGV kgY8LoGudg*:gx6Z>uNsJ#y98B1sZŭ=,,bVU!ryNpQ)ԒoVRg`O4glci?jO@|]?c>1u`+~ 6ex_oeʧHw͈QשN+<ۺާ[|O:Oߠԗ*j{y+OS \ʾJ?M7s+-+똎~VVUQ ? Hyʰ?ko t?D_=& Wй{›oBV5ZVo_-Sw>qO:d|b>_ I`$'H'u?M7s+-(7k*eܼ^C򮟧?d|d>/R71h?]~| ;T,2򇸖#2 M7s+-(7k杭 I&$|=◌><ڷ|'+os~".|{Z\qoxWq{ZkLZ?մ7 ]j~#S[ҴDhDu#K+stؼimyڀ?~qDdМO|?;w5Cmg/| CF&~?o "nWQ[.ڇ~?o "nVuR5gJzϋzWƯRq >xƕ7W*lOxP6XؤRԃVGjǏ<hy 2A#O۞sK]~?o "nQ CF&}!Eo~]:>Dڇ$M9JB9oxowRNj77+ (տ||qP3qm𤳁&I _W[c66CWᏛxlv@&xF w'_Hrޣ{;l/k~}_O8| _VVv:|zmu$mP];(M.[ϴϗugǎjylov(QNJF#nR_7uPѼ|7ĉ)G'_Hr(ZPڇ$M9J?:>D󔯤(V/˶'_HruPѼ|7ĉ)_HQG'_mCNj77(xowRO7[.ڇ~?o "nQ CF&}!Eo~]:>Dڇ$M9JB9xFH|i{Q:cS+{KPT8[}> k+k{h>{Hֽa|!^~e6RIaq*=,GWI~Y)GvI?Z6OTw}OT1|x^7x]%f}Z&4*;vaum^8uE.z9$HhU>Re8F1ce+Moս)JR3n]?EVQ@hnq?<t u'@5s\4]HSumZO4 XPd(]n'"\I}ݕ[#pqEտjK^;^~ijHB'Ӵ [7U}gOey꺕{o?io@_{;&r: 0EF5_]:ۭf~֝ӳWfQ_);,  '@nG. ]?o?_x{Z~#?L~;;gEO>yW_3xTWz~)?OuŸu?\Zi޼}W?OO _G<~П?X%4=oS!ח+a@]=?gK4_Ou?">_}/@?g?xKw?><~'>yyy9_UZњ4|xG/=//?͏HrߌHͦ@h뒧>h2} όq/_ X/<u;7/67*$Os _Yw;Kwmwy.P:_~+m:W4fSd^լt?]۽ݧtրɫ*Z-/ Wx hQu_OQ񧌡eb".yxcJi-ջGmZL?fK;;Pno,hnmmf 34-$r&"g~?EMw&Ѽן"'$ΗA>" :UNIV^ӡ ."szmdW,E7r5lUpj' GGj**æZ}{X,溗ȶaͺk<]K,6dGvf7kcbr3%Yv3Z_[?cW%IY$]Kw~6[{ ?fO٥ `*Y}ޟ_y@ʹ{? S~- )}_y&GGReuɖ#{EԨ 3GsYD'fUZ6Mv͵lj|Oxr-6VR/e^=O`p89ɪN03E5~x?}6νtA %~ u^n] f;SCWᅢ+[/Ea3M gg<'x|aKhFhg~-jzMƙ_xJ_ h u; =CH׍Eھ$s[kn?-l*9?+>wF~֗}E|r?i/|QFS)?S_?~yϰ诏~*/ ?h=?xOSyϯ诐,ѾA_=K{ zKS_ד>FySN #'){*ܼ>x2џ[_$yc!~0)u?.^^_ɇ4}Z[^=+2v:HGזƟ5ϊ 8l|Hl^{񕟆m^DBF mMQ*u-*}o4}H|pՌ9q_?p͹'?X4 ߺ}?4?Z_+o]?N~2;<8:pǠ#|?_տúh>_gP||Um*CN.? xNm/?cҮ/Mu]4ڈ| G_o.l/w5I(J$,#mo'W_><ᚇSşdq4><sez _תϦ诚ogoH)j~ˑ +K7_תϥ7pH#{Hֽa|!^}?{dB3/gn[# ~^?-"Ak? ¿#( ($l㏊e_ņ~04^C )ocrq]^%Ix :h>+[?MxŸ ̐qrν]yd#[1R T7W+9spՔwI[$Rט<hJhc #K,(f5eOU '5N (T9FiE6TRΜ:uL8Ƥgy&G-CYYz<SX^g~}+c %o~|m;G~~(Z:O> h"o|IW.CF^)ҾgC **rJu0UyB"ǟoAP<,i8gxx\8lEGhԬߵ_ k^= 1\}G 3A,{ '_VEZp6~O?⎗hoBǍO>5a~ž%a|TZIki.x~(_ Yᦛ'j?O?ҵ]\u':Fuj]GF$:a5y]OusˈJ*qROGc9z5fh85ڥ ^&㬫Tp~`S<C4Ӽ(Nmw oݎ@G~n;sҮr9 [?~ߴYψ> x3kxS|9/ iI5 [L|e_oK#W/^~? O OSti~[;>G?Kk:m, Ӫ_gɇ7-Tgw=|ZbV5M52F)7(0<0ge.f/;נ|1M[H:BxL߉O6kqCc{Y_ſ+B/>^$6ԿotoL-gGZ+m6.5bPky=1+ )"xyc13U־&qJ)rFf躳j9Eҩ_E/Jܥ*VN2j46#/9UA#vG $.=wB@_ !/7G' !|~5k|[xTo#M[o|+g=Y&i_?J3.uڛ E~-ioÿ_Y+_9;U|M hSi۵L#J*Qe5Z7Z)BjnM7FD)ᰯ_a~w,|??O?l>xA4F.|鷾'iKmKBkz6t3 PI<9|A+n0Ge74Yxr$+ÝSǾoňu2]>JG/<^kZtk[Owh'b?g@y+ 66IbK_ER'8ʜrT]ޢk\4g5q0Zp,DQUVҒTݝVB/U=>sۚ:#ݏ_AZ(ÏQ~Ϳmt~_ǃ<?4o^+ԥ^"5|'Qzo%O$=~5m>G_7?f'Gͭ~.S|f>/x|FмiMG??5?F? |3VA`X|MMV5u0bhf -djΨJM{ZxzN3Z̹>*1_<ULsc/f|\_3Ou xCTRtN]F-[ĶaS}9J0'Տn^G⿜_H?ߴ4| OWښ~Mx? |E j7z8]it)ǀ?+={_״im:?b?*g P핯)5w |jҿe(OcƑ/3K >%/V}?sx&lӢ5[W&|k^Ga_|@ƨ'Ƹg{Hu?&X,4;]|VF|)y{y;t'ſ?hiM|7/j2zǞ쳦 1|;kxS,4[jmC)7̗{t^_X:%gOŠ|E |\#F8t>4=K|4qk/ _5r[]^?zkƙkG>F(o{5I֑y?eA9^9n->v>h n:GJ6-~UWX? %|˧eǵiO#6,1O0|3~i28|t?\ p3ZEFqۯq)h| %~ u^O/kM3}*rO1P -Q^z/>fNk};K`LҴHzn.-, ֱq)"OFyA_%UjL|;924x2|Hs* Q aN. |嚾S ؖ5VtiJVa%W}''R>{FI9-U䶲3m=.\O=z/˓3Vo}=~_zW%?f__,ϋλ+Kzσ>p7_>?Ch?|55˟;W_ C(?i(z~>|h궷"Ox>k:ww^?qPYy~Гͤm~&׫Jqf%Z8O`gSS<_.:JsRJmiR`0%U8J)WNx{y4':O99O5a~8ǧ(߳VAxGehOW/CgOO)m/F/x|] >EV:+f+Wtj?w7ğx?U7S~); >MWĞ0ŷWKߋV}l^-4-#ˮ|L|;{j8^j)qЌ:)NL}*4*Iw*^.|O3j佻JU)hc>>oh*mBG8-Ǡ'$\'s{WXؿ/+#*|M_;͠ ;/[/_*.%'İ|h7ƿڇ徱-e~ cռC/ x:^ ?N[/xxQ¥jtkR<5!Oe5)^T'ReN咒rIl<=HbcO *JiS})R˪Td0l={ǯQZps=sֿ?US[g~VWwGV;I3M_j| \~$T^+MsK?`3h6 t=ZkM ~߶?ٟz=K?wv'(eg4|7a AƓxkˋo-N_gį|W5_~КQܣ~?~~}+}{O4}'UtN[7phԡ]TUpѡJ NZu%SaaO+Zf{NqI,?8|YDŽ! g-Spx3G6s]MĿ7 E/ {Mlx X>-x/2G}w^u:] ZmmJ[FwZZv ue LV+q3}GS Vrqj0.5Jm9TX|SVʻ1O&3r&i]GUgQ'h6 `?2RV?( }k87qC[ν<ͯo|!4OK|y>cC޿|':L|/gug|Kx~}i᛿_T/~7gX?ZGTVGw\:t#|[< 7GҮջ|2-;Ww'V.4 ''˱$J1IE{*1&i,&ۦIǚT!5*Yla81:zqRtxXk'':?Nkï_OeyOe?O?j[x^o[x“|2W[7G \EUo"?ിTGG~|;5C}3[|h<}? a>1K^#ǑF=Ae~3<gqڿ(71̴o%5F~>DY]?' 4C]˦)Etۭ. aگ G cqfO?.b m~|[o [^/̿YLcWo C_?df|+?ŝc<)8|*𷏾!._ i:զ W5 ^O:_5G\$S;3ՉbyX䓒rI)Ό1 BQShМ"佟XJ^+h4R^E>ebn*;O RVYAuUi>1_GYa՟_sZ]k^04 xZ7|9 }Tt#wy=N{k+^NmxѶ#Z&~Ο=Zx#Wi]R[3݌ז^Aj]Y͢iZE Oݿ jϣ,ԧ (-[e(c<,qF]Y_xs !i%OzcW+@Z_iw"2Cq"|?&[gc&4Om@O-b"C3M;W,[+[{ ?9ڧL"|;F{=QL((((>{Hֽa|!^}?{dB3/gn[# ~^?-"Ak? ¿#( (W??{?_(Ə]?HVo? Gs7MMnDZ|azΓs}i{eoku;\^_Yp/bf_|+/@6A<S?75=Oó|J7KRŧl<.']|V]h$?L?|I?Zg)-SGC-{CQ5ZUXlt:𳵴(W?n}gAW{?im |N|KU|T;hZğ|~EyNJOچ xC|ftj_W SAѧZx㣫j4>ʜJ4[W^|G]R'8U#{hҋTW2|u#Ŀa_π~o4zo^-oK?xD?>ivèj5iMx+NFooIe[Z*\ LLRb'RXRJJN/u5gOp Q7 %y*xiaJnΧsèǕJps8˚*sQe~B_~0=-omM5f Z(]^mvf"_?||>>|S72>5kKRok_Z'ӯ|2h;y |v 2x'FGW|/x{/Ɠbyc-ջM -+GQ_ BX*JՔ=3P,exr9b&չU*ԗ5*upZ*uh)r4S Bqb5V)kqŏ__|#T|u>)('<9}QZx[携w iY"5դ<1bzoBˋ?sgŝ+iz/ٛڮWǯ-s:ψx[Kό\ uk-*!5mZmƏOG?b_WcZF+9Յ*4!)B>|{e|\7%?gٯu:|M&_GχמƓ.o4o~$冃s&}?zok s{O?ڷŸ ~2DҾ*s>|t{gW»Oj]2S(\2撃䚔S~›5'A8FfOlRM׳֜\ךӫTK&?{(麟/ŝKi ni7_ 4Yt xxb駖oj3҆sAX}gU6~Ƕ? FX_Sѵ}æT/ULJcZ?Uë^e(GeM,%0RZuywy/f>F졗ŸaeG I;o߱x+4jOh<|?A|(OxU/mx{ñIkuzX߁X{GLԵI;EgODk5w_x_ǏIwEO |MqT!x7Ml5+h j[jN q˧_+9aJ)(8XXg Ku(**CI7RUdJuJMExիJ8KժZ+~i|CD~Z{"Dпn!Қ:MƟF_^ggx> XC~M*g|qwE/ٳ߲oa>9|djwwwq?tA.qφ, x3Ú.7RV-}V_Q:4_;*mJø.ʄyQR(|nMjF*WxsRopJ4Sʜy#~R~ǿGρ=Nj>xOv<߇7^kxS@t{K*/ uA)X\+<of>%xk?i/%KL~yE][>g|*|-x:-t' "kV6W{oZ>}=*ܩգIQ乛ʴcUI[R<'ti7*uh7FOm*|ѭ)TtKr&Ŀ@Oث? |CWïW~>,6/%毥͵ڶE}B:j Ɨ?x/x_>j~:I_{sJѼ(Tf}e"{mYQά?c<.ƒNMɺrRMռXfRRTǛ)URZQE[ָ?^[rFTV3ʔ[UvhwP|yF/_&x?L|AK?|F~Şå\xW8𧊭!#5 [BFkkxᴃHx>8ٟ?/_ඉF-4&xWW:v:{us߯b|8^2 7Xrlҗ|%Iz*\. Ҽ))`/Xwg(i;sY~?h)~$9gZtχR'M^&Ҭmvp^ܳejDr cK}?ƿn?98x|k#Yen%|3W'?)MI]KhG'- EXiahESix\N .QQ*բe9VJf:sJTV9?ijUp4aMֆ m^5wMYd߈㿂?h_|'~ߏV; <sV^<> \ _>濧[{L}ooo&֚yž;]6[ hzNc={5coK{4w$62kO1wHHt~?Մf5xʻ븾_mznkuJRwn\Mi2*Z/sWU{{X(E^<%b}3Wt~?FwJZiصդfi>wx3⯄5|Cޓm3Zh~g8"XEcxIcYm4 <hZw+6J4-*;M;Om"XvF$[2#'5a>2"h=Nӥ~N~/|"u"/ MwY~E>?:}'5׾?yw'aNvc˿_(Elq9Go??y} |8p!4G?iO?מDNW@ S= (* +|pʏ1\N (Nk;exY7&tU#*8ɾTg}V?5o ~3k?>x{ E7 !xwM>MsUk2`uk-C蛯 jc>_ a?iZҼeď9 |WL5\_Qϊ< ɢ۟4><|JI5 x?L&;fx6wl/$ww$yf8I,=8ᗵߵ.xP%S䤣IAM85b]Jxqc8r6.IF*Q{cy~ i|Ld߱V4_zA*O/Mc.;=ᶉiz}v_ֵ4%%Oo' 5o}+ƾҼS)Mh<+$){=ήm]-}5|%_Ŀ7yψ~!4Kc?f_aߖanBU |z㟈3C ccẙ>"|0_K{Fƞ uxYٛ\,T\\ "IVs`SޡNJu,Ӳ \C+c5eV8KkJUŧ K Z1V1p(%FtӶy?ڗ">5V~D#;-oo|>izUk/i S_?'t(,~!Yj)+ G써xCWeV迶[~#?:o5_ uj^Z\S?}+Jώ7aw~' Gq}8#*}k'N%8I;>l=GߴIېRW;WOÝIVKG؜JkԌG / |m?/~>O˥sMGo?4/~X*i-6Lr~%L6w|>fkNn쏮xƉϊ|+ux2_Z~_VjV:w#y^^#Jlj_Z8L:KEVGJҥ F7q~V{7} VRZ2u+cb㋪5^S唔ekok)*㿄n_o?L<[wpikχgPG,~0}w].ĺ7 FHu+?c~"|J!~g[ׄd4ۻ-NZx~}_T|I.X5 84vKMդfXL4%Jb㇔d%n JRNS~JTӌZEz]u:=Jn˟*2G'zqy>fo4h~7ڿUǯV_ >|;87Fu;J>'Ц"|:ŧ5/kx/V/fx ~(tg/ǯ"Ғ>##i4xn\oqy.ֺl_GXO?kZ^/\ЩJ8AWTqUȟ'-YǖfνW%MIF<#nYYa9gʟ+)~ toſg/o |d|!RVoouOna]KVjzjWS^Լ-wၯk:x| _S>14oi7tx.Y|g|7xWri3DIglZm7]ݟ٘z~fF/]b*n DB*nZqUMETwSRO.k ;Qr ~tR檣NUϑ4g(#Z-]gM<;)nKo5gWl~wmk|oW߀O|i۩WWdlt(vx֮'cWBj\ӌ"2+ cNdSVҖ/GUgj*͵1̩jm_?Sw};7ŏ|Cq_T+m8a#|tҧN5S`یRF:3іSlVV r74ͩf6> ~~ !ώ .gx?ߌ_ </Ch>1i{uܲu+oi9m?~5Кt_]/;px3i^wWz]˯^]NM6ܧc# 00`m_+'_I(S{NN{ܞjy^S!F{ T(R|_r(ݢ}3Vc_UEZŻ֭\ds0 r# #HuaU#Zt~?3wm|}v>XmW~i0ϡ(;mWA<蘆 ]Mn{" "@^vpN>\ʿtWO?j}3Qk/Ei6n|']XG<_A"; +J^?'1\_gE@QEQEQEQE'q?WF;Փ kw'ȿ`տ;r`/`{AiK]cAEUQE/9Q%Q6F;JG4|?Gm?G&;ҷ5G|(/NF>$:_tSTmGI]cGӯ59%mCH[[WN7v x~E_ڧhza㿅W5|iD~#վ-_Yy_ hZ/g?OƑ_Z2Mxk։;X3ӟ49$ek[W%XvZa$t2Ղ]34^QUc:SW :|$|LD6*#%ZX5m27Jp,\#)WV{3%߆ ?gzm߁.b#s1| gOAMmk6mMFW^ _7|1 L1Nmᯃ u;>5Lyk/ƺ5x_{.|Cj^ '_|ߞ޽G=jդQUA\CV~? LO}$m:m.iy^Ɣ7-WI]cZt9hq  \w=sIǮ'Vqs(}mt]5Rukj{;=`ޗ哒W-;N*u?=y r}&'SfRʠ'niMJܽug/uu} gߤ\b{{;cZEZV_\󵝵]>&쮬쮻2Lt~?52}3X :u`uQ>Ձ}G?њ-eWkbXb _&O?j}3Ut~?ff'5M>`~}Vդf`XO?j}3Ut~?s2D?~N~/|"u"/ MwYQEx?}6νtA %~ u^n] f;SCWᅢ+[/Eg@[Wg^xu#;IC@ "a?i*Vםz{}\s_kQO^/fN?EikfrqkNXKFݟFzn߀,˿a_o־G/z7&x3'W}OzY6- M]mw]ռᯗ<Cw'h~2Zƿ">([Zu|o?x7^#G^Wƨu#sNM ڿMݭom쭃<fd@3ƥ9Qr r9Ws\.^u)*qNRִ+i%]FQQ{(8Sg,]w-*J&1QVm8ʐ/yKs{Kk hφ<>|5/ceRx߲?exSភg>N/ 7~!x°O>!|=n<5׃~1i>5|1g<}m5Oٓ_)x犯|E5_yϊp|3ֹ=i? ý. X:g`~ՅO+ tW*iIy}Iy3N1($jRky(ʭ5b/Wķ} X珼J_7ʾ`Z&QrJw^PI]t>UKY6I6-무\j}3Uc?IG?:ZJqs4n쓒݌vֻ[bnV6{EʮܶnXO?j}3UsISxG rN:$Ⱆŧ{}RJ~֒lk'J:%m5k^SOz~fBxs>ezt~?Mi\y\N"VVWO//Дcؚ>?TZ'}-ۧAlYG:x~?a}G)bk ,'5e:UdF_z̰*}UEYki>1_GY`֭'5V>IG`~}3Vt~?Մf\7~O7ןƏ4x* "EwAWϟٿ4UO/?c 2Os*((((Nkw'1^O׿?VO+2~?v0^N>R/Aʖc+8((_%~sKǿ>m~w.?h~??~ < m?G&;ҷ)xSx*I~dsuix=2?wgvZ[~DWvΖO C,v߁\V?lt/ xWCx7kD4F%iV_]AkspO G>uai:n=_uQYܼRI]'Lhfp:~1U%OwRmtxg&Tٟ9|zCo[?| O>Z/nnV1Km{?tKSQԾe{ vo ~ "~ ;o|)ggi>"/ HhY_ ;|:m,>_:wDok{^YYjZ}֛Y_SX^YY[ͭ崩%͝ŴZ]yA+VJceq^*xg]Z|)oŏc~O <1>ww }߁#h ^ .4SRգM90MO KjUNUV1FS}ӧ9)FjU0?k.^t&94I/sǶw7y?OxP#<់l{w㭵Ͷ}'>I-|Qã.l>=ϋşi[uoO↋e> uUӾ'|}wx㞯u=YcG|Tnxf|4-B@t;^ɠ5&w?a/{"|xᮻ[?hGZ9 7__k FG7%߇EdNtϳfh?x+?/>׍7DcG EtFy|774:>^txkž-/|1i%桥:׊TV*Xz50BԾ'ը[T=+Ò)хJ4qjWJpSj y3ψ?7aG|Oǿ6ǂSI1ƾh3o'|-|Gך' m~ A尼_%~?j?omF ׼'_'~2|>W>hx7+bWImO/>-?x&D|)~? \ӵ߈?'x>,`'5I x᦯ϋ|w*F_cuw7:DGďك_-◇$xE]?Q|\şO Z߳ٷC#6|o#^5k.k6ڧG]|N:G/~<+k_~/j!w_Z7/v~< }^m/-lu}GR=w%jN_?ό}~ |{;kzJmkG5O+u[BÞܾ#5xG&&Wd𽬧㶲5GV>SS=펭YMkÓiMzs[ɩZV 5':հ,J\q5EЯ9*M+rM{N^F&"(N'UaCQKZJo&-~V8W_-jτ1x7\bğ_?uNۛŇ {Ƴx',音/׀ntsƯO_Wm'ᆓkO>/_fy/ | Ln)>3V'2xKρ$&U.kZn,?/zZOٚo|v ?{S7(Ҽω~|C 뚞q/Q/5ViZ^Y\}S^ FľN־+x>?k5~+PA^]ZOmVFMӧt˭j7gԫ'Ss%uTgI-5U)SЩe~kS!KN<,)BS8SҖ*JN֝:ɵ8wP0G88\ 98m~֪'t=2GBy39 +rvj}kNm&mZ;tJгS'5 Lt~? [G::u\uQ>OoSײ?}DbՊȵbUzY /'5a>GXO?k3R}3Wt~?F{Wj>IGUj}3\w0,'5a>GXO?k9phֿ'?dVRkcC? ~d=;E_Ԛm5?Y袊`_m{>WxKoGAʼܻwT;1Ƈ EW^8ϋ?i*VםT a=TZ122LOhbƯμ?3S§灚CGO3 qQ|4?/< 'ȃ̳dQҾԴ+\m?Zlk ԭakIm1$Fhhfe2$D );*TT@ݪ2m_*QaUBGVISqv=UNZtbSM9(;jm~~p| Y?Cov~=;|f<'O^ߊ-^")->).k5|ï?&k+}oO<5kޱ}h#(}#"SZZgm;i?cv/Iy'|V=HṏW~w~:6GVVuZ'm7wOm]/&*8OBmtO3NQWJ:.MJ8jT,[uTLb)BTJu9bR1 g¿(~П|P1~κ׆>IoX|raWT[?j_"x Ʒ+?{ǂDž7ⷈmJ Cƾ񷍾|#"A_ӗ7>%ոf$~3Xhs8SVͷ⿅>AW5^+˯4xx(/xw>> ⾭)!N ǭ7஧[ξ)-e2/"}>7w^+FN R2,}YoJʰQ^u%,.)¬txO>W7N8YSwp^҆?4qiL^rm֕3>e~Zs75O⩼1C|S|OuGdžf+68_M@AԾ@w,o?k?~OKu?skZNPk࿇>%|־xׁ4|GԾ.Aƽ8=w5?s{a>i:xG)|o> ώ|7}?_i?~;Z|ƚĚ?ٖ/:g5zZ֟Ǘ;ϥ0 |m曪zWsůV)ι| ex߇~WMizvlTJNeBjXL*G .Jg5ySTrgTqTaJxӞ2RbTUx~jeSx1g痃m/ǂfI~>2_#2τ+XxgU~WTahWw_w>A SĺoxHmHZ~>gOms?j~|i{Cr(|V]ÆW~h<|c?ٴ [_?ht It#zx;/~x)֒Yo [G犦ŹK6kg7ޣៅL6k࿉?<㏇.W>!ys6~,U1_w~$> E=nqBc)ҫ%' SrЧOUyʔce%J7nO΋ OQ)s:2xhKZs洫N_|~/xYw ᶹ?_7+xoB5J-| V㏇o|/%ZO"}GZ Oh<|xK6>8?'rf+?jߎ'Ƒ/X;>?|To³{>yKLg>&kzpx#}cMG湥ZZ|@Wş0/3^6uSK[[{ -XvzNh4s*f\x[𯎭o~$|@ōb=3ֿ>O࿉#W4{<'TԬ~"^)5O%ZSx6"Kby~2BÏ0øKHʤv\jB&EUU*9y^6a{5Ï_dž1_ĿԾ"?߳ K>/| .㏇?ď|.}'㏆#:O&|%5S 7$8'o6F oqG-|߳j"zω~+<ψ_>,X񅏄)x)Γ◍]>NXri\֔Nܷf'ޭq?*}W?ҹ%_!lduQ}#UQά56x~?ՔQU*'fu2u?1?VNf>^Ff~֫'5f>cZt~?X֭'5 GXO?j}3Vp?J^?'1_>~_Ugk/$+$}^ėa>Os*((((Nkw'1^O׿?VO+2~?v0^N>R/Aʖc+8((_-~vKOm%fo~+8ۻLּy[P?>$HGXU_2Hk 5M~L>=O:somqia .ԟFo+oVxڜg%׼-h?uM{LXlnNrJ0ӕZ)y%o;aϠ,3y}*}3\2D~5t/x#Oxǖ9dW> |f!coiַaSJum6R_H?0F?, wzeyrО?U^8szGVgϬ=h~> G\w8vS/Ƿ%~ WRHFslN뭵E)ӌn'\iIiԧ5a>U|aݠiyÃB{jm$gRwqIoɿ S8ɦZT% M:j}\r8Zx3<i-,}tA'7߯īXi6xEE(ۛDu氧5g~&쓯a:qigY{$xOCAtG_ <!ScE'g*^t:{̸Iߒ_wIЗެ/y_qcS 8>4'e[GWe~xk?JgJñsG5wwxw_Jj}3^h> ÑsP`yy+Yw}'5aO?^d>`Z_{G}Ru%IcWYBͻ+X͚XNT^>EA2qk_/u~=Ui#%WH6G85i] !c vO+R$:5S"vuC:^[ y\`^s/SmfP58eWxKoGAʼܻwT;1Ƈ EW^8όi%']I~.N7 Ծem|=Q +è>&xNM^ckn#7|_KTk%5 =ͦkL65̖zƾ"뭤xkT{[om|yah_/^M$~ G XO?\^-YU 1)k "AG |X;WXcRanӭFJUWs/yiK˺8#JRMikowgT:u`uQ_x;<8Sx7 l~8yb6^(/A[ݷ)k{6^i $%QQn];v^gVOҮG?_\zxjr|k6xsP[O#>6^yÀwuVrГwME7!vG&SORwM7}y9qmZ?/oqM?cXOuǂ>.Z?BZ{XYsӲV^}'M[ݞrN=ӯSx=}j}3\Zx@ ׂO|7T߁xoKsE k^CFj黾_chҟ% 'I5fwojt~?ՄfǞϋ5%Va I'^R8+N/m:Ԛi7tWSuQhHJ?>TM٩-]_CrkӰrˤ$1?\OJA?9s#ZxoL:RjKOkI,OuQ}#\׏3.:Nh9ӏM|7Gʲ?<9%lUQ^z~ngƾeT`_.BGRﵜ ͵XUsJcrizniNɵʔFTQVcZ?A񷆇侕a>+|.Ŀo MsGK]ޟGO?Vc_^l߇OM5?Z~3;#8߇ϳ=6>IGy|\P3?GcS§_ t~>߽/??|>f)G1 xk.䞃+ s!N__? G-_|/dZx+ޥgυu!Sm_ٚ%n5]R9-ԆMwF]^>N֓,gk}Ϳ>70-6<*Ec * g۸}D7sҰ|Iq^;%5j^EEiWi ۷o}WnixK^|#0JAsogW[ĜlW袊`QEQEQEQE'q?WF;Փ kw'ȿ`տ;r`/`{AiK]cAEUQEcciRjc<<G1_g]?>rWHw}o1_g]?></?3_iQG$}ޟ䃙yw1W.~ me__m?Lhʻ//[Yw1WWm(*{>~ me}E]^+ ɔ|=?2ѢX*}ޟioኾϟhG1WWm+(]+}+ ɔ|=?2ѢX*}ϋኾϟhG1WWm+*}??r$>gz.*{>~ me__m?Lh#//B_|=<}[h^=E'zjSm m=͛˙Ve}?{dBsF8 {QKVKKQvۗkE٥[V̾vkؼ3k$ ެI$%&+ ɕAk1,}qK[|=?2b6&W4S_Iw1WWm(*{>~ me}EX++ ɔ|=?2ѢX*?w1WWm*էs>t_ !g}ZʠԒ@9U;6~ǢH/%eemUK{-*:v܁P4(@;d$>ޕ}6-'GqeX,]y&V3+>R4"9NO>Áp-PKoGAʼ _>|g^:Uc:َ4?.~Z(_4Sp?OKӵ+3Wlm2.N +d[k Qf'Ux$"MZ(i={zlSmo7C}9G߆wym|k0#Kg4=V71g.^ ~(ҢB)$oCMi-]ϗ?qx3 ɟJJ|U]}|[ W|D?mtOL8WTS]ϻϋϗ?qx3 ɟJJ,/9w|~ me}EU og__m?L+ ɕ!3?|=?2b6&W4S]+K>.*y>~ mex#O>XAgO|^.L{|':̉2\O&[iJʷ%?O|Gً˦pեGN^\M v -[/0*y@p[mzz?ኾϟh_h]ܐH(>.*{>~ me__m?Lh?|=?2b6&W4Q_w >.)y>xl|5Іa{7 sJѡ>iV 7V|c?wc0He ~g5urDzΎ~>{Hֽa|!\ [M3-v/AʖzT?_QEPfER5QE() ԁ9$> w?~&6.qԮ|EY񭯇C/NO%YnvRl~~GQE@QEQEQEQEQEQEQEQEQEQEQEQE'q?WF;Փ kw'ȿ`տ;r`/`{AiK]cAI?bhai:^iZxoR4lu-5xKƛ6<jlu~.|EgIfF%$)B1䢾wnmE6Kq|cJ:Fhg-jZMƛxFo ѵ;=CIύGھ$s[kn|YzĚ^?ioÁٹ<𲞿Ŀؿ+8gyV}pfaVf"t>mOV++h ZƉq&|mϧ09!zor$=*Qh%hBTnԤғM%vևQj4y6N+]k~?iOP6x|, R?8nGb~1SGθdcr8ǯ"9&\8J.KY9E}ƫPܲj-ߖTғI]3^b^h?a/^AG',FYAx\;D?({X`=J՘/~x8bz:%]iI^_g'iиWpj/3J2M8qJM:n6z۟|8?nO9 Ex26{ |ƭ.ڝFXOh^ ;=+/t0oa+xEcݥd` Qi7H UȻ}CH7Ђ=1^~2쾜*}j|Ҽ7.g)E(ÖU(x1y;3N%MPOr#X_jZM$da>'ϯZxOzC_${ u#Nz`J[ q s0uyS=dݜmSr:~ZMqI?sKY><8|jpfn]4#=O89>U[+[i&jܩO*R/qweFއ7Oi7#S7Y^w}Ǩ H\}{ze㧻'owKw[UwIiF潭[.?m?x35@pA<'89Ϧ9z  T=A+T}4J--$ѭvԥVNJ7w\f>ez&?fΧW>Wy=oZߥeX8׳v>}jwi[x'*>*3<|Q(>|3}?{;mU}ylrOw'k+14;_+z'|=|nR\ZE.f&\]Y\}o&y<'$n'E&;۷nMOt"jp`f~P%G#ռGx{z&xNVy{֭-]2{ZEr mHu䁼k}k(WFMnsHci!'yᏮ cǧRw(((O|Gً˦}tWzj8Wa/NXF}EWyQEQEQEQEQEQEQEQEQE'q?WF;Փ kw'ȿ`տ;r`/`{AiK]cAEUQEQEQEQEQEQEQEQEQEQEQEQE1^O׿?VO+߻b5We"VLa?}^?-vWq~# |YL+xoL01N SEϕq2ttoK_~?T~د@m]8Hէ,N73G*BOW<3G ;wT 1b;PFG#4?W||m|f\⇈ ~_f? OGß?|ee!g<+MZT燼K?kwNwjW_ղg<)"@wSk Fo#8y+o~68~; G{ }S⏄#'^y{o{:%6zޝkƳgUP1ZqISx\V&XIaЌ_&/#N7Hu5z~XjʤchBL$Nuib"¢jR,?য়|wNK6Gr|;|An7Ɵf x{ SC[}^櫭WPt+eX+q'~~WV ~x~Ia4 |`+.Eiyx⯄ A Xi<9gCuj:gv K|#rgGE߳OzD4Oi^.d>.ovמ1Ѽ/^^xl!5s]_!/K_sVω}[S gӭO|,q>c[\NoO:%ͣ·Vj0ppzROk¤|i+9o~?_ۧӧ^_? ?w|i-WI-gwYƗ}D?xRK4O!Ql[%ï(ek? D|2webAGǿwz|~(MmtZ8|1J-_^Q\HuC?mxy^Z|WJ^L}~G !O@еxfi772<6h/)?11)-دgů >:ϋԵZ헉~xgඟ4K]^XX'Z ]k1KmiZ xcc*4)V _ihT>ҩKǛUNQ8aWȫNeUEll3lUz8ZO5ӥ^Pv|wgo(W 5XcCdo|w #L~ _i353IJr>nޙ f ]M6zW._e'?)nٿo95>_&*'2ׁf? o🉼'uxWE5MKJ4 6򯭼Y~_O6xHԼ|=Dmsz&|_i'>Ȯi[JƗz.Ir%ЫfN%OK ,>" QG7='^JnsR_V5cU9fahTq1~]#*IEFtc j'{/-o?ŸOxR] ÿ?4"5Owޡߌgusaai6Mᛨn"K ($Fּ{k?uk'kxtWD c#5۟?PEC^0D|iYi ^/< yq>'5]{.xWke>,dO~ź߅;mGc-񯈵j^&'cU𶤱]<ܘYp>ܽXcG a5jkfj]Jl?g(Q rG$q*6l~~#̾/ğ%IH--WP4Zލi3^#֋6E} x?NOjzk v'¯#G¯fb_ kw,tOC]v/|;,i5<'? x=|ymh4~2 ~˟u}k?؂;h8> NնiWxVAse5xXպ?هO%~_Z>+E΁EM:M?ş kH/> iG_(5"}>z{[^߻cU>>$>'ρߴϋ>'?X'4}xi"|F/H/~'\?KڕַWO/iQجe<>N<-\NZQ<#s:5p)U^s6ק<ZW=)T\l3UEbj\ԥ:\ No cu|1? aoQOxg+ui:>5ͫkPH6AM"} mo~N ?_:/@g>־xkZ ŧ4߆~4ПVt; >F!t|=/w<]~7axH[gE5'`g҆j4"v>P[;kkuF"LRr5,V/ejZ Z)sUrtK iFujSg{X-IMުqhUQMF=Z΢n75)_ _ ~ƹ2xSxk[Ѽc o.W)#Dx=X<:H|_2XkETmihWw-~߳yai|.|6*@;]+U5$Ҽ;xSOgG.#{Nֿ> |GS>Þ*][MO=/sh,5g3Z&n8ugRxIBkڥYքqeʩVXƽDI<Ijaa.fu*IXJ3RԓrSy4Ѓhqi-g/l|TdZg~ |T-Ke/2?_*mᯂ?_}׋l?x k^}St_)r ooN{ۋ@|o/ǂ_CGǍv%_^._ xcfi[\xJ go,߲&D|Ch jzk\~ Eύe}OL˴x,lU*0֕\-|5⢪eIr[̪epU`8ҫVxZFUxur/"J;兩FyUQT)S'nO3/GWĿ>)Zo]%|g]Yk>&y[_׺wdv.=:vPX3܌dg3zOZz;7>ow^*ľO/S =og  xkJLX ZyM_S.on?Bb}O䀠wbӫu)Bp(KBsUgc)%9'%eӝBZ&+\#*sdܒj&]H+RCF{*# tc׾#߱/|05M%'ui/uxH| m Xi_$}^e_?>&x>4[*PBWˏRin$3fHf0ópmuT[֍᧌|k_|I< @,.n~9|Bm^GӨ^K$V%d캎F0cC4Ҷd> ~2pA_OEUUT߶1͚f_ՙƧq^K/3T*~WID#p2^2vKH]7e`\}h >ےzv'2xg&Ӟ__дIvVQE((k1_?ib_@??Ɵf/.oK'QAQErQ@Q@Q@Q@Q@Q@Q@Q@Q@ }?{dB+i#Zpf_/5o4ܷF *ZE>Rl~~GQE@QEQEQEQEQEQEQEQEQEQEQEQE'q?WF;Փ kw'ȿ`տ;r`/`{AiK]cC}GZ7jE7%i*?W|6~#&yyݜxPIC27a?9ռ1~9x7>/?40Ҿ.E|co?~'|O |\LXC'&{r(g)8\mS8k!WO%ǟh |!⏊$5>%3'WOzY6= M_:?%RRj)FJEuFI]F2jKE{9O5?{ r{,=?f읝kTynT2蟶mĿ>Zp;AwK|bɤ>2W<7\hMurW>ǁ_O|KU~<_xw?EKWl.mO-p̤)+H&@u=_^ sj-;~>7];x-N:x׈|SOUjM{H𭜾ӗ@MF7{ '/ړ7(A/xŸ 4R~iG?iؾ'4';>,37Ğ9O'kiwv~UWiQX 5ץyͶ)ЯRsw>"gyJ14yhtpԌPj4w!_ =J#g= ?!OƏ1 [/Cq-ŽI?i:߉|/۳em'̚5og@@ b#=kWoO|s+Ư_/~ZoS?nU{O٫P|Tks/<{~ӗoQ> xr?F#@a@뀠ڹwY2)ͺp8Z*ZJ2u B~(dJ5.1)W(Ki4pEy#vr_VӯEgE%.WRW*Ov{+ޯ[r{YutFKE{ݽ]wkMz>?Wj}\K];߼u{j{KWcOVEU?ZN^NѓnY;k5}]'/NUKů{O?Vt~?Մfm(7;4ַVmE">դQUGQέ'_ w.bIꑴ/ԝ[[f_^?*] ?*] 5ߥkt[/n>gvUk8T/QT_WEs߫ zYkOM~xVg־a!?fx:+|5Fcɿ#vbskQ@Q@Q@ +?=~_]5P+b#eP ¸3i7uz5S*(@(((((((((;b5WwCx=$k^ÿY> Eۖax;ߗKH*Z (((((((((((((>{Hֽa|!^}?{dB3/gn[# ~^?-"Ak? ¿#ctor?_~'.4? G }H}ջ"0cx~$oڝׅ8bx7F5>gk-* :pr/B^VX O;NUU8=9WjFуکI=l[>fcvNqٿŤQV*}3XnTܪֲ4~{"KKZV\ɮ諭f,~֯'O EZ?+ڶWѵߚ^[^[wM^VӯETi5?EZt~?՘/5MCi\To³#R}V#ZՈֹ^`]?ZNV>i:Vs3Xmm> GWO?j}3XO/[G:*>դQXoIIec_WES\N~}_0lx⾞=p}+ZT_ٯ3|IL? Ľdkh<0DVfU4i7WFcɿ]Ciq HC__N?!QL((?Ɵf/.o1_?ib\O:? bQ] QEQEQEQEQEQEQEQEQE1^O׿?VO+߻b5We"VLa?}^?-vWqQTEPEPEPEPEPEPEPEPEPEPEPEPwCx=$k^ÿY>~>{Hֽa|!\ [M3-v/AʖzT?_'q98^Q|Lii>)5};亴ҼYJ'k [O h.|- n{{X]>dڒw[mWi~g-sO <$yBZL~}׃EĿD&G!{{o z47_J{c++~?Ѯ|7o ^,uxJ]C['nb{wmGo`]I.ேvK%/ jF[EkJ ٣څT*]\AN4umJr앓+˩s*E/-?Icqݗޭ$m_SWOt̯{^=>:s" ¹'b$ݨf~_kOۙDĹ:Xڨ>Я ?Wg~yvz[4f~_koGUqyj?> Я?H-?Wg~rOTpJ_r:E?{x߫ b6s?\~EoT^+cxso܂e,⼯z4zSR NMՒP~iÁ}'ڭGi盨%G4O־?5恡V_iYLnKͯM=Jo..YO¯xn/xC}|?6|%ȍ|M,;8b"i-Ѯthq-#͌JO'_W4Nq+Vruc8eMGWEZF1rReI%zTi:SeI i9lG4U9o{+*# |#r'8Osޗ# x[wWԥg~__cRK{y]5:8oOVSXs!M;{Z_`+3Eo?G0GyY+{(-]I[Et&o~:Z>m3ZO`,|3Eo?G0Gx[~_߰_Qh8Z괚 i}?!iM`,|3Eo?K ssS?{/J},:Γ6~ڮG c:ސ>^6~ Э "`+|2EH"w冯zW'-~Z'?_ zz#<7O Xz' x_( 7B/4^䊇Rw5}'-~χ>ux^m|AH Xy \n6qAo>(M=kZ|%V'5>H++it-BHoxYn+V%]3[t}g^~? 5MI&ں=/yS1Τ:ahb0>Z}3jƩeCgMtڍ"@ wE^aHOzZ׶ͯRVI?g UmsĒ 6Tv%S Eۖax;ߗKH*Z (((((((((((((>{Hֽa|!^}?{dB3/gn[# ~^?-"Ak? ¿#( ( ( ( ( Ap#ʆ )T `2k>Ɵ<{?umv O;xH|Ifť&[ ?L?n涷ҽw][('fYG7G_"+}/P &UU>_ഗkw'à^U:+Gѩ{lsM3ԩw֦#N{TBoj~.O^pGRl~~GQE@QEQEQEQEQEQEQEQEQEQEQEQE!>x=SZdGHsקNx4Tx>L/SWeWٿ+;/Vܹ0]?}{_\? AN]bOEcuQTEPEPEPEPEP~F;Փ }kw'à^|?e\?_w EWqQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@ +?=~_]5P+b#eP ¸3i7uz5S*(@(((((((((;b5WwCx=$k^ÿY> Eۖax;ߗKH*Z ((((((((((() Hu'w4dz<}_ jog :Vi?7% hVz|IEoq4:V_[[ZZOsӾ4>x+ eᇇx[:éiR;;*Nʝ)m܋ZWm?Be8GII'ϰwvF\>>oOi'߇چqqwyx_7=ޒ.. Kq?GBN߀נ~?mx_`뜞!#O|//~idžK\]Jm6]CK ^62]i>iynko6 nqG<> ZՊҩ Bp^ZcMC0RקJLEʳiRHԵҲ*v*[mCQ89=q^ 6N.J4[m]SμۚMm*ߒMv@@ ?X|&~p5O/T~+aA|\=?gK4/<}rxH~HϺ.~^^=|d<.? sӏ{.WrL9_UZ_&g# 6*AF?'XQS}k}z4}+1Q~Ico+<|lru% ߺNwRv_+8D7~o+TIV7~uΛ7<^Ҿߏ< xRzu/ ^Gw7M.^2 ?q3G; K8Ə Ny':*rQLSw2:8< Ib񭫭`T_K}CE| wXN=5.?(״OG?uNQ_4@?O N>?0#G}O3Y}ןzW?_j+YdٓGƟd|A!VQCrLǍ Eۖax;ߗKH*Z (((((((((((w` KxOriqs_]|'^/W>迵Wsz_~xSnިtc)omoB+[exOW*npjbs N Mʤ׻N5ksTvTZ bquIʍ*V5<-^ȾT[3uAx?(qAm,@$X}ο/?#?}GKğh!BƯh&qk'^|[]z[p!u8MEn5ya-&n'77 ߵ[Nmh5/_s"_ƗQJh5{^'Ѕڥ#o-vTq4U8| <]|V Jzt]lnK¢D Z7rQRFjҪ8%5.JrWU0#op:W"tJ[e~<($?d_ O 37+^ᧉd :x e<_5~? |7w,]Bg_w0XKtE)|QYƺ<;ˠQbKNT(Hf*z´1=W..<&3.jS爾`XY[q }9~S/;^$ß?~3G|Mkm>H{owEøozk6VͣiVJL^-U#<~cU)KTUXNܵ!T]IF(b*X\5W:.JaBt/*t?۞8_xaZN '>HO^_χ?P?7ek&7ǿG? x_?mC->i?L(EJ|8jЧ:Ѝ7Z%ZURxnxv,SJş*t$crc׃CVS5g3U=ƭ\#hk=&B~럲ï:5Qx{K׿hk#D~?f=U7|.#xZ|Ssj:V}[L{_C\MmisIN&T0*9a+B诫*^/i8A̝:Xw_>[QIRzuq0 J/}j̬pW?N;u8~Q'3}kW+Nn?6Z [^%{_o8K}gGB↯|Eyg|G_bo3 π_|~>2~߳G|_?}ό?~ FQҾCxL Mºε,m ͪ9:8jnqQZzN1P T_,%̷[iRө:j C/k5oyBLPziI?~RIrO`=>~Gձyxb/u[ۏ |tC0隿U_'u}ǃti~j!߆Kno=@xU_&կ47Wixh(N'^x7>qx]7'?x_ z텦 |zϲgYZBJR:3̡___KXSt/)T߀9'$mxa:9s>x W:K/xs??c?:o߷oLOhχ?4Z3>^GkVֵ%дKۅE焮wOc XO(ƷE |WUitX_W4Ku~MQ4OGjNv>O!_dOoھY<=i jO>ᗉch,~)x iM`B _r?l d ~ǟwx_gzwmomi||MVVw<_⋟h#Yx{[5tNaj):o>X~/ծ{*:8T,Oc b_ͭ^Z|o2}W+QMþxQ^2X׼?Z'qK^i5=e|3+o蚦Ztu`@ }01~^i%+wL+m1%N ܾbF_npU/65^{8g5%c$W3f(((((((O|Gً˦}tWzj8Wa/NXF}EWyQEQEQEQEQEQEQEQEQE!^N~ k%x@Sӊq~uߴ -?Q$|gz_7/iP7kagsu$JT&VnjQWnN/mQl%F#=G_>5QFJ q9Br) 3?inF)֌ZI5+;lu3/];=Zy ~tnO?f>2?*?O?f>2?*^~?Q-?//4}z΍~u4 O`G4 O`Gװq _O@np| 7z|A1/aQ 7z|A1/aQ'AgSG=G_?M'|d ~TM'|d ~T}{ ?}G@T?:7Q 3? 3?^~?Q-?//4}z΍~u4 O`G4 O`Gװq _O@np| 7z|A1/aQ 7z|A1/aQ'AgSG=G_?M'|d ~TM'|d ~T}{ ?}G@T?:7Q 3? 3?^~?Q-?//4}z΍~u4 O`G4 O`Gװq _O@np| 7z|A1/aQ 7z|A1/aQ'AgSG92y5oC|4L(fI ,Tg;v}s*7r ^Wu]|??~hχ+ijjG_S?hCO)uJh)`_$' mo0M_xU4G-p_ >\7S$3۱ɹDEvyɵGx_O(EJ A?h_~ i>/6?PLtfm4hm|G>><"Ҽ_xc )?O%<9G==;P/z/u^w /w/ xPMꋬL|9iս9@ڿk|7ٗ}{?؟uZ]_>/e懫|υ:.|1F}wX/GWg/D':<W+[۶GA;[|B/ΜXY|aaEB5 nz*Sq0u ;<6%98;95yV*ʢq+JU cR7/ξ̓3I(ΛqIiw_|d~ ⦋?e4}jk~CK^:U4&R&ӭ On?K~ҿhߍ2o xÿ֞')cԼ!x'Hм Tn$(k{VvQ^!>;'S7|B<%7EžEbOc1cEm`jG΋߼L:?}'>t{@״ gC4k]SGt}R7Uҵ;gtFxnoh-)R Q(F\TG UFFۂa ҋf.n[VJ|EhOH+a%Z*rI%zKZ3Y)+%p꿳/OڃƿgxO's?05M~o#5[y_Zx[N񇉗^×zΝOuY%̺߳O>73o_ |O~+h}3_~-W.k|,|-x_,M%?jڤ͝^W}b>eREF*x|.Fil61T!Q]»\W)לկ(W*ӔqF:6qRZOGiP~?c?%ߵW~|1 |Q%Lb_5oc~!ujZuqxzx[Þ};_~ҭ'_穃Q`ST4HьrrQR;?r6꧈Ӫ5*)|\ԝYSV;Ni~^KߚW|J-dw ^όW/?7ú|dsMC:υmY$Qo!տGOٗ/7FO~_W'i߱߂UOk7.t_j:~+]+KCB>]>1_t2zS'M5)/g{%8(\*N ʌp"CrSٸ -T'58[oփVm|h/xj߄?q?{|eD~T |wk^'-EUԮf}Gw?>v2xº_U q{v֟piz&?*`҃cQUU(Z VrBUd(w)IUE7ju,4{SNP_e]^׾/ k?{x!|C&x.~];-Úދ^źGA^гD#i?Vyom?-Ix~Fޯ}v{ټ?nP# ͽ\Nm>yah:S(S<&^(.iEũ7N&bZX%*sqllWqmʔ4_|Jn;~9wѾ*|h?Yi: hMskXn_k&?h?e_ m>xW_|gusGĩeiZPO4O}V)[O?iT J."8./ӯ 4pIRЧ5.Y^WNMo8OߋKW:Vmog)E/Ǖ"̺?Q_ڃ?m/h_.~?hK?~&>#qxvP ^&_:-Y쬴{9?J&W?GcM|G:;Ǿ5[XҼ §Mۯk;_1jtxB4(BZJO4jR%7y{7W aiqZ*Χ|ΥJ5b#JN1#4Ys;5m8z zu|U-[NQ?*u?e{KӢ.^?NG/|%xg/C6 MjW%V4q[Y[|f 'PqOxnT*x~?<ʯ~d۵9o(o‘³>k'qGtN;6t>:_ڳaҵ-_^ 7:]jˤZ|3VQmTkE2,l\q͌Js ߁5/ ?o?zU{75x_ᖋqi&1l<#}kIck!ҟPV;ᩊž<5:ZWۛVi1Mz8jB!7BQk+SRh=G_?o8> qTg!׹zM'|d ~UܱF{O? >=GF?:o?c'0^o?c'0^'AgSG=G_?M'|d ~TM'|d ~T}{ ?}G@T?:7Q 3? 3?^~?Q-?//4}z΍~u4 O`G4 O`Gװq _O@np| 7z|A1/aQ 7z|A1/aQ'AgSG=G_?M'|d ~TM'|d ~T}{ ?}G@Tʜw|Gٌ_cG(o$* <@'AvlŘ?B |OƟ?͠\|CK6 +G<)ipF鰫]z -qc1xj8V-]/Rޝ|.N)[}7ߨ\`E:t^9>^.UaSʻ_\._'~TlW:|/>o~^~HnUaQ_'~T(]Wa{Cvʍ>QG*Kߗ_'~TlW:9Wo_|݃>`*OQʻ_WU}NUv7/?$7`*O?ʯ?*ury!U}FUaSv] ?ʯ?*6ʝE/>o~^~HnUaQ_'~T(]Wa{Cvʍ>QG*Kߗ}M!dcP31');N1ӧWawEoJrnrI<8oGĭB/&xy]yiԼ_|6? 'fΏ&Iϋum:ίSi LJ=χӱ6?:N_rPfNRKފӕUq&\s )ٻJ->dy;i6Vx5كvo ?//ľ2|=_^߰7tj$.>xo?b+?k'Kx3Tյ~'5f>QNq O1U6+WVKi F*_ :NҪ^ZnRpVvJ1:u®:Wx#'cl|ssĚkM?cDŽǭ?]X?tχz7om5|Zh_ [mI<9ij? Q9oWIcRP]knB\Ovg\Ob7kߒX,40z%Ri{F1Tuū;Vգ#hqR)khҜ{^j}UZ17~UJ*}W*u?tEZt~?՘/7Iؼ?*TNn?сm:Uf'_t~?E1_iT[O?kj>)Ge:~?W;̸oQm?*u??VӯEs߫K_~Ү'O ʧO}iT*x~?2G?h>)?h/ZM`uL!O 5k}FԍtX7'/Ho"0ƞ <:/%6\Z)Rկӭ[xF=p@QTG} /ȧtO6Wj5WՍFJ~䮤S5/+X.i'?iK[S_D6J2۽ s뜜qK_'~T+v]{$7`*O?ʯ?*uWo_|݃>`*OQʻ_WU}NUv7/?$7`*O?ʯ?*ury!U}FUaSv] ?ʯ?*6ʝE/>o~^~HfF;})YGaSQI.f}:!ߍoX@0ROKE_((((((((((((((((((((((O8'$/=~\x SzgFSٜG' Ӹ c{mI|7v|wZeN 4·ʌC,2A Y"t_L)E9#]\/Mkj7 <_\RZᯋE KKFm E4>xPvK/x?ѵ_UxIPLJ53^ѯ# T..$;5y>? S NjN4g(1ms{;[bp)֔\'Mo'5f>MdMN=OXIs$cﯯֻ#%zJէuJ馆>ΧyrKo³hr9zzw=ڬzmOy =O///?KGb> wj3OmU:]o[Gcp俯BE$OXUQY{f6q=zi0j6no?~%ӧWWNnS@P?p{JFa:ޞ? /P?)5:Oeu}'h_mci)[цs郧{Z拏 }V.tü 啞M~itO':WoZ괚:֓6~ڹܡww\^4t_Ceywi/λu7e8??_wqw}F:UmN'984N!haH#.QqY6Wͮŗh ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ("e9, 68<0H$6+Cm2'T!3P׵>)|Cq j:ܚtdYZ$%}#E&wi6m^xl[+ +|/۠‡Я ?Wg~袕e#`+3Eo?G0G(˲y`+3Eo?G0G(/쯹y_׫>9B?4^|h,?(_r/c`+3Eo?G0G(_r/./_# x[ soG#袗$? _`+|2GH' x_+z)vc'o 3"`/^9Wo_ p-Ӧ>\Bi峐+ѿemÖ)x{XҴ66gNѼi$ka[’0Y$p&I:)o#~KZ2ծ1$",I``L ׮%c!W;FF9LL ( ( ( ( ( ( ( ( ( ( ( ( (?Dd .:9r  s @A?Immagine 5"b8cPJfXa n cPJfXa PNG  IHDR  sRGBgAMA a pHYsodIDATx^keGu ,E0|DLx>80i}~4?Θ1.ll<}Z큱~"[X Hd6B%.`P#nPwJ uB"\y]2>:gs:w^V]Q<~@ @ oE/zPI@ @ cPЇFĚOq@ b*qk0b\1@ @ dBsBN ߬>O @ ^C|@ ؓxdрP݇@ @ {ED @ ̀/!@ ĞDf@n—@ bO@ wߨiИ46!̀|@ [.N iAcÆ̣*2򉻾RcŵxJ}"@ }S_U7؞iИ46!󨊑 ?~Dm|O?}ԉ;'gLM'ND @ ƍ??Ic)>>' a麡>v-S<"3 x`0{}"@ >>IcǟAJeTqǽ:N>ݞqouiW0nL\8asR}krde@ FpyUK!r$/eS49FY'@ ;N'<>mpBes2yn3O<}lWGUdƷ/T緽C׿soVvՅƀVǦ60?1ǯ}/l}|fm 샗K>yَ+1(cz=9;5՟|ѓ8:ڕ@ 1^;>ңw>P_T^Ic#Þ<@+&nS5IkM׏MC;2 o{ƀoW{ZKyS ȭg_ia>lL_}'{6vlh?}Z}Z+zZ<3?#SYΧu͸& +̓u m u$?T @ b:1Q8y|+_1Aes2*€xA ȨQ̽Ԇ7 "׼I|Թ,h@>S ϟb8o>ߠ|;W7 !Nm?qg.>~\ϼ׏m#OW6goV?0?/gNk1IY˺Fi@ 1 /'kP -46σ}BQ(>o]_ea;!9,w[O2 gw o@~k7ow?ƀ8q"ַr+Yn}Wph#rcϼ?[DgC/uB$ 璾(OUW痖kZ5΀o@ 1 k\$瞁AJe顱yt,yG ;O~?ꠟ<<*%W ϣ*2VƄȐ;/_c;TsFx+5[;wޢm b[vԍZE&s.\YBteC (1 3gW׀G:'aMa@_CC N>ynQzPPR{4&<>u!O]=6,2y_qm>_ӷSQvk=R ????e?wowV7o]_.]|7VU6\(:nErN['3mu\u9gơcnբד}9ƐW䍬Bi2n#-ϟZN@ ]N?8Ӡ1iqÅxݕO#;!̀|ˏƛ.2f*.|_WU>G ۜ@?#w#@ Z$z4hLy|zQwzGu=*:|ل;&̀yk3>WFq<>GyxmSs@ ?QZ~mAcM2 >{Uu&n> ߏ̣*2rWи_{}t@ qɻnTߞiИ46!̀o"@ Oz_h}eИ46!̀|o!@ ĞDn@O @ Df@?#@ ĞD0 Z@ Y%J<y@@A D(y @L@A D(y @L@A D(y @L@A D(y @L@A D(y @L@A D(y @L@A D(y WՈ k:()^%JbO bXJ< Hd@}%JA2A >%OAҠ~L7h=ljR_ DSP4(tnz P)(d@nRVԾ XܴP7\TW]}pEİP}j*6Ԛ~꿭[ҫn/w7W v>fzg><~ǩK  ZAG?QsTx!bRˣa@OSP4Ā+'>V^ۧn?Òp! ]a\n15%A+?穟zCۧ~J Uwߪn ͪ[?Sm$$#cRl5E}|;QyӛVjANOAgguzހ!.sn'+7Iip,6=}?hILGjIuk =5#D טڧ/8kD[ofė)uc71hoٓ ۗYו84טhQJO:gw]L5/xySO sd=:xm*>a%9.M 5_=LG2%9jR`ATQ0 /_}п$m+O1X1l ?˾&P/Qm[\)9?'>{c[t51^@  ??Tǎ3ɔ|31u HUm,@#\&JbDlwAf4'#lb[쓋 U`D*4DT 5- xfVϓO`-Nn kz-XI!䘱>FD՚" >}{L'V&!a {jw]ub Fy WbN rPG!,< H A7%tcHܹi.ad:±¿2sRiêYN^BOP:gn\=zڇ\0 _2:|~#)ﯿ~4}}F'aN8VkTĠ(s(y ?AjXjM8HC]a.ꨳ~ul|~xz_utn:ar/}^.u>':Yl3NE)(`@UB k:~T)b'J}M7B^^,yi|L]y:xp~ Hu0 ӡ)(`@UB k:~T)bqlZ_OGM.RK|+ӄb< HJ,cMǏ5E  r0-M/3]{WZ[tν/8yǶ]}k~w?ߝ-IPةLk2`2R{b@tQZS1,Ԓ -E7$ދ?ss ǩkgS}JLjWE[M9h햑A r`9h@䶫,MC.SV Pݳ|_>>0 5}Qry@  2 Vz1# d!mMFb6tOGtT>1"%OA@ i0ltC {+s/P/.!_U_4 C5x; H0 (A)w<f_>$7z~u}q:U9{}}zwԿXKM)(`@Qg@8p7:ksLb@n E< ;3 szZ(Q0 b >c+=?ͻ?ӜԞƕδı k*,׆yV7(gF`@A c0O@HD ,xcd(ei`0 ħ >S P kԱF*5>1ҹVIh~(h %OA@ Ǝa HD6cЎĻo/ ۂ5Tl~Iq+'W8E< ;3 |O 5LLO>^vPGV!"7LJ̼ڂUn<=r @[(y 1v k@6##a`ۍڀwLXMCs|혡3OGU{~\焗A cGA>`@4A c Hs@(y 1v4'`@4A c Hsd:ݾ; {2hNoە`(y 1vE4'JhQ+]ť}S"S0 (UWXdJ@ E~wඦ~7nZ'#VU3OTx˷KzECct{&`Լ$^O0]G+庱@)y @L%eylm#J3N8G}~#c۰=ddQyc=0o8@ ./_ DSP|tF|À37'?0 &)(`@c=>60)%OA2gvww'?0 &)(e@AΏK=_ÿ~ޣG[բ9裏O MVԏ>NO|ue] XS7L60)%OA<y],yG' 9aٗA aV`@,î60)%OA2gz! 2B р[<E+ 7yX;?ג>潿~{z@l egSN_TGWm!y'(.w:يEa H_܏{z~h~2FSXϪ ?ϧm:߯5๋&Ky{64yzKSwp<K5W &A TPSX!QHt۷qB[ {#32|046,b&Q)B]PҌ2G|s&5 y@  {z/(y =7 O=owW7==[uοY}=|6 /TJZ7 '+ߥdz]OD>SO=>u_wǗ:~UG{q?͏5Sn_="Pi}J1=ߝr>wgˏ߻s3Acw19.+seMS?Kbs쯺eLۀfѶW4JB'|j'-kAXzm_ǒnj~P_xW;\ UmOqyɻ~f%1F|_._xT]ua^uVԏk.?zOtz$;׹Kz8[]zs׎lԟ6- 61$uyi>7|Y+'st2a8N)ϴ8zu{,=UgvR\M=n܊;N}@sh'{x ?xQ;;;Ѷ?"t/?@ӧDm90 )[GΊO_*ݰ6oԑ(/NL`Vz7kGu}/|Zts@u|•}~z͹V@n=_ϾMqJ0 v8h7$r5#t5HS~8zZF!yGܧy }V/|ڹj|BB¿\ܪI֣{6  DM&qh۟o c:j{ڏĭ1A_ЄyU4Iq4|0Og:WErerl!muӺstA Hm"qy%lrm>rzܹ ymJD>ow|gaSR υD;;ٶ9?G9'XVݞoQemw'JKTe6 w}7@ Zi?|تؾ̉W{ۯ.)WޮL:{bu}{2og6:2-eT{ST6ԓw[}G~׏ub| zS+].TiZ}ɱݹ4=??&~,14Xs̀KJ9~}7Q^ _˜Ü6  HEL|  2 7 !HH.1)67D1 ̨e࢝f/{Ě)u,9ѼszakVtXa]-};+Ʃ^ڞ6\D,% ,Wo+]_usS{QLۀREՓ)#Sd|IwŹІSX9:^wx1y"i2G^z~D#?POLw?Αe)u~/Qwknw]֏># X)M_ &}rXtՔir_rl^.-lߢm,?MC$aroMZmb15sJ5WWڹ'=́0 ҿ@%vvvǛ_j}pa Ȁ=C-qiu%~pa ȀKN_N_6=ӗVBA,Rloo77`@i{u3_rq;]hq{c{/~o85Wԡ*ruԭ7CN_~@?L7Gmt%)w^yӵ;f HA_^G 'O,G ,پ"m:Ts:>ű+Y C9+1 A* ?垀W~ b@~̾}r߯ĭ)丞C9M\20 9yhKs=D[Ü%5 |L(a^nނd?mj'8KO[a@yɑ/(mpӀ afdĚ[e/O_N>_ay#QOd9[Rvf紗D +$ZŭCq~+H 3%巻$"k"('fK#~k.q$ۍxNXzާmL·.U9ti/3 p7 wgUJC׾֦ikWf@xzaa@ǵž=¯'7ܧvz9_/WZIҏul^6W:~~ck9O$gc0>Ki@=Y0Bc\oN#KK <}LɀX Nd& %#H BɉO!LA`9 3qD/3uϧd xߌ0g[La2fL)L} yT_ n9>E ܸ0P{cb]ٞr>ٚ'6o4x}3/`s)aY13Thf) 4 )d*eK\0 ְ'P,XCjxH"}DB&8L1٦FIA뿍va~U~t2cu] nh{睯OΙBr)$g!MQ)@+Fa9 WUOK :nȱ 4\`y#V"?A\F\-'SRhKdQg3R䈾 4l-ɝ֟:X*t^+̱p s y0)rΌU5!y 4 /ۚALô椰~Qo4 4qGà)z/.ۣ8?>F/o@Dat9V`cɛ(vBl IbEþMArmͱƈ6>RLs[XW*6=Y$B 9q|ط)Ae&wFr O.r2ճhr+_oYt \|=ហqV/FK=/wx&gb VϷ^:8u4P>9g XFƹq0꽸0oJ^ /o")Hn =J8D&&;%Wc3Eɴ7Q* aDVtO+q]+4!݀Fȇ>ټzļbi_\P_BnX+֮6O'ɣYO=|d0׵u)W'_B?D۝3sus6,7>I um~лݸv]9~5OF8d}P:Q;gc XFƹq0꽸/DY ީ0_ ׫u޿.LIUaQ,=sIn>vf1qGà)z/€IB#|=,|b ͋=}hdNPτ“c JOuQ,wWԈZ\:^ ANȫ3y~=uD5XUGvi6+[*0v֑u4;jmP&@y5QE1_h~Kɸ`@h{d{ Hu HwznKq_ut' ~C ȶut' g!#' }=dq0 Α--N̯ t $;C0kzag*crN`gs-16]c|/€ D{bрi6ҀP9Ûmrƈ~~؂:!}^4?nVxC<ك5s^(c@@ ۇHҷn Dilیv Gr}-C&p܎mpΧm:~6 tzl,}"?Yp \^n@d_hylAwĖ)v~Zzk١ 06Ҁ'#^כ_p_ko﹞/'6 f|oI֛P~' @Og=)}c61‰~ܾğ6' {F1 ;?rU(}pJkDq [|]mh̨zjg@T֋^+^)gT裆/שOM8znj8$l}͏:}͏s6aqkRcg*3=NܼZ[I~CI!yj獟 ʯ'[F@99l-L1qFa@&h2~ڊDeMECCm`'X +K.EFӇ**3vɅɜփks~|1m}1u^4n h VW{]ʴ6D~v0 \lb|cTh&NOO֭\/ jaoX'h}N6w!5ɘb.V qnpX!EΉ6N-, ׈rlN4Vf3 ug9z @[i1 'i`D H-7` x #ǥf[ؚl>45kcR-aaʶ\IڹekH翧(Dx%|b6 H⚄܈ R⚵ElLc,S[єXTO1$˙J`@`@d4ހi5l'N|6ĴϓͶݬ,Ep,[\XИ=Y$R_=UaǫrS׋Jzl^G^Oצd@A}{X23a4~oX=3 Fpw|!/;v:W8.WWNí\ ɿɟ*9cҖ.kq4~ǩ9E8rB `))Fy$/)|u]#műMPُss_Uukf[Qc@jgyP׋ֿ؏̌i@42uyXT]c@/ XDA^c@FcoKb}AľFk֯hџ\mL"w~ /h|̛yBǐ2O q܏5h ދ0 k J3f]' `*s?נ)z/€ VT+vOեuhRJb^1 Kj@N^u3Y=Ĩ7CT36CU@ǵ[ ^o:o s9~ޙnt4JSn:Tkr)hkm8@#1|h$ΰvw8ZL.)7. 6ZLǑl79%cyB׷19T Х̀y߀yV)I\2[^zaR {^<8gs1j`Cf| ^k% H?cԝy\u;g Iv>Fkˍ~ a_@k@4)F1F|Qg@S ϴ 1qț(vBl% _t8eU.ؒ~>%D&u6S0 %AKڀ:۾MbܩNi1CۛuBE[ ,ο0P_a {"̨^U_ûr˯+ϻ@B8LnN /60K@S~= ¨" }Utz =aȷE5 7 Qch7Q*“ه/Ĩ% )3.'}Pcm[}ӗce)hY·FTl1{Ips0oS\Mrxms]eg[WF,ypz=A㰭^8zN_3[B6Lb?o9~uph>|.s" s?Ma{q h(Χ7;џTa[g@b+ձ}jEDb(Cq\[ѕn?!hu^BF'TtB!dJ2cy}qA' aX>$B~f=\_uL_=| mw͑۰bk''Ե}b_Bvvuuo >qADğE 0 `~= ¨PD%"xZNE>66J^%taʧLb 뾈`UQoTweqMq&66֮+C0*vΣދ0 cH,%nK$FyBbO3`C"SE b@0MuԊON N{3#hY~7_j;Uq$ytz#oys?:V:XTZYUkN'M ;js-ϳ@#$\E-jcz/€B[J}@;' `@M_uHVDۀй' EtO@ts%5{Raqk͵ٙMRG:ZOvOՉ9Z Ȏs&wz] >QEA7hO,0 sF (qx0,zCO'؂58a˫ t\x3ҘK~߂55 tΣދ0 | anmepkHx&[~$o Ԝ}h@*zSeގ7NG#2D}Ui^v :]n@MW#K}vz:jmL]shays2h|X/T$[x]Oϋ܀ \ -@XD7l[u~Xv58-݈2ۍ(5ѣ+\M |mӍ!96rnqz-=}2oǞo7zܪV)î}Ҁ́) ѣ1WTft }8Gm:G`sjg@\4F#G&~M8DO/01e)Sڦ9$e ] W)C'S`"5J(K:l~<=ֻɍ7Η]~bTW1q2⿍꓉ L.o'^p#\+  00Ƀ 0⟒}ẗp6_0\@"gDXg1/SW_ߡ߻(cИ_v0L\Cn/1{9Àh53 L42Np1\BX$ngIxdxs&rg} $8#΁קsi.$(}X;>ٖs)IǪuhR0L8{6 '7:jk"bE?1aON{k@ 4ހ8AL HiBd☎kd7-R>wS,K\L K@T2 LE4,*zy r!0(=}" E7#9WX{r\ϡY &ch6i@N^-XM5 s)=p V3 Ƞ?0 90 lӀIG4ڤ\fi9Sb۲e!sG)hkm8@#1|h$ΰvw8ZL.)7. 6ZLǑl79%cyB׷19T Х̀y߀yV)I\2[^zaR {^<8gs1j`Cf| ^k% H?cԝy\u3}儦/0 |̀am<}3œm1Y]T10e'C?TNQ}-ad^hp{@Y-we{N@gk M캚:l痚aΥgyGP H 44 uO@0XM h>-O?lXC"͎5$o' ^E"ŻX%A%VE?9Lqt'bMˆD_y؇{8?t>lar:Rf̈xZ΋`z`bMk¼丬L}2epb׻-Xe;_x՝3$g;jٵFSX? Hΰ/C RWr`Zv܀Xvry#oT d/|OsW`KIxLm".9jl27 '[ar:Ǩmo*ֵ m s,\8C}9n5Li3zUa v-$B~f=\_uL_=| mw͑۰bk''Ե}b_Bvvuuo >qADğE 0 `~= ¨RPf<\d- Vx"Xkx%\_fKyz0S&1Vu_DDdfǼSݑ̖qǥw6UwsP[8 è9z/€IB#|=,|b ͋=}hdNPτ“c JOuQ,wWT4}`Q+>9-;h ofXTwMp%s?:V:XTZYUkN'M ;js-ϳ@#$\E-jcz/€Bj'q-㉾ޠ5n[m Ϻ@2w"z/7} "}[:d:?oBfB⟀?Z o@ϕPנ JqYV,)w6fgBv6՚kwKh~>==W'l@h-6O' ;6*CaBkꩣ{tGa@@D=h-fM[ =b ְכ܏3I,27ags=Hc/u~ sրZX9z/€h1 Nh:$m!l1ۓ'Ss>cvlMGy;v܌׳:=daWy5v6q^x/iVqϯŶ1u5}Is Ƞ9aS!S(lu?=/vrBp5kca;ްՇoߚbзfF?t#ԇ3n7Fr52N7HŻ9mзTG!˼{cs&[viІoHR7Vԧ4 G\S-tli9{͟@suj >j7$AO>HOk搔e$t]'4^JΟGOl ?n<+4/=^jf`d>[&7v\;_vyQ]= 6ګO&0傻 x "p0 V0 6&ÈJRM1#<\p: kDvbżL]}}~4sBcF|ٙ$g0E.s ylƈNW π0Ȅ;pYL aIeMmfe/y8. ISG9/gIs9S5ih V+Ԡה &d9P{kB}$4kGrn2bwQZ >`)5vO31]5/zg01Xx籽%WL\Ors-_M9-l֗Ýe>_BM?z0 ZM T(N#bE'ڶekOkKM /Zs1tNF.r0FQNshە;#齕8>3sI^۩O2 q~szki L]_2 Ɋo݃x>3C2߂ `a dǴmp,U='[(Os0s[la<'S,sBtn B;G?ɀDL.|M^tNf:lvM9DkdL D=h4߀[ 70bGz mrls:3u sF_uFsdl~Nd@P~nqAxNz-3Tkp/3W&7Ο oX"PtBFkx\jS} 5dq.?=Jџ>V+l+R.4/Qsh6x2%Q,mNMx` ܂18^}d~\_-H? L0}2J;DQE,&/]bg܏Dߗo;29K{+MU/7ަb02Q4×S?tŶr<=Ib1Ҁ MQ)@+FaI iuً^ze'ݩ~&:Zܞyj4\{q\wffqJ\6uk͐ӗPg"an9;QF}-lwxt{)3?{ שϼRsЀRu7ÀIfRm)+f82c~5 nMO' ʙ5h:Ɂfb֓ (a^nނd?mj'8KO[a@yɁfb`ecר^ttj?gڹTŷ'd1(1 ɾ`qP܆ 4gpF +@I@.a;=o>z oٯŤrp;!yp>iE|v#S2|l/t}KU`@|] H?g ȝlĵ/)aޯwXq-e~s6)v~3}儦/0 |̀am<}3œm1Y]T10e'C?TNQ}-ad^hp{@Y-we{N@gk M캚:l痚aΥgyGP H 4%6 i O! pc+Nۃflj s$cy3+!Hdx70$Ъ'1ns6DAtRo]_+]7pWu>#睝·5LTG x݌OKyѿLOL[I\MOf Xz]lzWC=;yﯺslCmt9ܨy ǀvDbTJ} QXbž\pF0 ΀#cӒ&lGD {'[OҧЖģf $hq}U]gוix?Z ;)??Fuh{?VUh Vcq|!F-QHQQt91,ڦkhS,+KA45*}bS٣O2 ̏}+2Tjrk$k"/S=;6 غ֘5J`υK mbĹszɍgrk-`|k땭C^GssQed0h ދ0 0!lJ%K܁L$q2tm&JCA:܊t aE=zEF0> 'W2_[# t>K] kɷ$y3ǕO ;erKhӠvfn7߆ާT[oz.;ǯ~ɈG_'j'l,8#aFԀ:& -#E`w*A Wj>x/ S>ecUXE 0 MMv}n۽}CSݑ̖qǥw6UwsP[8 è9z/€IB#|=,|b ͋=}hdNPτ“c JOuQ,wWT4}`Q+>9-;h ofXTwMp>`qQڦtBȪZsb=ehOQkqm|u 7wG1'* _bxB}oP*5s?byMq]6;X[HG :1gBky=ѷـUz#ZVOݣ <2&B Edh7#΀4oނEOp[5 ޴~=Lby55a;qoF}ɯ[ðdv’y{@qB;l!M n{ dˏٞd8A He[o <۱f=y$[*ˮAG j{O.^Cu~~]-k7; 6O{n@́ BdKy~_ ہH>|ּЏˮ7|7Q>\q尦6zteUߗ閡t1D:F.͹8No:Yؓ-FϜ[}5*E}صO6xC9>9z4* Ռncsw׷OsMQul|0 Z ShįQ 'џz7,EzJ]4, :*EtWv$>bX| `l@d1wq^IyRU/5 z0O9ɉ`o `!'})4 ARLq-}L&ԵY[nyi~WB^_s:}0 t7rϞEۮ$޹1Oā5 wnNNՓ@O\K̯aזIMf@HLV|;@u?$_7TP [~H&[<<'>}o fQo9ܥDy{؂e s9ze:sm'Q=I%`rs<}ns2k.ygk'-X#t0 `b&B E4ݾ ?K5msfkݟu6[4V*眾;6bޟ&cs:\%bJ/Ku *uj`Km_ss<q2 q,mH||E~b$q.em6/_]u@ c0f'$7"0ƗŹ5}_&,[W }.x.5sH֪zw=3;!sѴـz€E4,*u>d4by&i[ NM96`qפ20_ëRkЯ'܏sDtTĔh_a[פr1ا|)JC)Ee6߀@/osDn"徧o@€Мl'k8BZnA зo`Q)'z/€ e6ـ|g<#r6כy/Ck3tzSp~\?%_]iBz/65 QE9VT+vOեuhRJb^1 Kj@nUy:J].;K̨7CT36CU@ǵ[ ^o:o s9~ޙnt4JSnaKkwHs%Oyfe@ dL2C o+O' U_1ù!o+oqkz=9PάDױ H 4 dL!rۃ`5ـ|A[j@ NSj{fA`@r`@RrרiAS'?;8v:]M^L4VH[6V> 4ogXJow Iy F;EEPN~ ~-&mGG cI-]&H񜒱Oc{ۘ]zs^f@y(,O31g$ӌiqH۸8GDb+^ .#r))%2񨳙) D\rD_DuenONuJϏQUk:/ڂXfq9r<k9gF[~]yʗmMƠuapsRX?ƨ鷁Y8#aFԀ8sLmov,2(}F!ڸKDbKOXf((m bCmo5Fo)O_ee rRQ'z_cǾO*s55cxEt㗩@Sl]zk[% öz1\9}yo 39[b|5!9(@`@22{4Qť5 $ gd:qClEcfd!oT 1È8.έJVH/Wi B?!}y%cy<ҾL瓿UݰV]mi|[OG!?z\D`kS&W߯O~; jgȏymXn}Je͓>m/wqbs:7kq|uv" s?Ma{q b<\d- Vx"Xkx%\_fKyz0S&1Vu_D"}msno ǹq7m!;9Ga@@$XJIv1VŞ>2N{'gBIޱD?:(@ŀ+^[kmtl-;^jI9{]y!i!X5~L쪭#f̵Ekk3FdwKYkK1(鲻uD9Ñ䲪l:G_#RO6"޿0 c)ZPϸDmoP-s6g]n;oX{BuUd[:h oZdoL Gm:ݟ܏IM6xDU+^ḡu!aѦ}{BO4ˀXֻ #] 9>Q_A7hO,0 3 cX'g"52"?qr@q7l!K»- NĦbc- 3uČڙx_n̤;Ƽu1(4%c< 9صXa-qckCEX$[Tm^jc9e oKgw%DKܒDsۃzq;8qݏSϯm;um{ت>?N$aUИf, ,քmLZyk!Z=S€59-q*9zƌsE^=G-m#ph53 NHZaϷy1 OǾ<?p폛 acrgFwɝʹ53T.~M!\?٘G9 aBsQԳ4?9 DbB!3\a@BuzM >zFnܘ(_ IݬC4$ݮY[.oιQtn8}(mkLw ⒇^QTRlSAl[asb c@jD{<'Ն ~~ɈnIsuı98tԬs 0 ZM  Kc, ôb0w$U"Wԫ2xU=E45?fx!O9Kc[5q2 Q[1,5-Xi34 L&$BJl\lS /m?>7&Rr͚GotLuh [j"sĘPDC4ހU6qO}2IǵPm'3Ƀ#[6 0D)lcgf_:^_Pg.)Dj.\0VS0 O2 i?cĈȊ_+.)Bc(f),5˕s#|?y_u0$7 tL{\QG{tN .2S6kL9zR4 Qգ:z扴X`@'z3`D;: r KG*ϟ1D2[lߔsh0 h0 h0 h0 h2 @3F1b0{4,#0 h50 `m@Uݾ2ݮ'uv6v]M쪭 5a@e1 WݕQmwh\{IUbsyhjδuwtnuLn@)$Kz[=uT['Ts39ydDG9_2$0 ZM {Fo057;3!x_:¹0ߊu_ό!EtQT3XhHm"\[J&ϟ˜M\ƚ{\BmplIid(-1]1b67 x+'']=+xe!| Hl?|kLjq?< ܼ4X OK5}_be ȷGS?͔iy?`@YI1*>y(h2  F F F F F1+R-.72tm:N' 'TD Y^>M)cG_ 9M0 Z e &H `ɯ7 YwDZk@j뎂}SzzCwl{^0-X)`Z€h51 ֐Pv[x' R l1mW!0c=f: 3ܘI=wLy0c8l2bZKLg Mў&ɬ/ g9irMwq qҨLd@Hp-K$1}(-<N|ch 7ۤ[x[_edh E~/˅9k :U>N4>q*wTu[ޒmbkliC կh!=ms1uKO5 #zF:"f~D݉M+7AX;JR'Vce#}y' &K➗ nl̯np#҅̀-yCת4WcBXND5y&55fdpdc 36""Bs)jjxNɺ>mh~lDMۈ VxbfW 5)ķ)H"nM۲EpDA%RxS'i}jBȟr ˘)sv^!%OZm DgS$m##2oH9-XTb:'ئdۧrPsny[H~Gmtڀ`}yYøxy-h@vw7OƪƨM V|ℱa+3 F(/ht"i.Lb@4fΡ_a~88 nl6s\&;' qTk@4FԲ\9+-+s6Ə)?Bݒp;W&&ׅ9ӸҀغىu/z]fĵY:O@= X~ŵ0 Z| hd`H>I=q%bu9߂5鵝؀,,dfeHgOrse E1O@ӧ!S@io\ڭEJ=rH4VSMk d dh 4@k ` VdsQpF]h}| ;%~:ՃШ|KT;Է\!YI1*>y(h2  F F F F F1+R-.؀PPnZ2>pO@vTV`@wY~]fX29.Syb><WmT!|"ic64u*RmHH>S ]VN6yoܪWo|uN:^\P=i@|/@kgDFnp>]~z(?0 ~g@d’ToRsQ>5uXy'I]'n=u碸\|8q/sO/[Sц˼ 5wkܝ TU#||f8_ߴߨݤn!PyAy=ԷľyI Cj& [[y>1唘jyr^8c웠c4̰:lJ͏;WAyp@Ye.~>]6l<=π`{ȏIb= ksu͖*zasI>3ӧu]V^ϫG ss4STq"_;/20NOddbuչ>h}K ɺkU˔m[tie&7FybWs ZyZW1c1D>y=!ҙ9kq΄'ŵ(W7[ԫ_л]c>pE΀sLQ++< V32RDK##>q'5 `D`M$HNdO @h֏@n@=h-dǞnj30 |BHL-"0 ZM 7I{ꚻ܁ۂ߮8{G2WzL¤dgsMM Z^L忻uDul]WԑUPiL}hhV-J(eU1 ubiΫ3_296}̐!!䍆잀 5eU: !ECdз*!qbm@OR33!jH }{BOLj@UQG{̀MO' 'Ns00 Z !<b ְd\GƏaS5`@1 V%&e/Z볣6 kX2Ok5jc@`&i"xv߸SjfdmWRQQ=f:oO(~)o?.V>)~zvݮh+H6!g`@غҸO\9ekaK֬ץO՜c`S|i0MB:-5V㏓tO|]Ӿ ?|UB[D_j@HػF a/]5c2;nb6ܪW8_v8uy1 ϟOpM9nxeHsZ V3?씦1AZlO9B5At3W'}y4s~lw\“4&a|9Ƙp@ `8Me3́Ĭ ?O ^?9\w;k`Ww)2R_VJQoIs`u|cًz.6T0/5`s,Kcd޶k4|6*Wb]Mh$v-8_[vcx3mLK\ۊ{ V3?\\\[1W^֔)⛕`'ܱ$Dgh@pTn횵(!yY>11Ʃb92Ox 7 APڈ Ti@ְ؉`u{΅IB>]OƧ58!E<+uaKlh\9EEy04zgݺ;(7嗬[au?tԬ@i1" aiQco&~b@WxbSג B ·3 ` yY>1g2WnO 6_ Q4fڋp/p7gʙp&CSi@ uhABߞlL;2=Zm@) ue9R}K+ԫ@i1־PARLqmN|i"1 v$O]&sR!/Ex})۩t݀yzĀ A:AϵKl|k/\+/{1 n L̀ O9HL&,'2 DCvŀSgį5]l ilzԷ}q=7zON;kuO/簱Ik7sTΡy"pݪjo@Hv0LO!ؓjw\ן%8X(RĆcdD(1XN-Z%!K}Q'CbLC#Hې=_]Wu!y[7uSo};]We˞怨W䟮?:UX `@W֛Sap>aml)99& ĈL ~ oѦ(-XyV4߀=񍾉aHdSiaiL HHQ1 Fc ) &oz:s5w#r5 H?W'UCfhRJb^1 0 Ŭ QbQbQbQbQʀ~ 1Rļb`@4Y8#a`@6e4~Wu󔙖Wh[jccK"XL`@e1 ʞY+{:@s]i\UvVVVltzĵ܀쪭#!#~ڤNfgS5[Yk1S@ l@|~=!កl ƨhRuDu8a5 FG;jsM N_a@dJLDQCtd0 ;kp[f`@vԑ-X V3Wݕ4Egoɶ7㦮~K|DŽs|l=O8F$V1cl(uc5a4qKslKVqmݹ~=1<>Tלv1sctuOn<܍;;zzD6'>Um:Z+k}Z}:ޠ'o2Gzjvܵ } djg@rҊH/FRa$ gNr%8&@<. D* Ɩ.> VxbjWLD'W꓉_:^)%%\zR`~΀Q_ٌ M<"_σ;7̸E|ϗѕ͜Da>~Ng` B^k~MÀmQƀp/ XLǀ+~;&قG ȉ̬E@i2\-ELQ#5rci>FW ! A9.o37ϑu;z -R4 TsM^Bˌ`umΥgĊK̂>^BـPurҀ MQ)@+F@0`@4 Xl`@4 Xl`@4 Xl`@4 Xl`@4YoqA RW F1K@S~=  Vf`@64~WusKwMSm@Y4Do^'먕>[&O;WUW]ߧN} IǢ8_`@@j`@fLVP2 v?(2 wy6f`@2sE3 u g@y:2]|^,z mY0 h51 Noi;%-_<gsv l~/50 h53 Z:ujEֈS`BXW* mgNr.׿Mun2LYe7$}OsqF-˙*YS}_6czycW}},|p h30 Z Lr?oZ6=$҅.S 6LD\7% ,{t.f\Dupw$ۿ /1/^kP2skjn@/rN#r֌d@* Υƀu&#Dn1`ojo@H^A⛎ksӶ|~1e>3+gCλύE\պS|\Խ-s<ݗKref 15/0 h57 *ń:#U[JB[axSB%s}tq̤:s׀ H5n0 h51 !i7Cd4 V|"#@n@v~[٬m@iٽJ7Qp;0"0~[6Ҁ MQ)@+F@0`@4 Xl`@4 Xl`@4 Xl`@4 Xl`@4YoqA RW F1K@S~=  Vf`@fvU}n%=mBsm@YﮨnӔo8UVVltD/'eJ`J̀Ø_c۲͵~vTߗaδ6IgkcRԄv|m@e.g.b İP~ 8!eFAjrn/`u1>xrlgU~]wVk@IL @i1*`v,-#EuBA{a@m>e+IyVI[`h57 FvUO Z.A8SLqmN|ZbږOb@mb)sƀ>x==t _WZ$ŢirbY Vc_I׻64߀BmU bGz =S<!h'gI_Bn8Y*7׀csk5l h30 Z| hd&`H9Som:߂ V|B߬C.|ӧ 6{*mM:?!j0 h5M6 ~[Ҹߞ7 0 h54 DbTJ} Q(fe@bR/W&A?]J{GSPȘԀ|Ϩ r@  2V7Q0 2(WZ fXz6uM:5%OA =]`gX FҞZ.ֳ l@iO`gXy6Q'ֳ l<(k@nPVV\~sS a߆)9NcTI&]7N=gߨ_N+Uft\DaSsgOO7wzo/Gbo~/{Wߩ*[(m@S';wӆ> d@h:?n|eg6t_cwwʊzzkH4πu " Ⱦ?:e7ԯ" FlrPy&~&oh2\9~}Ro;yz]ju0 dBfehĦvu g@,1"#5 yy@hPWӎSq=<#1 T[,i>mh@gǍ:Ȁ_nOo%󝿢Mja MVpCW=]R}6dt}J:l;\s2f@hկp:/Po'SS܀qܳS䭿OGN^g9m.u/<͜{W9yŽ>__vw}(`@4Ӛn@`[h-f.yɞbFqi@cSL!&3 <$&@_'ΟBX [% J0X\9 b3B4sl2;ĴXD Hj:`<+cF|ڭ܀pS@&W;ruo~}>rʷfBxg͇i87"!ڛ(o@(s[0My_=ه7Ѐxӎ ݒ%LB0Inc̋b- Fڀ'q/KWc("]7No۶9l"8 ]g&R L0*/Qoc'*{0 E L۱Sa H_j,Jv*>5 %žrP?c<<Ϋ"d@4Hb֬}UDrobO=Am3 nbgC F bL(ۂkrNa_k"KCoz-`|؂zGa c1̯0sBezR9xP"lJ{;:H0/'?F4(m<_ljƏ~ۓ= oP|ɥrϷaEX'dԞXn<eyh)<ݿ b}n%tcH91a [ g 6 n1V8FmX̰Qh5 k@-Z{˽ֳ l<(`@& E l<(`@& E l<(`@Xz6uMh0 hv5%OA cR<  R0 2`@LJSPȀ0)%OA <  R0 2`@LJSPȀ0)%OA <  R0 2`@LJSPȀ0)%OA <  R0 2`@LJSPȀaX>J@  rR0 2m@^W@..ISPh.'%OA 'TykԩSLyP'vܕb~ԝXhT_|s͜?=Ks>ܼ5H]\pmrתɟT/x LO*'T$'bčwy{`@6~W\`@tO~R=Wys 7`UdZM>|o%)(`@d4ɀ=e6`@)(`@d4ŀ|_V?3?^S&ng?[e F۳d'H8#BT :E>!3a&ŏqC̓}N5$7KAxV0yv^N⻣H?ƳW؃z_Tң~/*ەǟ,%OA )䵯}yAۭ}Qs~̱m Hb8v8⏇'ƂOF82PO#|bdGOO^isxW900 ̐̒"A0k>طe'}z;g`6*T)9NM1DsϙR` ŷcf7ɘ __ /!yt*bv3ɖ"7 Ն'Rk@*O'N5Yq2! ȼxHTLo1L4 #y;Rb JҎvܲ]oyYNJ@FS qW Fd;2 Vl@\{TោX܊' j* ƱuBWV*11ukE4 UTp1 yK8 XJ@F qM72䕯|;Rm@k,7 HBX"c᎝M+{dqg|FLT[HaEC$c1Qf jNڀX ݋Xd;AĎ˷hy` XJ@F A/֫(˶z0"ռO͒ݎhЫ Hi0FǏړ0?n͐o%t<< &Av9)y M0 h7AmPIŒ=1X4`@1ov9)y 0 `HE,n)(`@d`RJ@ I)y 0 &)(`@d`RJ@ I)y 0 &)(`@d`RJ@ I)y 0 &)(`@dū_j$J@ `^A0 Z `^0 Z `^0 Z `^0 Z `^0 Z `^Tmu삟V+++6 bc}u *@k̋!1+x_]}R/[VΊ?~9DD+/Wt窃/vYN|.h>Ԁ9U6&0 Z `^ddГ#̙|^Qgu.Rwf!yƐO510sSĚƌ1#lO49Tw@k̋Q\HL>S tPk@.Ne~#;0$IG )?M1 Ɔ3ڨ6 7} Rz!@k̋܀ Al"QFr*s4p[* 3/qo͎߲21qORFނ϶`EJEрPc q`{؞ČbLM = 0niGo wb*KssCEA 0/`@0/`@0/`@0/HD#Ə&Q0 2`@LJSPȀ0)%OA <  R0 2`@LJSPȀ0)%OA <  R0 2`@LJSPȀ0)%OA <  RS7 v7,A]R;@'>.|˥3@/|pJ< @ +%OA@ (Q0 (%OA@ (Q0 (%OA@ (Q0 (%OA@ (Q0 (%OA@ (QC@ 4`@@ @ @,`@@ @ @,`@@ "3 @  @ @}בIIENDB`DyK yK `https://dblp.uni-trier.de/pers/hd/k/Kiezun:AdamDyK yK dhttps://dblp.uni-trier.de/pers/hd/g/Guo:Philip_J=DyK yK nhttps://dblp.uni-trier.de/pers/hd/j/Jayaraman:KarthickDyK yK jhttps://dblp.uni-trier.de/pers/hd/e/Ernst:Michael_D=DyK  yK jhttps://dblp.uni-trier.de/db/conf/icse/icse2009.html KiezunGJE09DyK yK Bhttps://github.com/google/grumpyDyK yK Rhttp://php.net/manual/en/migration70.phpDyK yK Lhttp://php.net/supported-versions.phpDyK yK https://github.com/thomasbachem/php-short-array-syntax-converter78XV~_HmHnHsHtH^`^ gvNormale&$d5$7$8$9DH$`a$_HmH sH tH Z@bZ Titolo 1'$$d,h*$@&^7`a$5CJP@bP Titolo 2!$$h*$@&^7`a$588 Titolo 3 h@&`88 Titolo 4 @&`VA`V Carattere predefinito paragrafoXiX 0Tabella normale4 l4a 4k`4 0 Nessun elenco JOJ abstractdXh]7^7m$CJBOB addressd`a$m$CJ4O4 arabnumitem F:O: authord`a$@2@ bulletitem Fm$<B< dashitem Fm$8oQ8e-mailOJQJmHnHuDD equation `ROR figurecaption$dx`a$CJX&`X Rimando nota a pi di paginaEHH*J @J Pi di paginaCJOJPJQJaJ^Ob^ heading1+$$ Fd,h*$@&^7`a$5CJVObV heading2($$ & Fh*$@&^7`a$5,o, heading35,o, heading46.O.headings FVU`V Collegamento ipertestuale >*B*ph66 image x`a$66 itemization1! F6!6 itemization2" F:: keywords#`a$m$L@BL Intestazione$p#`CJaJ:R: numitem% Fm$&O& p1a&`Or programcodep'YnQ4 g J -~`C& `a$m$OJQJHOH referenceitem( & F dCJ8O8 referencelist) FROR running head - left *`a$CJaJXOX running head - right +`a$ CJ\aJ6)`6 Numero paginaCJRO"R papertitle-$$dh*$`a$5CJDO"D papersubtitle .dxCJTOT tablecaption/$$dx`a$CJ2o2urlOJQJmHnHu*o* ORCIDEHH*b@"b Testo nota a pi di pagina2d^`CJ@Oa2@ ReferenceLine3d8CJP@BP 5X Testo fumetto4dCJOJQJ^JaJZoQZ 4XTesto fumetto CarattereCJOJQJ^JaJNV`aN IQCollegamento visitato >*B*phPK!pO[Content_Types].xmlj0Eжr(΢]yl#!MB;.n̨̽\A1&ҫ QWKvUbOX#&1`RT9<l#$>r `С-;c=1gȠ[! IQ0#URLrT~]#D@5)}rİT_qeBL͑u_. DfN1ֻ[~`jtڝzp֖Fw*tV@vmpK36ZԀ ~\td3Fk^qd+3嵕7tKȐm/|૵>EA6٥T˵ dXIF80Tg߽|z|`9R8U^|>B?xY?35}C|SAާ &9D{< +d 'я1Jl#SgAߜ`=q#}{<ގgpZ\xY#b\a|S'q}Tc☹pD!.;4\Bw)jaꥤON6Miq x;A-|^o U>aXħV%VDU\G*0:'sK_$.R(ys^Env̇4bߗrpB3s}'ܧwt4Mf,kpڎ5raDqc,3\!T~ jAoE /5}ɤUYjfX/xZ{lmY}NM;SIvΰõK5Ddа8\Q|pWcf?M Ldd׀G'vY0=2D4:*%blZL'Z);49^ղ^<]03C.]O|>6Y.)`2笔ك+WS3&|^=aѱnRvOPK! ѐ'theme/theme/_rels/themeManager.xml.relsM 0wooӺ&݈Э5 6?$Q ,.aic21h:qm@RN;d`o7gK(M&$R(.1r'JЊT8V"AȻHu}|$b{P8g/]QAsم(#L[PK-!pO[Content_Types].xmlPK-!֧6 -_rels/.relsPK-!kytheme/theme/themeManager.xmlPK-!$theme/theme/theme1.xmlPK-! ѐ'+ theme/theme/_rels/themeManager.xml.relsPK]& u 'BBBBBE jJ&,4=DBOXemiMlup5ty|}?ABCDFGHIJNQUVWXZ[\%=EI8MOU\[^daq|}}@EKLMOPRSTY]kkkk6l@lCllllll2mmmq?q`qqqqprrrrIsssst*t_tttu,uuXXXXXXXXXXXXX "$'=?E!!@ @H 0(  0(  B S  ? _Hlt389121457ku@ku      ' ( 1 2 ; > I N X ` i RZ""$$$$$$$ %W&c&''''.)@)3355e6r6778'888E9Z9::~;;;;;;==a?j???AAAAhCyCCCDD*E7EF1FCFKF_FpFGGGGGH>LILLLWLiLrLVVVVVVVVVVVVWWnWvWxWyWWWWWYYYYZZZZffhhhhhhti{iiiiiiiii:j@jFjLjjjjjjjkk kkkk8kBkGkMkRkdkkk=l@lllmm nnnn$n-n2n9n>nHnnnnno ooop pss>uCuGuMu|u~uuuuuuuuuu9;>R  L[MT**++*7\777H8T8<<AACCEEGGNGIIKKOO,P7PZP_PyPPPPPP$S/SLSQSkSvSSSSSTTU*UPV[VvV{VVVVVWWIWXWWWWW_XXXXYYYYYY ZZDZIZaZpZZZ\\]^`^m^^^^^__ ddii3jMjNjjj kllmm;njVcR6Wqh6W%Xi`~`~vbCT % T [b%`] U2]:) %p%c|% *d,j01"F2>4zm::m=_CCGC|_G-IEQL4NHUN$;UL(Xp^Z`}['_bQ_w=acv?fqftfERhok]mnKpjskso?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     !"#$%&'()*+,-./02345678:;<=>?@GHYtKVMNOPQRSTUWXm{[\]^_`abcdefghijklnopqrsuvwxyz}~Root Entry FAhZoJ%Data _/[1Table *FWordDocument;SummaryInformation(1DocumentSummaryInformation89Macros>YoYoVBA X?YoAYodir __SRP_0 LT__SRP_1 y__SRP_2 N  !"#$&')*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~0* pHd'ProjectQ(@= l 0Z J < MSFo@rms>MSForms3*\H{0D452EE1-E08F-101A-8-02608C4D0BB4}#2.0#0#/Applications/Microsoft Word.app/Contents/SharedSupport/Type Libraries/fm20.tlb# T 2 ObPy/;S1UGt{0-  0h}#0U#04ɀvB723A639-A991-42D9-905A-33E55AB783BBvC/\Users\MARK US~1\Data\Local\Temp\VBE\.exd i@+.E .`M Nual>|Ntaly  8*\D OfficeOf@ice H{2DF8D04C-5BFAA@B-BDE5^AA00442oFramewor&k#.f/Resourc 14.0 0 ۀMThis DocumG Thi"DTcuent 2 HB1Z0",TN""+BtSpLNcMakG! SpLPNPwo4Mar`s { 2Qg!brU@@@~~~~~j K* *\DNormalrU@@@~ ~~~~~~~~~~~6".A?.2>  'aa11Aaa!P0( 1a11a!Qq1a!a1qAq1a!$BN3USH ThisDocumentSpLNProcMacrosProjectF/VBA   FWord .E .`M MSForms iBE~ qL-[DROffice 1a0k F#1rkGfM<6D{ @PIyK֛M<@T FDocument Document_Open x F F"a"a/ F"aȑ "a  "splnproc1702.docm :Springer proceedings templateRestorePageSetup StdPageSetupCheckEnsureStyles StyleExistsAddMissingStyle, FLoadSpProcRibbon F MakeTitle F MakeSubtitle MakeAuthor MakeORCID MakeAddress MakeEMail MakeAbstract MakeKeywordsH1H2H3H4MakeBulletItem MakeDashItem MakeNumItem CalcNumIndentW F ListLevelUp ListLevelDownRestartNumbering MakeStandardInsertFN MakeRefItemAddVerticalSpaceClearVerticalSpace InsertImageMakeFigCaptionMakeTableCaption MakeEquation AddEqCounter MakeProgCodeApplyParaStyleApplyCharStyle NormalSpacingRestoreSettings  equation SfĤIx8<*y    u F&kQ"aQ"aȁS  $r LAn error has occurred (MakeEquation):  b F"a! F"a#` F"aa$"a#" The page dimensions do not conform with the template's standard!   \Do you want to apply the standard page layout?$hq F"a1*"a1*"a1*r F"a-"a 1*"ap F ZQ1 bAn error occurred while checking the page setup: r StyleName StyleType 0NewStyle qPIRibbon pcontrol objFirstNumParaobjLastNumParaBuiltInStyleID booMultiPararU@@8PQq  Aq``zgg gPZhe[g,` ?ggg^bg0Zhg g0P*"02`$r$rRrU@@x8`8__SRP_3%__SRP_4 Z+$__SRP_5(@ ThisDocumentY rU@@@~x('"Qq<1a !A#$%q )a*+,-/ 101&'!(2gg \g^ Z p?g` Z pPX&ggJ Z pXggDg{gv0` 4Pg Pq(?`0g{gg> Z hhe(g4) Z 0(g4 Z 0(g44 Z 0(Xg44 Z 0(hg4, Z 0(xg4, Z 0(g4* Z 0(g4) Z 0((g(g(g(Hg(Xg(g.(pg(hg(g(g(g& Z he g g g g g g, Z 8g{gX0` !PgPgPq(`0g{H )"( b B9.`0(gg g> Z hhegR) Z 0*gpggR Z 0* gpggR4 Z 0P*jgpggR4 Z 0`*gpggR, Z 0p**gpggR, Z 0*gpggR* Z 0*gpggR) Z 0 *Jgpgg,Pgpgg*Qgpgg(@ gpgg(P (gpgg,Pbgpggg& Z heg& gpgg$gpggggp8(H )""HiHiHiHiHihHiHiXHiHi`HiHiPHiHi`HiHiPHiHi Hi Hi HiH Hi Hi Hi Hi Hi`HiHiHi HiHi0Hi.gg g gV@p888p@g&8 Z xe80g>,?  Pq0g 00g0g{g>,888,?8g| 88X@p 0" q(,8p@g>,888,P8g 88X@p  Pq(, 8p@gg{D)0RB 8p@HiHiHi Hi HiHi` a"k "k "k $r  (  q $r  $r  $r Q$r  $r  $r  1$r  $r  q$r $r $r Q$r $r $r 1!$r "$r q$&y !&$r '$r a)$r +$r ,$r A.$r /$r 1$r !3$r 4$r  a6$r !8$r "9$r #A;$r $<(  %? &y  &@$r 'aB$r^rU@@8`8`8`@``A` !H^QH `^H `a^!HA `a^!H `a^!H `a^!H! `a^!H `a^!Ha `a^!H `a^!H`a^!HA`a^!H`a^!H`a^!H!`a^!H `a^!Ha"`a^!`$`^^H%`a^!HQ'`a^!H(`a^!H*`a^!H1,`a^!H-`a^!Hq/`a^!H1`a^!H2`a^!HQ4`a^!H5 `a^!H7!`a^!H19"`a^!H:#`a^!Xq<$` !QP1>%`!HQ@&`a^!HA'`a^!fft Np#1rkGfM<6D{ @PIyK֛M<@TxK֛M<@T#1rkGfM<6D{MEPS"SS"(L06" LLSpLNProcMacrosg8zAutoHyphenation,b HyphenateCapsݟHyphenationZoneConsecutiveHyphensLimit,? Application* ScreenRefreshA Erro Description  vbCritical+}(CheckEnsureStylesobjStylepStylepi`AddMissingStyleLwdStyleTypeList3wdStyleTypeParagraph BaseStyle wdStyleNormalNextParagraphStyleParagraphFormatFirstLineIndent_ SpaceBefore SpaceAfter( LineSpacingLineSpacingRulepwdLineSpaceAtLeast LeftIndenti RightIndent( AlignmentIwdAlignParagraphCenterlStyles p ListTemplateRRaise ListLevels  LinkedStyleG;TabStopsBAddr KeepWithNext KeepTogether]FontUSize Hyphenation`wdAlignParagraphLeftW OutlineLevel՚wdOutlineLevel1BoldwdOutlineLevel2wdAlignTabLeft#>wdStyleTypeCharacter_wdStyleDefaultParagraphFont LanguageID wdNoProofinglWItalic!Position Superscript vbInformationnvbOKOnly StyleExists StyleName StyleType$ WdStyleType XNewStyle NameLocalAutomaticallyUpdateo(LoadSpProcRibbonMIRibbon_ IRibbonUI ActivateTab҃ (MakeTitle̲controlIRibbonControlApplyParaStyle7 SelectionZ ParagraphsfNumber- (MakeSubtitle Previous:b (MakeAuthor6$ (MakeORCIDpstrStyle,LCase:ApplyCharStyleT (MakeAddresss (MakeEMail (MakeAbstract HobjLastSelParau ParagraphCount0vTrim@Range Words8TypeTextStart Charactersrg MoveEndWhile= (MakeKeywordsQ(H1n](H2o](H3p] SaveRange vbNullStringwdStyleHeading3C? MoveEndUntil  wdForward wdBackwarddRight Collapseu wdCollapseEnd(H4q]wdStyleHeading4D?(MakeBulletItemXb (MakeDashItemb (MakeNumItemGobjLastNumParaQ CalcNumIndent< objFirstNumParaobjRangey ListFormat4JListLevelNumberbCentimetersToPoints (ListLevelUpC (ListLevelDownx(RestartNumberingtobjLF%wdCollapseStart| ListValue)ApplyListTemplate8wdListApplyToWholeListE/ (MakeStandard`booApplyCharFormate objFirstPara6W objRangeSaveBChrK~ (NormalSpacing MoveStart} wdParagraphH(InsertFN strFNCharK ActiveWindow+ViewI wdPrintView(SeekView$wdSeekMainDocument FootnotesChrWMoveStartWhileFvbTabc9AscWG (MakeRefItemIobjFirstRefPara~9objLastRefParaONumberPosition TextPositionU TabPositionV)LinkToListTemplate(AddVerticalSpaceW(ClearVerticalSpaceobjPara^ (InsertImageO TypeParagraph DialogswdDialogInsertPicture}Show(MakeFigCaptionfDeletex wdFieldEmptyEndKey5wdLinewdMovez IPAtEndOfLine[wdAlignParagraphJustify(MakeTableCaption` (MakeEquationHbooSkipMissEqWarn_P (AddEqCounterX& objSelRange!Code (MakeProgCodeBuiltInStyleIDKi booMultiPara MoveUpMoveStartUntilw booChangeD booSqueezed(RestoreSettingsSDocumentj _B_str_Chrm#Itemz _B_str_LCaseP _B_var_TrimmT _B_var_ChrW _B_var_Right9wdOrientPortraiQ? SplitSpecial wdPaneNone=  ActivePane_ wdPageViewv wdDialogInser"Display objDialog| InlineShapesٚ AddPictureDialogf` "$&)?$DAP       !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~V%g(xXMEp800L00L0L 0L0< 6 :< )% . % B` `J8 **s)X% D`J)%d% FP`J()H% H`J77)% J(% \ `J8 77)X % Jx (% ` `J  =) % .  % b `Jh  ]) % .  % dH ` %%}) % f@  % h `4J &&)j  %)f  % l (% t `JX )x % v `J ) % x `JH  )h % z 0% ``J FF!)%` 8 % X(% `JMMg)%` `J@22)`%  %  %  `J)% ` Jp)%  % 0`J'')(% `J((/)%   `J ((W)% !` kp!)% "`J"(() % .@8% ` % (% #`#)%+$`NP $00ipii %+&%`N  %##i@i x% `&`J&II)%  %`"` `0 '`J'a)%ʘ@CʘDCʐHHP  8H h ``PX 0  ` ``>HSpringer proceedings templateP  8H h ``PX 0  ` ``P  8H h ``PX 0  ` ``p`x@RDR@ @ @ @ @0 @Hp @X @@ @8 0`%x@, @  HN Ph LPRTH@ @ `@ @ @X NV2\nx@ @ @ @x @` @H @0 ((`%H @`%(#@p @ 8@ h!! @ x X `L h @ 2\nx@ @ 8! `%X!  P@ ! @ P!`%8!,@ ( "!(DRH!0 !`!( 8" @ "( @ @ "X @ @ p# !(h @P X#8 @ (H (0#(@ #8 0#`#(( @ @ P$ " (P #H %%(DRHN@%@ @ @ %%O %%( @ ' ' @&h @P p&8 @ &( @ @ '( @ @ `'@x 'p @X @@ '(( @ >(  ( (p(p(p(*((0 ((``4 h*P|h*h @ @ ) *@ @ @ @ @p @X *@ @( * @  P*`h*86  * (N@86,`,lDRHp, + @ + @ ,p @X p,(@ p,8 0X,`p,lp( @ @ l P+0/.lDRH. - @ . @ H.p @X .(@ .8 0.`.lp( @ @ l -/l@l( l H0lPRHN&l @ @ l @ @ @ @ @ @ @ 1h @P (28 @ l @ l( @ (3l@l( l `4@H44 6(4`40 84`4`t@6PTR6h @ @ x5 86@ @ @ @ @p @X 5@ @( 86 @  5`6l5 p4N@l58`8hR@4Dp8h @ @ p8 @ @ @ 7 @ 7h @P (88 @ p8 X8`p8hR( 6N(:P:hRDRH`: 9 @ 9 @ :p @X `:(@ `:8 0H:``:hR( @ @ : @9hR`8(=<hR4D< ; @ < @ 8<p @X <(@ <8 0<`<hR( @ @ @ hR @ x;N@@x>xBpZD>x @ @ @ p>`>> >@ > @ (? 8?@p 8?h @d xBH @0 ? @ ? =PRHN@xB @ @ xB @ ?p@XAa DRHN@hA@ @ @ AAO Aax a` @ @ 0B @h `BP @8 a a 8E8DJ@hRHHD @ @ @ C @ Ch @P HD(8 HD0 @ Jx @  PE @ @ @ @ @ @ PE CJpX GGJRHN@ G @ @ @ F @ Fh @P G(8 G0 @ J @  JX @ @ J Ep H `JpO@DhRpOh @ I( I @ xJ` @I @h pIP @8 xJ xJ @ @ @ @ @ @ @ xJ hHP*zpOp @ pO@ KLpO @ K @ .L @ L @ L@p pO(h @` @\ pO@ 8L`pOL\pO4 *Ma DRHN@ ap @ @ @ @ @ a @ @ @ @ pO @ @p (OX @@ XO( @ a aPR8Qa8N@PRHQ @ @ P @ P @p QX @@ HQ(  0Q`HQ a @ @ @ @ @ @ @ @ PVZDRa RialSona(Sl@Capitll( l ` 8 WUa(^@PRlt(U @ @ T @ T @p TX @@ (U(  U`(U rma @ @ @ @ @ @ 0V( @ @ xV@x Vp @X @@ V(( @ @  @ SVZDRea( VfixNrYXP\4RLoX X @ PX @ Xp @X X(@ X8 0X`XP\( @ @ @ P\ @ WDRP\( pY8\h[ap4RLx[ Z @ Z @ [p @X x[(@ x[8 0`[`x[aP( @ @ @ P\ @ XZDRa \ax@^@]aDRHP]0 8]`P]ax ] @ ]( @ @ X^X @ @ a \aph @P ^8 @ a (Ha_lx 2Z@_0 _`_aa0 @ @ H`x @` x`H @0 ap aX @ a @ @ 0aPaO @ahaxa aaO aa( p_HNl dclDRHc b @ c @ @cp @X c(@ c8 0c`clp( @ @ l b h hf@fi@DRHPfh @ @ Pf @ @ @ e @ eh @P f8 @ Pf 8f`Pf i( d@hXixhl2rDRHh8 h @ @ @ g( @ @p hXX h@P @H @@ 8ph`hhPOhX4 @0 @, @( nanl @ @ pi gElx l` kkl@DRHkh @ @ k @ @ @ k @ Hkh @P xk8 @ k k`k )`l( (j@H`m)lt)`p)tHsmwX2DmH m m`m(n)`8n` n( n  n`nXn)`hnPn`nn!)`nn`nn+)`nn`np6)`p8 @x @p HmpX po@ @( o @ `s@ `s( @ p``s8pAHp0p``shpLxp`p``spXpp``spgpp``sp~qp``s(q8q q``sXqhqPq``sqqq``sqqq``sqqxq``sr(rpr``sHrXrh@r``sxrr`pr``srrXr``srrPr``sssHs``s8s!Hs@0s``s(wXHNPw@8 @0 @( HttHtt`tt0 ptt`0wx0whD20wP @ 8u( @ @ huh @P uX8 u@0 @( @ @ 0w0 @ @ @ 0wvwv@wv0w0 w0w`wwpwX @ @ w @w@ @ xw((``8xC0Z*\R1*#13b*\R1*#1b*\R4*#e9*\R4*#ea*\R1*#112$*\Rffff*075a8130d6*\R0*#e*\R1*#ed*\R1*#e7*\R1*#15a*\R1*#2c*\R1*#6b*\R1*#159*\R1*#fa*\R0*#2*\R1*#106*\R1*#65*\R1*#67*\R1*#18f*\R1*#104*\R0*#17*\R0*#1*\R1*#a4*\R1*#15d*\R1*#ee*\R1*#e5*\R0*#16*\R0*#14i (@*` "  4x :^(`@ XJ`p $ vX` >h4x4444444 . 08@H & Ћ 4P؋ , Z B   > R0 PXR` R R R R  @HRP pxR  ,  * ( (  ,  08@&H&P X`$h px H  " ` H ` p   &&&& &  @&`x " " 0& " 2 2 2 0 6  68PX&` " 0 2 0 0 0&  "  ,  00  2@  0P  0`  0p   &   "  0  0  $  Fd  P  :X   &   "  0  0  $  Fd  h  8p   &   "  "  0  0  0 F  rh  r   "&   "  "  0  0  0  2(  28  0H  0X  0h  0x   &   "  ,  0  0  .  2 2 2( 08 6H 6` 0x 0 0 2  Bd   4(`h&p " , 0 0 . 2 0 6 6 00 0@ 0P 0` p Bd  4 &(H "P "X 2` 0p 0 0& , , 2 0 0(0&8X "` 0h 0x $ Dd  88@ &Hh "p 0x 0 0 0 t t p t t0 tP tp t t t t t t0 tP tp t t t t t t0 tP tp t t t t t t0 .Php"&x " 2 0 & Fd @ @H 0& " , 0 0 . 2 2( 08 0H 0X 0h 2x"& , , 0 2 0 2 08 &@` "h "p 0x 0 2 0 2 0 0 0 0 &8X "` .h & " 0& " 0(0&8P "X .` x& " 0 0 `` ,Xh p<x B    ,d  0 B 8 @ P ` Dp jt( 0d8,P :`    D jt  x R     "J! (! 0! 8!  H! P! *h!!! 4!j!"  "0" P"`"h"x" " " " """ " " @" 4#  @#0pH#&x# 8#p# (# N# $$ $ ,($8$ @$>H$|X$Dp$@$$$ " $ D$ B %  h%4pp%&% >%p% $& p0& H&P&X& ,`&p& x&>&|&D&B&'' " '  ' ' ,8' H' " P'X'  `'^h'*x' '((.L(f`(P)X)`) ,x) ) " )  )) ,) ) " )  )) ,) * " * 4* |P* N* +  0+8+.rX+ L+ +<+ Z+ , (,0,8,&@, VH,p, ", V, ,, -2- "P- 0X- h- .- - - - f- L- - - >. 0(.8.N@.X. ,`.p. x.>.|.D.B.// " / 6/ 6P/ B/  /.p/&0 >0pP0 "h0 p0 00 020 "1 01  1 .81 H1 X1 `1 f1 L1 1 1 >1 0111 ,22 2> 2|02DH2BX222 " 2 62 >2  03.p83&h3 <p3p3 "3 p3 444 , 404 84>@4|P4Dh48x444 " 4 64 45  85.p@5&p5 4x5p5 "5 N5 666 , 606 86>@6|P6Dh68x666 " 6 >6 L7X7  `7>h7 :x7&t7 7&7 :7p88 HP8 N8 88 R8r9 v09 4H9 >9 (9 B99 9B9 ::,nH: x: >: :`: ": : 0: "; ; ; ; "(; "8;@;H; ,P;`; h;>p;|;D;8;;; " ; >; R8<<  <>< :<&t< =&(= >0=pp= l= N= >> R >rx> v> 4> >> (> B ?0? 8?BX? :h?,n? ? >? @`@ "0@ @@ 0P@ "`@ h@ x@ @ "@ "@@@ ,@@ @>@|@D@8A@AHA " PA $XA LA A  AA "B0r0B&`BphB "B NB BB<B ZB C CC C ,(C8C @C>HC|XCDpCDCCC " C "C LD XD  hDpD D.rD&DpD "E p(E @EHE<PE Z`E <E EEE ,EE E>E|EDEBFHFPF " XF "`F jF XF RPG G G (GG H.(H @XHHH >H H II I >0I pI III*I II IIIJB JhJpJ " xJJ JJJ .J8J B0KxKFK"fK"K0K K @L@LFHL"f`L"L0L L&L <L M PM T M  @M PHM T`M  M PM TMMM M " M <M  N  @NJHNDdXNNVN.NN tN JdO zPO 2dhO O &O O VdO0P ,8PHP PP>XP|hPDPBPPP " P <P 0Q  PQJXQDdhQQVQ 6Q *Q &R$@R *PR &R *R R VdR8S ,@SPS XS>`S|pSDSDSSS " S XS PT  `T<hT&xTT TVdT4(UVd8UU,U\U U\UU*UV  V>(V|8VDPV`V W(W " 0W H8W VW LW (X XX Y Y Y  0Yb8YPY~NXYYxYY xZ Z (Z0Z8Z>@ZPZXZ hZ pZ "Z\ZlZ TZp8[ PP[ h[x[*[:[ [ [  [ [ [ [ v[ \P\\ \\\  \\] (]0]@] H]P]X] `]p] x]>]|]D]B]^^ " ^ p^ \^ T^ @_  P_`X_th___&_ "_Z_ &6_ &_ ` ` (` 8` @` P` X` h`,p` `,` `,` `,` `Xd` (a 0a BHa rXa |a8$a 0 b 00b @b .Pb 0`bpb xb ,b rb b Db r c  c c Bd L d |pdd 0d d .dd d ,d pe (e8e@eHe Pe>Xe|heDeDeee " e Be l8ff f  ff\f\g Bg`gFhg(fg0g g @ghFh(f h0Hh Xh `h.h,h h 8h 8i 8i  0i 88i 8Pi 8hi  i 8i 8i 8iiFi j(j 0j>8j|HjD`jBpjjj " j 8j  k:"kPk Xk>`k|pkDkFkkk " k <k8l  @lPHlH`lHxlll l>l|lDlHl(m0m " 8m 4@m hxm m &n  (n&0n "8n Hn >hn ~n n n.n b o oo o,ooo(0 8 Hh o o>o|oDpB phppp " xp :p pp $0q  Xq4p`q&q (q.q q Br B0r 0PrXr`r<pr r 0rr$r r .r s Xs8ps$s 0ssss s>s|sDsDs8t@t " Ht :Pt rt &u  0u2p8u&pu (xu.u u Bu Bv 0(v0v8v<Hv "Xv 0vv$v v .v v Xv8Pw$`w 0hwxwww w>w|wDwFwx x " (x "0x >Xx x  x.px&x >x>(y (@y hyxyy y>y|yDyByzz "  z (z 8zHz  Pz&Xz "`z 0z \dzz \d{x{ ,{{ ,\{ "| V|  |(| $0|6@| JX| Jp| "| (| *| |||| }>}|}D0}B@}}} " } }} } B } 8} h~ @x~~  ~ ~d~ ~d~   04& (( >P `  & Ȁ Ѐ\d P X` Hh x " D @ (08 @>H|XDpDȂЂ B ؂ 8 b   d d؃  Ȅ4Є& X >H >X >p0 >|ȅDD8@ " H P ` p  P2 @ $ <("Z8 `px $<Z Ї؇ <<Z 0@H $P<`>p Ȉ $Ј<Z  ( $0<@<P  $<ZЉ 0@H  P XNpN   LȊ N >|(D@DP "     pxp] B ] B ]splnproc1702.docm]Springer proceedings template8YIf`J` LG|jcept@The page dimensions do not conform with the template's standard! P.Do you want to apply the standard page layout? R T H$N V|k 2!X)$\9Z$\9^4$\9`4$\9b,$\9d,$\9f*$\9h)$\9j n9l9p9r9t x9v5z(|9~99q-Set the hyphenation zone to 20pt, approx. 7mm B@|J1An error occurred while checking the page setup: P P !  HA@No 2!X5Z)$\  zXkP5^$\  z(k 5`4$\  zk5b4$\  zk5d,$\  zk5f,$\  zhk`5h*$\  z8k05j)$\  zk5l nzk5pzk5rzk5tzk5v xzxkpqh 25zPkH5z8k0ASkip the other hyphenation options, i.e. retain personal settingsq'LiZMake sure that all styles that are available through the custom ribbon are also present in this document]DP]DpJ(Check list stylesheadings  A@ arabnumitem  A@ itemization1  A@ itemization2  A@ referencelist  A@Check paragraph stylesp1a  $  9 95(qkabstract  $  95(5( 5( 5(Y<@5(Y<@5(qXkPaddress  $  9 5( 5( 5(5( 5(qkauthor  $  9address9 5( 5( 5(5( 5(q(k  bulletitem  $  95(5( itemization1 2%! D1The list style 'itemization1' cannot be accessed! B@kX bulletitem itemization1 2%!%(qkdashitem  $  95(5( itemization2 2%! D1The list style 'itemization2' cannot be accessed! B@k@dashitem itemization2 2%!%(qkequation  $  9 95(5(5( ?wdLeft, wdRight, wdCenter are not yet supported in Word for Macfffffd@5!B@u@5!B@qk figurecaption  $  9 95(5(5( 5( 5( 5(5( 5( 5(q kheading1  $  9p1a95(5(5(5( 5(5( 5(Y<@5(Y<@5( 5( 5(5( 5(headings 2%! D-The list style 'headings' cannot be accessed! B@kheading1headings 2%!%(qHk@heading2  $  9p1a95(5(80055(5(5(13Y<@5(`Y<@5(8021 5( 5(`5(7104 5(headings 2%! D-The list style 'headings' cannot be accessed! B@kheading2headings 2%!%(qkimage  $  9 9 5(165(5( 5(44qkkeywords  $06 abstract9heading19 5(5( 5(14q kx numitem  $22  95(`5(05 arabnumitem 2%! D0The list style 'arabnumitem' cannot be accessed! B@k numitem arabnumitem 2%!%(qp kh programcode  $  95(`5(5(` 5(33333&@ 5!B@333336@ 5!B@" 5!B@̬F@ 5!B@3YL@ 5!B@ Q@ 5!B@S@ 5!B@O̬V@ 5!B@H33333Y@ 5!B@Y\@ 5!B@`0_@ 5!B@`33333a@ 5!B@lb@ 5!B@`c@ 5!B@33333Ce@ 5!B@ffffff@ 5!B@h@ 5!B@2233333i@ 5!B@fffffj@ 5!B@Yl@ 5!B@08m@ 5!B@0o@ 5!B@Lp@ 5!B@5fffffq@ 5!B@q@ 5!B@mr@ 5!B@,&33333#s@ 5!B@s@ 5!B@t@ 5!B@Courier5(q@k8 referenceitem  $  9 5( 5(` referencelist 2%! D2The list style 'referencelist' cannot be accessed! B@kh referenceitem referencelist 2%!%( 5(qk papertitle  $  9author95(5(5(5(5(l 5(5(` 5(5(5(q k papersubtitle  $`  papertitle9author95(do 5(` 5( 5(qxkp tablecaption  $  9 95(5(8033 5(`5( 5(16 5(5( 5(45 5(qkCheck character stylese-mail  $`  9Courier5(24 9q kheading3  $  95(qkheading4  $  95(qkxurl  $  9Courier5( 9q(k ORCID  $  95(`5( 9qkGAll template styles have been checked and, if necessary, been restored!   HA@N B@|@J8Corrupted template: P P !  HA@No]%Try to find the style in the document`  2%. 'ix]D $  25 =Auto-creation of list styles is not supported in this version DThe list style ' 9' has been deleted, but cannot automatically be restored! B@kdx  2%. !l  3Style exists and the style type is correct --> exit'z  e =Auto-creation of list styles is not supported in this version DThe list style ' 9' has been altered, but cannot automatically be restored! B@7118d0 KStyle exists, but the style type is incorrect --> rename the existing style0047_ Look for a free name  backup $xkx  '` Rename the style  backup   2%(kk-Add a new style as a copy of the normal style   2!%.  2%! (9010  `  2%! (699 (kH 'z0i( tabSpProc B@ `oh:Applies the "papertitle" style to max 1 selected paragraph.Removes SpaceAfter, if a subtitle is followingJh papertitle$G @ B@j 2Remove SpaceAfter, if "papersubtitle" is following7! 7! ! papersubtitle7(kkq B@|pJh ! D ! R HA@N ! @e#An error has occurred (MakeTitle): !  HA@Nko=Applies the "papersubtitle" style to max 1 selected paragraph;Removes SpaceAfter from a preceeding "papertitle" paragraphJ@ papersubtitle$G @ B@j51 8Remove SpaceAfter from preceeding "papertitle" paragraph7!7!! papertitle7!(k`kXqP B@|8J0 ! D ! R HA@N ! @e&An error has occurred (MakeSubtitle): !  HA@NkoXauthorA@ B@`o`]HH !!'" "$ $author  8The current paragraph style was expected to be 'author', P but it is ' "'. PDPlease only use this button to style ORCID ids added to author names P<that have previously been formatted with the 'author' style! R HA@N|k !d[[]####-####-####-####[]]SPlease use the format '[0000-1111-2222-3333]' for adding ORCID ids to author names! R HA@N|XkPORCIDA@& B@0081o `addressA@ B@oe-mailA@&` B@oP-Applies the "abstract" style to any selectionvTypes the word "Abstract." at the beginning of the first paragraph (only if the preceeding paragraph is no "abstract")GRemoves SpaceAfter from the last paragraph, if "keywords" are following]DJx !!2 %..abstract$G @ B@jFRemove SpaceAfter from the last paragraph, if "keywords" are following` .` .!  .! !keywords .(21kkxkp PIf the preceeding paragraph is already an abstract, don't type "Abstract." again7!7!!abstract @ B@kkType "Abstract."7!6%8!d$4Abstract 95( Abstract.C@:5( C@:`d7!6%8!9<7>..;>k7!6%8B@H.C@@`5(8047kp7(qP B@|8J0 ! D ! R HA@N ! @e&An error has occurred (MakeAbstract): !  HA@Nko/Applies the "keywords" style to max 1 paragraph/Removes SpaceAfter from a preceeding "abstract"<Types the word "Keywords." at the beginning of the paragraphJkeywords$G @ B@j 8Remove SpaceAfter from a preceeding "abstract" paragraph7!7!!abstract`7!(kkType "Keywords."7!6%8!d$4Keywords9378 95(Copy Keywords:C@:625(` C@:dP7!6%8!9<7>:48:;>k7!6%8B@H:C@@`5(k q B@| J ! D ! R HA@N ! @e&An error has occurred (MakeKeywords): !  HA@Nk o `/Applies the "heading1" style to max 1 paragraph7Remove SpaceBefore from a directly following "heading2"Jx heading1$G @ B@j 5If H2 directly follows H1, remove SpaceBefore from H27! 7! !heading2`7! (k k q B@0084|x Jp ! D ! R HA@N ! @eAn error has occurred (H1): !  HA@Nk o /Applies the "heading2" style to max 1 paragraph.Remove space before, if H2 directly follows H1Jp heading2$G @ B@j .Remove space before, if H2 directly follows H1dow7!7!!heading1`7(8130k k q B@|x Jp ! D ! R HA@N ! @eAn error has occurred (H2): !  HA@NkoP7Applies the built-in Heading 3 style to max 1 paragraphFRemove vertical space before paragraph if H3 directly follows H2 or H1]JH !6.J4Apply the built-in Heading 3 style (paragraph style) L N$G @ B@j JB@H 4Remove space before, if H3 directly follows H2 or H102917!7!!heading27!!heading17(kkKIf no text is selected, select the first sentence (or paragraph at maximum) !< !dent7!6!<9< -Look for the first full stop or paragraph end15. P RC@P "Include the full stop (if present). RC@@kRemove spaces (if present) TC@@4Apply the char style "heading3" to the selected text9040heading3$&G @ B@j92Continue with body text5<531 Do nothing5d$V.e ZC@X.C@:to5d  9 C@:kd ZC@X 9khq` B@9208|HJ@ ! D ! R HA@N ! @eAn error has occurred (H3): !  HA@Nko7Applies the built-in Heading 4 style to max 1 paragraphKRemove vertical space before paragraph if H4 directly follows H3, H2, or H1]` J !6.J4Apply the built-in Heading 4 style (paragraph style)9224 L ^$G @ B@j JB@H 8Remove space before, if H4 directly follows H3, H2 or H17!7!!heading37!!heading27!!heading17(`kkKIf no text is selected, select the first sentence (or paragraph at maximum)075 !< !7!6!<9< -Look for the first full stop or paragraph end09. P RC@P "Include the full stop (if present). RC@@kxRemove spaces (if present) TC@@4Apply the char style "heading4" to the selected textheading4$&G @ B@jContinue with body text5<5 Do nothing5d$V.e ZC@X.C@:5d  9 C@:k0?d(? ZC@X 9k?q? B@|>J> ! D ! R HA@N ! @eAn error has occurred (H4): !  HA@Nkh>o`> Applies the "bulletitem" styleFRemove SpaceAfter/SpaceBefore from a preceeding or following "numitem"]D J= !!2 %..Apply the "bulletitem" style bulletitem$G @ B@j 7!7!!numitem7(k<k< .!  .! !numitem .(k<k<q< B@|p<Jh< ! D ! R HA@N ! @e(An error has occurred (MakeBulletItem): !  HA@Nk;o; Applies the "dashitem" styleFRemove SpaceAfter/SpaceBefore from a preceeding or following "numitem"]D J@; !!2 %..Apply the "dashitem" styledashitem$G @ B@j 7!7!!numitem7!(kh:k`: .!  .! !numitem .! (k:k:q: B@|9J9 ! D ! R HA@N ! @e&An error has occurred (MakeDashItem): !  HA@Nk`9oX9 Applies the "numitem" stylecRemoves SpaceBefore from the first paragraph, if the preceeding style is "dashitem" or "bulletitem"QRemoves SpaceAfter from the last paragraph, if "dashitem" or "bulletitem" followsKAdjust the indent to the number of "numitem" paragraph in the current group]D( J7!Save the first and last paragraph !!2 %.fApply the "numitem" stylenumitem$G @ B@j9Adjust the spacing to preceding or following itemizations 7! f!! bulletitem f!!dashitem7(k6k6 f!  f! ! bulletitem f! !dashitem f(k(6k 6q6 % !!2 %A@h B@|5J5 ! D ! R HA@N ! @e%An error has occurred (MakeNumItem): !  HA@Nk@5o85H ] Check for valid input jG|j fG|j'Only calculate indents for list level 1 j!6!< f!6! 2%6!n!pG|j;Check for "numitem" paragraphs before the current selection_04 j!Gxj j!!numitemGxj j!!6!n!pGxj j!.j3:Check for "numitem" paragraphs after the current selection_h3 f! Gxj f! !numitemGxj f! !6!n!pGxj f! .f2 j!6!< f!6! 2%65!2 NT?$r5(?$r5(dNT?$r5(?$r5(S(2ffffff?$r5(?$r5(n1q1o1 6Increases the current list level, i.e. the indentationOnly available for listsJh1 ! D0Please only select paragraphs of the same style! B@k1 !! bulletitemKdashitemKnumitemKT !6!n!p D5Please only select paragraphs of the same list level! B@ !6!n!p e DThe maximum level was reached! B@k0 !6!n!p !6!n(pS/ DBThis function is only available for numbered and unnumbered lists! B@nx/ B@|`/JX/ ! D ! R HA@N ! @e%An error has occurred (ListLevelUp): !  HA@Nk.o. 6Decreases the current list level, i.e. the indentationOnly available for listsJX. ! D0Please only select paragraphs of the same style! B@k- !! bulletitemKdashitemKT !6!n!p G @ B@j !6!n!p !6!n(pnumitemKT !6!n!p G @ B@j !6!n!p !6!n(p % !!2 %A@hS, DBThis function is only available for numbered and unnumbered lists! B@np, B@|X,JP, ! D ! R HA@N ! @e'An error has occurred (ListLevelDown): !  HA@Nk+o+ QRestarts the numbering (if in a numbered list) from the first selected paragraphs]Dp JH+ | B@X !!2 G @ B@j %!6!n.z z DAThis function is only available for automatically numbered lists! B@ z!e DAThis function is only available for automatically numbered lists! B@k* z!~ z!  zB@d) z!  zB@k) % !!2 %A@h|)J) ! D ! R HA@N ! @e*An error has occurred (RestartNumbering): ! Pg(This error might happen, if you use custom numbered lists instead of the built-in numbering template.)  HA@Nk(o( A1. Different styles selected -> apply the default paragraph styleO2. The font is not the paragraph standard -> apply the default character formatF3. Part of a paragraph selection -> apply the default character formaty4. All other cases: apply the default paragraph style, if not yet present. If present, apply the default character formatQThe default paragraph format can be "p1a" or "normal", depending from the context]D]D ]D@Jx& !!'% !! !!!! !! !!!! !! !!!!e' !< !e' !d $ e'd%'kp% !6.  L A@&d@% A@Separate the first paragraph %. G @ B@jNIf more than one paragraph is selected, first format the rest of the selection ! !6!  B@ L A@k0$ !6B@H ! !  2%! L A@&d# L A@k#d# !!6!!heading1Kheading2KdashitemK bulletitemKnumitemK figurecaptionK tablecaptionKequationK programcodeKT !p1a L A@&d"p1aA@k"S" !  2%! L A@&d" L A@kh"n`"kX"kP" B@H|8"J0" ! D ! R HA@N ! @e&An error has occurred (MakeStandard): !  HA@Nk!o!`jInserts a footnote and adds a comma (footnote separator), if the last character is a footnote char as wellUBlocks footnotes for the "author", "address", "e-mail", "abstract", "keywords" stylesNTurns the footnote number to a symbol, if in "papertitle" oder "papersubtitle"]DJX  2!( 2!!! |( k   ZC@X7! papertitleK papersubtitleKT Choose the next footnote symbol7!6!!2KT*'KT**'KT***'KT $'KT! $'KT$'KT$'S DCThe maximum number of footnotes in this paragraph has been reached! B@n Ignore spaces TC@ lIf the preceeding character is a superscript and no comma (probably a footnote), insert a footnote separator7>!7>!!!7>!!d,5(5(,C@:5(5(k8k0 %Add the footnote and start with a tab56 5B@ C@:authorKaddressKe-mailKabstractKkeywordsKT DcFootnotes to author names, address elements and within the abstract and keywords are not supported. P>Please consider adding your remark as a footnote to the title! B@S Ignore spaces TC@ FIf the preceeding character is a footnote, insert a footnote separator7>!7>!$5(,C@:5(kk %Add the footnote and start with a tab565B@ C@:npqh|`JX ! D ! R HA@N ! @e(An error has occurred (InsertFootnote): !  HA@Nko<Applies the "referenceitem" style to the selected paragraphsfCounts the reference paragraphs and adjusts the indentation according to the highest reference counter]h]DJ referenceitemA@ %. %.;Check for reference paragraphs before the current selection_H !Gxj !! referenceitemGxj !.:Check for reference paragraphs after the current selection_ ! Gxj ! ! referenceitemGxj ! .PAdjust the indentation referencelist 2%!% !6!< !6! 2%6!!2 NT?$r9?$r9?$r9dMT333333?$r9?$r9?$r9S(?$r9333333?$r9333333?$r9n referencelist 2%! referenceitem 2%B@q|Jx ! D ! R HA@N ! @e%An error has occurred (MakeRefItem): !  HA@Nko1Adds 6pt space above the first selected paragraphJ %!6!!  %!6!(|XJP ! D ! R HA@N ! @e*An error has occurred (AddVerticalSpace): !  HA@Nko 5Removes space above and below the selected paragraphs]Jh  ! !6!( !6!(|J ! D ! R HA@N ! @e,An error has occurred (ClearVerticalSpace): !  HA@Nkox.1. Collapses any existing selection to the enda2. If the cursor is not in an empty paragraph: go to the paragraph's end and type a new paragraph3. Apply the "image style" 4. Shows the insert image dialogJ  ZC@X5<7!6! 8Cursor is before the paragraph's end: move it to the end7!6! 9< Type a new paragraphC@7!6!<7!6! e [Cursor is at the end of the paragraph, and the paragraph is not empty: type a new paragraphC@kApply the styleimage9q $.|J ! D ! R HA@N ! @e%An error has occurred (InsertImage): !  HA@Nk@o804Applies the "figurecaption" style to max 1 paragraphiSelect and delete the first word of the paragraph plus the following period or space, if it's like "Fig*"Type "Fig. " plus number fieldJP figurecaption$G @ B@j !Select "Fig. X." mark, if present7!6%8!d$4Fig*7!6%8B@H.: RC@@ .:0123456789 RC@@C@kP L A@& | B@XRewrite the "Fig X." mark5(Fig. C@:56  SEQ "Figure"54B@.C@:5( C@:RCheck whether we have more than one line. If so, change the alignment to justified  C@5 5(k q | J ! D ! R HA@N ! @e(An error has occurred (MakeFigCaption): !  HA@Nkp oh 3Applies the "tablecaption" style to max 1 paragraphkSelect and delete the first word of the paragraph plus the following period or space, if it's like "Table*"Type "Table " plus number fieldJx tablecaption$G @ B@j "Select "Table X." mark, if present7!6%8!d$4Tab*7!6%8B@H.: RC@@ .:0123456789 RC@@C@kx L A@& | B@XRewrite the "Table X." mark5(Table C@:56  SEQ "Table"54B@.C@:5( C@:RCheck whether we have more than one line. If so, change the alignment to justified  C@5 5(k0q(| J ! D ! R HA@N ! @e*An error has occurred (MakeTableCaption): !  HA@Nko Applies the "equation" style7Opens the equation editor, if we are in a new paragraph]DJequation$G @ B@j 8Select spaces and tabs at the beginning of the paragraph  RC@@!Type a tab to center the equation C@:q0|(J  ! D ! R HA@N ! @e&An error has occurred (MakeEquation): !  HA@Nko]D(]DH]hJX Add the counter to equations5 DHPlease format the selected paragraph(s) with the "equation" style first! B@5equation 2%e DHPlease format the selected paragraph(s) with the "equation" style first! B@k0&Check for an existing equation counter .7!6!4 .!SEQ "equation" \n ZC@X @ B@k56.  ! !6! 9< !6! 9 9 (C@:56 SEQ "equation" \n54B@)C@:q|J ! D ! R HA@N ! @e&An error has occurred (AddEqCounter): !  HA@Nk o programcodeA@o2Applies a paragraph style to the current selectionb- If the booMultiPara flag is not active, the function is cancelled for multi-paragraph selections:- Set the cursor to the beginning of the current paragraph]   2%.d  2%.kJ  D The predefined paragraph style ' %' could not be found in the template. PTPlease use the 'Check Styles' button in the custom ribbon to restore deleted styles! B@k !l Gzj !check whether text is highlighted5<5 some text is selected57!6!  multiple paragraphs are selected if not supported, cancel DGThis function is not available, if more than one paragraph is selected! B@kX~kP~kH~ 5(collapse the selection |C@X=go up, if the cursor is not at the beginning of the paragraph5<7!6!< C@k}q}'zp}Jh} ! D ! R HA@N ! @e(An error has occurred (ApplyParaStyle): !  HA@Nk|i|2Applies a character style to the current selection[If there is no highlighted selection, expand it, until the next space of paragraph is found]` |   2%.d{  2%.k{J{  D The predefined character style ' %' could not be found in the template. PTPlease use the 'Check Styles' button in the custom ribbon to restore deleted styles! B@kz !l Gzj Qif no text is highlighted, expand the selection up to the next space or paragraph5<5 P TC@ P RC@Pk z 9qz'&zzJy ! D ! R HA@N ! @e(An error has occurred (ApplyCharStyle): !  HA@Nkpyihy]D]D]D0]DHJy  ! ! 9Consider special spacing, if a following paragraph exists ! papertitleKT !  ! ! papersubtitle (k8xk0xabstractKT !  ! !keywords (kwkw bulletitemKdashitemKT !  ! !numitem (khwk`wnumitemKT !  ! ! bulletitem ! !dashitem (kvkvheading2KT ! !!heading1 (kvkvheading3KT ! !!heading1 !!heading2 (kvkvheading4KT ! !!heading1 !!heading2 !!heading3 (khuk`uSXuDefault spacing !!! ( !!! (nu Restore line spacing !!! ( !!! (ktt|tJt ! D ! R HA@N ! @e'An error has occurred (NormalSpacing): !  HA@Nktot`A@<A@oss999qhSwitch on hyphenation9 2 !! enat  ! !(lnatids  !(lkps.Switch to page view before checking the layout3Otherwise some layout properties cannot be accessedccCheck for standard page setup] q  5 | B@X5 !6 2!B@ kprr 2!B@ kprhrEnd With Dialogs(wdDialogInsertPicture).Display(r`` ``  ?`  C``@`X`h` ` ` ` ` ```````(``H`X`p```````` `!`00@Xx"` #`$`  %` &`'` 8X0Zep>ut/ hne0 Hpp@`x02Attribute VB_Name = "SpLNProcMacros" Option Explicit 1*UpR 5 h sECQ?T@Q??A\5T?1T/ao u(*X__$[??1[  ?1 _OO$ OATf_r2) ! #,e}r1`s.i<>+i1I_w]l0Not .?oy4o9__ RqqtK@:._tmt'QOO0  m >..ch ["p??;'Skipbro rocs, i.e. retac@psonPgtQA= "{"f(ײEnsureStyles'Mak  at allмavailabqthrougIcum `b?kЎpwP in 'thió Dim obj"1PniUtInteoo l4 AddMiss9"hwd2qL`, "arabnup emH AddMissingStyle "itemization1 ", wd\TypeList, hobjD 2/zreferencelj>'Check paragraph ssIf ("p41a SP9j) 0Then!oWi th xz .BHase =N`ormal.pNext1F$t.FirstLineIndent40.End MIfzabstract|2SpaceBefore132AI After 186 AG 1 RumeAtLeasteftFb28.35Y Righ *oddressnPc1Z71t[h1 ncQEAlignmhwd& rCer93e("author3a "aE?yRpk9`vkt.9k9F99ObulletAߟ999 ZB4z9)ctivePDocu!^.Bs (+)7stTemplate Is Noth ps Err.Raise ERR_USRMSG, ,4 " zw '' cannot be acc`Led!"*6kcAo eo Qe 2 Levels(1 nke`"H?! s("dash!&?S ?sWle?!s!q71! !!n2"!! !!Ѥ}!2!! ("!l!m !!& ("equRBҧ  s ?4###?a&x&[d'w|dLBv aПAyet supported in WordB Mac.= TabStops.@ 164.p45, _ 345.82@figurecap/ / oxD/A/ / Q>0Keep!(q = True/gTogethw9Gk6I16@ > ( 1(P=%,;n{ Fo@nt.Siz9?&_'Z'head0y?GP У ',tyleNormal .NextParagraphS = `"p1a" Ft.KeepWithz^True\Together .Hyphe@nation-Fals]SpaceBefore.18AftC12Line(ing+5RulCwdeAt LeasteftIndent528.36Righ(Alignmك-wdBsL&OutlALevel&wd 1IFont.Bold ̓Sizg ]If Acti@veDocu(.s("head@^s").ListTemplate Is Not:heTH Err.Raise ERR_USRMSG, , " l sB'E' cannot be acce ssed!IEnd IfH+.Os(1A2nkedFD!1AIddMiss=H2", wTypev, obj ) J F.Base<"B]ph"t.bhxExJx@xxx0Fxx xxx x:2x2x ximageww'w~>p#.$3#7 y36iFFirstr3%N0nC nerTc\T("keywordsrIT#TT"abstractF"@oqEoa|JxBg"d("numitem|ojeoj/\(/_ PгbU!Bߊߊ Nߊ '"O %?9o6 q!Ԓo6("pro@mcodOo6y sO? L Ÿ6?6663 TabStops.Add 111:22.67 34ϯE45_ 56_ )/ 68.5   79.Oj |90o o pX102.0 1F3.4, wdAlignTabL eft .ParagraphFormat.Stops.Add 124.75!7|36.17z47I958:709]81.492.82048]215.226.38.B1M249.x60.72.83.94.8w>306.2M317_V328\Font.Name = "Courier"EEnd WithIfBIf MissingStyle("referenceitem"CType, obj) Then a F.Basewd"N!lLineSpac3`11bRul wdeAt0Leas ctiveDocume@'bslis t").LTemplate Is Noth @Err.Raise ERR_USRMSG, (, "@ s!, '&,' cannot be accessed!7 `75@A Levels(1anke0+,>,JSiz=)9I#)("papertit|le?I?I?IN8extIBau8thobMNKeepA, TrueepTog`ether^Hyp2ationFalsH/eAft24F28P22A^ FirstInd3 0"/!6fCer'Bold}(1(MM(sub)MleMM| ) /i ) ")2 Befor1869(< "%? ? .2Utablecap/@o_e : _es@le_e?h$MA/;xA"1 p@ sa6v ^ @@ @n6?@Y'gQ(q'Check ch6c1Svs*("@e-mail(C( BO@peDefaulwh 335LanguageID+NoProo>f`[U777head3as7s7l ݿ] o o l 4o o 39 uضe = wdStyleDefaultParagraphFont .<.ItalicTruetEnd Wit&hIfIf AddMissing("url",TypeChpcter, obj%) ThenB~Y.Base/,Nam"Cou rier")LanguageID*NoProof_uORCIDvPositiong0tSuperscripttX6CMsgBox "All template ss have been checked and, if necessary,restored!PvbIn forma2Or vbOKOnl C_TITLE16App .Scr@Refxit Sub ERROR_HANDLER: +Corrupt$E-: " &CrLf Err.DeCNW,Ycal, E$Priv@Func0Exists(ByVal SBBAsr) Boolean Dim " =On #or ResuNex'Try to d th` indoc@ d|Set = AQveD$. s(a)G Not (%x Is h 9E !m", By9c%a!WNewb$.)i[B ,Long) 3Bj "&L`:J 'Auto-QaWof lbis n`'supporaO3v@s`Kb-<.Raise X_USRMSG, , "9h 'VFV"'nsjdele lut canNaakWly `fdo8ElsfG-G A-4.(*'" eeW' t `%c wect -->> K@=t S#- a< uN) 4<>IFS8!Rs(lf;VOUpd!z= F~a50pyb(nq$&7oP ubA LoadSp@cRibbon(IskUIo~d~t.0 Tab ("tab")xMakeTitle(crol("C) 'esQW"paТt1"T'max 1 Fs@e@d p  2movSpaceAfHba@PbR[follow@BGoToQnog5$a y( , 0,3c@TCANCELnS hvd \ #su " C4J.v's(1).!́@t#`&}qw ,PBcP !NumberDaExcla8onȳP8[ Cam"An (errPhPocHcur (f.)㣼bCrVo3ke0+3n3XMo 33!Pfrom@^prpedqus"7?B44Z ApplyParaStyle("papersubtitle", 0, False) Then Err.Raise ERR_CA@NCEL With Sele`ction$*'Remove SpaceAfter from preceedinLg qn pgraph@If `Not .s(1).Previous Is~hG5y84. = y  e= 09End If ica.ScreenRefresyExit Sub OR_HANDLER: gNumb=USRMSG-MsgBox Descrip2, vbExclam9, C_TITLE E3*<>Hu"An error has occurred (Ma ke,p): " &Q Crit@=lCKF;Pub(lic> Author(con@trol AzR@ibbonCC) BSO%Resume Next˵ "aF c &ORCID%Dim strC-Str+ =For@o-mLCase$() @oE9n* "@ mnt'@*~ w@:expw@:to be$ '#&',!:vbCrLf@;_ Ac"but @Vis '& "D'.[Ple@ @only u th ton ` s - ids0 add names; thatU"@ b@nT f"*t wthC"!@EgFu_Ed`3A(.TR Like "[[]#-[]]"+6d$#e '[0$-1-2-3]'$&@))&BjChaD[~"B !j_ik|dds||bE"@D a, True ?dEMail(%e-m /_%ҡb kacty'B0es Y4"a$"D|@ny sF'Typword "A`;`3Abeginn$ofRfirsC(;iH}v|2 =noW) M4sNla, "key >ar!0llow0 VobjL 6 qb,WGoTomWu!Set 7\?Xs=&s.Count)?Q”Q)_S ID ЋҖ.1uAtW?hxWWN' q)ph)already an , don0't t1[1gaipa^_" OB76#|/P"?) e 0 Trim( Range.WAbqlsB" & wdDefault3FЛ..Bold[p .IsI2s "u9Start_YH]Xpr S-.{. gEp` MÐ@Whil_!KF]LineIndeP58A5BfRR.  ,˔a{keKDk{ {wR{mpax 1Hsa;C >~e 5~e beginning of the paragraph On Error GoTo ERROR_HANDLER|If Not ApplyPtStyle("keywords", 0, False) The.Raise_CANCELIWith Selection'Remove SpaceAfter from a preceed"abstract"< .s(1).Previous Is_h"O/;.r => ; d= 08End If'Type d"K."RTrim(6Ran0ge.WwTe@xt) <> "Oƅ"+5wdBD@efaultMFont .BoldATrue+:,†5  EStart[=P stChcC:B( z/f 7 _ô/M@WhiluFUA#Aica.ScreenRefreshBExit Sub : @C.Num b@j=qUSRMSGCMsgBox Descrip , vbE xclamb, C_TITLE ?a4 Md| "An e"has occurred@ (Make\) : " &1Critlga#@Publica H1(cWrol A ~RibboDnC#) '"(eBs"heaA1" s! to `max 1JB eforeeditly followb$ 2"@I `4H2 ,s$, rh H2InN?¯&$fD!c0 .b_`C_fC_f_fr>._f_f$qUfH1eeub H22{2222 V2so2, ifp'H11 1a:(u;2K% O O3@3"#1oto <.2@Io1 "Q1ond dߒdq_ddnddDjd1dH21elOd4aNd3111built-in Hd 3dE52verm y'Gg=R33_3\3Dim Saveanw/5/5 000=71`".Rry !n ()1QvvbNullSdtr, 43<+.(_= Hre,OA{p2 C0====o) Or @"2#@cer.S 'no text is s12ed,B firstnten0ce (atAimum# P V MV< -'Look5`r f&(op end.ĸUntil ".vbCrLfa)@Forwar'Includes (`msent/6`.iwd'Lgs  L BBack M;cP9 "&3"the selected text If Not ApplyCharStyle("heading3", 0) Then Err.Raise ERR_CANCEL'Continue with body .Start = .8EndQ<'Do nothrElseRig ht(.T, 1) <> "." ?.Collarpwd fa.Type" 1., ,M\\wdDefaultParagraphF}(5 " |Ifp a?#D5Wyication.ScreenRefreshBExit Sub xOR_HANDLER: @INumber@ AUSRMSGFbMsgBox Descrip, vbExclam, C_TITLE wH@v"An error has occurr@(H3):@m&Crit:l@`ADB9PublicA< H4(crrol As IRibbonA@) 'Mes tbuilt-in H 4 stto max 1 pņ 'Remove ver" space before  if@ dir!@ly fows H3, H2, =H1 Dim SaveRaXnge) nO GoToAoSe ;f= S@V wy(f) Cc"U(vbNullStrz, g&4, Fa@|.# WY'Be-I,,;++`.F{s(1).P@reviouBsoAaS("F) Or 2"e@r 1ᵥ"CSPBP= 0hachf'$no is ,$cfirsBtnten]( R'FatdimumF @ GQE' *4X'PLookirf3RWop?end.MvU lb&`CrLfAYForwar'Include+ & ( {pentf Whil>e aG1[s wdBalckIH>c~S< #4" PLQN߂v>߂4߂߂P߂߂߂$߂ d߂$߂e߂*߂T c(߂߂8߂߂d/ - ߂od&U߂߂߂߂߂߂n߂߂4߂ D߂Ԃ4߂U߂Ta݂MakeB0>etItemSbA"b2i0"7YAfter/Yfrom a Dcee!KӁ@u "numobjLastSQ &R__ 0ut \s('ZG ueNhF_%4 ?(, TrueO+y|2 0OB=vv6.Next I3 tO O \.B ($2qCCCCCoopDo.CELCj>ODOD/%ADash/Dli"d9De DDǵreceeding or follow`"numitem" Dim objLastSelPara As  gr@aph O n ErrGoTo ERROR_HANDLER>Set = ection.Ms(.Count)I'Apply the "dash styleIf Not %VS(*, 0, Tru@e) The. RaiseZ_C ANCEL$Wi|thQ t/X1).Previous Is>h/..Q => LpaceAfter 0End Ifb .Nex>t0 "/ .Beforee.1Ae5xicaScreenRefreshBExit Sub ʢ: >.NumbL_USRMSG]MsgBox  Descrip, vbExclam, C_TITLE EldseK<>Ȓ"An ehas occurred (MakeDI@): " B&Q Crit@=lyF;Publtic> :A(controlIRibbonCC) "jiescjDj'RemovS5fromfirst pb, ifpNJ1"s isu"bulletw Yf l L L Dbsdju`indent togbA?ofm& 4inc2`groupi)NbR'Save &a 7H _%0sU: 2%'AG-sD`-b@/!>izbhsbKs(('gO) Or ?F" bIe= `lm!?e#_ R Rg Hg [Calc@I9_h,x9}h/aaaaRRaaonaabga$$gaa?aiaaari0vatea(ByF]2Ni, 6/ph)uRRangef'CheckYr validVputb4/%l |(Y('Onc&ulK`sli bl@evel 1A veDocumPc 16 SP6axrt,4P).LFor L` 1 xcis bamc4jse DobpS}U %Ep, / e\wXr!` q"=+Loo&pm"s aR(Ob5W2/?st '&U&p m F[ /2ge/2Q@/2E(2*#] Caب^Ep><< 1uW7ef"te= C&Line-1I _ 9J?@ftB7Dm(6i(r m@aximum was @ched"@Df&gM=p + 1s -This func` `BOK`@!8ed aunBcuxApp`vj.S`qenR@efreshE8xity|h: 76!F=c3Ms gBox De scrip!, vbExcla +, C_TITLE <> @CANCEL "PAn eb|h :oDccAd () : " &Critical?C#UDownDeRΟeן%d'@ `B_qel$Q< 2"E>cH _ F ׿{-{"`py X1 onjo^tLH  ?a CalcTWvk s(1),mphs(hs.Count6nQ/x!xQxQerQQQQ!BjQ$6KQQQ] Q VQrQK?QEY?QP q?Qb RestartC/0oQ8#3ia(if in a #0A@) fromғf1 Õ Dim objLF)/P+ )CollapНwd>S r5G.#+ <$ 1FR_FSetT 72: O= MH11autowo s%c2ITemplate   e   ;:ę@w ValueP{acus /Fs Hstead%built-pI1Jt/.)31ϣd Rq MakeEndardORHR1. Different styles selected -> apply the default paragraph '2H. T|foi`s not^ Nandarchr format '3. Part of a n1ionG4.@ All or cases:ϐ, ifayeures. If p,!=pEn be "p1a" or D"n|l",pending f(romcext Dim boToACF As BooleanobjFirsta Rang`eSave  AOn Err&GoTo ERROR_HANDXLERCSc.$.S Is N^3@Cn 0= FalseBE(GF@.Name <> . ) Or _Italic& Bol6d& )A͛ETruJEG?St=CEndYInS tr(1,Text, Chr$(13)) = >0 *.]= IfS`m WR)RRCp KccPvbNull@P, wdDVntaO` NBrSpaFcXprol'Sete"tfm?甅dqis(1)% ,h!r@.Raiser_@CANCELe'mor!an 8oneE, $Ba@HNAL> I.mO'MoveUwd, 1E 6a62, &M$HjPreviousU` *'= ActiveDocums(K)"Localg@ @TleTCiU#(le(( CsD Y`Hp2"hea-!n1n2da@shitemb`;etnumfigurecaptP*tabЊ!equapro@omcode"N3yE&EnE<, 0[/kc",,me,S Bry]-R-!(Qobjfi.Exit Sub 2 ڑ: p.N`umber _@USRMSG@M sgBox\Descri,, vbExcla@-0x_TITLE ?A[a#`m"An e›has @occurr(MakX): " &vbCriti`Ksz1Pub InsertFN(rѨIRibbonFC` s) 'Cs!foote ! add1comma (su0or),Qilast 7la¤q pwell 'BlocksrBz"auth\orC0ose-mai"ab@stractQkeywords" 'TurnsO~% 0Itop s ymbol in papPitle%d@ "psubM@2FN)St,ϷϷ g3^-ek%leekMainenV&4/awWith5.@Collappwd$C5fāud, 6'ChoopQ$npg##0}r`"@C's uK# 0K= "*h )cPC2O +r$&A*3Z strFNChar = ChrW(8224) Case 4WXL55"167?6#?76?Else!Err.RaiqERR_USRMSG, , "The maximum number of footnotes in this paragraph has been reached!" 8End Select 'Ignore spaces .MoveStartWhile " ", wdBackward $fIe preceeding cact^Ua superscript a#no comma (proba bly a8),19ser  s"eI"<) TruR Posithion 2/AType",}@g1@FaT03AIf'A\ddB?sAJ with>tab7\.dng8e, }FvbTJ B"authorV"addressAe-matilb `Fakeywords-gEtFqto names, d nmentswe a ap{eported." & _ : vbCrLf"Pleconsid`m`A]your re`mark `'k ttitleʄ"&o__' m!WD ` CAscW5z)An?y= 6ytlvto#o oao_n(W@|bExit Sub nOR_HANDLER: eApN3n= wpFM@sgBox aDecP,0ExclamaQ, C_TITLE +[XaCANCELm"An errortoccurred (Ing%>):o&?Q8YcalbQPublic MakeRef Item(:trol AjRib0bonC) 'Appli`~2"referencei`"pPyx-4 mberܯ nt8abJ s3>.nh#o/lec/ȶerenceitem").LinkToListTemplate ActiveDocument.Styles("rteflXrf, 1 End Withxit Sub ERROR_HANDLER: If Err.Num@ber = _USRMSG ThenVCANCEL V"An error has occurred (MakeRefI): " &@Critical, >zIf ~wPublic} AddVerSpace(control As IRibboDnC) 's@ 6pt s above th@e firs electSparagraph OnSfGoTo7zS.Ps(1).RangeForU.)Beforef+ 6BE?flClear'Rem sʂabelo wBs΃s Dim objz|c@@ EachFIn 1@;}$ ?I I0OAftacNext_Imr._Io>Iub Ins!Imag[1. Collapses any exing G toIend p'2. a`s`is not in ty qƏ: g@' s d type a newg '3. ApHply"iA sa" '4. Showsbib #dialog[D!\#[U"ӋYQ.$ wdE@!@art < - 1fC! `'Cur(bǣ*$: ma0='T1.D.gOTs aSt>c"at!of,3"m& &r&:#!oD ` 1 x0'&2&P`I("rWՋSetaP &= s(wd8Picture)7" $Disy="U?(eEplInlineShape s. k .Na@me, Fa , Truw2EV"PVaFigCaoiLiU="fig cc"MVmax0B. '320d|pword 2 pluQf]owA\periorc, if it Xlike " *PURA.0RnfieldSO QaNp`4DER(, 0')Ǣ.qiseȸ'2f))E X." markR presȕ@5Trilm(OK@KWT) L 8g %P(.MZ"Whil.0,Pc`wardd01234567X89" Plxete5!)WLRCharR@NulplStr RD@efault]F/`ns{F'Rewca U..BoldSEa&r'&a&BJ "AEmpty, "SEQ "3""  ".ZiN " 'Che@ck wheP6rX wemQthan one Uso, cPgsalignCANCEL "An error has occurred (MakeFigCam): " &Criti cal, nd If ESub Public TTableV(control As IRibbonC) 'Applies the " tcF" style to max 1 paragraph 'Select a5>dtfirst word of( plu1following perior space, if it's likE`*" 'Typ $nfield OnGoToOR_HANDLER!Not A;yP2S6( <, 0, Fa@v)ob`RaiseHvBWith AE". X."@Nrk6prese nt #Trim (."Us(1).Range.W@PText) LC*"@( .Move@Whiv"., wdForward 0123456789"T D@(B]0CharB]NullStr@ABDefaultCNF@EFZ.C@apdwdStarU'Rewã aE.A .Bold True!M5a. $"G!Ms.pAdd 4 Empty, "SEQ """$} .h N 'Check whe ur we ve mor@an one gne. so, chIpalig nmOyjusti@g>.5Key ALinpwdD@U.IPAtKRSia 15c5At VVEb.p{.. __@__ d.WE).?a ?q> UEqCo`unter.Dim objFW! FqFGpdv+l &'`cwS a sRP0/.CoIs /h'%Q0LWc, eP5nforPU2,2s@vct(s) wш"""՛2!VdN4 ActiveDocuass(w B B M Wp=p exi`l`% t h Each"In $&pPIn(1,;dqt~x\n") > 0mqps@743!NSet F-= b13 A$Q- 1!=oAā?oıR"(+ ldE9 , qv") A? RůOOO1YYO YYTYY6h,ProgCo 0 Then#G+= AqDo"c#nt.s( ")Else*"!%Namend _GoTo ERROR_HANDLER1(Is NothJ1?.Raise_USRMSG , , " predefinheR'" & F&"' coulRd|be@tu*inmtemplate.A vbCrtLf _)R"Plea&u@'Checks' button custom` ribbrBere dt0±s!"BEGQAHI.Typezw>d6M E`xit FWith S4D'c*whe@.r thigh>l$E arzt.&EsoECed@"(> .+s(D1)@;ngeA)W "np{;  &P  H,@'if@suppor , #}H#O@Iˆvai0labl mo than oneȕd=c >c ')Form2adz ='collapdTcC .CwdE St=go up, `\b&63H@b@.MoveUp wdF, 1e "A]Byd@"Trucc J : `!>Numb aCANCELm"An error has occur@red (Nl ): " &/vbCritical, ӂ2@Public !Setts(control Ap_Ribbon2C) RPa$ge0upBCheckEnsur:es0  ThisDocumentThisDocumentSpLNProcMacrosSpLNProcMacros F$Documento di Microsoft Word 97-2004NB6WWord.Document.8CompObjd