fontawesome/0000755000176200001440000000000014470045230012600 5ustar liggesusersfontawesome/NAMESPACE0000644000176200001440000000026214467775557014053 0ustar liggesusers# Generated by roxygen2: do not edit by hand S3method(print,fontawesome) export(fa) export(fa_html_dependency) export(fa_i) export(fa_metadata) export(fa_png) import(htmltools) fontawesome/LICENSE0000644000176200001440000000006614467775557013643 0ustar liggesusersYEAR: 2018-2023 COPYRIGHT HOLDER: fontawesome authors fontawesome/README.md0000644000176200001440000001572714467775557014127 0ustar liggesusers

CRAN status R build status Package Site Coverage status The project has reached a stable, usable state and is being actively developed. Monthly Downloads Total Downloads Contributor Covenant
The **fontawesome** R package makes it very easy to insert **Font Awesome** icons into **R Markdown** documents and **Shiny** apps (or, anywhere else you need to put them). ## Examples The `fa()` function can be used to insert an FA icon. For example, we can get the *r-project* icon in `steelblue`: ``` r fa(name = "r-project", fill = "steelblue") #> ``` As can be seen, what we really get from the function is an SVG object that represents the icon. This can be directly used within **R Markdown** with: ``` r {text} `r fa(...)` {text} ``` Font Awesome SVG icons are great to use instead of `` tags + font files for a few reasons: - There is less overhead in a **Shiny** app or **R Markdown** document since an `` tag requires computation to obtain the icon (`` tags represent the actual icon) - Using `` tags has a 'being online' requirement since network activity is necessary for resolving these tags (SVGs in **fontawesome** are stored in the package, so, no Internet connectivity is necessary for that) - There are styling options available for SVG that aren't there for icon fonts ### R Markdown Here is an example **R Markdown** document that includes Font Awesome icons: --- title: "Font Awesome in R Markdown" output: html_document --- ```{r load_packages, message=FALSE, warning=FALSE, include=FALSE} library(fontawesome) ``` # Just a few tests with `r fa("font-awesome-logo-full", fill = "forestgreen")` It works well in headings... # `r fa("r-project", fill = "steelblue")` H1 Heading ## `r fa("r-project", fill = "steelblue")` H2 Heading ### `r fa("r-project", fill = "steelblue")` H3 Heading #### `r fa("r-project", fill = "steelblue")` H4 Heading ##### `r fa("r-project", fill = "steelblue")` H5 Heading ...and works equally well within inline text: `r fa("r-project", fill = "steelblue")`. This will appear, when knit, as: ### Shiny Here’s a **Shiny** app (from the [Shiny Gallery](https://shiny.rstudio.com/gallery/basic-datatable.html)) that’s been slightly modified to incorporate Font Awesome icons in the text above the three search fields: ``` r library(shiny) library(DT) library(ggplot2) library(fontawesome) ui <- fluidPage( titlePanel("Basic DataTable"), # Create a new Row in the UI for selectInputs fluidRow( column( width = 4, selectInput( inputId = "man", label = tags$p(fa("car", fill = "purple"), "Manufacturer:"), choices = c( "All", unique(as.character(mpg$manufacturer)))) ), column( width = 4, selectInput( inputId = "trans", label = tags$p(fa("car", fill = "forestgreen"), "Transmission:"), choices = c( "All", unique(as.character(mpg$trans)))) ), column( width = 4, selectInput( inputId = "cyl", label = tags$p(fa("car", fill = "steelblue"), "Cylinders:"), choices = c( "All", unique(as.character(mpg$cyl)))) ) ), # Create a new row for the table. fluidRow( dataTableOutput("table") ) ) server <- function(input, output) { # Filter data based on selections output$table <- renderDataTable({ data <- mpg if (input$man != "All") { data <- data[data$manufacturer == input$man,] } if (input$cyl != "All") { data <- data[data$cyl == input$cyl,] } if (input$trans != "All") { data <- data[data$trans == input$trans,] } data }) } shinyApp(ui = ui, server = server) ``` The **Shiny** app will look something like this: Please note that using `shiny::icon()` in place of `fontawesome::fa()` will still work. Internally, the `icon()` function will call `fontawesome`'s `fa_i()` function, which generates an old-school `` tag for the icon. ### Installation Want to try this out? The **fontawesome** package can be installed from CRAN: ``` r install.packages("fontawesome") ``` Also, you can install the development version of **fontawesome** from **GitHub**: ``` r devtools::install_github("rstudio/fontawesome") ``` If you encounter a bug, have usage questions, or want to share ideas to make this package better, feel free to file an [issue](https://github.com/rstudio/fontawesome/issues). ##### Code of Conduct Please note that the `rstudio/fontawesome` project is released with a [contributor code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html).
By participating in this project you agree to abide by its terms. ##### 🏛️ Governance This project is primarily maintained by [Rich Iannone](https://github.com/rich-iannone). Other authors may occasionally assist with some of these duties. fontawesome/man/0000755000176200001440000000000014467775557013407 5ustar liggesusersfontawesome/man/fa_metadata.Rd0000644000176200001440000000243414467775557016127 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/fa_metadata.R \name{fa_metadata} \alias{fa_metadata} \title{Get metadata on the included Font Awesome assets} \usage{ fa_metadata() } \value{ A list with metadata for the included Font Awesome assets. } \description{ This function provide some metadata about the included Font Awesome assets in the \strong{fontawesome} package. The list that is returned has the following components: \itemize{ \item \code{version}: The released version number for the Font Awesome icons \item \code{icon_count}: The total count of unique Font Awesome icons \item \code{icon_names}: A vector of short names (e.g., \code{"npm"}, \code{"drum"}, etc.) for all included icons \item \code{icon_names_full}: A vector containing the full names (e.g., \code{"fab fa-npm"}, \code{"fas fa-drum"}, etc.) for all included icons \item \code{icon_names_fa(r|s|b)}: Vectors of short names within the regular (\code{"r"}), solid (\code{"s"}), and brand (\code{"b"}) groups \item \code{icon_names_full_fa(r|s|b)}: Vectors with the full names of icons within the regular (\code{"r"}), solid (\code{"s"}), and brand (\code{"b"}) groups } } \examples{ if (interactive()) { # Get information on the Font Awesome # assets included in this package fa_metadata() } } fontawesome/man/figures/0000755000176200001440000000000014467775557015053 5ustar liggesusersfontawesome/man/figures/fontawesome_rmd.png0000644000176200001440000010363314467775557020760 0ustar liggesusersPNG  IHDRTG#PLTE333+ꛛfff]\]H&XFFF```cVVV999Ա`$@@@v/1yyyۢ454VQRRccc31c765MMMɌ9ÓIII33Butu===Ԅ(N$ <_ݱ??MG23B돏Jḱ124ե@33fa01(nooYh߻鮭ݚjjj31Ucx0>Lڮ̘ǎϘTC2v33pu~}|XM@/Io/k3VT41H-bP^fc\=KTBQ>e]T=a4GܹH1.?}-GW_UJ{>.V)é`i.<۵֕K2kqă{T ű̋VM{iǵԬ.0Y+Oퟶacvf8V~/SyjF0wkJZDT]|WDR^gv]TGj•hZih{kF=3|xĀweabrAe5x+ tRNSP$r׽ @IDATx=N1Q݄e" :RуDC9 ' ixLᴳ2N6MκUTGm6f- [HQ Pk֣앥UkQlc6ppjj~ڗp} Wꨄ llvW+m~l}NE?GIQuJO_jjJ8@utQ|@nDjiQļ@iv16+!l4jڈ** ** ** ** 1 1R݊3  1"U*H -R@T@"U*H -R@T@p3sٹƁ8?L1c1f5ON ب2FnH^hV`0Q幜j MfURm95D"ڡ DG}t)uSs6OfbvDҞ7AQ'CV@EYQ+~;za3D|CTb QQMӇj&'uDU6Α_j=jZ>HjRm|Cҳ% *Th5MaCSe QRh~!ӛTIyZ*S%R]UQJqF]>eT8j@3+J:A9l{Tx8I4^Tz˛xTԔx:x$QQ>լ&,HFNɂ":1ELVBZ uh3_\D&{cgaun0SkY)Om!y|A (+U*۫[U*wwJU朕Ty }iv.L%2_?JhYo!:{ Fmzi6M^Ay P8Tw b.'f's39~l0, rt-V̕*&*WB5īc MT3*RHK9V'QBkffU}F 7u|ˎ;#oGdGlI?uS9ޞ+U4炔Gp UaX" x;Tǝs[ ѴmMɶlv(ufY3ǔ*i `,7 k}ʶv[yhٙ6fPjЙ;,-_- ɁߦTWl~06깝{٪0=V#Օxk1b|md9_*b,Bs.pXRX#ej_gPp>'"wpX2ɽF>{ 6ƭ07R.ΥMh sc5UE'2+Us(<קY4& {F1_,UI*.84* Es>U~*u4y _5*h ʘTħe7h_ ߞZݱ2RuaT|wmPޘ$h17%EDm*u`.{=%^喽iw  O\z%ŀw KD2i'DĎsi-U?>j#&~TzեaPG2ҧ2HG2:T i*U)'HmRQr:CJS. U%i(Ms3Xua9,#_+UO$}GP蟜J_7kjBth̲.z |3c+=ůј aG v~^` wtDSc^o k q43mjL71;:4W_b:-KrmJ@4l)P9!BtC~9>r!W(VF.*HiȂT(,Wr99A98,_+C .X1C ܰ3$_#|o+yFh>ŊHF:+d߆%7}߃ K*ti炖Ti2<{WqhJ?wT&Qn%1+nPF)5&K$*ԷGjc~OJA2#&pRwikû܈@꼬2kZqF4H*"K9||Ti1D d="`S$>- xGV__DZ˱4sa%85k_|&cʕtÊlj8k/j |G1<(&5bF,ouBLMjLBAĹꇳYpR", =ssT X縦 4PYI(ȑ:8,_&UvMp2֥އUQ?չ}O| %}n$ПۺTס4>rkRX~.K5o8 3RUrj$ɭ? tml|h^]Jٖ麂x>,A&Ms֓蔐DC6$/`^aXnf>.rm]S`_$ڪ|^D3ʘ!Q>Un$8ȊTCKո>\ؗj,C HNm`&F4P RٲTR.5RZYtP#{=!z`۔*yMdn蟍0k矄 >?!iKdU@Eb964sa_hTCwj[SpZe~g{TV ǔFELXRQ fyXG9TkxeLb [jzv,Ud|T-C~=.(U6|z}?8-IlLR6b胧|֥`@gJ/KrJ~T6!}TU&5h(kz>e8|DRMkHu98,_+U2P7K}Cc-((CM9tO,Vf!l]964vsaW P\*"'K)s%&QVs6|A{2ҿnvJ,M,:,'^J\z>-5 <װM2M-3nֽ"U0Eoߒ73964sa_-TLum)H^CBWmKO TX R=}9xD"Mp  ے*'W͕N/r((w%50frl Ui¾TחPMPv[XpLi咺ߞ!tI67To cZM8a0-UVص+g_\>m$/. 2ְ R}[7S܅G,\פ˜ʱk*~tJ vͦTK#ӿlO.*ULlAlU|*ܳWs$\:2ct_,U[ٹ_s\` 6TI7϶3$, E/c_vT/.fk.džr2f.^Lz1zNGQ굲M"bRcJsɳ_~L#A/=҃.qwigގTK#RBG?q.o$Uƀ߲TWv0 ֎ajAbǧ6e,!R7Ţh1nУk3d>\|TZ|v((UX7NÍJ8s2 (*S=0,:UbyifYgpUBrpXzHyf /;`|@h E #cf3,$ 6z4 9d*h'yy6 n+mi.̗{KRf.p@ѥ*e w RHu@XVgz c$q䴴Zg\dG4U,jRbZ8@rw/9" UZ78E?ЦۄpSL2[' iƎT=y!9d˥ŞT|pε\&,,JſK̜cJe"GUSQ֤5yƿ!n0GS2eUNT[ͷvõv 7M͒KGa0-U/tlWx"ԗR {8 JyDu3}oEǘ&N"A -ŮѬX+'i)NүW投Y] GE4׬),=4%a(R5yW%s㚍{^V{5XN ȲTX>XjX`%)AA^b_+<v$`vʦEB( 2)S(\ㆁlzI -3HO1ȱTקT *rMdZ]W=sF /Q-E@6'\̓:?5Kyaa&[t )UV+Jw"n,"+ "l5{"{;&Bz~!\No-ڽpkiX$Uy$q*d$cpR\;@4- "R_QEP5WN4J}UGhΐj_B:RuXB SF71>xEz I}aϹ`}Ï0#+UzbMQҒn6" -"ׇ0~--υT7/լ-Bw4F*u b lSbP~. >Qvwِ*{JSUrS*!T+PR==iR`\0-du9׵LO5MߍKYUw𐊺0ZO.5ϦCJstH<~E{)PʻK=a{RB')0 uU*1kvkY̱ iX`q=V$U p֝oRZꎺ4}>䓯};KB=/Rf+S]@.Tݭ:zgF[d;6veHPwGNhv茺(²j?1M/.C*yy.[o'upڥҎ\V]z,Q Uܞ.bsh?w$cVxɎ?V/.^C@*HVz\6!$o"jޖm5HS^5(jͬcUo)wFz5x\ Ht 5*} SWKS7lDnV=N2O~Ȼmz݁(S !9CWMZ,7r)T !f om w@ @p'U*H -R@T{u,0z;J" /RT@"U*H /RT@"U*Hbj jÿW4tU&1#" " " " ": q=? q= )G%hUUhUUhUUhUUhUUhUUhUUhUUhUU`W$^ RTE Ux*H^ RTE Ux*Hطc&8wB,v0*L9hFq0C04 d)tIQ8DThVL"/=I=s4,~._ڦ0XUP@ *B` T?TQdzAv8)yaj_NwlQ{Zz;=hRIb4OˌmgD-kA Z$s* a#TO0v?=nfnwu6Ϥ m7X%SAULA{ts_"~gϦ :]P`bL]xD!!z<4XC$D-AU[b/.qΙ95:(/;sf|{ν-yVwm Jqoaw|Y\EomGC()U !iNsSȲtE\׾7>^E\1wʐ*P‹]sGAMS.d &x>bc^fc"W ^ y_K|wV8n*/[o1F E@sꆳAPHʩ7 @>_%A/ˍZ )ҌX&3igfd0mc|LOo9g(r媍o5 m6܈٥YiQd bϽRmKnѹXJUA 'Az"[hqT8DZLѨ'Il@é5`DFx :{/ FR*~ #PVίR]H,LwC'_*Y6ҿ;g=y>>eAjpA\H4ogp}KH#pK V]E+Xs$\iڡHZ>azo٤uK:N%?J5[TB$wQQKZĒlNFIKuPG:p:E yACGǂ#A+H7 V*!~LNInZYI:#v^2 hQ.?oNzh@wUT,s_R%ArOr[W5\aGv&l 6)*NAGMAr U Xŕ{a1=85YEkL*|n?")z ;&y8e0:Z4xgZ7?pg5_OwF|(x AZ.lF}u7JQ6 k@ 9*OB}juH"i ~p>fLrk-==hfA颺lLJvrk,7,VDM#{"BjuBv~\f *{07h\fHWM<^TOPT3&ե;/s(U{-iRpm\vRa\TՅ& 9*K2nv&㌃i"4E^fϵ}g}O;1c5fZZ>%i#́j=wո)w"UB"spb;TJUA| GRV @s ǂ e,U{Mk ; QX6 TȱCqf6I՞5buDxVӣu(r-ʝTӱ49a*ǎ3bƒdDTLؔ2V?Rc Ga8× CVb.U IecZ<3*^xw lijύSOfWA[Ч:wHN ~P7&ZC7*N/C++ AFiVЦW  SJQF3ũz{+`+[ );{(\7͝TQ歡'9gil3ܮmn\w5LS (% ٰXgVx* _JƌPЗ}4>QKhx\`me)&p7ڟHjM;Bgxs~Z;@J5@"7opi:y̘BRµE #U^Vȹ}Nyg^Ty֩r0 ᤋ4r6'b^Dz3vr֦=1E qbOЌc=Ė^^d LzE #!ٺ>DؾPҌphH]u&~ Y徆鼭os@'Ou:z]i8 ¾Zʕw =1lRI!08|wƎX" Er7ppe5R#\Lo\43Uwd;nCؗ2$_nB:;/HF1pkS4j$| $js7&i%ZʮeJT@T _DDET@T _DDET@T{u,0z;J"E Ux*H^ RTE Ux*H^ RTE Ux*H^ RTE Ux*H^ RT%X`4vDRT@"U*H /RT@"U*H /RT@"U*H /RT@"U*H /Rb[OcGIH^ RTE Ux*H^ RTE Ux*Wmq_Td.WC C%mR4tA D_9C6Ӏ1+dG<{pQ_*D~!)fbU[nWk~jVy1~>3x*ށ'zꀨZ "q')UQ3SȊNF/ceXUr?1};'zjߨJf#Q;S{{oT^vڨY{? IE/V."hQ萨75c O>QAxb'/y>U@JQSDITkU-*!$ĨZÉ4QMx Y/ddx\T#{fp-V_2FJ!DT,e ]t@T:3W8l3kvtRQmxD=(/01EBl꣤1ކţ*ș?nT7jڧ |TFE:+J!{批ՑV[\&B`(bKT3ގ*5@T7&|aQ+ :QuW/;~Pfw'"BOUFQ%36EUZE9?I(=ije/ dCllMmt;ej)6 eFMqA =ayeGUBxQYEa{ft:VGU{}._| *T+/W.T5 /Eu7W fPx e7/;RT !Ķ% (g?tT'<0S7j:l8ҥd:p}urq7x]GQ%)gͨDգUM}5㡲?/t۩:AsJeSVhhf5VVv{CUB)'FoO_O>tTJ/ ?2~-o P5Mp:,hT%} PT !veTf 2Ejxz /"ׅPzAj*0D~_GD55QmDv\( W"pφݴc{(o36[& ).EBއ>KyQpؿ9_cfVmj%KvDڗ4ɿ\XѿyG(Q+0KL rgV ҨD*BȎ'I2?zxx/=QT{Vb^T r˰wj{[T)en!QdIp49) _35j/Յǹu.PB&J+"8EBl*ƒ |jWDj͏J݇ tW"x{uQJV%FYgdIѱQ[yEN qXEtX]UTъ sJ!GuUYZ:| ,̔kuo{F@+VU3t~T!Н{:!!~r8@ՊCdW7r *|dNSgJcZӆq͚ I3SYzR*2 =[}~}am27N> 9:TgoĝGUd*ۧWJ!4? {bfwg7޼*A#7UϐK*L-s'*K폪#j܎}|Om5˟D/|uZfV(EHSA$*.D2mGTOuҶ;5v5¼PjbƛL^d Q=6Wi՞j'Ō:vDU30N:I*8 uGUޣcj*֦G8UM?/2CY9e*==אS[lgJN׿Ur@T Q _*D|!Ufj jÿW,2яUhUUhUUhUUhUUhUUhUUh9C<C<!lpQ DDZDDZDDZDDZDDZDDZDD`W$TE Ux*H^ RTE Ux*H^ RTE Ux*H^ RTE Ux*H^ R^ Ǝ /RT@"U*H /RT@"U*Hb^8[L$hj5$ȧ"–LDйssnjMn߾7^@TQ@T?G5 "c Yǂ? Is&efĜǨnЭs۪%2Wdx1~R]n9q̗*ʣ gsCZ i^&]S;Bӹkbߑ`&=@|)>7UBT^P jeQ{SGTuTư_( j5QUYg̤ʚS!J扦UCT):fOtISU ]nf\/ɩK} *&͛˝BXupdLg& 6iȧY~['&6~yFN?d5- |'UA(HM d Hhb*u/˺]3T9Ií{ߢ)BEGI冃,ђjft>:LT9wCLlTc;j|]TȒћH-`"MaʟlpRoרּBEG5W˴U%ct!vB+U-tO.,3*M)i@(Llr!b\I#rQ}T4u~QM*V e_F b{sNV|@ud+ YeTMcDGj{B.8*ςZWp6MQݪYQ5sm`"0~sB (0wI2 Lɪ_FUZyd1!Bz2Wz!h0oڕ p4|B(1Q7MB݈:*0Xk0MF׿!Frը~U-BNjno*qm7wx4?%l[07#|@wŽ͏ɋ@'63e1qk:1oB0!F:T!F$;sGJlL(o,LXh`*`.v|.Xj_Z:;BϿ TqQMtGj'Af]U:@mTdΥĭ_;wJtkhGQM4Skot&2P(F!\qT*U6FO4U|XT= Oӽ&UE\wc3jMb@K"T2 $ /P{┬1!Jz2?7DUKAQMtI= USfwH@Q=k@L)lW61!FzZUgm%WSO:̾xncT=aJHEXԚyb Lta`^DL$j=:] pF!qT:x?~=*:)̽!+'㿎'}l\,vD56v"9y_Fu8H? zk: [sw;`n;8>ohQ1Qg*BPnkYoLP"L<\Q+7_M1M(~DT¨"/yUVO韃˴|T aRƭ\TEbmKT=?}*B-Ϋ99UE5tzp6*ɰ2U/3wH+yU[?57*)*BVUfG5WHGUKF Rs3Yﺫʚe߶~_,|h#KT} W U`Ώ{"+9~~U*f ٢vbOܚ;V [DUE%B-BȕEU8|yUW8??fG&T)Jz gn)ب^WDkҕ"+9>YվuQGUʜlGEU{&,'iڶ) "ՈA1#;٣4╵׿6tw"1}'v  VZm mWg6 Ԑ*ݬo!R:v~=s{Z 2l(Um0/’DT,hg=om̞Bߍ50+O\TqD/z"K-EչӇog߮OE6#{?N6KJDU%Ti0)' &$ت]$-OKMBd( ɨjBQMb׻@0nUٰ$ kB!I C]:Dj| Qu>k kny!R4ɂn)u_zǁ|>hfgW!FRQ=Rif}T PzOw~saҘʅ&XyzpnZ%g[oQ8N`z݁byFkUl%l%J!\HPB X Zy6Qduw3p03=BEQ^RұYz!`T%G?f,kBE0s, a?-AAMbSmA_;{!rs?7mFuRo?3;%զM`YO"\%զmE UE0ڼ*v=k*@iD5hڌ>GTC|8 gUUmfsMGT\,wwWCg&J$ @, **" @, **" ˿8yT{'*ˣ$ ձ i(E Ux*H^ RTE Ux*H^ RTE Ux*H^ RTE Ux*H^ RTE_.Yq.y  B|qQ{xEhrj*h  ^ *BDQDt/P^_UANygzq/*ET@T , aUU@XDD" QQ**ET@T , aUU@XDDrQ8*O_aGiv;Of_S]PL 2:k=+6P{T$Ko2>0<}{|8y;8}yoqފ|+6PkTm/d} n3MΊ(]y)* ?ף͡QOyxw|[_6^;ڽqnT+ը~ݍ*6gψШN_ZTE,e#C,fKţ:79:Ogy(a+u l4_[6e-)6҄5M!#AdiÑǗIK_s[SFƩDvwOJ0ϋ_J{wQeL2 9,UUQYl=Fuڢj=ߐ׍]LTxC%'r3#|fc6!&]զw\ꃻ*1PكU}QQczhD, ;Du:|گuNJ~ĨSqt@QUYSC 'mPj~(A)gڣj/x׸|lbe~h\n4;{űy151rY+WliqeIyKu4/fFd:8-Qd0̪o4ϨZ[#GvcwYrݏqp‡ ~-X1/5N~8?P;LcK)EkcDx1hjڦKa:U[/}8nLc4e,g]Ĕ6{@ؘl((ɚXXRojjD ؜n$vT]c[1C8'܍Z[js(ubSbiBrT+-RZ2 S,Ȝ%oen.}׿ $#tT]_ZISiNaQUb+!_Vy' U:^&ITdgg:a*ǐZp32P,HzmvA>pğB7gT^m`&v"6 E3UH)G5tT7L>@&1G=]|Joq!fMD|Q}E W'lJ*Zn"7 q UN-Q^[%_nZw~X+x,>U!6Rj CMQ5qQ̴#.} f4Dz DC*X3/ʎwA:o[%m*|2RI7D@T mOՑxMfxQfIU{LbTO{lѾcj+E2bTy#.!a[Ck_;%u LO7QwIr ""CTTinxNSX&kh4@tU9;ImSOҤ k9 Q#muQ:jί QtzTv&j\^n X4LCkخrF%Qu'9=$]>QQ}S*ԣbU-&͞r߁TG:F̹Y3oߨs-ٗsvk*Q4"9>3cvTlߌTGU\`}ݬL~9{ yp!ƴq5Gu#y .D9| Qhay|HsTIL>>0Y4%? oWjBUFU&6$҆jY5m>"$YDU a ^oƨqIDe1\~¼KfOއy7MM:6o@PUdj1F|/!_ẎBXP{9QI/R33c!V\턆-D1aBH*J@I&!R񿃥S?V+565egyNQG )C³nDuC&&;3;r&4*16,tlUr)Tۙ+=L}T!ȧMHވ#UܕKzT>RXhՏlZ߄|< ҉ڨl&^^U5i* c~㑻c# ݘ8hv.5H]tAd2.?25E/)ĸ iBCT'/&RJ>)ÆhRUrԵb)qn)W*KeCvEMT։"7y @GT^C`9$3C_ld(/Ū+ WO; 9Di oU6s#9mAqny+;rw  jl u#a+<,>f ks˗_[ҙMȝ㖌mD^[8"EmO5h}}~`E{wPp i2-CAaXƢ/ ɢ(u`2ŲE:ݖp9mϾ OP{F|noU%B{P{Wy~^=O=Qm~]'dz  P[9 Ӻ ]8^]+x9hQ]iE|<_4.FZ2CT@T - iUUH@ZDD" QQ**ET@T - iUUH|W$TE Ux*H^ RTE Ux*H^ RTE Ux*H^ RTE Ux*H^ R}8p &]"jl 6Ē]i0GI$ C j("p*b{Dłc.;sɮFn,sƷ/@T-*2pPVO̡ɽ"Uܮ8sTWu8ݢT!7KQuy2R(1Mp+L3}SU=atg/ӉU'Oe+I^YN'H4YKu3*:wҹMn*CT6&>݉pT҉?jUctZ+U Q $B_#6DfPRjj<ǯToF1?U{<"qވTVKR$n7QEqCFT_?UG˗d\XE;LTPUgV5\Er ?jP]n6+ZAc9A:Wמ= ZTDc~ݣyb:WnYܽdXlך7?&ufך%% ?9QCwߩ{~npӵ١7㱴kQ%&2MMX kT&/fo>kQ:}ݹ bV6Sԕ܂njTG՘_{<ZQƉjM’1V%9ZavjӫʪIg/l~ёn*^#[+vYZQMI7NXT bQ]=:=VDӃmzoGh 9_n}'n=ХqK R~Eq*;QkQ%*LxT 2II6V{vo}^VS{xߵf&ԲM46'Q,龄 'c9>DGTQJT\ՐJODꦭ|TnOoӟF2Q֘3tz:=u k۾mn=U;k3Y7!3/CTQݭ*Qd:h&kkQ4ZݙL4h&}[)xg>!bFc8lQ}0.Gl6J *# urF5bMf^GU b4Srm_b`]|)٪ƚϋHyڼpĬJ]G#`%\H]"7xƥ-SFSJ.&٨g(-toO_{]յ QԋT'gO*#sQ9BB2Ϋ%# <U&'׮թkQݐjպJD,DU/I)}Tx<Q=g6.t>Z Se~(-4|q_xX o6 /&*} LM;nZ_mz}Xk>}MzLwjY֪7*YXQftUVE ќZ읬Zn\ Mu|@T+q$CTfH =Rʬʡ[֭U1.e\\\?!" t͚Q>IiMaouZZgT"_h;߮yJf8ywnQ?*bRě@(s|TѦ6v\j]Q#Yzō6{V-Du-e# T]OwS*7T#&5QH>>A6U>QTU MUao#g#죡eRI*nlb%$mD7{wDq/xFMQ+ x$Ѽ0j5DDZ,)FR "A(zT+j>(xQ|QDx+VE/TQǢ2jjE P6d.3y^!ۨq-^JT"L= v!YbN*ϊՠFym5;{ Qɑ uKTP6Q'Pk8煴JV?SvpzRjFe\BڴdU ~Zf"CL1*~ V}6ʽy Cp֨ X GgI&ԛ7ؼP}'_.\I^=ijf&ssvQRurOՐREI[x&,p֨v)3qTU/:-^l.xuYû!@E)CJuTM}օ$\QՕ{J22NbmWTεju*0ꛪ:uOi:҈#-"nv&檦~&_?Y;x83UB4T+*#Q44/ ߙv}O&|MŤDݣ<m3ni5̭:{J+gȇߎF;^Qu_aE%`D椫:i!UZThּ>=׭ wjILT lUZ ksQe>Ru+ubҪ:DQҬ.bI@eh&CQ5Y?WhOU r<-+*Qܐav DQէt'%b#D3kUU^wrLWkTw^׵l DGu_*"i_YL]:bjoWﺹc^wT^S^.כhKJzjLfu#MwwcS):% I (S藸ی Zo( :Zap̸*[nRI &;~\˞pm ?RW&Ke>Q /˄i+LTQcOځ]T@T{5W0??z7C_i=Gv&DQ-* [UD *@nATU܂|c[OcGI Ux*H^ RTE Ux*H^ RTE Ux*H^ RTE Ux*H^ RTE{gSeyZBЭ{/• ؍XVs0h1r!gLg'ƦRhꚃ-50w^;ӅSXVϹyw Ub&,bMvf*7,̡3 (Dŏ|iXWJN[;#Y,5q3nٽ=ٳO (D͞?*IOUՄƬ1w$"5ADē"4ŚLoP}j>^_zv5K׿O7.u`>ZyRR%Alɓ9cVkRRh5)_QTܱ`eXG39sͤg=T?uP:0M'Օ>~Kg˃zh&`NqU^QTQ^Uq΃bM1T""C\ T}NtwUskmp:"@HrYVxU5ŚbN*V?^凂U#ՈpJb&B Ո¦LK`S?$scⷂRa,SΟ2ezK /lJz?CAG\1S+ʗxٖ.fڳUiSg,1݊~cJFP}|0φM1 =83f.\2v5 f2ŀ[ Z4aYM6hqͺELU5J[Zso5Ӆ?ҫP ͒rډnkR:(!-]nJ%F/xWT+ 8N붆j9e5nU!0W:7w%""r` Hx-{k!@rƲ콊RwH}j5PR5|D[:?;QS(Ԃu9Cʩ\WqAbX_!j7`mXuKhi=I N?ʹr$`cݿmP-߱B/uiD \o=0"i)+6{?}T}҈  ޙ!NXBv-$gti>4 I0p߱˲c'&U|Ux{d~KTXWQJ$5;Bxw]a TeŚVPeGY5 :f^zO꺞_MVoq:Fޫ^2!EPO)̕Z#ԛPuue$[Kl C K}J\LӞdW 'b/F4j/5|B*rE<1@NVP $=)@ik1z\L d@C}Lj U`IK՟t:tu{ubpcbN|Ian-|q/z%&&UסUꧡl|JEòpbX^Ok綿td'SN] /O/{N_ݑaPmXPȮ ~S`}sm8S -@Q[6ɇht#PB!wWzh T̼vNC J,7{o5YS&(WQA*<>$)#!OcX nJݼG u U(MfC  OMϗ\}5Z  -\;nYBUۀTP9˅ޛJW@#.tVUBߒ4Ś T37`xap֮%&9p%ژ})%qvoȼgp@MU}zzR9TXpl~7@ U z㞃vҀʍK6!/`/QOhfGG΀IOTp 5aq|>bM `yW! UR7@%dzb3b #Tm|Ok8T9(Δ H&7-QIpe$Yn"OkgPR1Gi8p|Wo)Pvc ϻߥjEե[%ΫKQMB 3bM tT;I#BK$ʿ2A9PϯLR#03\#7EnΩ`T,]vTn':k+E[jD"8hgT3N-5"g)um;TMޛIaΞfeenvvAwn)G̨?FN(Ȥ,.Zz7b:b&U:8}O5dJn6:䁀#BU\AUXԉb ͕&tॳD jK jdοSniNCȣ- Jy< u[kPϠpz1TsKnW,LKpچ1r:P_~^AV>F&UgX1@8k|ܜSo>.x%:d2C΁/:2g0boQ6}D] d@,7thi_ 5Ȟ]kNaKMU(\8}}n3Ti9 `)u&ί k%=ۆC̽{UPŧ?CQףtV|+!veRUEy˪("8^3X,X:MAu (ӂ,Pj֔FhV,#CU.ۿE-_ލi ΃sUrh({,?ǽL9MXֶ`9,EMPdBf<^Jp-֬JcTK`+frB9tU6t ӮTfKSj%R,k"C!ZS:s\7q]bk.`ܬyTPwByLmY Ub:EԨ@B 0d@[R'sV_?9rLo*(%2Gՙ3P%ZK^ P]d*ޟv*XCEAEAղ콿|{bRƗsV&?ПQԁfbX qAFX,b!LcX,:>΢@bX UcN-iLN ,?10AH P\E^&MtW울@T6}@@@@@@@@@@@@@@@d׎Q nQ(X؉بB;!7(^;iTS| gUh@[DD" QQ**ET@T- mUUhOTW1vUBJ&..#]Du)n#CDujMD/2hQMX2PiWBDu,"U7X x)a:Du,^U{ 8g%|'۾0QW%<>ivs ݔ] P7m.Ǧ.Q]Ttb puQ=eNu6?]:֫AY{`Q@```dabDd/IENDB`fontawesome/man/figures/fontawesome_shiny_app.png0000644000176200001440000023363314467775557022174 0ustar liggesusersPNG  IHDRT4XBՍPLTE333ܛǡ///b41d&X_$w/1<43>>>ۣHfff347՟I23MMLGGGIIIh01:::32F򦦧Y12F[[[嬬41[33=34m]_` a2:AE=4xyyғQ26Q*\NB45{CBCSwٝ\cb`†5AGذonn˺ȆL48m/G~6O(NrLCFM▿۾"Yn?NZ`i]>0;`zrĈшS{n,EZy\k%x̶Ъʃ6¬ex0jCjF/᷈?ݞkDΡsxg_n<6zU-iᕠHXdFGq޾a%Z]|Koy!rUGn:xGIrNDbŁvk k`dLDj\KERjwcfv:oKv^GTnbm*wρ-H2}ȊAGQh-(& tRNSuJg4@IDATx;n@apF<19E 49@,%٦q}׌v Fa ˻i-hջ:_d(V cgMyhgZyqV-#' (l|j*0c)l"< t7zM@g>wfI~_<,ݝD-U " / " / " / ";v@`_ ;"td ,H{`,Ľ*DfsN{o%U@\DD" QQ**ET@T . qUU@\DD" QxɳTlmK~Nn+5ܕ8-.1ڮ*NRe8v+pJ|Q-fwIuV" G~*ZZ&+Q(YQ y3°XwEZؐq܅pN jWBTqTkRuQ :U¨.G?Zi>Sb1ȯj5e+fgݭ1`=c. VaT?ػc7(00}PY[U$Da $¢ @.M*-xflp6bcB΀p,كQ]#hv_T3^9lJ!OJ<'pGQu^E )Qg*ۼCU*!*k4[|-!v{bxܨeD^w^Be2c B7:V jTݕ};xB=QT-vBo7P ޏ޼N^]% fH 돃Y;MQ1/Mh5Y>!ygbBΞ'dfp+5fEML q/}tfD5|$动 7<̭c_ӿ+o }.=H8Y%&ؖd75џ<ȑr_\8B~{zpR|MS1s\X(TѸrKyFwGPӢ[@Rqd~#I"rrSYψ*jFA-6RI[oGjk<~BU}KF!=lTs6zڂ,4NeQA/s1޻{fF CdV5RJ)rgnAD5^Uka)Q}Co*ٕ_bxoB(~ʓ5ܩIO E2e.>`iw)5tGT ܈ǂ&`}(77茖8w'攨V":_QRT=^u;oaB5j&jɁ),ؙ7)1Wu1^Uq/vlp܈*FQly8WF't^r.BH謁f(E5`\"5 */ }C:{~YŌ!{+ ŝ:ɆF?ǁj _!g*Fb![(r_A;ި6G1g(:>Cj-Q-UlY'dEWU !DxfgCaȈQtʪwywE煝 TN0䨺u7GgɍBt"3F!=WT1a2sTDjfTXUՠU=/"}R|NlM*BHqzP]fix;Rz7k_jq;ih,fGY; ʨrYZ : -O!2kPV:_T.7RGq`RѰhJTEnfE/W๐4=Bu\~H[V HDY,Q]ZTSأ ӣj Q͏s*!OUU;U>a(?T{XɈEi !td G#beޚCQUˎUQ<00QUU@MUCS{.G<uYٴY+ewLMUuJ5q4̏z҆[͓DudD4E̯{.Y9ǕqaMFu'pm4mZ(KeOa]fWkT?N--‰ԾSuʅ/Gㄮm i$9w}Тz瘞u}[v䠷ֵ.r]XhyQ)r{xz$`:=ZY\oq1T>J39Hf\/̛ϪWJl+ ,rNJ'Ϩڋ3Y>93!vP>sMT\CޫsoaO#:VR[UvTjV*QEdQmV?bب!y:Da}\[PT * E+5b {+aڱW콠E|>\kgΜə-!d7ηsȯi*Hݸk?E'^=E2 oT夶].lDɹoWuʶmѿݚ{g*c%RȐU1O׻m wZ S;2o5c`t5~Kf'}]ӏ F5H!y:U?FOU_r$7QUqn4ƻHj"iT2]!;bp6eY/^Do\ԷրFqMQn+{^yBf CbS{3 ?;o$M܌E8EY؏7d;b]R5N[7%Pp;v}ڴw#/T'x]5€_` Z^b;|,o{[Ōt12#~񷏜2Z"`c-3BoxۿxB:=2V8A1FݫDbe!8БUxfivqiRFy_#lK%31Gm`/8n-Ѣű'sར-]6.계jfG, BJXV~QrWYBﶔ//C4k8,$A uY`SbGԳ,XϨey7T#2fVPr%+7n~RsUj*=tz D怪q|.ޮ#E*0ެJyTt<"_/fzL \> ZSɾy]WЄUP۞ӕ 1UY̆P}?gf *7$\8[ YdWzBwHE+_4+. 1nR۹RGJ.ojXZ}@ ItRG슮w-y=Jj$Yr'âOPhSXB)J0YP{M-}+z)P-HP!7Csɏp+/)օ8B i+ȌTXHNp}_ԑ(5T 􅪢T*Y;\CU|&vT=T8 9;Ѵ0g=2ԟJ< UHV*nvsњ% iF~՜xR_*JIjovI)o`캺J=v S'rXYC$x ՘ @0Ebu|-T V=An9Өϵɪ.L>WX"`7Tv*eOjmPjiSjs͉$ÌTkxP0 Y:V {PT_@HCL+`4(w5TrCu^?w1Xe!I"6TA0N~T* G"gj3YrmHPESUc>׸a%&dHŐu2u菎 9=k*dFr]YBRz#O闐jv؀< KZx,2eܵz sTi IseڵcBeOEF P-ge*kgQMKwڭ|efFyqRĞmAQ0@FUkr-=Rvi-rXA6)D}ET]@:BƦڴ`O"IBs,nAPˎm'nE_ 鯡J*ׅ8Z9T!,cXնNu2`.2;*KIAdZv(Z4"^a 'x=5"=jPoO$& T 7T)sYw.⠖ NAU{%\:hw- L$(7Puy Ulp2AD.Eݳ fG%I@5`s|\&#T!+ͺgN0PՋ&Lf4Ѡݭ P/v aetijEiOj4?tPCUsYꏿ#h 鱍X:H."Y/UC 7=hE;ca{#] Ut"8<۽ CloHX!\P3ސ2¶kpH?Oq`<5beҗGVg{#=s KoҿRh2- e"z?PCG Y EdZ }0!I2tFDuۺX=*-ӦyVi_4sgdv-\fewhsoBv:,H:4<ܖ[_Tis5 8 0NzMAQ8~+Ucp  % Q**" @, **" @, **" @, /{ubEa4m  ZKf fb6if``B\{2&ԥ `T`,F*ŨQU000r(paRO]ֺjTR2%uԅkQ(yE.E ]]ۏ˜撗ۗQtumԅ$gp=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"ʀ=:"QGck7o?/pgkbz˔Z؉&_\wWl gշOdz')=Ub'~sMEq{6\"FDAQ.h%`b)t("\B^@"8Ա888sOoTr~<0M7M}Mmyuǿ̜/WQ"!w(⑂`9#;au_/rUQ QͶ<'ȨnToCWPYc(iQ Q[kjFuyF5T6ͨECQݱpT Uk.A)<%4!O6*]\?񄣺imxrQϹ}M}ֲU[Шk8W\儣 νFzQϵ}>j4kxKۿkJk*ޥ GUb;/׊ڕNkaTw]R?SU/V-`T*'~!I/A+0Ϩz}^9e_ˌKJ/~,FU>b:sj 誟iQKZJvoAdT=`Kտa1Y<Ϩz W9[AkU\ ?_cT}w]roM>0>Pԫt>@SzaT̾Uݿ=Fu Ou Aٸ˨@Rҁ[Cs^\"yo3^]/8 C`T x3ʨ}e30bTĒQiRҮ_U?ı _#߮Y(. 'j~K 85K``vʨZTh4LYڗa8fT\TzmLjxEuEw KRb-*d;@Q sQ5^)#`ƨVT[} ̨Ҿz 0_UNZ[Q (;ʶͽ5 ե~@崩dTa+/gƞB94'`" }; #aF׈NJ7#RBO?RlEҙ[zai__E ¨x葁"AUr=2p_$JGaTA<} *9/Q%#E0 zdHFC  ¨x葁"AUr=2p_$JGaTg'@F^Zuvo ^ ? ľ؈ľ؈ľ؈ľȢf]їDQܬ bG%Q=A,7¾X׊.g]Z: $ bD//¾X׊gvua_akUT|( bSTQDDrUUET@T QQ\DDrUUET@T QQ\DDrUX`4vD Ux*H^ RTE Ux*H^ RTE4p|Oc'CcG*gp0p -AB]T? (=;+/ŗ%5)"4W'|?(B/DU{T5qLr xTPd,}l@+| jeTOXo{U\:f̩*0nTjg[Zs vTC8ҹ'-Q~s2TO{NU:BE6wuBt.[]Ec5b:U5X:j1 Q]xTj}]'&U 6ϢzG)ofARɰUTk1txTԋߧуֆU)5 WTwl/2ƙo~8eٙ -j v!JcVJ)V[<7vz%ɓGy:~Eq-;Ixd={ZlbI/D*"˭uTL{VFuTͬojjTZjTwQanݻҴVZj۳О=b>((>( PE 1(!@_ c`LOvgoڽ+ׂY؛ݝ7B*A*PR=9?߈TkVԹ-8pvBH5 S^T=UUU4JĿOV#V$U۞A殃CK֥dԴjfRB"ט#8l+{(5iZ/ƘM|ijf]ZanўLߔ6[ ZSw27LsRS70I@F14ڏ>n%lbEER*T{秘R}x ۪#G7eEB]ؑ8dDyx 廡2vX W__~΀P:0lyoPko+;z1K7{PAhm|]bI5>L+YL Б`\bEeL+Q TUbYxDW1*AyHU=V Cלoӹl%fiFLTsD|')A1/WIHE/Xɐ_-cBF381И* cj)vQ ;3"\2QKڞp<ז2j7V` PB\b,kO{7'I1hjO>l#HзmKxyQt1yE,7^ȫM7IwNNJTCJb(T=*r"<ԳSaϴ8Z$Tt'UFGi>֚RS!>޾;qK8jcQ0A(;G$+Z1æFdshPRAXMZji*՚6BRD*k\%T% @x'2~Zq+PcXƇdG-W*TbJԃ)R~axQGM.ţZR.|Q'2쇃5ξk|F1XN!xYJ-9 rZ79d|~ ~BPxPVRgNJ]g/XJRuXReވhu>Y\"bd0~U<5`JjQ? ZDm"kP~Ca?`8QOX 1q)#Z:iFM|N{Nhw"fL4{F6otԒg9^0n"F!ZMWrxBN [1U@\b=etLŵzRV)cS3RESJˣIuCCx͑{^AxTk29*Sђw?o›y^sS˲,I5 $լOJxi} ~wHuBgY>ѯxLxT%TJ}#pj*$*!^_%jrM +UQ, F1"xN EQw2^ѴfO}tֵ½7:fzsđj#:ЌPTӀkug5[?R]8&ET|Q.ɞ E79wvikfA;K x6Áa2ɔkfXR3Y0Tڍnw:jsTHR@eNa1ZQ L5mP.VmznǓ)vy$ ,TgĔ&or6K@J8A P\ lhx՜XTZ7G~SDy;rDUCJjG/7W<9Ԕy-"Qx&vBd,Q,peٿbT˵ʋٺTS^(),e-SXXs[<ŧXYjF1RފWߛAk ˑ?}ZXXddJcㄼ-wHuڧ EoTFBI@յKQ&吜6C(1Xج`VPTO$͓/=Y8*ǹ^U2#f^R.jV'2R#ԌE H1T &L*ć|Iy@^0c N~x)/*>?g^1go<($TŻ77^ǃZHUS)դTՆeCwV bHqTnr'O+|y:PVqupI5 ZazğvWCÌ "A FA}K0;NgȜ@k*ndabJ$đ vH5 jT{jCU+LTuj "qq$`F*X#`8K;T voA$" * k*0)ftkv^#*FAT# o3A{X5j̩ QW5N 3(P% o2X5$.FATT*oUT j_T[ WiKARǰ).9.R*AI@ADH I @XMDlIKG:%ܔT' LRhj JIy=*9u*HTTCJ U"U*d*HH Y R,R@T T@E U"U*d*HH^ 9/#i- - - - <,oU{f@E~7dbʪ,(6(B Ka6oG(مٙ;Þr͹9_qgo;EKQEҔyl䴨R 2, sh!(U=et E_qgo;EKEғ﹎@N*%1 Β0w.bIRQygjb[tԋhb7𹣜  ޷8Ј 6 ss dپKczHNܷD fkj<{j:Ҟf#Oκy| (>@h!GBvE>~يlB:rE5E7MkU$\#ʣϢρ.V0:Ѩm"KڂQsD*)l:֊@#sNG' 4 `5ZghJpS:riv>V$;#+@F6oDuD!B`es]m/ֳsG-+=(Sz9c`V#Zˀlt\3UU*(fv)^8PV"Tp2s̥BMFm|ԕHGlK|st~BNc~ NW@va="l{t ~Uw P z9Jj$R%/[E)I8@~>MRd0|tA~.z,453G.-{` DxuRӫh p U4NC2UwJD[:|M/DP|ʠPl@=fC`Mиc(A*"QU3%@[A6{KQ8ATYW ;\RjUޖۈTUo) QW" mrֺ}3Fr>I7 >4xYO}"a5Q߂U/1jj;oʓcۛHbM!NOJAj\e:8|DMmUȥUu ިT GC<.@ze%#nMt8^(a5۪X(ܵ: /8VCPdFۥʂYI)F~u+ԣ %sF$DaQ͕;:k5š~b<^|  YT{[o#B! NE⣮D:EO;%/܁AqpNn0a~q9T}Jueo6DlqT"Zp|I ;{S ͹zOTw9 H+CTm#Vg\8HT/y?|@Rb+&c ؞#uD-xY,6^bՐZ ޛEmPTSYH+ fŇFjt0P׋VG] G^*Jhe5޽nJ9*zֱU;uUT),]=1/h؊;R78~!VHQ-(7HKK Һ95cßpuKRdž (^.Q;צ A#W.;#K>yާy 4*AX euIZǻ['7KgfE)>8ËK+^L3( ꈨ[FC O̹]7%zkXļSXTo}fQejp/I=Eĩžfi&*OȥBJw( fnã"ʒ:" X:zDc޻b'{YyIZTC _?)ӎP;:{Сگ,s \GTMQY<\yr%\uGNfRTf¸r('ٮnɥ-7T tg ,4ICS d{'JT;4|*UӴC&'RKE.AJoBɺ/f0+JT+DUu|qHCEpT0nS`($_jRseI@h0^và-òhNDȥ?~mXخborE0hWPy&PZV2ʒ:"vD3Ci3WNzAj?G~zkD;h)7&/n$e"ī}<t׭-?aISٰF =3w U-7Y*zK*J#ZT3Eu]c0\̅[T+O捁XT T,QJ蕱x>딚eDS\p٤en`>ZEw x"ƚqWB4 $BeIuhwfA% 7nQ5EƢJz{}퇯Q̆Ǚ 8Lʛ|n\NKdsvÜx~=!|-XJ oIdXa'-|FP7.^_# }?μE\9aЫg];X+OHHKCw2g\p!ZFyٰoT#վ!;mO߀1&3#U*Z`\S]4(^V kCzA*_͡E77mlTWux*T_dZt}a:A9A[";ڛtdt@\"Eo!TQCY&ۨ4՝3*sFTyI ΂ %hZw8sؒf ژw!pFKS:hb]B޼=HTt/-YR,)SA ա,'(KꈨEz-21߈ʈ*MbIr΄EP_ K3'^̓gZ)=a#'VRT|j+hH`*).x[oNR!4Vy6aKdgТ˼paD'N*Y0.yJe|=ꤾR.f[m.yc#^@Ӫ38w2ri{;Qڭ043G'r%З<@CW*ddQQ!NAB,1 F8l]CKSjjwb0A]tD?p(i!Dux>qQ*mi_wWPp)I2\0@&G Op&w"?gOTߦ U=(hk~T%.e620JTR+GQ.0hP偎Uh8NYy,a 9FT+C@Uܗ @/,TMaBFTE@O͕ڥG<9oLrU-7E޽t)ow/! oy`X7)~UwD<􏏿鬰:4!E۫O_p&%@k>QG#B@4 u1#ȸ0T9rx6@A n2ʒ:"Dzo`X';$D5)u`VF\8\Qp/-NTښKL#sy ] K.bxG"ClՏw8((v3־ƾ73v9|̋-u:^]iTU d~G6i|{QNorzfQZ.-.Iw}ٙpAU]նq v8'YmɁqkk~o1.An'64`oF8-}-Յiq9 PvNfPXE]LЬ)+ܠ9GAzZO:4t|cd9]BowQ:qrZctKs]">ODا ѱTeKȋ-urƿcfi࠶8\J&FM#pZ=n˙-w:٣PR@S9Ai< bX6oQm'~5?ҕe/a.] 29-Yy!%D:Lj,%ꐚ9D.Cɋѫc. ,}.6/ڡ* 0Sꐚ9DY?crsu>rLsQ`W3`EL`u/|;(Y:\lE]3EU }8s\`1J̘'Q&VRnT,}7ΥP\dHJ4,Vd5vΗ^z'61E5#####/{uHAEyqJ!UH RTE UhW&PEG 6"%@QQ, YDD**dUU" գlT+yKo#[ZFc a wѡDAS= " " " " " " ":o=%H^ RTE Ux*k-QDaC%²vchCihTB-mt*.heWFDQTVXEBHQsa釠î{f3s3CUz>]kPm~\JHxvϡ$<́/H =G@hgSB6{v=ISytYE!lh+JEf Sdj,O$;ɩ9FQdMV9\Dń,ʇ4jy&]ו~8yW%,!P)1tkkj& qRxەBT?RkQ`y{dђPU6*PH U!*bB5bj J[ pts"g;{?.!Y:udMWWhtBG; ʮv7. R bxmnڔ͏<Zhb}*:'*3T*P53gK){KV/0P ln8RG70&3,MWBu09"nCar @7R>Kh- ff7"dbc*p&TH g]zZq[.#ɻb,eFzZz-8.xA(~8Wx$eM렇 < 'g渵@&M>K=4K4fh-"`e.fJBw.*Q&=j? w0cGRt|i|qya䡠TT B%ZBJ3YsQ,KBWԲI9L^|v{Y~|El;_2)xC"?M4{3ތ~OWT4dNFDC[T-T+iXu۶m,uȊ"\&’&RwQr\PITo|M8gD\rM>W&eR/j>g/UƢi wJ[XQiqʀevJɃn}в_RDKR7iVXe"S,T4ÝU^WgH1 l+yY2By_ۼUnK|>"oBWJU~E&?x-iʷwVScƧCPT" 6Z.q{ݩ3%jbLC+1[zuf Do~.#KL * 3eQx̃,F'tQ}*لG4ժ)8Tho_バ3CVMT&bEui8ބU\a?0O|lf9"X:63#oNh65p754a$~2y*d>[ Bc10.*qnљvЛct2=yK#<4uFO?/.?=!z+y,9E:۫O]=(j{ d')JgD.vxU1B/{^+%# Kâg wM#Qn hmw20ӊlgi+"Kwro$@ϼV'Zlgu e> x d侨f(.BܼBD5SI9M%uQ+#C}<4sfgqaX:WlTf(3A‹jz,5tk[b)Q R)IQE @Sܲf'8 V+V}Yy]35 =1o< .Ww 942BČF #qq,\&s՘ٜE\)^ax|TN4h,:E ]6|-jyh:\6T?Kbj"qˏ|#E#M2ERTn_Qn [,Kv;1`];퇣wlbc=6s t{ UO74kxkÇK?viXq{)h pd}wJJJyEdbL1|xLwŇo=t^l;o&)QJwQJʢq)|xZس墉jlIQu&y@ V6cŚ3YڔVgRzȞ҇[yh=Ϙ0 ezh\COJnJ6iC ?.zr_EYK2oW`~D-uVk&2ҠC\>1ӢMT~4)i2Ece3^7UhdO2f*O#OFʺ禨f&ڿ&5X?[.[oQlBpQ+Pv2] 5h3nAJq2 |[1 =n{̈Vmh6::jc7ѫ;i#YıF3Ig Z%H]omTQv/L g3DZdh!Yo<G[FT%59_wĿE mUCdQmq{oܵ"Y.":d~a1Rc<-\"͡E=,FyaJ|6#L V6gJ矏O 8‘JzŃ-r\&G-RԜsJTyP4x x ={bG4T0v>Jw݃Dل,m@Gk,dQ<|\}{p1^4iPji,؁9@G:k;}63xhІZ*LGO͠S]CT&pblJ|!DUD%}LiYW"Er\j/|zRuanK~ٸk-Ծmaii玱/kqZɇ# cp~꠵vk[^pǡ 5逨iJ&{$HQD^:b6X'lPEcJp'2 US}ylce3XH%Kֈ,QÁ6}Hu5j*w-ֈۗ*At=xs3 |NhQEiIH[x%]` w7k*S(DB>lD gfVQԍ>)s.3%Di.W 4i_Ɯg_+7R}(`> *TT#f=F6%]WdvplWXgpzz(* z?v}:Jڿ u}<8r޼7uؽA ;g溨J6 *,P,, aj[j),Rjg{ `lO$!P1՗νXYC41½h[Q6bV*gsJ!`ce3XxEPG1]#;Sl+<4߈|A>qfS|Duǘ'҆҆Bܝ@;^?X`jeC@cX!aU]h~ 4C`挠37ss8{U<|&zZ~es"eSfQ(: @:cfl ^ c v6cnG77Lz fs:|S:4C+rݾcA?p8zfVMZ({ "6DI$.ދ[`jVIʕВ;wl@P 6642000kl2 eN9*302լƉ+}z74.nS{m -|t4Q~Prޤ]M49IœOUUFT@T QQXDDbUUET@T Q;vl @pE״&_- - - - z螎{&&P% " " " " " " " " " wQQTa[q"֊tKd e F<)CBhj<2KE+ӔH˰zz|Ze|Tj}ޙe2e;}w 0`љNҟ*FSded$&,qkQ՜ZT9Si{&pd<@FUI 7r~vd~v8  <*cܖ`A:cw=FU2ܪt,Hn\NtSՕ?ۡbjn_+93k 0h lƜ:xI e9-w>zd!thm 6*59-S"gjE5 n#z C$nr y&*!~'/+?H#፿5Cx0U*ޛ7&Ys* \?EsC Es6,7 0Aԅ(æOQ]t%U' "zV[}}L,O%OF,? UUh\+I/&ȝf"7}~ŭN_Dt:AOY]UsZDQ}` z14-fs FfƇ'QO{D7ԚkxVtDAw-\4ms]`RQ,KqtHtuVu&% ,mhKl62MzlLl4.&y]7jF|~⾙{JEv;Z^Dӽaͷ<:A:(Z۾ԍ^i/CժjLT9'YxLrV*"~$ ]bӚmKޓɛF=ۖڽrO(MEk\#+} ze5h+4 lнqi\A]ŀ:'>@T[fsݾ8˅9yVNT)j[ZM/=Ew/49I|;rMD|dR_xY-Vi {K;j~:ESNxT?yGT Q9A&#u"޶f5f%|DAo3K5eb#xŜ^+Z`G578lV](͍|`ew藎XLy&LkG[@Md@ApH4l 6pltIxP-\.G M;c񾘪S'hZ<}uPU 5["uhWظpZ΃CH_e-GT Bxƭy^Exj!#6w|\v21QaUATq .HTu£RJR7z|M<5Dn+Nkl:<6M>l7`D䂂V6E6,( :JQJ/Za%ᢚߔi: ٲp6XD8xdV,hA\&.M%h6#`$D)giE2{-DN׼-sfuAgAM_iGځX6ie{FyCեo#:xE;~Nv $QE)FTUn[\ɫѹ (weITIB +l;~KLɺt/YP{!7 _uj'-A P; ьe*Q(&<\1ir{~y7LcCcIsOM4ýŊ: {.>p0ҏ*넾Oo#{Ulkб-}h~ߒފQсGW,]NsbP2WW:DUYZ\+NӋwlEOq|`nEUv >[f3L"o8!s " %%it03&h{Iv!܆Jc)1%k:U MYK>^b $մrGTu¢Rpvl }9$W3843 nz~$njH,-*fe%E7N͐t8I/_Q0U?[eSIG:AIf+ДuKlѴŠKG,z4=:֢>LԮR_.%o~DUY'S """*p<s66' JCѶR vjių=k..vlDDRTXgs EUYZU,+nPmzNש4|U1_ꀧ]EJ=cX&:{.?|̾IX^ji1'5';h݈pẓxr}88e7T}Qői ( 0/-i[fEOg~"Zhօ!?z!~ZQ哩:Nש*l H}4>O QM+nѿק9Y$pm[W9n&q"-OY/FTLoD7$| @}Qͺuv"1̘f!&^4p%}*Iv$ \١m&q_9j$6֩\gҖٌIdA+-3Y$&Lآi`WäG+kCU~s"VYQR'sƧ0 A QJQ[!f˙}; 6\LI)QTlEr5L/S-nJl^M:!G^N$4Wv J[f-,DqQݷM\û!`e[&NrtmEW]g,GX t,-~bjnDKFrC#RGt{ƏLG)rUDsGY(emb;Rid>`m yNU6AT_Bi.;A3&oUu*m H#>\NU-uPލͧYrH`b Yǽi.&Q~`k缛2&g:%hLϳ鳭ݱbUZ;.{~Z' yn]e<芈4eѿ0)Auk5[0=җ4fAfpo)Eu%:Dӷ 4{QŊL%J?Q\V*4P{u" 0-ǻevfN.O LlѴ(=(RDO`YD9;od_4#!uF\<-SDC@mlETm4 e1kBi)$-'Ջj9k*G40s j k-d1 Ֆl9#6 {Af&!ɦbmwLL8<\kGS7|/4Yw!ugl@?IhlŚz:KN*C@qt7EU?; UTkEݐ\ +brSR0͗:mlgMC& cULKs ~<@QHyDU0orNƘ"ue@u2 WfF M& 6z.mک;k1p"}Tdi #MfU l&^H,3:SDM3DՀax6yV 608`! PUznS\rjoM3DՀaC2}uCDoM3DՀa+ z[J#n foM3DՀ Kj j  Q5`?v@bk*ꋻ%@TET@TET@TET@TET@TET@TET@TET@TeFrTw`,QQQQQQQQQQQQQQ:o=%TE Ux*H^ RTcL\0!U7rC)HLݙZPK4RP[$RKʐZK'`{uK{y511111/P511111Pju! A|Lz-$Z˛~[_Ug+˭br/ZJf!HV~Y"\;&ۨEA?q_Q5&:.v/ttn9v`d\nNF:t3GRVy K+w+đn^J,QrSNS-FR~# W*~#Fܣ J Nꩠ6.ջjD>-p~t9z1w]bGkj[j) 5eO]O8u+!ؽQ;Ж{O 5b*%7th,Cpm>8$Z3QgZҁ6j/-UK`ŵgݓH7Pm71w=C5 8we`Eҷ}!^NݳWJmwvdߵl>+")T2b Wӏ,,ñӝ*ӲV$h}DXP€]2Aq8TۢuBʎ,-NbJ[ #2) ̍qb(H7ۚY<7{K{W]a8g[W_Nw?m`©Q5.S^ DdY4ӧRzS>0\9V9.c8&mI`f U%&W[+H4JzlJr|9{8%9 X"F{ٸsàp]N+IƌZbTnyDkeŠ|1O,t$}YkMD mj_N˧?֦rxUUfUkv}qcoySЌ&ѹ\Ij:/*=&L+H%/jY?o6>XN?$áZ73౱|ꊋOG|HQjTT+Q3{U{`hifMEl5Eb& Z2 X9RX|,Dd}Q&`@$(5Q´k,-+ν[n w۷s>wu6v'rcdF9++[VJ1r8!:򭇔"J^Ŗg) 0:2:=WB%G`!`d8M՛yJO; VU/pGegI}kh?q *Vk|>GCB4i<srr'&[Xh7>7T؅]0c˗&JlW!0&RpO5n#F!!VZO 1HʺVM?>J93z** ZQ.R)W<읗!e PާSi V.٭D t] T̖z *Yݴs2ρ%B|<V>PLbukk'ԭ8fBi\b4ܽ]RzMB!Bj=<۱K/n1rNB8;s2{_D1,=r )tUdAHpUʃۓ겒B׌)̂fAZ&j]!'n_ ݅JD[ILzGhW~O $t /s|N٤_hőU5J߂ *paմRWAnJD=x? W?8*_h%6gfda,ǖ/MyrG*Dу^LwoZ`r謣Sfl,V-9(V}.K[y2Q"Uq6"HpUʖJxC0dmKb@A4B7bه wo f2R!ށ:<.ZP=ȔF(&H0l>RB+\1 09CvTLxZjq}km9O$[]pY&3yA"l@}\Cnݲ6V$0]~K}]8]\r.0Tg|Fc$e#1!(dn&~tH*|*ʚ@Zi""3~ Q@Rz?yMؓ*]JrýE#XL_raZ<Ƕ ji ӂ(^F-0i^e0?cKFnz<+&Ft݃s-0T}g&b˜B4Cf/HIj&IU^$UL`д`{a'Ɛ=8ZvEk?'DǴu$GGDDL+1&;~jwMe0->luaɔKDjuliRb*1mOE<u-_ŹXsƤ\R#`.i낯&2[>.TirهT#lT)[.*GMIP fHR;TSGkpt9!fO4ӋNP01q E&TނTU3a&AZɠtcJOm_RLjry@R@`4Vb7Ũy(c˗,msL؎o{zy@3l߾ֻ )TERRC6AUaCl ^7 xz@1I\(*%2{a3NbGLRoTFzM[YΤGFt0c媭G`)om @oT#M&Uk>[IMؤ sQ-e_o&9:ж)d4nT/c8*|=77 {ñKS>j_1CnYَ_iTM#jAJPX][ĵ3N7w8Ű6:&%0d:\b_e,e`߬)XR#{;n3FsI~xO6^N?p+bh*5ඓaal0& տy󅀊dQP*Nsc@C EG! T mkjVY?p2!IĐPnlȳ$o0 LNbɕy橾vJ۝i v!,R]aH5G||eǍE$ސiCD@ťWQ=;1&*Z4nICk+ MĈ74<Ýc1/@qbrKE`x^߮Cʔ QfV?~ORR"ƩGL'2rb\f_+&We1>JxY\՗q.cc\J2mLjzJ%[QAo?nz/a!*T 0[C&BF'ՙ@/EQSف9° 09ԙ,#<ԈUȖі:e>E OK7YZ^ }V/w2ML(G@"X y JήzQV~ ~؁%\g?OYĩ|>_4uft( YF'埐*S GD17ʄ 2d=N ҥfd٨3ixSͣ)Ew;/,|D l?._Eŝ5;=?٭kj:;ZT27IUX'N#be(@jHB> Zutqr9v@p7DStG/ Tzg;CdANDγ2,biTċsQ"<[8G Ի p$e~y¿@*5HUsA )k4ReVT$TPd3;r*tzj]$Ov$0a9}lm_+br | .իrթ;kjT=r26REqNf>j pṋV1vӦY+`~|41g8>'T41#I.ew8Þ<,_ƵBE"FqW ٻq^|8џT[s*ׇ?$UFDoPu<#nd0b4]>xM=4&D}L9~V`+ \9s6uEżDf#f˘(\i7lB7u|iݿ:1W,zRZ3穮G4V=v'% 0`0[94: {I Y~R-Y5ү/ĶfJ(OMC.GZ=hdw.chpG5^9(2=KI>Za-*ڕs7-<"^~QON~p[TQm79c7m烯JaфgJziͶlC)$UӠJ8Kj-4}W@^/y ïhz.:E2TY|H*P?>[Z"ǖM3*JH\yzDwscT}:[ZI0 jo̳X{*)5: {Z߹$E(qbE.|kvDIE%S\gq/=5&"pJ͢0p^O@?摙`sRYJRF*4Ԡ@V'92+}&!r>HvÿSjxR2zl3 Us0WxޑǼ:G>H4iZ.srfVԥa8-0L2џlrJ\'KKmNb!,}X3snVF}MTs!JOZuFB:4˛r>%\fwNwW7w0鴒*6{1}J BѼz\sys*^Z|w wj׮IbTEs@57W-`ׂ6+OeM4h۫y>UQ3n_R=>jA<cJr*r7 _^}}X4S>%LY-UN _ES|pr@ {ZrzQ^eE ΧԄBCNB2(a1g=!oXT%6VIQ}ċ&fRGtSAQ[n{ojCۚT1Uc*d O~yy,MYGnH1YI -}GD. Ka|p;|jf*%(FR- e UJ9>̑5#UK [!YE!z*jY R5wj+;:o(zQȶwaZPSZULǨYͅ Kpa,# BcO1Z_ニN4%OqI~3Z "M(8.VlU w_* d 7+"zS̴~Et^UP􇙖MUU8@e8XuNJ#wdh7||t $vN1k-\k;TOؒOlRծCu\FLA-d-=r-ʱtGՊhR1qÌ7/a]U1YO>pVLx'KU؉Q`~̇Ih>g{7tЇ"vN1K-CxK P1rgPUJ\B8 ՘f"=wʭտ]STeٔfg6$0DTC:Vh5,[D B,Ls"IDB$, ))?s{umc]^.{yan&}q+bQw}ad}'[H'y;~5M/8ѩ1JWĤzڅˤ,?ͮ)~tIc#ij:bL{9ә& Y3}ڴtBhi-LӺ!aa&XJy].RPfK9[A)v"Jy|SJkT\6 iDJ+355XN/nfRՃ u)Le҃/Yc}+|V\0sZ"oT/(gt.ੋIs_oI5e+Uy yV9~EzҐc@|K=;y:jbBFB9AJe T~’wjeݫT R:`=>@큲VڥU!rdYd+)%PIHt+)XsJzSdiq3@7=2ynw0FFJ%pv,X3Ww3236Ԗ9 ]f6Kt#EF=q m%I2sV[{de7hҔ`0 7j|LoUv!Uu  J\3Ϝ24@]>Ȑjľ$bn"N炴3<&!4=ER!ʁLz/ @r51\V{<:nd$Ęa_5d6f1! h "j1Ң;{Gױ*;(  63/<>)sUn@Tw4"id$Ę!_T>,1A7XG@zK7O0M5nS \B? B*Q_.Y[jHu;vԄVŤ= 9z%I饸+U.&Zp>*a(,:Lz&efI]VT>!=e-.%>kҖo:ʦYM%ܟ )]P=T#OɥpD45Ic#i $߫AS3NkzY,{z$t #oѥ TH^w"yI:xoGYK^Žf@Y{M)6?Oy `:2Pt(C$16"U(|3:˶Ӵ0k^}EjVrDΉ!{P$#P^r1@f!%.eG2rUsaM +H;|)jy#iƌ¤E:^Kzq6];ϸ|Kuk?A׷"w E\ƩUPh[s0e}4Ҕ&l6򓥽HQc}HUsY؎T哘z \*UKqk[4DGt[[Rʃ=u[J~iY6d]=L ~'vPHZ1di$@Cت2yir+g ׻3 kZA e.C!')T'(RPz&~J?Bw"W\ۇTu1k;RN̙;Uv|)j&e]>7EJSE(ǤW.^!kU5cgܯRAg"UCI+0fʹkDk k|JrH\P/B]?vQjTx=>t{ZqߐeR6&~(lw:-L"n ֵ-5+0+qxt\0ҢT\BZ$QDYW+@Z<HNOc [jw#i ƌB+~H27&8hbA ГjעUY6^nONOPBͷH5qLf=U[/|BurK YV^# ll`EOС"nUmǾ%MJGuFqRTnt$˜ޗT繮KT#CxJqFoR: y9"RdAx(,P^ې.&A]l`tn\Ho6 JzlMs.J>C-^iӧϐ|{"mR&e׼\ݡ-R5⻱ c}-w.fQ.KU>o5*t&"}WM).sXȐ;/)kĝв,B%#TŤ!Gj+T"mL6ڡi'pD駣a6#H,̃Ar Pdb3*-ԄJӫKU;晭HHZ1d!S]U]@@3LayW XTPվJeiBkVgTk=';bkX?1^1N߿>-5I tvu狔=$S+cl)rHhϔ"verg4Yj3 I(_ht-5RSTE+L=~^j`$a_Tr̢-jKMF6[j5Gy*${Sufh2Y}f}X yه7T}Nt[0;=mS<8-o<ׅ M,z+[8 cw!Hre.א҃98HTj&vyLB!F!/D9h5/*=10Wac+R50Va̐/LpPMVX[ELo>ځߔTsgboY$W-cϧu ¤;szCˌp{b}>&#jeyJ&N)PM,nn6acA(GSπ:<'ɝ|BwiH=Jx[yQ9҃|HHZ1þdK.-Y|l;oX/wm1nU)s9[=c Ynւ}ҤmE:{a3_PQtaې.&qZl,~Q9B֦st|MT-5RR`CE}CR$7E?*xlҤ7{0p$Ipn,\,NMDE]qGADIPE7Џ=[[$D4ıs=SJ(2t.ez.ۈ?M q6TUoT}C|O+%;:V2?)5TS X.,NRDGa|=W[}mqOr, ,OF2*L!n>x|Q r~C J+ojWwhL/?툹}BǓI%X !H\ZiZx/zu]w J|r/Rn7xXo)8e&,R[{#m&>z~MӠtˣ~ vؖV[)o'ES 2-r" ^s\ T)?bdUbsu'&C#v3,z?TS L h5bYg TafٜzeQY:1<T-ͯYQɧa/Ѐb>߭g W$*H /RT@"U: x_6T4\a/a@T@"U*H -R@TTT7`v-:)UTIP%U*H -R@T@"U*H -R@T@"Uٻ(( Bi 6܎n-&H%x̅ A*`(XrJ8)'J‚Yf/{=:ݽ7Lk0.qƙÀ Q5`B 0`0`CT 0`y\ 4MN)paJEhjYފi[1o;Zlpz*jS!9^pn&7)iրj},Y5ZTڊ2221sC57l?[w흑_32^7yQ%.4fv4-"j4hF]3:F 77ɾ4Zn^nۃdDmƌY 9VM6hQ+w}E/H$B9)dNH"3gq@Ѱѡt ٩ ̎M,VZD\ z ${D\p^y-_kcƪʠjgBH;w)! q6KjA(PUXMnf8YA1@37׸DU5cUP?,Qm `Q#s?|_Q]i'#Mt@ ~ƴB: zf^`: y\#-~P&@p<SZ Q^usp!$ M~l[q9Fȓ0\6צXh*(/ b.fgzyDĴ龓""Z{~DvBĞj yRN{6٘Ю(kՄ|[I{vr,yaǎ7\)DWprh:L ~ =0}ܔjj1M淈IϚzVW=' >iT~R"8OxFB+֧eb(YGR~~~Qu}6HuۄYc39ܡQu>.T٨~*IaA 4移QUqxU8G?҄mL;v1 tT4ѣVaHmvAڒA6v$`ϡ'ڤ^GTÊ+YLuaV&-l<'ŏshW@튊lٿǀ`W Ug-}L--%EiZ&8i"a*hob+-i-j-z3) QW TiB\eC@HMZOTSSMuMr/"J~d\T@9t΅.H5sRާ`춆]MTww]Hzwb0#;R91a5jp$-pU|TJ,/m'⥭Q+2}[4'^eY,Uvyn~?ŝ 8 vhGo80)ם gUX`#p_S>wM;$}#^DϲHd4)B sZU~|~•GyQ?еV2E(Uzg W3T-b0~[i+9|͍[U-Pï@+�Ʃ೦>UVManL Ns1CEOb+R~Vv\WmW|<+Ѣ-bG4.Ϟ51*\ Oit}~haC?ʼnqX %o4Q1>O ꘈ%,`~֌åfN 9LPT!jR"fX)Fo;ƴOBdbsbK*(xiwKA T*ZVL58U|Tʊx5Nj#I{%CXI=𮖪!PǙulsFVwvK2 |2SAx1@oB]VPjy IƵvo#QQk BĴU1pLVl@O^_q;o]!rq }.lڜce (G9E%tKպ͊GTBvvo'-{2f71=o2ꥈvƞD굓¿=$>435gf}j46-`Ž%(:$Т=Ub"Fޕ*=-8 QuLi*;˦e_wrj췳ʛv v$\P]=51)&NLy )=LAleRm#n,B3I (@_CRT916IJIRwlF{ϰPvV':g .q5g/%$FXCٯUK'fyPxh*ǍliۃL٧ˮEB QUgm|L=[-U /WTNfVhj|[ٴ%LBMYTFoRBUfHҏ nT ʩ`&aŻ.4D*8ppu MEr*ob+S;cRV\TQヒaf_H|.6ZN NRonDuMroŪI9n&n d}ՕisӎEbeh&18 VU^㧨fRTS!I/Wfߢ?v_A,ņzVYi c,= 8m,MĄ'D%wʽzdz*(t )Lq9v?Kʁ-OLi}p)16;/ ow!;͗wM?Ex2=cD&UaZ?a؎0́ef%$+r)Ej¡w{Kj-Ҏ]&jROzV!{̌ p)ӪY۽M㿐!47+aB9ٿ2Q(-d9TBTwn-(JmCqD^fl0&zMPEn:Z9I_l"SLlC u9I/" cˆ+`WC;^VhGqSTl#`{Qt@LT0[TKfF^70DU51~%HG4OXְ9zZ(jElEpc’  /|o WÏ:c< 'Mœ.u-iPQk݉j!oc4+2CiXҧؐY!<0֞[R>&lG|OQUmF,+Ӿ:n&ƷV#jG)NqZjVYtKJ&%&t%l2B(_:0ma ePR NA+hqf Ų+c }UM~>Dp11wI"FN#%5XD.>32Ռ#W=kvqmU 0 YFV y3|g"_X;NϢJ'TY;S*+vkbG {X-["#"i; ~DM/cfP6dΌ$͒m_=7VpO pp;6N+,[O]1|XH~6 km2[Q}qcUÜVo?m^ۨݵ>}p\`@3!+6x*?P o< mw5<ʜyZ #(dIRN|v>UX Bȇ^8ib-oo;3@lej#m2?/x[F3REb9ki![3O~Ѩ)/g9Sl2|>^^0hGؖSxw +T%%>8ͨPqvir%aG99„#}W).L.6g9QɀTs&P)\q7U `wxnu.`! ]@uUCT 0'Ɨ"vwxfBѻ{ck2g` 55 Mˎ@,AQ06MHh .[DDDZDDZDDZDDZDDZDDZDDZDDZDDZ>zsfrTw`v/߿xUUhUUhUUhUUhUUa[OcGIH /RT@"U*@ձ i(E Ux*H4 TG(`Y "7?7j(>"#&aTkUDD>/,MOpGRCtO~^^CT H@Fܣv҉ n޻-A5 2p'=B߄`N,ŦU$@kZ\F?# A|vTiGLzT!謤Ἁ\n:{g⌺"Ȗc22TfFq@#@|ʕ40YM/`mlm="l{SXvL4K!nM'ݐB/ 5͡er>ly*evqUfxħ:gkG˓{;UwuPڜ!HlaT6D,ED#(&e$ER1YbiXi&jm{}uY\{V|~~=~9sX LAGGCWfXCt=z:E]R]=m:["iT͏TKDOtRys1 ;O^ Ї]9/u@V7 ЖB(2u9//ZLWP֚[M5CJUE@ŃsxdyVO0t3TA-jjף 3YH~˺lZh\{XʬY T*n< &۶wpcyFv5\ NXF頋a,-pW# x6vxW{h0߬]@ryFh 1%?ʐYf N b~ w9+Q!֫QD:YEXo}^He:HBu vsUF/ t5DXAGK \*>8V1R埓s˿el$` uA<@&U=G58j3pqmD4æBW$ %luw>}*)$i3f,Ð.1%%B>Sfg̜IVk?8(Io^H68]>T'5mڴCEnXGQ@_^%GVCts#Dmus]q ww]DanFmꨀ0}L1F!CÎbɤCi3CBIzz8.c{ $hC𮲬^eT'y\λ G`1 vN-HHOJtJv0ڥ9u 7Cila%Eb f/` }aaKhe_o c열T01-69xTm{d\!4U4 q/ٲo43٪-l,C(%ntiY*ĤZ!+\B%*)ʨ.KVC6q~H5jt3?՘Tk7҄ b1{P/ðf(dcbMHlKSR}mRq@3TQ]mFy&9wfLu"M1++hr8OJ}@/ѮՆsjpca++_ӳ| KD9r^ F629˘}! }l1<_bhh&!A6fg Ȫ(]eM3Ree\Ú_Seh_/]ت]aM{SDbVN%Xq؟'K 2p,c_ʃJ5رǃx@ rkU̹xwGK-B Qe)2<ąqUq{ҴWIPكԼ) uARlR3Ҏ#SĈTmHC=J©Ju+&.pliIԈ4Tܳ2ߞBpjƿrp ]]{!V)_ r QV!&Uض]I'C<$5畗ӵ =FE< ʺ$ꌷisnH5&_:๼?^z霨T jG9EH+U9tX&^9 Jۥ$]6 < ջCC Ov a> J7Ε\w-I5ph>n9mx\SlIդZN떷ɡLE5XiA7`os b6wVZG7+ޥvL#O ҵSdX9O+8iYQ@J8-q$˳ H5رǃX^].߅bM[D-+6OK.eqA 'աCc%rlfjIU܏*xE4zh&h.;U!x"P-FlA5xX-m^!&E 5ˢh٦KeQeB\-HliY1f[sԠ6IyXIVwUaBɃt?AQEcK*T]r"HfavMAJ#iMXHn}#i(gT1SWiX*2P 4|_W":֕K U9!&zRGSrTG@D߿bKI nCDF!5j\kJ6djSbݼb y)̿Չ4vn]Srr=~Nj)4fFd3%(u:iH5\z";y-Hpw]FI(Pj{P&6uYHVj c/;ߗ(03eo] Ee;DBFZTFP01"%Jeu 9 JD/yd~έ|s(HcO*oY\u6O>i&o1vJ@˲ק`%z2zRz11q0S@PQZrh8#2dYH܆6i^9$nI)\ګ0z1!&3՜)0ÅD:L8\Cfa'hRtȰX ^. RxؾTvk&G͸0q%HXYHѨCK2p5F0/ TdTkmbN @)C5*b=s{99if^) QAO(1M!&KElJ;ʅ|aDrGC.fxВ=ݞ6mc8ϗ3Ԃ R/7rg,bC<(qYH2SMZQu wa{Pg"lTC̲ml(\ssqΗ:/y'cDf8&䴱wQ|  Q6E,Ǝ[:-*s=맠.#٥lvKӇ~j{HkG10Ry9,c~fz?OR{9̘@:GF~%rYY~IZ5m|LwX$O㨩?5특CE4i*ۃ oVPMrSq˚v$G rC^MZiKޝw̉5Э]w%| SĊ= L C2'!.S="?CkeT E4km&Q ΕdjT žquvEvD2UB"?BAծ(SUP(Re/&g?q'I&LU;((0U 2 <{{pY+fԓ4QQhDDbUUET@TaW6@6H J_; WK T@E U"U*d*HH Y Sm@?@ՏS}jl I!à`J<@T@"U*H -R@T@"U*H -R`A^r%ĵb)X"aCcEXOr{%n؍%h,1F5?73 #FDv9wpo}wvBBP(2UBP(* B^(SU( BBP(2UBP( 7Ud2]ъ_gA'ɔkT, _:m&jOY-xtseVa#W{CsK :kOF ~.Lo?IHqyOTzCs[H%, זoF8@Ywb`0+lV.i A{yD]zyBݚ_{o13UV`f=Ɖ,5>lXZ$.@jH0kYzSmc9\oű6$#)fKlv!Q3J P1 R_܏/7&q[$Sua ƹVy)1"ZX8ۻ6o5Y`;K&DjoPE'k`ZF t-Y_k'S6YrFVXmޡe?yNu}X%#/;$YAjWq1tlT}Y[+MN{ Xy,?iX=/xoR/("K/)Luxtao!Wi!Zֳq[Q3DP V*fG'dfLbAC 9&6QA>vߚ*cxˍÓVϲuQnSשIQBEBcFgSʪAB2j:U{]ɣEVbl0B1oBz&Xa ILBfѺ/nu˸ B>[P<)eaOS}̛ͣ*eCeKΡ1iY".at(O/Mwyj>lu –EI]ƟU/bgvJ] fMn{FD 8tĖIʦ)bL4؆"TVj\^٦/SQe ։g!k(fUCeNr$aeCf&"-Lu K>a od6Dw7݂mI MD2h]zTO٫-tN޸q{9Xa-*[E/}Ob}ջ^=BhNG#Jdoc,:Dll h \A5f; %;kq:DZV,* rs S$Ǥ&xj @(Sv~ʃꅪd[ O)^Ѣa#6PrgbeݳɟC\ٙ$)DJ2Sҵg]q}h"UWW,_%bO/EGǫ錴Ɣx–ZlAD)jûɥޯnZlnG_O7r ,T1h>MZtƄwslgК?n5/:Lm8(~<83' mI*H`5.,+;I "b=GXao^bVjS": vMjNV#_e M$0Ui4*.yVu>LG۰&w;.Rp*׵g})Z̷xX-1(em`^2\b "rʤa\ǫs*q}gd\BDb3mGLbss+X!$ o }}$^Ot?۽=f=fWz^*ns7rYH|UMyJmCl(V0f8KPxs /F3SU*0=A8(bQ `1CDx:^➋3tETA.L<&l͎ z+D{ 0f҄]#`w ‡ӑ6o xUgf=2NL5$iDIP77o ʄؤk4Ӳk䟾ϓSe _BN+QAnmv"qD`5ălCE6':򀓮z,m6~x)*n8i}߻N5W iq)D6e #Эmj'nVv?Q0DWq\ATIk{X=#0²r0 ,JO>74Ug~Ԓ:̪>XUTHGsJ[I}]tAZ{ʻ>;$&Ǻ&%+NMKQ5$7hO<6v2ʗ+;CQE PP K#<CךN; ZƃASڽ) OO8evG}Gչу1#f*u("H,~qV4 bC"Em@{`pZҼx >J]t3_IJMJ 6q?8aqW_3*1YqHTu6c +#XBQ{[|\T/DN)fxDT#o;owT`8_Qzw~^%sFv:*iݸy C3xmm;% AV+z]:s2MLMfpk^xjq-4{c!UY¨ iGTu6a*Y* Q-(ASQK GQmt`B֨=/F-5V-Zøî|x(׶); |roU淰hNz@G`TTIkpmsY f-gw/RY<D^yonkLMfp$r=:dlzQ(.nd #LfuF5摝#Pܺ6_HZdZPQ*EKdJ0/LMIɆ&v/v3=l$D5F x%km/ݐcה`#`)NZTVDk sb`^@qW&&];D̮CSRK[T'Q/ǿ)QsFT 6) Fہ1jBZ=|D Z0v~g<0/G n;֟C%XMQ#jMIk)sEտ0P7lkaH|vobq<+f \DV!Bܕ I1&Z]}Ep^Y`|V/qM0Z80jɨAkG&6_j/ð YBkh5k<<ĈjRt}UiMH!D5Cv[ۊKȬ|el WݷUp)iET0 W?C?$nR”ϮbdՂfEqVg_LV,x`ݕ I׌1+2뉥aG˔ tIGVLͼ@+L^ p48q60$Ol^poGay*etZ;̛>jkּbQmSMb]vbp OTj%4S ye - V|"bSTl#ۯnJZ#Ex.`W!Opk14d[߽} gcv>S I7o]t~W,ȔuRR*ccFz ĺc;ZV3޿W8j!1]-*@  )y_pO1ꙉj6Pu^QXK̭rW+"w VZ8v:3:Pl*a^TQ[HkM!8;3Q~c9z4/O|$:! GZuRdu6pe 2!6q Y87{Y{"r6#mR xipeig5-ho2X>JQ%6D""1n  iƃw@ze(glC51i }3#dnvM>gf%5x 1퍕}`ϓܼ^ffFX8ԔFM̳s<X.{&|v9LB/FmhmB`ڤ M?#4@ܕ I׈Ct֟g#n*6.#)}U=p7﫪~l6cj붨*A({}bW^T 6qwP )m`}*w,F|'p"EPr;xȼ%: hf,m—XR}Wgilv= l͐o8 n*cg :7_ً|`/ARc4DA5ᳫQb7k>{W,[?}I$Qjd {LV%E5 '$B?aד$$DaY}o?HjRTOcm[ܻ  ܃ƎQ 9Zλ zw#w5GUJ-ؾYD{ҋ**dUU" ET@T @QQ, YDxٱca0hc:DK "X4 !DbUUETUT/ި^N@w&`CT@T QQXDDbUUET@T QQXDDbUUET@T QQXDDbU\JɩuK:\J:RCCܛ_M7nym >JSߎ|gڟpNЌSݩv5iXf@fbg]0chxBD/E셩)+E,aETS}{9칙+w/wG^=ss6pQÚrf"j.zzc\t&6h$ .*jx5- 3+ER}+ꢢեl,\*3gf/뢋%3#H,x",B51 @9U)(ZYJ"<GI_Xn>_Rv(wL$8_&cGJ#OqT5ߘA83+JܿEw)r !(Gg~?p}bsyf=nf>ovrԼ^U'svR^Ot,$jf-~c=EKyM"WsgpJH(B3ZT!Dџ:Ll؟Y#H˷E3rIT ;w% *3\53Xnj|P"~ cոDQЦE̬ᛘ*4`AanpBaȰ:f.{xO!qq~/UlţCb\ UHqP8ӈf8gWITS6"=Q?~ZhUs1'- p{xp,;xS; 8=yp`*_pUNJ kzdA],&DrkbX=Y/zvJQSihju˹D*WZi0 )1HɁpBgaL-)U B=UOֳjYM#B[p W-{IQ|졙OhNuo;'&ۄR:_jRmsïlGYPΪ8av8Sk,X/e%SBDx%jIï%rVtD绿 24VX/RJw3U/LOO:&bK$ &9C8JfG쾫MNՈU='5z{( -> V)T[xYǡ?_zأ-k1tOoW(*KWt0|9wطzp1jGfn>WpP'-& !ƛ}:v詢U4c@P 6M& BvN et*MȔb،2QtO8~>(QtUeQe8!"x9@ ,KYy=D0O#VP ݙ6%(5_Eh{:6lZr$U84*.! SyحKTݯm@a|T#OBWuP.T9}EWZ33#ssŹzGMWjDy S mtEgڝs4ѐytt@B*Xb(%j8lA:(LƇJ3 cykFƒO\A"T(yhu[=mBTۮ Y#چU$KZ£?l𐇻O-&unX6!T$e[&=oژdOL|h1[=?UuܼvqUlpddH{hD&-uD5&@{9U#}FuURPGCDUY?J!SZ@ "qԈ0'Q54Vh sVʞ{~Z۝4F0烨BW:*25hLi?Ehm]G.M"r)\s`ahb@ a(%5"ނKL s{'R66;n ZDXc%FWTKy-<- QZ u:aAou('@]d:[駕~fRږ|@9s8488,&ctjئITc\2˫U NGcw:il4Ux|\t jV4s \lh?XG/154Ĝ+۫m?j6al@V^7{? 6>)RU+boA2*bRA }i>v,%xx6E(a9Fx(N-JOJ.\D5J%7ʒ/8$w qZ)QsUYp%S<۬$#E39BSe8Di,Q3fpXHÑ}fJOUqEu pEDW22Չ-/W˚%̻O{pe S$K$4M_c}`>e,k|G6taBHmgTJJ_TĪ Vh-^Q^Q0bV }F_>GP-@|ZʈjMZ|8"lv,0|&QZbΩ zQmo.De/hv$#v#Wi✪2BY{VssLFK$9Qϸ}GNhƀ%|m<ÿw*]>3:6A~G•Ef_FN]=JÎuF]Ѯ} Aއ FSFTcllfFډ$Q^;1b为ݭE0!J%y/JTמ{*7:64Mϙ1ӈDB.]NaI 6'n~J.b$f2$H.^U`#7;^i_acy;Zz=.Q@IP7Pm.+}QÖs i.5=6mf8p:4<Ő?ÑQq'x{ӻ/GWlj|X#dlk16HT/Hx03i$GO<*Ղ]odl.~F+PMxF鎌vL&>?TpT 04V ُzG]\S0jC/Kqw$}1uV䙈L=C=qx4a9𳠝w{B)\鋪T؀~-dR-b޿䝽0ckKr߃%ةF{wy8zR f3X}zF^Kmկ (nSH[O)jA ʨUSd&uٌ1 vA|tyܠ~Khm a|DEU*Tg\^?ó5`LvsZ;GKQlE%(&v7vFN׫]| GC艳1`4y'_K^cH&>lp73AjiCoΠ#l\j ͇XWׄ*͚C\kVݝ Tsܙ(&,9\銪T4) "hr6ck,}(OϾr'qv/m~u-LX>8206_cl߿TU DVxzAZP|xVN?"Rk[G $IzU]د$E )䳰˶$pHIAf˿HL5$_/zu٧aoO?a}R7XYQ\jEH 0?SnN&wmV7ۙheƂDv'q3׀̕8 Qyn!u5S%Z0L<㤞1>ccaIM‘L;ʛ'_&Wt-O(u<#, W=7\ 66|ߘ1aܯ.粜Fh#$:PxHCm,ƫ K4UfT}0F8 T͕Tv"H2HIمIn]Zh,=^(pN]RMc<=ɥb|kwhĸ<vZi)];1hCI<Ր:j6F\f͠j @K6p_蓦;f#`]I%4kvMgRŷ>9 k>vW[7cj/U7b= ؜Fe$1Ϛ0'l'2Wa[)B"ژ 'ꏑ4N]b5R" 1T(%.%Vk?5Y 9$ZPsR3YÚ*#Mtldzt.w{<72(G*TAH#6Lg9U֗JmunDe0]JQ>R;쉐1S . ShWC݅V-.|jNd3 9t^i* '6xQ`I Վ̡"|QGNpL527>˨?pgŲ95Rgj, \TzC/Xy- E>c%%^ippفbSҷ;YL 1tK{f$`mOAr"`0V KB- ,Ү޶s{x)S:8"_myr5ޭ+xY4YT8<T@KL]jDJYwM ps8SCxV-[0MCѮñq.P;eJSi% {*q*uSP3Hm@8]:[ ٴEKЃ"Sj;xxۅ@4-YHώ̓.fEHTvBDLjy??ہא:u65 ,, P~z+[=n Q)բ:4J@R #S@.BĘp!T jUxǧa44%\y[ʧ{z{>Y#2x9֊VvGjkE>hEBTAJy:.ب{F836j6@P~<=l>1mXٳM>ٲ;ˡ^urXJ$JU/xpkE3竤NoeQEZW1 #+C6J/R } i4)Ul!R 7qm)V;K"9rTXKgW{n?lQ$THj+/bCS@r*Mhq澮AUl1%bK0/DaF\{F5xUltQ-nvjsl.OA'XB뜁_`j35ƌŔTn ':0 m•K;U,~2:.F`R8.j`dB$$بQi+[T{EM=&K6V'}NM_UE@R1kJPqF5ņ45 .GB%4cnaU@T)m>b`JCNFNUxŀ3}v?{ⱈ^Dp+ P?5l6 ޢV3Ls(_K9As,l&M_bslJQ >82y]>qU%~/HxQF:ÖM;DpAlmhj@_+|],P#x˦: ˹Ӈ@qyqh[IOo&}s6׺di$iب}/^HwRz*b_T(ɝ:|dG`PU\'V| 5:NX.]>AQUئ*_b.KhF!~ e1 8fenKsK7wdN_bГAH}0Zŭ+OQUǷTxX@*u{|01r;j *aAM' lZBOT0XװQz8)A7^L!E*a+v(L[yܧ|2HX aV >ϼ"xx] .=%jlSE~T5"֛8đU{t!v$ɈPHNbTʄ >r%%^wʋ"5$2a)S DV`ń{$k_Γ7A߃ܭ\T@z?ɋ>GѱQ+f tߌS@X6Q%y3gDm`[i|@<=g! QCrCL\T٦ՐkN2|Lᴮ*BDd*pkOT)?sg:}1#{9Alm81sUSpAlmhZ@pV6s/smQ6Un#,y̪ӼGYڈ 7d 8:(.yEq<K6G岋3 S 1tKH4"QBJgOMz:2أMt|4$zxUzՁ\'jBFT]H#3ŘГ9^ѯA%m kʃдh]欔x|gcV8Na~ư]j?/pC-d"Kج Ⲵ}cx蹍!*yl3cOԳkvq'3i NwFlž_;-mhlݐo"Fwfi#h>R1v#;7G̎ݹW\"eFg:}1#Ǿ^_`C8m-\y[P{0oh5Q>VZ9rshN4Lӱ9N^\ m&h #GX6JqbJ#$.RR f:alCr1bF:/shz@,pbl_EXg]_QoA& qCRtj r7Ap7 "D?Hj5`e p0@$dl kb! y66o&0b(#ڝ1HR&aN__DfLBt;l*FiILx:l#ÄAy0KN?/`PnnQb,G]whU?)a-@2ؐu z Y+yr dlj٬BA_,҅;ma8 z5 U&bKc"I`!g~R%C*{C*p[| `Ö3QPLÀܛ')gs/9`Y `*,9Z㋟RMiRBR뙺Vg3[/Uq-X]3z_BZ3aWdI*`>&aLTS IJ"IuJj+]5j<aRk)a;EH:9&f6x֜,-T U*xIiW "džUqV;\%2_nSuf6i 1/vŵ-C7$v۷3: j&.PnDVH)_Bþ#qR:F^~Nm/:,s͵%X1(rdD8TOQ ֖@Q߻GE\I5ChaK2'AGa-3JuϽڿoOx"ʃ 3d TIy 2hK@TaMNTXT-!ϟѿh'ťXCoe9(~#d;XG.+-[ ,N#B-?)a3}`ԹL<1V {{ z=l`}J&u$J23?EgLa9 c̯h abX&bE5?R g$I+Fn)?$4g$x /tЩzsL5 נ8F^UnW [rz~74˧5"-UjBiQlP{l^;2 a CUN#k u%&A5O% c3h0Jb\ĭ=*zY2j"lb<%Ңsy*p'{ J5?FBLwm\SzӾ`*X%1boda o>9\i*w' LX* ; kY(hVu  T|0w取)Pƍ?1svESAa2"^6)hz~|X_L,7U>Ci(t\?TY)tx^P@"ȣq(y'zI0YJ0@o@&A/6zz*_\cߎTngcb\9ŘPUW{|(bs6N]š+" =;n^3KGai`Bƿ%;T A3f@]gPe>]`m~a>T'陲Ϙbf7RiPL9I4ri3s2žNME4Q@9?={pEJd cC+ץ P]"fq욜K/Pet]8JU&p,PULA%RU-|"~P Dq4i_~=Dy^"iX9W.GPU Hk\թ/{~UBUL2Oco9O _?j;UQt1ʨ[˼d&CձiՓ(>du&JZE{Ed`yR v aMR89*|~]64?u)bߢ`qfn@=RuUmPU{gYCIőx'3Z䍕Z>{^x\8\UPUѳ]ٿj/4j bؽK&U(%YX(B;#k74>毆ݥmPH@ KAcRjI,ec,PUMEE T|TU?4F5L 6C\.*г+n+MhYc/-D3:A5dGDz"r/ժX6|J C5/yڎXkK޸VGp[ tV}V WtzFuQے"Ӹd_?P*Tp[B5 )~Pㅩb}CW7`Ҁ3vI%,< ˜ cĘ2.Xا ;q A NJ;Tyu!ƕUڄ'lc;HPfU2UD,5̬e/U^-C"(eepVVSբ^WtUZfpH]Y LAuq2)5t, ?U<r U S^M8x  >qGN}7:~x\Q P0)XP /AFVo)[wظRvRB9s9GS&,RIɠ oG$GPeZ)d;C^Xa]a'7(Htd!QFjl4x^]yڠJ.7JpIPKIJYQXQɃhsۧdJ@OoxoUPN OUz̗~N&գww-$~p:?Qۘdr5:jPM9R-݄c>64 z*>X@leTrAw >m5*[UNT'Er|ʯ]IUUYt*T%ctͥuhE<Xh H"(z+õJu?\>ح5g|dPoT[j*zY*>[fYq-Bk~:wU5 Tju~.L2\Rf1 ,VrOe8t P#8jnnVri#WnC5*pIY)T_֒Pd(S:V}Tɭ,U;+*ЙVT젃έhְ>-U*^h S\C+D*-"^&30RdtKrU@=N /h|HY 0mqL(-ҖK=az%k,ePE~_&A\4md:LH9[uh)U8_[pNCz]+u -b$Pd9*Zu9&oWJWF3JIw.֢-j],pqЖb{;jCHhi kTaJЫ\)J?TiBp[}4i6z fU Ox <:jr1TTyZ)^:x>v9Ӡj)ܺ>MU7QmnSj8JnP\ bdyMT<}qzV ʗ'z ܤ(M{;Y-{bXgV\9v6uf.̥ytgȎ a7 Uy{$iP7m#RVd%;MVZ]=wo)kPD2)5ͽTbjN zo̭l _^hO ~㛧vsd*Wkѡ@XG<1{XP,h톓|TdWN)}dvȗq ET- 5#aG]bLʇs2S&.Za:eowj؏{lZZbMKyJBu<+?pwUFjx|dRM>3'^l7ˎ\ٗ\^꿡pUvYUL޿މISƪCՕ+W?hC>;y_{?طca0 {L9A:wd,LqkS"U\E~<ءU3ku.OE5^>_W?zDTt=GطD3 ܻ92 QIT(MON ATm>*pQQT:O|oS[3j8OgyQ?Q:ITZzMKi 2)VQe tF$Il]UF @GjZik8*CUDNET*HTnեtiK޶\nf*CUD\ԥyr1sޕW݆ҟ$U"mD~دc a(ý+uf O9\b!>cLHEȩFco68ҞMo:^Ӟh|WqJ 4Q ss$ @3(s|X*)*wYqܚ?8bGKyvpwrGY;8KT;ri$QeXUSiOT@T QQ\DDrUUET@T QQ\DDrUUET@T QQ\DDrUUET&' h371e\ap-m 1@Y#|*@T`\DDET@T`\DDET@T`\DDET@T`\z3gGuZ4mT/X @̜DD_r-2sz>/a]잪oVUhܾT.4yʪėtVZuUF7/YrnNr<˪o%7f8%7.@ɭ8j[}@? 첋_i']+=pR'5+wIENDB`fontawesome/man/figures/logo.svg0000644000176200001440000030276114467775557016545 0ustar liggesusers fontawesome_hex_logo fontawesome/man/fa_html_dependency.Rd0000644000176200001440000000237314467775557017513 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/fa_html_dependency.R \name{fa_html_dependency} \alias{fa_html_dependency} \title{Use a Font Awesome \code{html_dependency}} \usage{ fa_html_dependency() } \value{ An \code{html_dependency} object. } \description{ The \code{fa_html_dependency()} function adds a \code{html_dependency} object into a Shiny or R Markdown context. This allows for the direct use of \verb{} tags that refer to Font Awesome icons without having to use the \code{\link[=fa_i]{fa_i()}} to create these tags and also add the \code{html_dependency} to the document. } \details{ The \code{html_dependency} object is created internally with the following invocation: \if{html}{\out{
}}\preformatted{htmltools::htmlDependency( name = "font-awesome", version = fa_version, src = "fontawesome", package = "fontawesome", stylesheet = c("css/all.min.css", "css/v4-shims.min.css") ) }\if{html}{\out{
}} The \code{fa_version} object is an internal object that provides the released version number for the Font Awesome icons. This can be inspected by using \code{fa_metadata()$version}. } \examples{ if (interactive()) { # Create a Font Awesome `html_dependency` fa_html_dependency() } } fontawesome/man/fa.Rd0000644000176200001440000000755314467775557014276 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/fa.R \name{fa} \alias{fa} \title{Generate Font Awesome icons as SVGs} \usage{ fa( name, fill = NULL, fill_opacity = NULL, stroke = NULL, stroke_width = NULL, stroke_opacity = NULL, height = NULL, width = NULL, margin_left = NULL, margin_right = NULL, vertical_align = NULL, position = NULL, title = NULL, prefer_type = c("regular", "solid"), a11y = c("deco", "sem", "none") ) } \arguments{ \item{name}{The name of the Font Awesome icon. This could be as a short name (e.g., \code{"npm"}, \code{"drum"}, etc.), or, a full name (e.g., \code{"fab fa-npm"}, \code{"fas fa-drum"}, etc.). The names should correspond to current Version 6 Font Awesome names. A list of short and full names can be accessed through the \code{\link[=fa_metadata]{fa_metadata()}} function with \code{fa_metadata()$icon_names} and \code{fa_metadata()$icon_names_full}. If supplying a previous name associated with the icon, it will be internally translated to the current name and a Version 6 icon will be returned.} \item{fill, fill_opacity}{The fill color of the icon can be set with \code{fill}. If not provided then the default value of \code{"currentColor"} is applied so that the SVG fill matches the color of the parent HTML element's \code{color} attribute. The opacity level of the SVG fill can be controlled with a decimal value between \code{0} and \code{1}.} \item{stroke, stroke_width, stroke_opacity}{The stroke options allow for setting the color, width, and opacity of the SVG outline stroke. By default, the stroke width is very small at \code{"1px"} so a size adjustment with \code{"stroke_width"} can be useful. The \code{"stroke_opacity"} value can be any decimal values between \code{0} and \code{1} (bounds included).} \item{height, width}{The height and width style attributes of the rendered SVG. If nothing is provided for \code{height} then a default value of \code{"1em"} will be applied. If a \code{width} isn't given, then it will be calculated in units of \code{"em"} on the basis of the icon's SVG \code{"viewBox"} dimensions.} \item{margin_left, margin_right}{The length value for the margin that's either left or right of the icon. By default, \code{"auto"} is used for both properties. If space is needed on either side then a length of \code{"0.2em"} is recommended as a starting point.} \item{vertical_align}{The vertical alignment of the icon. By default, a length of \code{"-0.125em"} is used.} \item{position}{The value for the \code{position} style attribute. By default, \code{"relative"} is used here.} \item{title}{An option for populating the SVG \code{'title'} attribute, which provides on-hover text for the icon. By default, no title text is given to the icon. If \code{a11y == "semantic"} then title text will be automatically given to the rendered icon, however, providing text here will override that.} \item{prefer_type}{Chooses the type of icon returned if: (1) providing a short name, and (2) that icon has both solid and regular types. For example, using \code{name = "address-book"} will result in two types of icons for an Address Book. By default, this preference is set to \code{"regular"} and the other option is \code{"solid"}.} \item{a11y}{Cases that distinguish the role of the icon and inform which accessibility attributes to be used. Icons can either be \code{"deco"} (decorative, the default case) or \code{"sem"} (semantic). Using \code{"none"} will result in no accessibility features for the icon.} } \value{ A \code{fontawesome} object. } \description{ Add one or more Font Awesome icons as SVGs contained within \verb{...}. We can optionally set certain style attributes. The \code{fa()} function can be used directly within inline evaluations of R code in R Markdown documents. } \examples{ if (interactive()) { # Create a Font Awesome SVG icon fa(name = "r-project") } } fontawesome/man/fa_i.Rd0000644000176200001440000000503714467775557014601 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/fa_i.R \name{fa_i} \alias{fa_i} \title{Generate a Font Awesome \verb{} tag} \usage{ fa_i( name, class = NULL, ..., prefer_type = c("regular", "solid"), html_dependency = fa_html_dependency() ) } \arguments{ \item{name}{The name of the Font Awesome icon. This could be as a short name (e.g., \code{"npm"}, \code{"drum"}, etc.), or, a full name (e.g., \code{"fab fa-npm"}, \code{"fas fa-drum"}, etc.). The names should correspond to current Font Awesome names. A list of short and full names can be accessed through the \code{\link[=fa_metadata]{fa_metadata()}} function with \code{fa_metadata()$icon_names} and \code{fa_metadata()$icon_names_full}. If supplying a known alias to a short icon name (e.g., \code{"vcard"}, which is now \code{"address-card"}), it will be internally translated to the current icon name before returning the icon tag.} \item{class}{Additional classes to customize the style of the icon.} \item{...}{Arguments passed to the \verb{} tag of \link[htmltools:builder]{htmltools::tags}.} \item{prefer_type}{Chooses the type of icon returned if: (1) providing a short name, and (2) that icon has both solid and regular types. For example, using \code{name = "address-book"} will result in two types of icons for an Address Book. By default, this preference is set to \code{"regular"} and the other option is \code{"solid"}.} \item{html_dependency}{Provides an opportunity to use a custom \code{html_dependency} object (created via a call to \code{\link[htmltools:htmlDependency]{htmltools::htmlDependency()}}) instead of one supplied by the function (which uses Font Awesome's free assets and are bundled in the package). A custom \code{html_dependency} object is useful when you have paid icons from Font Awesome or would otherwise like to customize exactly which icon assets are used (e.g., \code{woff}, \code{woff2}, \code{eot}, etc.). By default, this is \code{NULL} where the function internally generates an \code{html_dependency}.} } \value{ An icon element. } \description{ The \code{fa_i()} function creates a Font Awesome \verb{} tag and not an SVG as with \code{\link[=fa]{fa()}}. The primary use case for \code{fa_i()} is for legacy Shiny applications that use the \code{shiny::icon()} function. This function is called within a \code{shiny::icon()} call and all HTML dependencies to support icon generation are hosted in the \strong{fontawesome} package. } \examples{ if (interactive()) { # Create a Font Awesome icon object fa_i(name = "r-project") } } fontawesome/man/fa_png.Rd0000644000176200001440000000436614467775557015141 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/fa_png.R \name{fa_png} \alias{fa_png} \title{Create a PNG version of a Font Awesome icon} \usage{ fa_png( name, file = NULL, fill = NULL, fill_opacity = NULL, stroke = NULL, stroke_width = NULL, stroke_opacity = NULL, height = NULL, width = NULL, prefer_type = c("regular", "solid") ) } \arguments{ \item{name}{The name of the Font Awesome icon.} \item{file}{the path to the output file. If \code{NULL}, then filename will take the short name of the icon and a \code{.png} extension will be applied.} \item{fill, fill_opacity}{The fill color of the icon can be set with \code{fill}. If not provided then the default fill color will be black. The opacity level of the fill color can be controlled with a decimal value between \code{0} and \code{1}.} \item{stroke, stroke_width, stroke_opacity}{The stroke options allow for setting the color, width, and opacity of the outline stroke. By default, the stroke width is very small at \code{"1px"} so a size adjustment with \code{"stroke_width"} can be useful. The \code{"stroke_opacity"} value can be any decimal values between \code{0} and \code{1} (bounds included).} \item{height, width}{The output height and width of the rendered PNG. If nothing is provided then the output dimensions will match that of the input SVG viewBox.} \item{prefer_type}{Chooses the type of icon returned if: (1) providing a short name, and (2) that icon has both solid and regular types. For example, using \code{name = "address-book"} will result in two types of icons for an Address Book. By default, this preference is set to \code{"regular"} and the other option is \code{"solid"}.} } \value{ A PNG file written to disk. } \description{ Get a Font Awesome icon as a PNG file. We can optionally set the fill attribute before writing the PNG. Additionally, there is control over the output width and height (usually, icons are 512 by 512 pixels). Please note that this function requires that the \strong{rsvg} is installed on the system. Attempting to use \code{fa_png()} without \strong{rsvg} available will result in an error message. } \examples{ if (interactive()) { # Create a Font Awesome SVG icon as a # PNG file on disk fa_png(name = "r-project") } } fontawesome/man/print.fontawesome.Rd0000644000176200001440000000111414467775557017355 0ustar liggesusers% Generated by roxygen2: do not edit by hand % Please edit documentation in R/print.R \name{print.fontawesome} \alias{print.fontawesome} \title{Print the fontawesome icon to the Viewer} \usage{ \method{print}{fontawesome}(x, view = interactive(), ...) } \arguments{ \item{x}{An agent object of class \code{fontawesome}.} \item{view}{The value for \code{print()}s \code{browse} argument.} \item{...}{Any additional parameters.} } \value{ No return value, called for printing to the Viewer. } \description{ This function will show the fontawesome icon in the Viewer. } \keyword{internal} fontawesome/DESCRIPTION0000644000176200001440000000334414470045230014312 0ustar liggesusersType: Package Package: fontawesome Version: 0.5.2 Title: Easily Work with 'Font Awesome' Icons Description: Easily and flexibly insert 'Font Awesome' icons into 'R Markdown' documents and 'Shiny' apps. These icons can be inserted into HTML content through inline 'SVG' tags or 'i' tags. There is also a utility function for exporting 'Font Awesome' icons as 'PNG' images for those situations where raster graphics are needed. Authors@R: c( person("Richard", "Iannone", , "rich@posit.co", c("aut", "cre"), comment = c(ORCID = "0000-0003-3925-190X")), person("Christophe", "Dervieux", , "cderv@posit.co", role = "ctb", comment = c(ORCID = "0000-0003-4474-2498")), person("Winston", "Chang", , "winston@posit.co", role = "ctb"), person("Dave", "Gandy", role = c("ctb", "cph"), comment = "Font-Awesome font"), person("Posit Software, PBC", role = c("cph", "fnd")) ) License: MIT + file LICENSE URL: https://github.com/rstudio/fontawesome, https://rstudio.github.io/fontawesome/ BugReports: https://github.com/rstudio/fontawesome/issues Encoding: UTF-8 ByteCompile: true RoxygenNote: 7.2.3 Depends: R (>= 3.3.0) Imports: rlang (>= 1.0.6), htmltools (>= 0.5.1.1) Suggests: covr, dplyr (>= 1.0.8), knitr (>= 1.31), testthat (>= 3.0.0), rsvg Config/testthat/edition: 3 NeedsCompilation: no Packaged: 2023-08-19 02:32:12 UTC; rich Author: Richard Iannone [aut, cre] (), Christophe Dervieux [ctb] (), Winston Chang [ctb], Dave Gandy [ctb, cph] (Font-Awesome font), Posit Software, PBC [cph, fnd] Maintainer: Richard Iannone Repository: CRAN Date/Publication: 2023-08-19 04:52:40 UTC fontawesome/tests/0000755000176200001440000000000014470024654013751 5ustar liggesusersfontawesome/tests/testthat/0000755000176200001440000000000014470045230015602 5ustar liggesusersfontawesome/tests/testthat/test-fa_icon.R0000644000176200001440000002074214467775557020341 0ustar liggesuserslibrary(dplyr) test_that("Getting a basic FA icon works", { # Emit a Font Awesome icon (`file`) as SVG within `svg` tags; # refer to the icon with the "short" name expect_equal( as.character(fa(name = "file", prefer_type = "solid")), '' ) expect_equal( as.character(fa(name = "file", prefer_type = "regular")), '' ) # Emit a Font Awesome icon (`file`) as SVG within `` tags; # refer to the icon with the "long" name expect_equal( as.character(fa(name = "fas fa-file")), as.character(fa(name = "file", prefer_type = "solid")) ) expect_equal( as.character(fa(name = "far fa-file")), as.character(fa(name = "file", prefer_type = "regular")) ) # Expect that every entry in the `fa_tbl` table will produce SVG text and, # only for the icons with a single style, the results are the same whether # the full name or short name is used fa_names_counts <- fontawesome:::fa_tbl %>% dplyr::select(name) %>% dplyr::group_by(name) %>% dplyr::summarize(n = n()) fa_names_single <- fa_names_counts %>% dplyr::filter(n == 1) %>% dplyr::pull(name) fa_names_multiple <- fa_names_counts %>% dplyr::filter(n > 1) %>% dplyr::pull(name) fa_tbl_single_i <- which(fontawesome:::fa_tbl$name %in% fa_names_single) for (i in fa_tbl_single_i) { expect_true( grepl("^.svg.*svg.$", as.character(fa(name = fontawesome:::fa_tbl[[i, "name"]]))) ) expect_equal( as.character(fa(fontawesome:::fa_tbl[[i, "name"]])), as.character(fa(fontawesome:::fa_tbl[[i, "full_name"]])) ) } # In that case that an icon cannot be retrieved, # expect that the function stops expect_error(fa(name = "fas fa-files")) }) test_that("Inserting attributes and styles works for FA icons", { # Expect that the `fill = "purple"` CSS rule is rendered expect_match( as.character(fa(name = "file", fill = "purple")), "fill:purple;" ) # Expect that the `fill_opacity = 0.5` CSS rule is rendered expect_match( as.character(fa(name = "file", fill = "purple", fill_opacity = 0.5)), "fill:purple;overflow:visible;fill-opacity:0.5;" ) # Expect that the stroke CSS rules are rendered expect_match( as.character( fa( name = "file", stroke = "blue", stroke_width = "2px", stroke_opacity = 0.5 ) ), "stroke:blue;stroke-width:2px;stroke-opacity:0.5;" ) # Expect that the `height = "30em"` CSS rule is rendered expect_match( as.character(fa(name = "file", height = "30em")), "height:30em;" ) # Expect a default height of 1em expect_match( as.character(fa(name = "file")), "height:1em;" ) # Expect that the `width = "1em"` CSS rule is rendered expect_match( as.character(fa(name = "file", width = "1em")), "width:1em;" ) # Expect that fractional width values are rendered properly expect_match( as.character(fa(name = "file", width = "0.75em")), "width:0.75em;" ) expect_match( as.character(fa(name = "file", width = ".75em")), "width:.75em;" ) expect_match( as.character(fa(name = "file", width = ".756789em")), "width:.756789em;" ) # Expect that not supplying a width value will result in an error expect_error( as.character(fa(name = "file", width = "em")) ) # Expect that not giving a length unit will result in an error expect_error( as.character(fa(name = "file", width = "1")) ) expect_error( as.character(fa(name = "file", width = 1)) ) # Expect that supplying an empty string will result in an error expect_error( as.character(fa(name = "file", width = "")) ) # Expect that ending with a dot should result in an error expect_error( as.character(fa(name = "file", width = "1.em")) ) # Expect that supplying a dot for the width value will result in an error expect_error( as.character(fa(name = "file", width = ".em")) ) # Expect a default width of 0.75em expect_match( as.character(fa(name = "file")), "width:0.75em;" ) expect_match( as.character(fa(name = "file", height = "4em", width = "4em")), "width:4em;" ) expect_match( as.character(fa(name = "file", height = "4em", width = "4em")), "height:4em;" ) # Expect that the `margin_left = "1em"` and `margin_right = "1em"` # CSS rules are rendered expect_match( as.character(fa(name = "file", margin_left = "1em", margin_right = "1em")), "margin-left:1em;margin-right:1em;" ) # Expect default values of "auto" for both rules expect_match( as.character(fa(name = "file")), "margin-left:auto;margin-right:auto;" ) }) test_that("the `fa_i()` function returns an icon object", { icon <- fa_i(name = "r-project") expect_equal( as.character(icon), "" ) # Expect that the `icon` object is a `shiny.tag` expect_s3_class(icon, "shiny.tag") # Expect that the `icon` object is a list with # specific element names expect_equal(names(icon), c("name", "attribs", "children")) # For this object, expect certain values within # the list components expect_equal(icon$name, "i") expect_equal(icon$attribs$class, "fab fa-r-project") expect_equal(icon$attribs$role, "presentation") expect_equal(icon$attribs$`aria-label`, "r-project icon") expect_equal(icon$children, list()) # Expect there are certain attributes available icon_attributes <- attributes(icon) expect_setequal( names(icon_attributes), c("names", "class", "html_dependencies", "browsable_html") ) # Add a style rule to the icon icon_2 <- fa_i(name = "r-project", height = "20px") # Expect the style property to render in the `` tag expect_equal( as.character(icon_2), "" ) # Use a valid, fully-qualified icon name icon <- fa_i(name = "fab fa-r-project") # Expect that the same icon tag is produced with the fully-qualified # name compared to the short name expect_equal( as.character(icon), "" ) # Expect an error if providing invalid input (non-character, length not one) # for `name` expect_error(fa_i(1)) expect_error(fa_i(TRUE)) expect_error(fa_i(c("0", "1"))) expect_error(fa_i(character(0))) # There are *no* messages when using short name aliases or valid short # or long names expect_message(regexp = NA, fa_i("eur")) expect_message(regexp = NA, fa_i("vcard")) expect_message(regexp = NA, fa_i("euro-sign")) expect_message(regexp = NA, fa_i("fas fa-euro-sign")) # There is a message given when using an invalid name expect_message(regexp = "does not correspond to a known icon", fa_i("euroz")) # Providing an `html_dependency` object will also avoid checks that # would otherwise yield messages fake_dep <- htmltools::htmlDependency("fa", "1.0", "") expect_message(regexp = NA, fa_i("eur", html_dependency = fake_dep)) expect_message(regexp = NA, fa_i("euroz", html_dependency = fake_dep)) }) test_that("Known alias names (for short name) result in retrival of icons", { # Get the complete set of known alias names for the included icons alias_names <- alias_tbl$alias # Expect that using each known alias with `fa()` will result in # an SVG string returned for (a_name in alias_names) { expect_true( grepl("^.svg.*svg.$", as.character(fa(name = a_name))) ) } }) test_that("The `fa_metadata()` function returns a list of metadata elements", { metadata <- fa_metadata() expect_type(metadata, "list") }) fontawesome/tests/testthat.R0000644000176200001440000000010214467775557015752 0ustar liggesuserslibrary(testthat) library(fontawesome) test_check("fontawesome") fontawesome/R/0000755000176200001440000000000014467775557013035 5ustar liggesusersfontawesome/R/print.R0000644000176200001440000000167314467775557014323 0ustar liggesusers#' Print the fontawesome icon to the Viewer #' #' This function will show the fontawesome icon in the Viewer. #' #' @param x An agent object of class `fontawesome`. #' @param view The value for `print()`s `browse` argument. #' @param ... Any additional parameters. #' #' @return No return value, called for printing to the Viewer. #' #' @keywords internal #' @export print.fontawesome <- function(x, view = interactive(), ...) { # nocov start dots <- list(...) html <- paste( "", x, collapse = "\n" ) htmltools::html_print( htmltools::HTML( paste( c( "", "", "", "", "", "", html, "", "" ), collapse = "\n") ) ) cat(paste0(as.character(x), "\n")) # nocov end } fontawesome/R/sysdata.rda0000644000176200001440000154505314470000340015147 0ustar liggesusersBZh91AY&SYEz?x@c` Qwz)*;B4SA@(]Ik.EPtր @:#@Еwp@P̄аQӁ@$ U)IkP$m :@PP@wl@}tak%O`kx |F]PYT$i P-U;XҁEA|m$y`{X{@>6 -Z!};oOM[:j` C44  M1hU" VG6 Eji݈mt@ѠS`FlThd5kEW@h dTRD(Ԃ.P kFZPT zW`4P(=5i4@vJC@(;iUE:44iEh PFU K@+zKJ4E#B@T(SZNTi͏'@@9($ Z&kh֚RF}J}Re @$*ΗEGs*EPU  Fڐ`li(h ,nw`WC"GA>l1*HJ"T/}=2HJ@]=VꚱݪN.-]X@gv*Um[jVZ8zmIJ mE ѭ  [!iU 4(7kmѠ})TtϬ[a@ [}<Z*{ P)(JϺ}t fc[X"nۊɉmTwuaܺZӺ^Dʱg=(dZ@ATϰCf˶ 1P ` ҽ@feHhdFٔjm*}j}rJJs2Vek= [Vp5i<ͦRsl@ۯ{zkT3u>*#RhniʊUDQmg+X)}!AC교;0l{HJEB/qTU`X%٘DMaA[m*$IE2SMͰj(@hRQTmEh6{T Wf:J IBU*ӻׇE$D waeRoUk^SىVk֮Zf"lm箥SeSFp(J1V`5 ev;Z׬Ĕ%2AH' FPmI܈1̭vnņKZw@b^Tu^A.6>` * ܢ6tuh 4@ *rHR%J&㜉 +Þ ͽT7[Vѭ֛wk{E6֣nar{;Xy-wh7Lj[eEAn®MـDQE"T hʍYcT͉3j3Mcm&w=uZKс{mknv:CTRT@P: )QRwm%S%K`|}Ӽ4lmF3`e[E0!kkTnh@rS$2W} jnC֔es}^mwwσID)bm;GviyԮ6*Hه64ցQ@y[`-P v5FKif)b4-ج$@i5 FNGHƁvzkp}@Rz>E(5=!"hhIjn#WoFw;$|`%Rp|)dhN] X}N \6XuG;oHw}$M]0s8㣞zo>[#Bw{Zhr>W簞N(V65N8m 7Wjp;(;ց=oϐ!_[zG7m{)}}:Q`*{%d9^r؁;XF_O,YsE F{5; ܧ^<50Y?Iׅ־x{jRw= ,ˤ-7||ooA«ŏѾ%W>'ov^™nW&5|qǙ劦O8 Ϸ&IϿh?=s٧ *kWb?O#s?ٽC}_˥)̶R>~'ȱM=kG޸C/ޥv ϼ|BxWPk͢H#>\r7&ے{73sU(zVYXTfQ?<H[cN6)ԓec=}S:vxOmA{EF|8`>ndz}}ў7W)8IJ9PNzجHcftJǕ}'{h>cZOQMGu}Wa eX笪 u24F}4-&Xۿ-52G¤^}So_qus3d9+~sc Ǚ?gCߜѽvW糶:]_go;o6=\Ϙ߫"ӧl=w,JqPBZe148Lw)|pK_~$Pv%T[M 7[{?2H<>~=-&!T'kOݜ*TN 7ב_>b_`=5JI2Mwu;R}o> !iUzz=)AڢAiy|b]ZMT*;Ky-+P̪جr(/~ä=LHF);"R|4(M5a];{:a6u\/^;_x{}z)ŷV~7|Ǡ{⥗no5„W>˼6|zDfz$}4ʎN|-I;V\@@/KL} C=7+ѿVY+^p:d3!%U ثU)?i^/ ;W_`N'qE8yA BV){(۴?e_R+Q&ዠHcAg0GGٙiG6;*?ޡ>K?_y|yvh5jf7B+4|#N-np_,n-v{v}8L0dQ (ߘ>+>Bny*O/SZa3d|H,x] ~r_av}};|Ƶq:RCyho9}x_*B7,򹟷{`xk by/DwA%7{B>`Wn1B"uZP?zդ5̋j6b}#|+lƫ7a&c_&WhboPGihB¡d(m|oM2A^h!/~1PM._y>]iJ3}fʬR= nOK=G?a%, ϥؼF?N(sgfZ%sZ@>T U-M6&i!6&@"AdRHcB8 $.@t&!Ii$ % ! 6Np v؀(BI!M0()k[%798q  }@Dʜ$/ǔbtI(QGVyC|B]wI`&0֜ā.&ĒC$R)TB4$ L` ));$HGAOVz89X`60M& 1$&&1b921s$:(S 4H<{%i0oH#w $)&3+tƨ"㵀e94o77Y4SA#"Ý*dhb" D"6wfr^LMSȀ,d %(h˵ZU 0miZjSRD1JUÄur癋XJF٢khCR.EK(c@jC8J"tڻq<#F]5۵P5"0` O47""2`{"0F2jjs9mh,c/e9iq ɲxu[{.ð,P ]ѶH*f.,d<C̾@V>u-P (j-(ّuDRLl,AHJ$:2u!APn) 7;}]HvgMl͙djv*n]P ""H&"-Nuo.D,rPX(M*YGX6y7$p2RT*t5!Wpme:$I$ֲ¤ZmZ4٪`c9/@"ΒdfnH Çt뭚I!VHCޔ*L ɂ0&M)!HH (J`"dФM&i,@CFBs8pԒE y\RIWct륶I) d̀jPS0 ͡I@Ns f 4C %!V0H kƑ*jqPv\uȜ/5[]oa:3iŗrcpmR&@bxF  UqUJzk-а P#U]O@8!f-bj%խzj,ފzqzlQ^^p]M`4N[q"!Vmeࡀs1a(F1t`Wov"bh#0AxEoIs!ʞƓj!yc&CP䵌S A]d%:H6ūDZ#(g 7ARټԃ4@:/z=r[2ЪMp W+3;Qâ4NQ|EvGvaDDDhM Uj8eQPcup *וSweHg@ /103ˣ:*/hlvY.YhYdPO\1@wW`g :s55U@7rQ{tӋc)N̄;+nx315Vj32'D U"=*(fHE$Cm$  "dIT*{$;ɐM.$Ʊ vB .S"Bz w(ѪO yST@Pkr1sXh-=/FU @"#3& w*CA]"A쫊v3jn4(T T1byVt݇Z; NXBtHd;o{fg |]'!;PTbY@NNR'[4T ٗVPwbexH$UEra- ߀1#ӣΠ@zH2nPVQ#w;yggu>{"qH%.G5l(F 0W*9&A%JQv*ڝܺсt 8AP TtG\`.a@>ʛ M l3޸M`J`!d[D qA h̉0/TT"u('&b:Db0_ R:Y:wY32FVu5KVj[QP5 (\vЫAf:$Ñgf5]$N\RV'Վahb(2j nu_]8cB{_!6eUD1'9鲘f B4A'j8rJ]u eǜ*&tc`2!BIRHk!|UٙFm𕛎 w;cS2P"Bi`a*D  h_']vvq&8@@tl|w*ն" 0rse7+r1LgΥqD*(.2"#en z;"2gb!PGIxežÇWz6Iobol%acRFN_"6ִ|ՐH$4^j$./sbw3x\VJ]p)dL1sA}32$ (vnTg1$RRz>22QFE^ IdA# <μ$%w Tr]Ì.9(Arݜ,1P8ȭk1| 9AetP :mА%.:+qdR['PePDNSA$Aȷ`qP\"0nc %!*D1R2* @Q* Ii w5($JTLZ2g dBi,`b ;v{+,WCMl*R$ [/0ˢ DMц-@ABM!qm 0peLɻMlu&#.e:nB9lmJ*72LaLB@M$&䂵+qlcƂ 3WVqζ;(҈BGW,bP7Ld AѢ1^j@3ac\{d x.XMb́7 f0*=[ q'vHš9/s@B2-Y(1QZqKgwJ9AZ&B"-[T)gv! v PC"58òHB!vÓD¹Md(GD\Z,W i8kLo{5]g4~$r0=~rQ[$# 4 cHM&CiBi$66&i 4$ k2yk3~gJj`e2$rȀNJHVb8&oY6&_6:aC;m6%QShi 7m[z#u\sR[N&Ɛ3$9ny X$Mu-V7@쳘 ym7 5,j鱗=894WtME-8v*TUW]u;4-([zp.6u+!n`3بHWt q$tΌ9jpYqJ.# MsB5cNN]jދbRٹ !+ NO0{n34Yv`)q3.92\D7sQyQe]iN&RkMk]lDђ4Q{Ld<2p MmM7obm9\VW sGa;XZ5[8*Y,:n籷FC'wxHcsn#y"$гoA;Ej;PuٴymLr-LUrk-neI3Y΂xҫɄ/MS6g,LХëT;۳lCgwqzOluӵ:%^Dǐ8N ]u=$po\6bƩ2vTkELǀ:|z8Zi5!Hw@ ֭W9` [XVRn^A7:J 6d[9k^Y "nh ޚv6qMUXL`AP7x!5BvRjlFD9U)X6-UXzyeog;rhͅ˷'bXX:;rr\-7O 1[Xǎ]5j(lmwh>RK;i`$}cE+z9s5lޭ &],9eN5՜M;jM)ӢOOl/2xH#c:su63P᱐F!Sp*(k[=>왌l;;NQyk!X G$:=ѝ5ȣ -(41.CovF5ٖE0w{itkT";&pt;UeNlT^iAIo*!!*nO=dn6ٞ;;[dU*R!bQ76v @ebI yƅ *.v `D $$2!$Q$AЈݻ3S$Dk.yq""P1$H&&`DHE4KNIW ޸2EE[n"XJͽU!3 BΔ8+r\XJMU"$p8]6:dzCH.gu62˺.GQ'^-DI,UTW {SlKs)3x`8m3()X\X @"Y0zh7;Wg{z[Ug&U\네M[e6it0D[C'^VZNةZ!IͻAR-қ}s6$Cm `ə%jU'vr`  ۚa܅,V^GF෶ġt2 %oq˚SY8FƯB)# )њuۖOAR9Ğ˃ 8D']1w4QEH3Om[{PIꙋp^gs)%ժɍfYxdF)΀^TlNh@Bm VBhT"ད2:95LdZ=ҟM͵eZfu{8tk|̽SђH`0Xlrрx1G̋VB&h#vF@j.q0 :%hÔk+[;WWBsbDc#,9dmO4r/C<)鸞Q#2jci5XeNj<%%]4@ D@0s1;9jАS:í91Up/y_pʋIX:mZ\  Ӫ5H<mb8 2i;@nR);KKjrܾC((saNlFdK3$X1Y+AT6BS}[A ɫjfTr61 Xg>֒WWMZ:1X6]xhsCa@q\Ȫ[ 툙 *&jԀT#fgWpy-{U[VWe&ha96xUFFRZCsH5ۈbm=޵TfFm"I9I. Tfg:`E몾`סE.˔5;*fI *f7/2attM]jfc^Skz,&5ܷNUsw9꽹O ՗;uŤț8ז m EV07 to T.VE5Eq"rv97CrbXnz2,șDi9UbJjɇxH3NѦYflv݁#x2;!z;E89¼YǩJ3f&Xt4SabDaWj.+7"8%3֕ Sz]o eE K7Qݑّ@ DqD7[8@f+),WNbDH u'rw]eړ/ѠܻrJ'kgVOmI#b1}gESHw[0P.21+O/C DB&̀v:\EoNnEU-%׵C"*[!kcDv`]ifXGu`y}+ TВd igHu8"ӹ]",7,Pûzij=8Hc`x@F H3ìߚ)' d;痼嗢;e:<4Duu4-7#kn [[B$sڭ#.ڒOAL*&2aZ) Qk|`4U&RHYuDj(aUA9(hi'"8^R%J: )@u=;86@ Ui-mK8ZN! \h !s$a!a7foNNiu6AԎŮ*1@ p` 5{Sc-Lt0GBceD;Fvw9)csT>XO)$WI 4mҪAs&(͜MIw&jAݞת^rRc2 hsLMo7ZAv2t`*8\Z2£,eu(-c6/["H{K:\RvC2NNY7r:b 3S RXݬ0ZPw< ("+U ZJ.ܼŦr$6aڹR.fm W\ی&b(&j y:G}]uO:` X -vëokwYs5$SOiy0X# ]`v4bV{W**U5}Tљb;r]`+]#STҐJ"fpAS '-ܬQ% Ob`hFrͰXUynmu;DE5 eVV>D";sK }+]3/7IXMT̰A0v-<b*M"Aeitͭ\ *JpM! #{!6H:j7;:&HVIttYYO#cq4+#&oe2l\xؖ%.yQ<`Roud7@` jN0Q yܓ^$gyg!8KN`(Ta$a%b]C6+d:3vu۪J% ܺt˸h,uµ:3vN55gE\֬(o Rcu'bM*tO&]PXCnR /k:r:$m)1@U* }wӡ,+qg] `6i <[*.ky+(R\&@Dd d.Sv)."qG:׎fcEEņkp#! V0@8 @dۚ2rAS 06olml756R&g/Ms1r nqy[nl@by^]֦aB̨R(;@е($ܺL$wT@[!@{1u;TmfVQݲFh(ѥ f/99P 3r!o;N΋htaփͰS{xRSNH뷏dM3e/sJ1av)dfH˧kS^WNvt ؀Ѐޝ@]Lo\gML FnVO=w (YוZt٫M@8Бv4AbyQ%ʶmpfզ!۠8M/:wt6Ȕ ebAAc"辡p.BWLRn7䫼wЎ9(( vpFY5r2 aoe#ûZ:n\0@wNĔo@/x=d[ ʻIcg/BcEBfsxe;G x6ݱ2>>4R NN8-AbF:[\lU{`!fͭ.iYb0sW[o*4ãUm9W)YTUX]C1 B"E)W@Ωs86(㢥pX'$dYY:'ypFol42@˰6KOiio[fGiSm&qIf4Z*_ OhۨSXK,P26ad La& CBQD#7:2vSs9ܐ&2ga$&# HR 0` #3.TڽVǀ[-]$I6A<ƐxvTiJp5. t.uwfi`m34hd0u2cwDrL"!-,d%(L MF.C :S RP,&ҕH0]fIäi"h| eJ.w >a0c";0ekS eA)@Tb+tIE32qs'1nTPB9יET6í L=}#wvgnr ,`&,ERݝ 'Qej٪Xu,S;J Ty . RN<,gg Ónd[ , ::)v 饣GTa6&;([rkzM+bk[r:b#EYwmC3ft#mD)ͭŀ0@0s&K/XDcdhݴpȾx'0@"FP=:D+m$):-6zZ0` b/52,xٰe{yYsW3Mý} hS=7:yU='-` .9ѳWuW"x T:xVǤՖs/i^^Nʪ;Hwf2VօcL#VXŢŰdP83Y9Xn놃K8s셳abU+cR<9`PWNhvE2(cv3z PS3Ě7$Hwk!/N U&9* @:o1Z@P,^e4aΎYB o({PW7SLuArܞ[w ӃyRr/KCoUYICmX&@Se4Ƌ-DP ,0woJ4r@Bu1v &f_Ue=䋖[7ΌΠ,t[vb"@Ӕk.f̍ @]DČ5&hcwwQFnHfRoE1+l,zL0ށqMuZ ..+]VWmw4{znd]kV'D<\W UGWuhΓFf@A,0ູ״nv(3bâtR]@Fwjݳ2/j hOw3*=2aBo/:@=9(sBf1xν0$H˗\]O3Z08Uh#_j3l0Vʳt{ܖ&sfQ34^ZI9h#E_'ʜˀ27e@X-bnܑ0AaW"ABAͰv{/dmӕLX3;}]NYE`SbDg_guoWOMnfޮYlܺf8 ʺ(I3WvT/d@V"rjB";%7"]=]rsfh뙭J T5k34R=Yڸ)j"aup!Mj˩HۄB ajq0%(NJ3L101 pa\w&I@1lݙe̩uk/a "y&uS;:V,Վ9H`ƲM9=x2Y=hphy| ۾x֖;Gҁa[5ŝfb$-f"KK@/>Nix$lXC'濿^j.G-x?U//B`C kGXѰH5(PH$7̋l7׮7r_gESAh=({kAGh{j]X u-Ej] >کB&J/4}0h,3glwg7"+l:D!fD 8/?k!g 7H[<Ͻ}Hծ'٠ʢ^·#A&l[AG"t?m((16(rBM< <2t/hP֫V5@?~ !3st@t7+~wm>z~H5eʚWt"NCkt!8'ؔSA_h>zY?ONɢ-fV#_ ~q_9(}ѽ_a OK( |jlB((_<~r >ũ݇iIT P) 7?PQ)BTh ٫09KEa= .6M8wѽ(G]XP8~SZV2H*[ƽ{0= A",!UF+$Y"Ũ1m!BJ0aY D@X)`ETTA`0QAbhhAEQEHA #"5EجZőb (0 QhŖ,bQ![Q`"$UUH(`VDVHDk( *YY"TT0D$-(؊AJRTT1bHTF($BBDPa*0YX*T%A F1FU,j`J ,X0 " B ,b*+*@Pb*1#RIDP` ""0U(1 c8m]╁YwDe*AND fd6'׆{q%Jb1@PssΒpNNpE.fDȈx+0mԫX˚nZζܪժRA=HR"u312#hڤvqLn--N˙-ȫuuٺ]*{ @% 4ULwȽ[vҧHdM0f DMΐZ$FH5i$ gV=sﶚ2wY! mN]ɲeXHo޾wݗGw/(Ww#6.#^]_]h.]Nښ܉Dlyu{vy;v֝9v .˸ɰEua<.Ac%5g9iШja%HnUFp #jTB,#ǯ !q ָAaȁ5PƆ5[@MVf齐ƚt7 A)sZk;dq;"PVӖ&Kee8JAՎUf:ӘoMuΊx7+mLH =}5v1tHksPtJMU<йh=Ϗ:J{'o_N)ݕ4rn"I%ps[AvBeuNid3jƙ XpV&nXOdMYɦX&E =H͗=t-C9VUz̍ܞ̐^tѦtNOBszdPCr`ZPu^ٵT[MhAGAr@ke^9uf)-f==ˆ&4t#jaMZR)Hط%7uPDMR'[?[A RQq;q? |@!hዽ:+qY7W$p92T8zl:&dly{9jfF. D%t?؝\J5,>U_0<0EF/m H-HLUq;ymPr?&rlқ$,5St}" (1sku@>hkt _(a v^WfaܹbBٲ.C%7wft[C^{JȻq.0\1.:UJ蛰^{Q}(FĕeuW fi٣%72{)f+&dbkuj#d%KJ^Fu8&UM)gg7!!τFH1R׭v4r-@Hx]qD`]Mx,mH(Q^_/ǁgNz=CE%T-)ˣ7,hOESYp.F Ҕk  LC|uf?T*9BV!'H)baYÈ\닓D]n/6yv=X/TE s\^ ^#>S:NfxoSeQYg_aɥ@+R d߶dNê/[ _RPݴnC9GMl♵oIy,;ogؗSZ'c9[RSya! vwVoA`91`_cTAa! u[YčZl*v8z+F䄁פLw2ei&ˉUGq.Ye-*x;"ADpoIN.,dziC5H/ͺߝD$zseT97+^MS_F}gžRF_ˇ\łℜƘ:iƀE]c Jv&#A q3(^YKNVvNvw0NK۠j񪭀 PDt$qgbj]Hzν[pPv5/JD`/FXT'8eղXT:!NKSh߁GR[tLF@{9<߿%dy.;Z}"ʅ.r-Y Vi#.p(4Dobfdc0oP ht;AXP=e f#cA q!~s!AԯNȸ}'ٸ 1x+?(RGIU1q*.L([Bf:!6z:edaEG) @nkj_BVVIKx(T`B8xS-||,LWmj։Ě{ldR7u2Z н Qra) 7b0WwSbMiF邳&zE\9kHN(CD"-z\4iueӏ<Mh tJ\o-vC6U$}L =o;t4=+)KSx fPʅʇ#9 f `o6Ē^ǡqU+nV"QwljOZqL9pIVv@蘫+$O`ծ0Mjlr#dIZI7/`tȈ6&w:ZXc/Za RhbUt*fvH<Z`)X/P `]r_nUSB[AbmUyj!ALkb/l|Н>;SQұYi͊а);>q#Bg{NWQCt\ˆK]fغ.SޘY-53kzmJ c@8#[dq5S nv/Xzb 2acm4Ͳ\e\4;N(mYž\g5I*Y8dLeIZ m2I&7I^G+ SLr9S]lcDq 8jG u]6ŒFA$ a޻zz|wE~WD 1Ho<78`f.)y EڂUݣDW HH%gg/J=lpl$MÅG@$=G"r\حQnW;diCAĈ[dk֌99p/AոbN^Yp˜_.T(̆n@<2&&W2lul~f9 x 4gE`N:Uonr/Fb%T69PM5& yL؇@D;$zxx&wͅJ>;Ĥ,+O2r3^.FÙD NP, 8%#m0P Ea+pZhVbA o&;:G%[eSu%%|=^o)&4(dr㱚WQ4.<^ RN|*mOw|,K8OAEq]_pmH@?8YU\m$\Db s>4?!ՊV޷p^y ~-M`u\m*!ྈ9ɸxwZwP^o)Z(I*o!!F6FH)ryQ6/ @>P츉1LْV"V`Xߓ3Y*Hm*dȶR R7I|Qu1sh2R n͹,C+7]mAڹ )0C:;h PY%pNlk+ 6G$ }8ZA%7DZ(2a1{LifW1ѶY GT)Yzؼn/jpcT+ u=5(M.d5mi`օfS\Dsy*E3%nw-` 2 +o+Mvii^$ Rj'8L*U8"4)O n8sǀAНWZx %bu37" *ЈaN+ZF:}^X(ܪOYU{) X"NKdVNfK M~PW&iץ_θ7ò. rFL̀U7 W%#i! A$N~xd{s?_KLhP7 af"O,<]0ADY0V #1Y "2I=aÇ3Dٻ$D" *",`Ō(,D$,[`J})Q{spg<|7ئUNȮ6sûA2aw&sSTۚ'|=w hQ:T]雜(B޷62W6وaH& \fĭⲁQqhiVi0Jx `akk8"FX ^hm_RJ2y ioHLNt5BϥZ4&'B󂇭Nʮt8~"ˠo qȋJm< ڠX tN B" @A~fà@3HJ Hb2H TDdǏ:Ƽ[8:Ɍl$YőB)$X " dHv|:o٬Hś)m"6 4a^"T𸢐YeɗgiۄmD"Rm@[ՠD =c+}b@A'p ~  Л 2;жGܾq;W|6 e_`oS=5$|)Wo)dR}\fzsW-q %W[ %wy8pBg*/zgk=pVdܬh=9*&*s'XHN&'g64a-Q] x 8*FSD!ђ)i`*B,* ^}U>F$}p ],q\wȧRE$C+i%&I*Bd&ar3+4Ȣn{BZ$&]4iN@,LvBǏVajr^@8,Z/F;/ ^&j,h0@98VCN@A (a8ޮ29EUm'^U4YߔP+v6&x B;&lNܳ@OFR4,36Qaxq0$nCpK4Dށ=YZ9{ʥhsz;\Tw č8% pSS"d;/zulGqrwu|" F]QuY0nTIvGvūxbexzOA --TSoLp )7|JH9~VA"FGD aֺ@ka~ t3/zuh f\j'.l flHsr4w<5۸T@ 4DރCc?sC)qQ!lT{yo@Tǎ)sKqQ7Vm ȈNd۸(->B?#'N 1g^Pi ϝLH͊G K ZQ<^F}t DGx׫X$,6FNJz+mE߷=BhCۏf/<^+<pq2bxݪt$pqpD`w K#5*,QL7{ٺ *!5mPPB[ІBPmwb3j/EFMܳHl/F;Z6@x`a#;38| Ѯ`fҔVF}K!-w'WvL%ٶtDZ*&l̸]'߀ۨHșiupK#wz}&g'Y;tGn%ZXDt <5zɑ=[W)R)kxa]r Nb- %t)Z.87, /ʖfEJ2ؒVwx6M5^o%jx20d^s sY:B5L +(@zVu30` {#iVҾ({eWu?^y;T)fgE3ׄUfu~TEKυxCܰwծdFkDK1i6hk% 2'ώ"e{$ifdfbз%9<8*w) IB-+€#߳iH3bWԮeǕe -vvA>J-.#@M)Wx@ 0\dKiIw_FO\m(|64q"v$q>#ZmS6F_sn6~NoC͡|QF"`{X@ tY9N,aMn>"mlV >KʥX(5DD>C4A)s5u]/.`]G-:P+6'ljnU:ܳ>n2EI9XD`^x͞N)rD T=d1$2q S Mgt\bDH +n^G1ֱatKUPj*',:RgA6S1Ѷ̀'H@~q mG{VCE"Qp  ʬ H!Rm咢a3$MI4 ; K!A/u&=`oN,`p1ʻoo Kږ^7~bcٴ#}7ю'nfUa"LN<k':A@R"#>29WA~af6:Y;جkUvcByy3&T%9鞹Ƚ鱈pid.T[\*U灔/K."Z)6/SDcSlgUS“#i ״J5QJ㱊qˡ{أyFZj0`>Ck|^8 K.5j6݈4X EY6܀v#JA!pI+e{+5N|uw6Mm$k OZק/^o0o-P hRHĭ0 w  _FSNP@ P9@N{t?v][p̭@:˼-EJmзRNY6Tm}{e>u8[&uI/;; 8I1hUD` 8M;.@A#b+m6iUѢ"0bLZ8Ygࡠ&jEqK^88a"kտ|%wvE>` v>Guިz_4}Зka=M#k1&+Z5lplS Ƌ!<2zʠzٛQ&yڀΆ.>wHi?&+NJθFKabIR1);*n{uafRo9Hъꀜk=tR$ֆ*4/(A]ק=y+=lIwNTcv8W<d ^ՋH"fuWFy2 ėC$cKTms7[b61FMR*hkYkq X21⌞lDL2#4e"Q52鈘KXk8pu^oWFt]r=PwM'p6B"z-4"EFC^*)/[L4w{eb,X^!qZqS%naw! 1  I! ;3Y/z6DF [ CzLͽB1f/!w[k'[oߞq3YYߌhH$P*nz0l@Hyv5dF+E#Ġ ^@F%&#GSTtp*GSyº#! eI]r{8ͼԅ|p kawQ6+"j]e^D+{8Q7~^ nK:E Ȑ-oscAX"ywlkt ;aV@M$.]J*V%64Cx0hZ R_#LSa@!żVBTɁ* Z/>3=9D } TQ0ISb]fMrd&7FR [I_v|!chG7*jl4g5XkV33?! Nwj~}Jxxbֲ_7]j;m>'%5A&OQslYP{$\i@s:L]OD{^mnU?khE21@z|>ǘ* z ԙt]Z݋|,NR>Y@MGdLDR aiWE*̧!S'!1s(&$j}a߾gf}4Px"z\ܭAEmpR3pL*fw"R^n`8!ׂ~פ8O^}zr#Y慠v LQ Pe\ntX Ć~>1@ ypWT4ONEvS[,D` ,jŇ¥& vBd[fяuBGpR} ]+Zpb,xu,p0 ;~ۮm;ar~GꕚT%y'BaQ#r:$ghN7ڲ"4t$^yңŪ"KtM"A!6qkzZCryH=v"}բtcmz:5=$SgݬH7ep8*F/. *ޑ<*lbޒ( C:CAFwuJʶ=7/#_[d't܆ok`UU `AA`:{Ӄ32BB h^`,"/C PDX 0dM8 !,ov (DEFȊ` (1VF(.R;BSi $"ě4( F2 DbI"2@V(淪Ӱ@Ry`G6y{ox=[`*tV&5A8|Œ@2yyΖa 1V1WBn"@9 ŪŮtyG󪨏#Ffjiߍq٬I|ǐ`@w\" E XsY0\)crs<7yYM2Z` A b!CHJM %!$޵c% >ٹre+tpā=A$HP!Ǵ Vt,W H:5@àv %}c8j'rFlથ;NM ԗ6|f FjA'DnKi:aeoƛ[3kUq1z;RdiuGbrFbWÿ1X }H :h:ziʘNR3G7)eo%X0F)n6nyK 9,ݤsI-iA@ Um"x -r9ɞwxXtػs]غucL Ả8Ypޭj@hNbmr/}gBmq1SrUuvl!+u\r'&/c.œrw "*z0P\F5[6K'j lYqAZP(­D-Ki-W|\-)vmV,bNεpAaD q|уu|ѩ`=sGaxC@L:Y1Vv|9Q) `n.faͣ[0k%M%7vt48Ϥ nG84 aF㡫u%[HjRSO&ɿJ6!9638?Қ5SGY6Ɂp8D P$\0A:{ca|=8ꄈˉX鐝%T$(E7n^CaD]JH7ewIv1auBxUJE.O V{)E WVΊb|:Qڕ>z/ dNHhhȩXuVQ-|]1CJKfk&P9UC4O >M4\@ujָ!ǜڎyFbzЎ 4!p'pd=X#;Q3n9 1;/G=qj*kxYګSWʗ-^-jBӅзnʼn1ݾZyޠ%gWo o+'"-L$:3:ndPp(܌Q#!xXyv@X䋔$fb9:}CECʧzW}rhc^zۜZ@Q NH~E _|ޮ0_sO9=gDs,-1VeR칮, ߞ烖q4(I%@`LQrG|;JP<;Q<^mQJ][bŎл}JGRl>9%Vy)β=2G SXҡ8kߍ"MK eKf'T$CHK:q#t -,= ;EVw}d;6 |͊JV\ tR,ߔFhB@3ׅD@V)H 5. &y ֹQ~̘lb{кFe=MP cSV}Hf@b0zCȊ 1Wch\ԓ) {=$%K@2&Ygb)R# n_BI[{Hy(=;߿C`רk^q5X|8-ߝpRiM۶3:r}=4IۋV p)Q]CM+ )ṡPHY!Xg3**,c 0`@"`9#~Ʃ?kitO(tc%BoSB\XdP݄|#E&IN[Ԅ",POPA1m|вyDWmd\U=]%l0aJϽƶLFݺvJQs AցGRO WoĦzFn`><:71,R'=(}y t>j侪I;t/ȹ+OYUsK`j&RXa1ZXTXLt>$cVsa©hS/{U!@@nN?\G*ɿymUg|vK'ny Y}w*s@D}6HTuFZ MT9j83#RX$7m-g<f|`L;Ø:#zG/oO$nˏm Gbܮ0|`mV 3:Ļ0}v-Ediƈq3GnNmGjwI`Iye5<]W{:>` R M16tEׯ]uj,hZa}82stdɟ\E`ڗ;kןS\LY]FG. 7tgq&$+j.'Pz.&qmxª \HlaR.# 5͚mLʍ( vz3*XSXn5.Cңs@-ww8U*xJc:#vͬJ9ݣrN_ڱUw譼]s nN<I;[IJ*P}wP#a/ N ̗ )Qt' M ےħH σϷ~KD~ KKkլm9mޱn7m/iUrX*ݭgUƋi( &$DFm0N܍SqHSH Bfh;z]ǽ2Dl8{Jˇ[ͩ Q]\aFqqn@n޲ 2f;\<9w{tzBڂ;qߏ[g6ŜZCsR päls "XD U!k@W$ =Y"~.@O1po&0W 5*(6]5] &Ҵ5CCvftiP!uؘfh80C_/7XF PF&U=) sV]Z MDq: l ~hJRwYMmG4&<@/ܝ㎻Mmw 2zY:Ue`f0E+ V<䀥^;7ީnr`nyXSk;X#MkPlmI<0u%iAճxO槇^ݑk[CsίBU6 jˣ.Zэf oƘG!*hN.%]sB اdl:=4JߪlY\zEsJ(srD$`ZOK6|q.,x;,.B2Y\Er.%tSұeI$|4-ҿaM"MhVS9N$H9p2@d*^aF VoעzBO2 ra$Q$%M'TK 4ݙz־׭8جӚais{[@m[d{BE:CEld1H.?b˵NB|\/I1UR ;eb{kIgЗpبMJS4O!|V$y\${AvxivA:9͑۸-[$1vk"-.F-mVSM!+,ד/7ʮ5^QhpZv^Bw{tIwy4o/["gQ ^6dʆ0w꺚D/R顏ra>(<|c?{pq,6Zoko.6vꢾ1>Cm, [y^ a Jk vMTqIn#x,&*H0Q*A@R 0`@AX!!̄ Xk>gԭHVtbmMD*@Y xddּq̿Vo<뾹[XD JiB/G5*Gi2CbE\tϾY!<Z^(JHp8:&EC̑rS؏F#sqt|B";)9d\OWn_skz 3ƩC[a;؂vB pXxSEDT:l5o -S]̮\;"ggsҝ*V^Ť)r\l*5ƽ. \ y*0P5B)D8m|FX":ẚ89ju1#慳GWw ]*DnWlT Csu"Js^ r#\Ocy s yZA1@e=r5`(!a}Fh~8[ .!G2 n0xD'k}EBuLr?K 6AQA"~67mҹSEL|ف8H.e׺2:$ +iQ` X+.p)ݴ ' `6~>׭ y F{E7g~91;Qo9vW $(ZrBb*Isۈs~6jƌ_I dv遹akX=[vz0v1=%F:>!z ,"Z . ʠv[7੿Dv,@х_vn~?H>Ty(6ۜ .P}.DT_}kQ'Pܮj:6`"gA[PlAߝӎ566v 2:!8׀P8RۈH%nht0B{orAH oU-jEhs W"L FKq@^g_D Wk!|Xd7Dw0\w{\=75xkܷwgsTmz/1ZȏC&R,@p_Le }[sg^byvRJ΂40Jzkr[mD7v9QX"vu9)We/h3 oDa;䙹).nqaֺrdYZ%9Z͍[3s׿_CS/=d8dHc]X-1%7!3Px}a:zp+o^Js-J.oOjǣ{BgYF5 "9C!isO3v &BYh7wݝ?^~FJ%ˆD8d_GطVB4Sta >ws)a(6P!2lf6ZUQ$A:j{Khdz9(>}X\Gnc.eOf4!4`_<=ﵙ|ֱw`i&$U-P|}̹:-WTכeso2E&ET#˒I72`IPJGZVu=N1!,W F9Rٙ EtrTA|*S;zM f=Bpa@ PgM=|gm{ѽZa=]juZvY{Fq]qުN`\D@_~[ftw^b.w<)$n7?x23P(03X2C#`>k " ֖b Aa(&4( G(r0i v(^PD00$a-1ƻ;;&|aA40lpK }ϘigɎvYd 9hB:FJG럢=k4jݺCL^eź**KdYZ&U`x i*Cɘh Ȑ³Ȇ筎kwHt"`KGz9rHp:=卬`h.%  sf)0zhHalQpq?9.UD>af_c Pt*Ss N#!$41j*'E8y^pm*6=DVj4"j5 X٢n%70`ـ &V Qt(:hтhdQ?Q0a_O'J<>r-13n8 IKda L6i= !h;thOe]<!%y&jT{R4@0m~U&Q.iSf)QQ82ݧnɣ_9M&5PQ&U(6dQffy$1VNrsC+r@F~\szŊY$^[mCxz 2EO|iR ɍ74wu=U}22\g\(eC =䴜k#?.! )0g1lRvV*~P چW}ѼLQ)n$L7ҦЙʵñʗ=\>k[ެr''>|QŭVthTWeʲyJX`"tzX%{MlAw֪n92Uj|C؆f9BV1, ^"dŽv^of!Fܕ;! q.@rXVȣsHQ[š(\Xw.`kc5AkUh&7T`W=񚯲 fC-Ec#?hQ 8mG"5f\Z2i!*UPj%/w;J]\lYuajBVwsdf[R! CIfx1\VXhƤ /|vg(ˌnU@V hmc6- WLOuzLpO9m'29B6p:u1<8B-FQ\ DAZx|$mZaHWzg(ay2EPd#ծRb-*6 ngV@2DWy,'|p^qp-H#E59L'GU93i"&$E5ْJՁ7K H@ͬCc)!5 +{Na/DDZ0hœi 0L}_D(9kYv!tOѫ~yD gAJ:iSh(Ch{A\nFp"-\q.jPWJaCeNiQHkW&rVf*ox5ߪI`^}ll BkcO-ɉB:/oz xSt0{SܞGH\Ooa!&C;uq(5mOq$N<Έ)+P)Beܴ6&Pۊʅػok;V#!魄8*o _endc&x|> 뷞cBϓrU>{8<2K+9'9̍<< ٨\D6zF, q[3P4$$37i7`)@!%o F}6=Y^vۓE &hO0p B,#{<u8~Sfji{k3*E O*9zN0s*a6cBAB \}.no] P02>dw^yXM;'!(FYbWH pɚ+ dP9Py4'H5GcB=q\@񁱹úYU0G~Ku}}"B5v͜c[0lO.~AsE Ռ ioك\`-` #0'b=LT½W<sIEz/GN7b erۻ\6^ָ_fQ ξwH$ PL e| @-VS?OULOMp2A0n'"bw6KsVk7Z{Fr/*$HLٜ̇fFAvߝ8FiTNyʷOl*V.=j.}wȆwMd\k:WY9Ōo@:?yςa,tjx.y&]&t,d{5Z+Fm'Չ 2ac)yƊ3)mHeV.wĜ, [\WSY \.HXGQ*Xcpm 9$Xb ׼HPqT ޺QH=kŐ# V+/ m1K81;6d+OA8b<;mw>\f c`ڰ?VJRߦy5'gZ ÇOɭ ^q=0}Jצ3+x3e Nh3fOFfG ThL chhKX9)/*Ɍ#/ɪ 1b(v Rf[:c@,]LH'u;.®=azi%wrsPc(ۙ:>.%JuYs+aP`hnKHޒL}`+@x2Y83J4fUuJ~Ϛ>&^D8C)."͈b]s݉Ehero T,J +*%œ3VO9t60〽P| $Q+n|:`YqqH L(`cg[ P gQ:(ŘBGҰ*WpMcSBmN4/\Zv,Z!vnQᅯ%Xٕ1 33ZHgGl50aމd-<SHwW['#={z#jBNMw#t9 :>n|,]nEmÑҀ#WU3#$\q> 8bί ep.+X׷݃MJ@є@k\U'Y7ko3tq%X`ɨ1)z&mQE:Pύ E1|De<3C* k;WSJ ŷ5# eDZ ۇD8R\,%59iK؇czv\ | 6a ֐8!q. zyQ Ǜ7ji|pQG3{TSsfx įlf)Tbkkl&۲'hSdtfv<^FH%/8!DzwQZ/4TH@1WbpO [" m%#R!d?Nq "0dYiVvvRgk I#,s{:yXm`v.d_Þc!&܄P x<8uBA舾V`W^? !xsGhV//`|_÷=nC^(yܸ?]ՌW\yCނ0JJPu` jgYE΍7'Hw};#N2\qFyu_{&8C:839vTM_/³U㺷 8Ie.pd<mWIEe¥l2$K2G'zE if P~l 8@>VE:-!꯱%m8n8jW>烽vy9>Nln*Is Hn%j PaIQ$(a7c\=/U.kRGgB$MRDn>h} QLנWJ;q h.Īj'/F/v+/\Wop9GwkCL''М(TK`zF0Q:3uϪo%V=502&킔BA* R9%.9hƅS42#1PNQ}Ĭ U$;óʡ)W҅ !HH.y\ȩ32؏D($Z49#RUOZX ^y=^W&\"J^{O U Y<%w;uƿ&[JzŇ/czi[]4S6CI1 iD6DQcOf5[>M^;?ZZR*36%z~ia-x$qe#f;/]s"wu.ifzH^^^fD4e+xۓ[Zkl>s ک_Khl) ~C"O,?yF\msVge!WY!RntuOše%^2(`n:"Fvn5X4ȍ! \)ղH^ݝ "6iWcdS @|99 Fg%3Kv]B  hxhWc^ow3j4;ڝ!ZVGݮAk{;oV'7BV$cyDĿV[YpfeQ ^9 hEUVwIebbuF+؇mѳ⻠|=g<g3os>b!?X|KY$ZGhw=ɬ \ςHɵeeSAzְo2|Ujf7P{̼ SqD *JUYb6Y[)\]˖X75MFe l6ͷ+Nv+QXC99A*}G&OwJƳ.|Sn7BgN+;7|R6dC/x[T> |>ެX3_d!^ };S|Z9jh>ޒyˠSo.b«52zwϨ߮.{sj@{rlO HvtCkD~׏՛WqWxH,߿Y_njチa'&dW- \XYTEjĊP\ӿvcF vAyȩ8j x?' ѣ%N[]Z7ڢlUkhe篶EV n"&0V-4/vT]cm5oMPå'$ځ!jt` .!#Ȍ@5O]ry@rHwm؁1"dx[9Ya{j7 U`:dѝQkdDQTɼ$o,ܥz~`H߲x"^u12pzV]vdOYܫ+z}LaO])L Uf?}tp=_JA>Ӝ RB H9H[i4j=Zw!y]Q~گP.59k6h^ BT8U`qD@'/OF p{`Ij,`W,vhۡpXE+jvNhV}y;v(Ɍ;Q:uWTa T|Щݴd^-}$7<@[#˦fHȬِHo}ÔVDWZm$KJ4Y;F mE $܅U3-TZMACh)0iFe@g&I;!T+<'b uuiMJS#đZ\ 'Cjax3'&v}G4~OHP@vv?w|{0kxh|t]S7^Փg#᦯\@gRPB9m;9bа6key #o&,!؇C- Eaˉe_^<^̍BՌ$@KնywZl( 5`fFƑF,H4ܖ7~?$̱Ⱥ~+;{܎dVCĠ.cu,†tEV*#@."N?~ \I]ۅRy;7ƛCA^6+~HM_lOtr@TLdU(Er]3d1}`cAN:/!7ȸ8._2 L] l%" xk`Bydȴ=Gxս`NHeϫe7FC7UQ4~,`=\@[C{;gPo|1- R! &uí9]$`7q?vLSa9biZڟpb ,+C5ەx+Aڜq; <L>,6 ;wݓ;ԡH6`9gxӔ$}@"Oì p~;t"f-@Gtm{sQB7vIB;iM܉J쾠Ҋ8쉐8]s߹DzanTq#=]$X1>=hd!1&4-(!Cf;mЕ  >lʭ {E¯Xlgw{#s5KUspX 'E^h=>fQ}5c9ǃƬ?50"XP,Rޔ=OvƢSFZuݱ43)X&o1Z)(#H'y@eelM< |9|RN 551+Z;!gÀ=ۺ9S&+v+H9@Y.썔=DΚ@yb2u[M\tXr+GwUa;bg+ EI;ٞD >#LZ P_ר_Z40l 1 q"!?~-]f֑YK5CNYH*Y]m@d1@+H5o7仂rsJ]wi~Sj0T );-1BiUUtqmr7"5(^uX7D>&w*/&y23٫,yǨ;%( _FՁoUYBPfu^3Xۢ+~ϭD2ix^*TOngLL$ݸ9eOU>ҽ,`7FXe eCO=oas_h[f}3/^5Hbuc))r{LT˺C YQ$pp(!a!ur󋗘&֍fSPl?AzN21eojǐzy]뽪yՓ9 zugE9қ/-ܼAzv}rpN˿ZxdLM9ޝ]c3h(f}bZDH!ӌb5W6k>7)[|:wH*[sYV5BFt{y͍9׃ єAlxhjjl#k6pdtu0_hy[#FY}|I-M u5g&  7Wžm@uҷ2e=*ܑ8g8HM3fA"\k{YMb7使V[D~ YY@T/ioVY5I$DU$UX˵ L⚗F)mVg*0c;S(f맢tuB–GdֽrNIm@W҈< ]\Zv+}6/ý艟]#NՓ\4M {6y?xU;F]z YlQ/<+ I>ܠ낳Ouj'~gߗiĽY'P[ e֏~-Ga{R@cy!11U*l RNph S<+̶ KW*G"5tqO> cTݦ!jgjCE޺trkWpudȀc IL=4@-1/L$R 9uesu\رd=z,VS^CIJvemF-r"8*jc:eXVF<`!Go_M*@%bqrҿ]yfǀrOlЙ|P/ߞTs%mj>h:ԑ~6ŬwCo(5Ww{6ԑkKZ]:ː0ދfT^zBh|DwBR2( BC{ |F @0M9"l"#TFMjcz B:!d"F #6B5Qf "^`iHY'5/Uw|PdM u_4{!N~NbγcMr"y=bу!I >ֱ]2^ku.Ά܇O鸁{p9RuߨBt#C5u1n$hhr*c`9kvԑz L MJM`n  l?ZY=Uz푹I9Bb!pxޓjCn)uva(T[<ˬg}{#3Ǵp5 DZ0 heE+, %d0(qVux(wj(b%*$#A48;*GD]PDlADTAcލfV0}rOٹV3&pB FM{lPk m%K]ie ;TM}?}L{FW̘/&Pn/<,IS;~^~qʼ9v0IS>]>UD"Xa|O#:M>V5wCLO?r\mޕAGȎUDE b(R_T$t+u"G]]}}d<=`qKne\R}3V0nBNm[CBHt2HKk`JJA,؅جL)4$džհMzd=뷓uYr2%5]ղ;,6q3=5.6ǽ^u<]I<T"9٠{ETۑ{MomB\@{t|vW 3T)kX ߧ$!,ˮ}2msTՙә3\O$Y]ʮp)\b5]ޗix/rXk#)2Mp#n8dJ|)Uv/A$m=w&]pn v$_O}@W y'wkNR'Յȶv.Jʥ<PjBuE am sÅr5a( r/ş r$rR`(6,r7{u3 @l7'BꜞaBZJ^}[( U۴[NAka^ 5PjrA>RKو٭Ő3b~Sʴ?P}SN,x||:#& l QJ"6O3Š&dڋ@1A~^]U3±4{E4꾶Qsۆ{zG^x8=]|a+\4(Ầ:ju 27$,#v|,oYݯ^&p!`ZT]O[m7'6G c\ssC) *i77@`r|}P,M=ubU!FCEC}G-hsqDt"XxN!ڈ\Ɇry;6>6bvϜsuN2jho~50]WWڡW ccsjd<~'cyE|>tJqR+@Vf>ת S,@, @<@x5" hC=y%҅HF<;S׼v|'jC+)}JLo 53dbSDg V^,ݺF#h{:Xҙ.qS7UL-3b^BU* [A1l=t !=~+L`F 0pd/xf$Qv /א ) ;\# @b/}f.bWl:` !G Hl0#lZٍ6I܁ev/f啄ړ17s1-j"Vey`ؾ&G >>҅}^tP>v`Ex1.s{8T ݏ9Ym}v56 }xІ]#xSyuTclj E==_rM 3Dq@W;+л:3V;z5zUg~ܐ3J7n~QnHS'VM D"+̾ nnU0+TQoMwuCxXcEjgoإHz K˘{S8*SSFI -Nrt~9nq<ĦAGbʯy2ۋTE'e#ֆ1˧ݎ\nn1 \3i (9ysq.>!B 0?L(|U5^uϥoLe˸%Z~u$WlWחdpedٜL@Tj||h8,]̐AY yNKF[Ebŗ_zZJ}lխ!Ě2rjԠi|zfC1{tUg#n.E`b{AáǂlW 9Oo '="hWR3ֽʫTYFU܌hhMmb0Q4ᜩ:7jdTRVT>b#V63QOp&!Wm-y[BCzFқ g!VlV&Q, OCBǬuN &۴(Nֹ1X3Yr]UaI71[HؐUC]l\+ ָ0#95&$ϮlAm@! ˸܈G .3_ HMtY["Iꗼq-}wmPiHɜYǖ #Ulu4 [iTj JR̿{QK}+vX8VΉC&*oa.fѧA=㶽F:<*̛IF K) Bsڹ(×.'~g8FQjꮵ #C}$bk@c'I8HM1K0^<[Z۽Ζ&ٲ9đ%FMiۙVYvGXD wG] ڰ4 !CZV6U }H|Pj!"\cɘ32Q\jkμ؅XB5}]|+4s]v.ezӉﮕ#pgȠA6Nۉ92z(ph,w,5JιR$zSc L7ZTws5YV_dA˿o ۇ [~H/V:<_4sX&rܑ}=GX2/.,~}kD-w?^4֌;fs1!8H"KLb:%!>Hq o/~m2 xv%VmiLph[+UNL!{'Rp}"_cgӱY&Lhp[wяO9c#RLlj^ 0ݭ2ӗZX5DbZܜb`Y;(VSD qY:H58r@͍{A4g02J Mxc4:5} ~Z UHU%"¯-@ܠ#p:uɧS!'FG]&^`sYvUN@&=CtϮS(܌@{/^weaMUu[X > Y&xeD᦭O4qQD ć"WM=Btci*YH"zc+yOaɓDHtؗ/,4&4#O_O:R ݪlP٨9N0,ā -1[QbI\=qG r+2뒧KJ ӻ#݉B Gkd^^݊tWUV/)y > b/+_L[(`b$Dᚕ/BxX,oHXVXٳuUHng$迮\9$"h4P*Y7}fޝ|Qa@Le˲.N%ͬ"'6/L&&p.nTz S*dXcz'9fiHp?X0]g ]+LpU&=tū,PΑ"#F?|r> NVhSi Y7%vIz*gNəZ t$MMzN?H8]vWZX/Gz-\\uW<3I@& cj$8WhdߔYf9~b7ǘt~g LI(ԭ?Rnu~8 2HuXBB6݀<L&^ o.Me`ɟc- VݔKTܣ`Wp6^h ܡh X)ߏֹz*z ƈiZoC\Xq* U*[uC[p9+]s urNFTfVIW Լ"3=S:dS(#v gJґVؗnn޸EgӃ^N*R>C`,y$ʫ5ȶ4mTƤ#r꺤,쑖"p,ٙܓ^bW u+6u inMo-:*dzuButl!UOuZM d2G4pG@jCzfXD]U \o*-S q"4#c \@G] /W;ngvHۮy|prVi"{g>r;zu8O_G)#61|TH BWb5ō5REHfMT`F"}@h  TLL6|ԍZraxv w=޽D$|3FIU*M7õ `DyC! El΄2.>|4әdEփ7jcpAB97k; Wq#ԟL&? T)Ύ16pa+UZuZ1c3'TCf1.Xwp ڊUGM*Z;=US ;@gTMf;fQeMη ̛QƐDL7ÇhlYaȂdTz]e[ێ5*+X.J9SC:¼og|O=~D U֪ˤɪx>378&JN[{{zE{74Hjb oTfyFUeHe9X&t[v .ꀠ`ѴbR /'/" ! #~hֱ ]st'a1cP2~fF(Yo gPS ͷu mF-Zxu g~//M,:-6p 6.DX @69^^O?< Nr*e +p7qe]ɐ7͹/k!1S|KS&P4M6>꒡BYXg${rvn>/PeH Ap ]8ϯxGdU*Nwn֍nR_ᨚ4bᗺ h&Np۷W>=*פ-uGvʩS롏SeULq2 i?\gU]zc)T{jCW)DYHj 㙵E6=\ظ̼)o@w˗y~cO_?]5}ugj.āv[rxXmݝR `~;6#/ # hakmjoJ2]0Z]n #yz{ʠ1Ug9p}O8\QP@#>PAlet?lv&ͧ Xv4s,4CڬW5;*ϧC;wgF "u/wssY]֢r+M1ywfubbjnāWs U>y H:e FZhj(1,- A J0 8a޾!֑TDD"3Nl$r@BWov Ctr!s3 nf4 I27ik|`Ȉ݀;x,P[eo]lBIG|fϫT짺nW!X8 6f*ޔ|C>cPZ V'bG0AK!Rñb<%d"˵ÎwI}\$!/o!ۨ31m^B͵Q"Jcc9 HktB* 8;g1zX:zmgC7&Р}J ^+ +eEEAE}jVJ# X(6hLʬ/4 `! XQy҄7X\.ao54:&sS(E5^r!$wA̿G MuMob8H}}@`ږ9ஊ\.-̀qK6w:8&.Cuu?x Wp]f}!4Y SDg6*O"]5U(3t T}e!{6nzt UJfӗG P,RhYQ'6AzC:Cp Mc1UrrGj`zRZr/G }bC#dt]S q/*M!áyHۍ6ΣÑJI$W*):= Ӆ\:8ׁNsR*;ϳ e.@pdU3[#GCO'Fӷu,+d5վnxB9gW(@Iӿo~s(C^/=n쨉8n2U;M[4]h}"-|+o#6Cr&̤xlF(Q kkZ̒*8D@fP1UeΧ*7sTvF,9mwS`3*ЬLҙ: \oI^ts\:ՉѬVLC[|]sPB~gF`;k M߯lcP𻢫FafHќ&RSDޫ!8yUnnY!^v (1v`D"H+C,BV ;iYeUi@;ەi v #"fum~Xۣ &;Y\LTXJJ7~CϱGCZX,yOnZ:1NucNu3 ۼ\E*Ct8u9 c(EQ!XYġOU]QDܥ(O/kKJ%QD!IЏ4ϣ{cM.|غQ}&. $EY鸋 Ҟ V XXS*F.n{TGq8tv(PzEڬ_=X6$#TAꡔJ4 hns_3`ޱOxrFF칍 O%);I-*igJrȮRt@Ƨ:h1uQb;^nxgYy8$ELoٜvUNEć3:Wg']4mI"#O櫵׷{p&D+h^V^Xjt451u@1ЈҢ FУewy6֑Wzm#;Y4]s",uTlT=Lwe곀b=; m 9:"L{=@Av z#+P XY4\ EV)s|/O·rtB@]̍& O%&>p= `zy?r?sw &] :L=hTWx =2,R,@طF{= 'Ɖ}bd\w<12iժ 'o_D<@ܺ`$@:1U{V fDwf2g &GytYѲ=<,)>EENcq|"T=֬*gt@1;Y^9$@xMpQ֗ͪk`x1uM ې{uiЅ3d`OGceҨ4 +_EѺX;a& h{OD{= 1B|{y[Bb*zhA;lTwF ЗW6oW38] ^Ŭ @lF͊rء̌F!$Qe-˸o]rtj5ls_t׳YCvUMhR8vGCf3ݟ.}WIu`q)A? Pm4j V]vլ1SBNDXLűB"j`QDsIߞ۾[ξ$\j2<;r)o]:5j 3}fv*;dh2K=< 6_:=R=Ღeu=ST$*VYYJ٦LfUTUNB\\'*1.FrJ UV++A- aEUQenWKV#Tˠfrk\W,JlygpW?Nv+A˽A9C]>gzEqChgܡo3kuN`ߟp_յ$ލw<5u+]zRV0$yu4 dg5Oo̫js+,\`XV9p":xÛ]59+IdNԆ+;j+4-Thعq4 Fd,Δ +uL*fJ5jf1.,|u"yfFw\ۈ!RLcو{>Ճo!T7s{>?=uN},%ϝ6nn;m0TC/f-!3M҈|3LfD>eT#U̡by䏏Rض(?N b.P}^~x:%v zK4 /{{(}Cت)!X2~ xh?&*5g ᚗlUR)lR_m kWdI,Q 'Vz\X!90}3y6)zv9e蘘qJ$}_ .Jђ$XCہ:-Q%v(VRkk,clR}VP'RtլN<cNTL]jjE41@j"?eZ#%k-ʼnZS݀88K "0ajҦH<=Smg d^p4=C!{'\ZC/&/+b -G\ p׏2s?1tWT9 JC&VXfW^5c;H"V^/}V>aZQUB$75<^[Y(k-n8?*lz@pЁ 9kNJgS`wldE;USM0L[.uu\,Pg"`U p1:-nH ȫ!4g=k` ׳}`-|P:F*km4s/g|J>e)FdT}vCZ΋"U9%f>"@"b>(A9/`" _,РpTD3 %H˓BLIC$Qr :cPHNT ۛ, iPqnE K6S`Z/*!8GMNZ8z8r䒠T* ,flTލf!K_b${֯65L,ؚUF3zF7׮+l2ox&bvom tNr&vԫ5Ĉ_CT+(蜘`PKs)|U z6*zx"Ѣ,yW!Ժ n=Tp|IPl W=Ō|(p/0nIp4v\d)qЪ}D4HZ5J=BgЇ2J6dKFATF)9=YfE\b$ 'PeM!X,Pt)Cb%6GuG;/wf ӆ!WMwHCB2]#MZCך(!H1y{FPaC"Q'Ґ{OuLJ\3,F_XCM#NENnZ#T^z@y'@a4;DHlme#|;DU^^Q ]!:NzW[#l!t>ֽT.W<=aF]ffT6C FeIb'hn뫑2;Nw :.a!_oנr(%j wrI?lzF ]Y4sURr>,,Jbl_i7$ 3?XA 1|ꭻ }b-\X8@kx3vҗzr],/sLN,fj֜UW˴0_HE荁F0fdzqwQ\)eN +@vʧh1l^g[Ԯc:[YTÝlD-"c&.;{ޑPo ߮[iF0j3N [F/K)ٚ!kKczQ- K Mi+*Eʖd}\168F; ~ ; yZ4 I`ϚNb4ʼn3z0Z,8"A7EسUvl6,`9ƘD%ެ.Зx);kh#\RԣxH2/]7.yhWyn_eɅZB!rx}CU0Y1ïY4dޫ@Mcxx!vhX?zU7#\[xuSE"]1f}]r-0tT%۾x`c6;2Pa}s>2ph"̥& X tY6EWk[]ɻdĜ^0ݢn4"o}tBULجG4v7fmfvBjOzzM94˰C~mm}7>ỦZ`֕_xMvc|}=!F`7.~Uz'$C3Gʴ1K>׆" .MQ MAgvT:>mi A8g Fʅed: ԰ϫ[6}Fa Á+@I[Ih~O&5}φߚ9B$A,wH8o!R3׿?CqRh '[8m9LFZeUzok垣_Hy[DsmP[f'{z0;#`\ d<|n5.g0D0ߗ'WO)t6W$O$G:{Ξ#l[w6N~W~?|׋)WlӺIZDϜ0$+clW$W,y)Xk;C)=sCKEy ?wPF^rŨ|F0qr25%aZ z 2thRqa Ad Yn=iL+2%| etԉ 8#(KTMPBzzjΗ߹#ΆXLp3B=7_B{:pB#-{ACCI c<5dm3$v䓽YLfjM-5 ;ox-X)#{1qZ%2M{ \Mƛdu5hܒxyhZ@6c?xĈlеVCvd4 !v!@00ݾiv+s(Nِ@S0" O`m(Y#gHd $+D@;MM#9Xg\䭾"D~!;52YDuu )p*, <3wu8hB3uuN{7֨64ԍ偺8aHk G|I'aN8(2Ay\ހnX(!nVBksW']+0)5Cյ$GEe-F4vg5Tg$53+3> {dWy-\9Y Fanb3x(.g۫bj\Z:T\Ͷ@J=:~FGzwz'E*P;JMvWO<., -u!Gd}Tt{VVksA:A&Lt]]N -@bQ\/Aoe`S^'bN3)6F04M3szՆD8L}251U̜Obf†JFn$^0k[f #-sr!1J.ba v5'fCA~Ʋ箴rx͊ނsQ-姫}?qrqm#ou&ӣ'O4M^m*ss'3V'M! 3g D@ m]|\ */w\9>SzBv4 p3۪Le٥t I[цgsz1wTLh}t/mjr"TpC5ڑf  ۚ!?pUxx탃6 @M/}kjߛe뫶xHC(BA\_y5vt pLWE+^k@ԣ.s  ˻31ŽQcG.vx_X^p@|:3;!K%m@%t>cjޖ1ד@uBZGjWyw RiNTԭo3wQ]d`drpg7O*PHUtscd{AS"K †rh,N\<1n"$KJ29Ne7Ҋt'0TZU墡H.[B:#s{ I hNk%mDP 晱{th_ (@Id3@ z-JElfJ>ȖAgw1: A'3P3JVhoc Q+d(dEAQ /)'e*4Le277qOR)E9s۷;"0Cu& Cl #nԙc) \#痬)Ѻ) 0W՛x|Kcs!'hi |]$4+:;UClg<͠h"҃H}-d !V͇ߞ]>>:-Kus aReU&{Ul> _ΎrKm>RD̻*yڔyԅGڕ?\8=/g=4^f7V]ޮ%ν '( @ܫ9'}@VߥOq\   ~yMI0|x7[a pm幛G]iWi^(a~!B aL.ihKugltZ~6rr\H3 I4Kq ae(UA^CD ,@D`WP 1lYEGTr2,QEχS l2]ѧ-QŶ(k i!TS5fipN*0N)2(.߹O Sct_ ˱?r琄վ ,]  O.`c>KoU uc+m =&f4dݿ#[/4_*gg îl"6dGVV-uW@fA7q>c,); }4sqL]/1//Mr+Wc=yF@6K[^ީkbdkC!D 8@:FVb4$즽a3_Ej -͘]u1Z,y#(bG=x=B`y׶1dj<ȕnS{vn=%^K#p= 'n46/ !Qs˜bR[,mA4vnvG>t6uD<%tѲ4fOOKxt4 !rN=2:5bP>")nρYUsWNZ(7gJ.$kM{&Npr0*sre o05+BކmMЕ [#'32t`6ˆTMV@>{ >H}Bێ.wЕ$ O}"!aEmՐ\@ɉZ&f 4N1"ʋYr:I(j}!oo|-|vPj ̾_OuϾ;xuMRnF6TgWl *7:J~kgyQjl}#i-Nf$U PDٮB|z/_~6/v>x\< r#*_^bw yT׿^<1 EYҲ3>D-c[d 'S@BE CvEx$J.f=[JV#k1 Jf׷*YǪЃr9Oٺ*'Lf4E - +~ :(9lĘdH 9wLv]RMX3yZw3xwfT ,Fv^-jnkC+=xӸmֆ<ӬM ;ɘᶡXl]U2"q'㌷])t=ˠk~V5 6kC%Cd. ,_z:Põ)֜|/=cJb]N鳑1]\@8pbR YFBo=6.XtP.x A3-TY TC1g7z@ 5sI35xfXHݳU0 332y!Qq pTTN("`hd}3yc؄^{w0MSZM@qNDB̛jUcv_Q6(EkÆhx:¬=.oNũtf焐40M֗u%cLr2H$Xŷ*_+=96>76@[rmeԎ::Nh#5Gx5Aښ$d9ڎ[>YuQFOY2\sPpz$ bVTLGdQbG\KdI3Wb6M c[XD V.LbHvN7ZE9*x"v̕a˷]eȿ@ovdM`,V:du6gKؾЁ#k{}7U_5Z<>ᇧ*kpCtJ#}{I4Y;xoיk4ѫ}~;5_w!hī9y!pB eB/5nݓ&s :#dώg4:tۖ-q [,*:E`bPr&I[G# y&z蹦o f‡rCrJ#M_[759̿+ʮo=ij~̶l G$ш SN{=֢x}6ZOP~T./9uXOC̠[Wos{*_\ՌlzOq9v; XlXmJr94)ɜҠޱyC8pȉH;]( SK0WG':NHcOtD>;|Jo=; vGpHf1mE ̡Rˁ*TcbEUd%c6Kpa? y& OM?STv}ym}6ոxb;kH/'`'"45Xڂma&Q5d2L֭*uWS1m+Vʭ3#ec~N;?}K,֤:[[®;ʴ483!@hik1ЪgͶ>ZjFJYPvw Ԅ1h3D#t0tUKJ13~ Hղ-Bc znX eU}.M%Z[ظY,n`22]*s9.%Pb =1m), Ffc˞0^ ҒZ2P\ɳsDoI89( Wvd] , VaRn  +jaAÈ]>]߫BI iGn|+n5hQsDl C.H:6h$@sTXmWהDwYHY^2Y̾9:rɯ??n0X)E0AaN>gbGQ鐠qԏrrQlV`W05o5G|S#$P_hp2ly..s{7k4<^IsGOU^jFbB^2b18 whJl4pi\w]ٚa/ &6 宎r8n*3sxQ\^vQYTQ ,J|DH 2cogE?`Ϟ,X/>b%;/l$lf&/P58=\'A#{YQU(1R(s05lch(2^Ι֕缶U WpnkPaC594To^B'.r33\cUxnbA:{.=5/+v}!mpJGRH. e-0SQ"8I}ܚ[ ͣ{R5J+ۿ{.^˴^O_=hBbkc$l)Kdef0o2ڍT9 >b+U<,Oͼ=|jj+1ٺV.CM~'C|FUdlҥ̺v=,cuQs"reDZ=8F,=wVt>ǬVyxN޽^Mq2"šo홨}Çvh^S]Ff>^n.ng,x7&oklanxA OA!8ӳ'Y̑ O#P̊CkT4˜Cu7ǨI&WX3 o#TJfRСuGZqt3U2jH3o#0|.Eyr0om:` 3A՚6;Y{Bh~F1q\\.)Ki"`mƶ2!B lte" jv{3UwY֊X>~2˓Ivr1kTzIuVGڴثY"j[WT4+aR_*.sⰰ ՗? }wN(e?z^JrcI#࿉5hg1u2 ylL-2X2YEqZ")dM&M눛ݯE 0BRsa>^$:p)(Gf-$ l5ŵ rwG;a$lTŨrLu+I81^Ǐ`mtߩ]w6f@.D@[JU˕e E*~Ets{\ܞo*pTlQNA@pT7eXL $EƎ'8_Qa^ܭrb@BT[6.8͞i>M"aBd@Km2;N.7S{KWG&r&[-1x:no {IB~mYY0g}ZQv= X4Y;C3\1l;L%6=A^:Xejܣ:h, {EwuxMƄ횼q yPg|&t<v`ft0i93Snv#7䠅Ds0距 ur#BΚޟ 'A|vLqNgkU26neƉ"t|q1){Xh #܉oK{iLXk3X*p0J5CnVEG8\]VZ-{yׄyc㈔Smn|EKf^UCP.lHYY[I H&ĥK:,.àv̓!Y$C`0;3u~ԧ`V)!Nx1xwsXCy:YYcsl48`cO7|&嘮ĸ1%۠fR4 [zט.\V>k~խ͙W>+ExwC,I Awc/v,f5FDŽ4h14;_izk0'QpG ܊ L{~^4602ҋ@k;dBE:R H`9/[a_+ux=Xܨ* @T;LQB&֫<($Nםm!ˉm ]:0m[O},pw{v<$}C1Uu@U5qJu?~?N#}l VPAY3 EJ eA( fZۡHQ~ф ěwA ]Ƌ]D<ed-l dFHCnfHq"gjT-LXD 1 ߂X7bw5 ^܃砛RC>:f̚9X<27؆Z *K].lga'g*ZW{z\_Dד+hDPndM3F)<,-LZ x?k>3j< ߮%+Oi{u)1'#>97: T*ivI-碔Y8Qݝ>,Q`z[l,I¨N)4#ѻN+(b1.2!v N/[>(W?3BV+ȀCOh9w"5BJDU 17tZX;3;9G f8r6JUɪcU =wTɠniMnN~bR&w!1}{xC 6dkkXg{yLzf`ǚi>;s wƉTJ<YNتִ# vpMM(fntN!GW,7X"k'g SYdʛZC=<)@}=[^Zm^''ssedJ,Lva}] Lvl?Fruur J /G uNg[`4>ygoAҢ;EE%^eXL(ВWk9 9~^5b~Λ6_T3]2p Y*|,uchzŒ`兔8ny&k ͡3E^SAfj5 s3efb5SOhyy9h6vw!BG4&:8ڬ2]A{ݖB4 ֬CX$nn) `zlcpm㬥;}ۢkhUD׆M⃳|4G3HݕAy`WZ8v` =~Q1eb4ځ$Y>`4,e^u 4qVˀ ނC61XvuZ@l[kKf卍ąum"H8{{!T=[zhd\1VfgH@L&mTҼ@[W߿ 7KT5ʐ35fjC:GbIJ1%R # )H%dRP0-@ڐL @dVڢ!P+6ɰVBdFDH- -HIYXIz@aaX ƪ1 FvA]p`mКYؔLz0I֮B{i"I 0"D Je6eOp*yR*SzhPƣ37yi&cVc%?~>; Jڡhذb(y; }O R $&*"4bD\ӣLE2)~]962mPә8TL,F"gMg2_A(KbW!1=%cyu^C/h`$b0Pģ !g}J(E2X#j=%0{{'cQd!a #D>?X(x#~Fs zKB+ gݴ%0ٸ؜ɏbC[Zȉ H`I.P}Zmd׃f Ҙ_`_^w$MiXCz:֮_" ڃ}j0ѳmÕ WRz>@uz+E -"k HH R y߷/\if}S}؞<#"0E-JoǴ'BPA<_:VT3cb dl1As6b65(*Ի2,2t. ?T_Uu}F>T o៑\2$_1vda pg{޽7ae)Y.܍=PY3|N(bQ8HhG9Yf gOI}Cߪ- h0 >"AW1T#+n3 *tOD!PJO*^ dz6溽S[ր fRA\@C|awgw,&Z}FnTQ,cBf[iG=@> A1.ZD:BIo$yؘq O"MzeAC $ 6I( x8fl @m6m oe1 a3fSR ~hBP>u4jBʷwDJ!P'+,4rf- CߏHK>g0p@ ([ /suPR`.)aM H_BLBI0g3>`bOv tQ-HSD5a,Xnk;t`5Fdc&gٮ.cI,2\`1(VMC VizVL aX(MDMŇgE3^R[X R0.TB]U!yoD!8ф8鈞Q`٦yagg*ʡb4HX8ӅU{7&HLը,PҌ5ge,z%Ob-T|PH0d<>8A;TXQtqc" "j?>eIV姰(% (|fx9JaJ^*8(-k uudTl $"wve1))8<;O-5K#`)`BP)wlX')`jx=PҌ}A6CYbʈ9MVY5ִ3T*@T>>MITĪ'5jHB 甜ClmPӦ<競TDk,;cGc%J-s!&&BTVB-̐(iI2(ڝ&2sEe^.!I`ul'cYT ݕE2lwnR(?UC= P&Ok)S&0}3#Y_fy }JPDIzTg!(:d)n ]߱dE^*1VC!VELV-'ޅDa ^߲lBn[S-VJai "$Bt$'BJ!e t` Xøjt46*n1<ٜl4--XflC 8'T$`J,d59ufIC5 RQϝ1Ht,T@CEB faf*ebf Wɩo%چ! dqL\؊W0# ĠaW&a$ENh:Y*ذNoLh oV5oe4R/LmU"X.O!MDIdT7+N]D! \r5`C JA0-#i7Nu `2B`9jP:TNv.0ꡫh9c 2lbz@Dl$"yh M,jD 4DHhؒ77(&+4F!UlOm kTt1P"&PfP f˽ABI6P VVS݆*7B42(br@&r0atp L{L.2(P* pbX%h]CHg7I%!Q9& ]I+ -[9@M r ,wZ ܊7mQ1 ow`E @5IvH1YRY{@F _8QD[6vg3$峮f&yaPf=odg9H3T.CC$sF+!FYT,QΈ֫cѧ`J1m@فE EƁEadMUj wUqɬV%DHLf1\ n 'Ex4]nݠ-#$icP%hzNrfoiIN !6,3*j`8]Xb 3`jHӡ G1 [-ipmSijl`6 ;7%UGrLrHCw4Coo*)3qȦ⠚ k@&6*#10`@ùP,kfgTE0RL}D܎#o hww zחg(@\uBe`Xq⛍C ॰ZB(է :U\j,y#P) $J`2֘, Zצ{pMv2[$EtPФ|k"-]4C&*b :. "bH1"CbˊR$+2f!qxK&AJI 3k!PC.)ф`֩w%<5[&kc,@ ԩ4òZL[!kQCN ;֎ZzaP&UMj;7ts%YmAL#Uh d pHdK2 F &%Fmp֬-̂T-29a^hH+/S A,P[n5']Fvxx^$Nˎ)YoAMEobEӷC"+DҒ*FS4Hj!3 !v;0xoPܹ1pB.{evDFAE8 KN[O2̝״bԮ)S@2P QIDiR0Y&W(f鎜]3f덳Nն%1Yu*ɎS6 听e4SIrJP) puM"2We1"Kl@ĉ8)gצ]0#HcOyڮS-wR&2i3l؎oF@%£ X1M7ɀK J܁:5:|n=jk,&%d{@/( !/*Z"Ȩk`IZl tGVTP E Z&h 4-z(ȪBJQ,J:egmjja."hor .]晽J:J t*!Pl6[Lu~,x> 0R \tSlC 9B);3z@5?G}vS-jR 0*Y:$l မ 2ꨲc2WlWB:ZtɳѱnyN2g(uՊ}ɗݘl({wM)8kv$Q93J㶒Dp,gONײ4eL e:5]3{;*KKj8&ef:ɔW@CC5``)eY\9ӶNݰtYb@VȨhBnЁDRDuF'9b]E epЄPI  ŧ"("- {HP)9h`i8Fi!V5XD|5ǷFY,7Kߛ޷J .Hh S;2j,6!B% P )/51Ǵ] G (aP,(Xf 5DrM&Lf(I`ıxjXд.i#ܡ*B;.fQSHp# }h>iE"6hI7T $/R[{xYc,JD i1MR4ukz wn{ u[wm˓1*ZÎQFzӻB!7nfL[,PT n` cHMCed35IYQ)_Dq}2OEXL}ćCst*en F dH/BMy7Cwyh>7a3[:@I!208M@468z`Nݚp8CPM@3Nv FTD g֞8bj2'|u F gren$ߜK'\' jjF!vSV+iT\CQ\,6ͤ-qĥ(/6(ƲVTI":6$Y_I15dPcQ`iE+%e|e5w2Qbjq'1mC& Mj"`C5.fS71'y\DLk(s6s|e!dE -OU'%TPQ¤ UH6 "E0xS,2 !Bs=1lŹ6H@0#tѨؒ ?D,QbY0J48(Nӱ#a=L8s m'(bma+``f%Q=4!q+> z{o-{xIS*ΓēI 2!!CsUcЄ%7CA~8بxڡND yRyIz>uDp3 X۵RM!>9li`s6X4gM2JmZȲ̐RwZ`SL  E2@)"CI&<,C)!0U IӛyHpp÷pI$0v .ݔɦasmr}/G^X{IPOעí$>Khzv˳INَjYȇtLd!204NJ!6sA@*ڱtT$JI5J0epIէ{qRw,SE =08(c7;Cl6LgT6 7I,_>OY ㊝2]h2eh,ݭLf^Pu6&3NkgMMtזQHKi)<@'VJgZ"M E !iTx K$ C\ Q'Rɦ 9o! \qόDC{l q$.AjBC)ӤCϔ+'9Ht(aOT,̳ :C!!9, Gi12AbOTߤ&jL}jƯIl5:aS,'H3wHtHCr̋Q0jt"]T.λHEB$%Vy9iaCI8tL1wYJFwa7i|v#1' dȈכ!,K k2xw,AJ)P45yeyc4ΒdiTBWY |6ïvt)&5f:BQlߊ6 a PL>켳= I6s6NVM9Bmig!6LB14budbS*hhpS ôϻN?gRwϫԔNMrg 8X!jBBFϕ3- :?*ȅr %&=ukd3l\fؐ1YgB<^bЂ.6{mq(:36~ x6[LT#{ ZzCsSa_+p .}3%X c %a[eL7iXS>и V0~TL˔z_b0<0T?Z?cD Pz%.> `Dc׭M.؟)\_/W,{d]Mg,zj*@ Jd f϶4=h;HCv6>3#|(^0t,Nߗ3#10qn^#fmsI$-L,|uV%EyLd XMm,҅{Dsk@[mC_&9&d= v:;صX ֋^+ima$3@I=K2 }9ZҤⰈ4Ra0OL$@0 gn\,CĴn5[⯇Jpc3  N_R+:@_F6q^?t]b ʭhD Q4yX`QͿlf|9@!?X{Dgއm H-9WVO6@ @-fYce.ϾxKS2 xٱhX1h8^8E+ L?0~ FbdxBtSRg),|O<5R`R9^C P?şʫI{/w`HrS I'TsI],%Ǿg9B)c`Mermik i/H!)8mQfT(.0d`FNSxK|Ldْ _};]t/WV)T GЧ$y ĝ6u,cmN AUWzh;BǗQtc$h): *(y 4k*Zpڨ* +Թ8XEp"gpgl3S@&nվa涏Ha[R] ޴b(Zk#ˤ_\H\؛XCV6::kb} \"ANYﭫU澧I A70U2oe՚ dvGטâ0lN/G4RݻN8]VOKפG@iPU$KOjC(M*E9h%|̯l(^x710Y8_~yb:Cm tݔM7lL2crrU/un ;;HJ$0By= mZJ@F>9#߲.W\>cman5=Ɋ7B-/v4YqX[=b6E>[wޔvٯ|r +kMXn$HHŰĢv(dpgY6Ղ'"Nyز D,X&"TBe2HUA\)7.-!z_7گ0%$Mi1$ ?nm//[np ؑKPWs (t-:~uf(tƍ1QySM*fkz]g\T3ՌA>#ΪVR *AB$P=Ԃ z놏FOep]}<(OW9. jå /hEW ՀjQ.7V*:ԐtW])3sI4CYv|~rH/ `GnӤm@$h3'<({"4g0Hhaт#k(MaX1o$ǐGgoV\ŻAfD  5UA"iu,!`pʅ:AMG$y`o ՞XIƴ;tʠSotZоC8HP@B!rثL )gYv+;̒ 30=0n;_Z"0 <>Sq ^\3ŴW` NaxsH x͛1!F~75=q]WcP"E i_ౡ:iEe'DY=IaUDAut+/! H^"5Λ @>]/Sa)'B}Xt/$m.Pٞ+>ybχ豪ʗj Vtmz/ޭ賍(Յf?YK  lC1Fnb_Zá!LD.5ZNMX]އ\ɉqx#_mDg E0!f>Hv 6BL\L7LeZxiǽAR?~3XMՆ>@ :h{ ^e2wƋױr@ryu8jm (k9`=_u z=zy=m kX}g56˛h&?ڈ0Y5=`140YڦZ4kER [1(`Z0D[޲aeJWrΛʣ:QŜrF5YI㉥rܥňFAQU+ժC$*F/ީI)̅GuOzmlĶEQ)JzR TXáXMܹh8BpCЈBrZ1N튢[`b(F(iJQf5( ks#qЩRE_)Tj8A*22ň*cVڣТ"f\%孶*0cn ֨i/,i̅U|h08{tS٪nTj\eb7)Ө.K, q~p_blBt(>˻.PZjј`g\wJe\qYQ //T|_zִ'c“85H Q_[wYV E$HI( :ebQ>92*ula0 +b+UQPPT$ Bm^+ -W+bǖUb_ j*]2v5g5ZjUjTbPEb"z2 bТTBDFu`. K(P}nوv%TQeJ f5gqD~G)_WkSndrC,b.z+(L0Y턱:GEղ"[gťDoySWƨ7OձmQV? JJ/M1_=aQTQWJ?5B~51*\ަ ~S mYGmrO}o¸c^ִ`#uQX~,+E_R{k61іLEP֔ M#ff`"T$4GƊ4wIDC@^DQ>֬}P3D~R!_źKY_FWa-Yx"MHu:}GǟZ6L3Srhm2:ѥDH4<5OTry>ܛ!Dԡ>˽2QT{SX]V[;WxXcEcTLKmUJ(e "Gv2ĶЌxEZ ]"%I6%=SR5DzyAecVjAYZ V q(uZBւ5j"[mQ2iX}f6JELaJ+5hj.R`DgOcTXLJE1UT}f p2:uV\%``a4,b U#@F,Ad_Y EAx >.]+yk}w']Wh:u=IAuDc*iЩ_څ,0%ߚ2.n"Kc~ܡ{ԠҔ5 J0Q_-XriW#TS4h U"F)$E[k4 lᛓK1xQ;jP@U.Z,_QOn ;rq*|BվYDsLX|F32SMK {P%'\"}zʨׅ{m؏-1T?|uzK[^(oQkCA $%R;9 'y9ڽ*񩄷Fysy'9&46bP۷m ࠪ !U t4tp?y:P5rxmDwЦr2eIiM7{#TDE,-UV$!`iDDKn[-qWUDQR ž j(ĬE? Tա!]!є* 1k!g( 2رNRWTD,DEF({CI H0 d v? .dv|(_bYUq;Yu5T{aک7CLلŞg"AD xx{o)-/\.'=XiCE d m U( ]a^Q"|:LQ2hLשlۺY}8ehw+I`qMwRu!)X4e'Z50^2R?^\>m1e,XVGUs& [hTS.8T׍"dfEȠ$kZ![,imHu EX2bbe,XjV8PXZ֑f*EUT[Vrp…*rS Zq&^r4IL)Q""Z4ar D`1DHE&PRSVB@P159%?aʰSOJ&b0;d1QfFC30lAfJM>S4FKi\)tRӕY) VED AHq"9 Z.Jb҉bADI#c% ;6덆.-BcV?,Xi뼘i\0QPX(U?)j{L,PQZTO)D J/zcN4ex*(P`dno.ρGtҞyI! !"lFhD]e0EPq6T V+BD*QcgZ*Zr ]t}טazdCacJ"ԬAear%]ˍ>bF1cťݮSo녉ҪDFU` chp_K^ b?;b2UWBWiDq%T{ᡈSEP1b]/.2YhD9lEDcO_ T?KFZ1g啙j Ы30.ݯĖ8@BڴSV rTcUbT`Yq/Ua.=~ ̵ *&d3l=Ymrk:V(ҨKYHk%;M(Z+ތ6ʟUi?4ڧz/~ّO[悇~5e_ރ'vX)"Q=\!DQj=F74\U NN*Ư3ꬮJ{MgHzmF!F[_kߐö}V,yi5.\V3yeN\KYB@TCnuYaL=.j]sFg wəd6ϹgۗvoCJ{žˌُ١>2bӷ 98Ol6"T")A:´c YcES_H_*b6{_ήj֥#ێ]2sxXQ φ 1$ռLpA{ KMZ>üJY0 E>krQ-aa4P>zTL)Tª#Vhe'Q-q-05Xn+:E* ʪ.Pz߭}8 (yx QW# -a ) HF `Q#" "",HdUPV$$D$g)Sv#=&@N,@RSjM* ,AQ} ,V #"(QTR,RF"BP!$N2E eJv#}[FYm`]:eQO-l}f#XQPX4b jTzl-{JQy<_} DNF^HEmʪv!33 59' f sF!M3 ܔFrܧn :StX+4qdZR(g 1AOGP5TTZ8+ ,}6#QTQ7kaT:Xny}ZVE=&c *U)od9ō? AU%/.\lrR#F*ҖDM0T0gz>p)__3ژUB>DjJL 0Y>^'QofhmgvJn|;'S35_;$ýQ+Y-eGWH1RLaBXD"LPR;*TRk 3^G%=3廥RcAH.XUdj 1b[!aY} %"C,aH`dJFx/S>g7 jOAgLDp"i>CC8O|҉@*_=-Ŷ&$fdeLoTҲ"^^h RS=?^ϖ# )i (w \eH@Ahj0=J㟁XZ_um0n Nk _lM һ5Z*?Rn67W&AO2VM5Du!ӧ//i%$HJ'࡚t+Ƽj%r bi?QPdՉJgܴ_' 'yM:31JL0pow]ါAF (hC -J،V8XwnRQY"E146j*F #DPanəv^fB }%CCU:gV}Xkr,Jeh;ûCy+?4^+'gy\DQ0{1X^t4 LdA1Q{J!URSGF* -{? bj啴HFެLtYֵPk80m+F"1Ɗ4m2fl3eN 7~44i[zEDbJŋ(.L۽h3*|*҂PFDr^5V/7kZGT&<-P>HX6mQ)W™٨"Z@t0ކ }C]Tŋatyx܍h" ڰe=@G̔ ^r:1#Lp[!hc;!9^ Mb@M0jp6I'fѰDzo~^0\42I9uK[GSguc7]Q2,a,A YI@1 !$MI1$4b",1 *+U$#"* 0dAUV `A0ĄB@X("$dc"DH#ˮh`ŭ |w$<.x>.V$$&Fg#2" %#ׯz}R9-}t8R,5AD@')ތ3ϞoZO4Xb`@QA!d [~H .'%Q{~Dء?P5'&7_ B|I DdHUV AdȤ#DAF 1 UF2FA#Ȍ `"Y$Adb,21@"E2H@F1UT,E0Q+ UbAG׎t8=&&sҊ4M4> BE7;NEX"2 `#"1`aIԠ6F/e4P!I$} ߖ")&PX#e(?蘨GaeQv~mݽ'UTF {6ϟ[3hmUbJ2nS-(Q6hƌA4MQ)zeSd!݄fDEvܧ!@i1bb/VY! =Z\jDE^c7̦efk.)F(|J ݭ}'[Nk[4gT5iqzl}+(HP[M8`1FDAe1YE^7O^L& rnLGh5kˣfnjAf O㩈v"N$h] DRvx*(fVWi,zӶ=nkx6*:A2[)v*u<ֻn:7s(X,mCoƮ@n_ #BzCo*mFJăaSMufjIһz(=_ͅfm\- 5ڿTb-cm.,ϒArg` UXdթ`Qx9M|sڂ%n-PDC%sXYc2=[ .uN9c%:X`~g)AA!P R,c*wi`LsYm_;΁'C}O(6nFE>tv]~/"BL$ BcYZu UdVhX);8{-.S}X^SSmPÉ.wB5<"vTgm22εpU`̇Yrb ώk1SWGxm&`s{eLYВ*Rr؈łEhZL_jV =;Naޔ,M? (xOA}K`'т]hT ;Tgϴ|(ۡ0Ahg\aj[T~B>' #ROTޏ"+ ɂQ-o>%|t"f>9f@uA~S؛9>@ө}IY"Y`26 U DBD0ԑlUW'/QyKN8tFd ([p{:ygPYO0Rtnb5X/MN3Rr9lX|.?Ol ߢʬEhS70*.[K{e~ZE =RD5MP4> Fͤ'U aDK z:anPM:2<ݩYr(e3*K+'>t&*}Lh+%jIZZv4J$h,E(}7X""JڒVEHk0Q"/p(jjŢ@$,`0 `"v~p?1g_}f:i&ӷIVәKjeΒ+qv|ɹ}%`qrz=ZBAR( a=>_MTZ DO~fhy;d;dSuig_)oCK\*×}惷AM:@޷qYe+>@~Ah j 4hqS6I, $QLu|w+5z"|Mh<49V|4zVx43N]2?\b4c_*4U6[:uWZL#hԺF8B H'2[̨In ]^̵t{F!^3: `T JYS|\<óg4$DE>S)ۑAsM5l.2"[` =`)S&4Sl0XP}{1ls)4΍bTޚ7h|`!1a*&җ:^9a}LDIPMuQ}a5WϚ=[hXSÄQ~Ab~{fR^6.:C-۟cF ,UEE9eb(kYDfӉ]ҎUD]:c WxQOlx&+\. ,zzTM0QYB_1TYE)_YcDHyj Zq7MYrʫ.DL|P~>~^N+a1nqf4h'bw3jU}jͫJ)/^S܇5U.ya}KTzޯ8y`QAELEY;Ab=&ЏMae,K\X>SC=妊ܘ5YT6*N[UY!u儜V³"t {MOL=V ufdI&o(j:gaغ2bm)zaCՋuLo(4&K7fټ^CyHr$*im'EvµL9o1Gַ];l$퇽tg]՛or@ݪdnErQlu;lynI1׭'"y143^f09ې] nf+ļibMǮ·;dæC(tc{r&):8Hr0%iUnS`-w^O!k6[6 MրHG AY1@!A^ hW4hӧW[wPܳ7J@ PH)q$ kp`LIm$`IbI2mC*{[ Xq=bN%t3Եe|bTS۬xfz<naqMfs̸sފ(M˘H_)n' 3ZMwrڣti dOWP@6i>OӁI$M6+ j>rΐz7f웻2xS3 ͶU@%C5IP.V%嗔p@&0<@=2Ɍ=hdzVMATX(Rwy%^ l qWNx4o}X@ @BQ yr/) ydIJ,X{I*{\l:k`<;h TxDʸԩrsvM[Lѭd\*{6x`j#օaڐuHq\ZK#](yW z>pЇnLw'eY|t3zu‹7+6 B8bmXe&~pV  !sjwi'uoη'YXq֨^IYϚBͤ& f)$זzfp /1.=Ta*VKi>=e NR08M pv[t:MĮ0$4״=$6|j!Ty'hm;a!M;q O]6GUtKЗNϏߏ=V+lpE3Wԃ؋*1+UL"}CLuǜV("Y<S|ZHd*t2xYhjsۯyyu |3c\ݑJ&-iT1h"' 7Մ<V0LpYHZF!TcrVH !uבLfW}yKs uj˿g dP7IvX@zt6n Dm /A@țGt-nD:Ǒ:Ig)nZڟ_ }dvw"|GTTinޢ~`BRߍ HFt70TCLAZiF~ej@)\࿅0,_tv18Hė0 : >de6n) Z‘Kf* tjAQD1*݀J ~'j!'^`(o(HM^N~P@[?^_٧|[$EmPL |2,*hHs*VߜUɛIڰdڕSK%"CK<\x"AЏHDR swD? Ҽ7=p̍.X+lN8]€\UmZxHq%&b9iP΃E 4Bcn$'^>)Uu5%hګm5M!Ibu$B೚nψa Al:Hyhzn SΔdv/ߞaP= hm>7L]Cnf"CEz|Ae#ҲNLA LK؆9w #0)=Aw~vuqEX)Ǻ8tZaҍa>P>: "u^1:dڇ2'.Z`kf1m":Y&KXz9VDv|whKv„{p;_.\Hsj2?YKBY!7ǩϯ|vѿb1˄ؑӦ7ể+D{bA^azņ6[f/z@_h0eK$W_fq9yV0 A3P+_ ?g5Jbqev(wIÏLm5ګ}Ət戍M-?^er]5hb X?xF xL(?#rH]UG<خpfw ?|!)@!g:*#ɧ])Pf jڌ8ޕ:aͽi <`,?a63q6H*/-ۈ;[Z`xoD֞4+M  F-~e";&{K .AxN+9 @R:K = />v\;ê!"$5MC4hN]gC0O^g$PB8v=XQ&gc6f`ĉhA1Jق=&StKǐ `̭jTȌNpz;AеxaD=n I$;_;ݹ@+LxL4%{^>Ct^3|'=w ĄaffFEH? _6̨}$V3Y;ލV 摸FUu"?ߪ4-EM1Y>(FﴥfZfnCXG*p!vN~1=Bj"W<4OX>GP/+6%Ǔh<&C׌_"sr~_s@"Ģ [Q3"Ք!q1Vؠ tU];6hv嚡/Y:{[ zM rv;uJxu6hῃ&C`E+1Otƅ>`bF=@L7!γE5V)JkH's[cҪVӎ4sn$~ћtEJr,bd(KQRZk,`"b|B *Q .1~lL8 )@"+L@Cnt:7@r g\6pA PT^ Ͷёr&|=4$g(>S*mo*/Z jTU-xTe GK@[l'7]k<#0yhГ- { {")DŽmEN ]YRԆ3޹4PFu_/@kRV_Y3'xU!0 o68:kcޅR#+цrμVA\z}xh$Vm J%-xb9ФR=~*) v-ڌ'W&"\֖&d. e}n!#+>+ܷ֨eB0 t-i {- fI[8+uyoY@ qPȷH  QNg%Ve@ok|Jt]B2YHkdGr%k8CU;8pٶ'6sj7X2Hg$D97 jtp.CN) Mݽ=@R,]_k2u򈐍80shRpC8jn9cT^˲0ڮ2=Wnk=mbe91e=l1cxܰn w` "0 5pt}{{{>z.W K0)*L&M`0d.YYr_԰yI4+2,,#2k`m(#Q1)J=PTg^anBڕbU]YZE"EMe.?b$UAhs.WN#2";e}PGދ%mF0Q;n>>[[i4V}[ȥ 0*ָXXt QgW3y )݋EAHŋAOm)ѶFSQ׿[7{%ʔ?TĵUPoG_S)a^ *@$Y\ÊèFqb}ھO~߆VP,vXn)4n``≓u">4ѮGԹ-Dxru'ZHPab ӟ,&EN3bbPЩ; ,n@!ZW92S1-dҫ# )adrb ~/jy PXmP}O-G@=L$XGJڔh@?4QSE1qEΙڊ0N Ċ"JX `RڥVSO݆iщ20B0aUl֏c M@m0`6W6 &4%&Bc6Jf!X#)~Oh qrۗnx3G\>Z[C?QRگ~Xg2Ly[ hUJU2 DkDk_nE)cHl4BJ7ц"4&E(([;O疣DE}RLZ~ȪԪ~YbQR6FVB@kJA=_){qrY~[ypzO&ؖ#_Н5`*-"EE=W/hE0Y ڑV1E!=! _$uCWHHp$ $]#Q~"v%X(+#h򕌋"X)9Zvopba%~c]WN*v`dDjt""o:/ P]UNfT9OIݨ:%pE(Mc*"oƾ3N@@>ؓB4ag)]A=TgkU4rfZNKFr۫jvv°/h{OV9C`|Cy v#v(wL&>h/G;bd2\Ct9'N )xiG@C]3T mͯ#lHc V%ORf+6iE?%KZ"BPh_w@m|m(R#ǏT ^pfDB$3צ3_{:s7)7G|*f~6I+-Zٌ/j8v~ JD0TᨖXD4jtբji/03Yu}&zRۑѵwaZӆ\\A|.n%>1/"hA22 IAE`+Z&Yrʢ` TXh"DS)ңR"',;U)OVQEDQ)υ5ei*c >fXAF(^V[AFۏ T]_n1ڧb>e+:fe>~vE0g򔺦 ]҉JWBee7o2/i,R#uo^n?[7gNdgnw(~)Xb!@azLKD&G^py-^!tZE0aTŠk (2-βiR'w<:f=zt(*(*{e" $Q#r !(LʭMgCl*rOn^B^v5{jڲ8k|1'qxY{Ma;>ϨV *bH(y4Gdjli d6 S\τ _ K,kHԔZqU iB$=`AjD˦,D"΅k|NsY<8@Je/bpfysˬ٢4;8Jf4 ;OذB,י^c,k0E: )/L("=dP_>z5q E(5%TRQb0Uzrׇ ,["/t5 Ľ*ߖv⨂>7h0x{帉?M! jql[h}-DPE-vUxYT" UHPTabZhFxE,Ok+(;pLX"gvOD!TXKk#F"" fyX29%wgz,s 'UnL+2~5bU5Ѯfb/J[ g[zj' *(X[G\b|ݹ㦶Ы 3RQ |?qzKZPi\ss-Nħ5xZB X*"E[+B?~7ҽ{zbw/W>_,Dh@4Z#MaѠ ydON 4sL`_ɠP:ƻY&[Czq;y fw˕D}va6IHڱQAd6쒠mKZ*O՞>SHO]XșOe:z AřT vS~ujniM JYj,*1Qb0PejQ-+F!Pl,B%dKzR4PI)Ddق(9AP Z2#B4g}l:$֤AO68ý@F1D0Uf)q5h4cKѳAV6-TTY4:[FQJ?I FK94ͳg+k0ddD7Ri}{@2nҢAn媆7tt4!@׿ӊ}ۺlFoNz)KW3='L]XyhNz˅ʥioVdt1 2M3lY dQN8 _VUN#Fn ~<& co*%؍+BCKi҉ُ0E<ß4xyzҭZn:?7M0*ժ.Pb>h|n* yJ"FAH|,( "SiywpD9j m::? ,*& hcdk}Z5g|bYv$N0<뢓k"kR#| }sV'YӺ^{݈`R:gëg2es׬0U`|(šcX}ҨPR1m6) sYSSSƗi8wN{§,7Ub #wk$`# $Nh`1 0 f+A!:T 7Ar4PJ.yC{LR $I$dV?}-+`,`VICvd{ FAQ` T,-l4{ ,̓;_]0W!d9˚!IV*"F Bt2S $m!7-QT)VMQ_c0E 5AZb6ȤĐ:Oz` >0HÚ@ɩ `ǵ):KdO==゚||x1j\z SLS⥁*M] Fԏ=??,h#euFBhQ=4 ~/K) IdJ#B.D7|Dvgf)jPdcY3 CAc;&8ʊ/UaF1 wܦZQ%9Ql:klՖ0.4k$pk %y!!v c(m zzt7eCC("q pJ<)2̰PF *Ooĝ!ړxQ^rߵL?\atU Z?nZ')CZ% HtDZTKj DSR_[]vk]`yhKFgs_b,Zn)P(N\^ߩ=fgnt>.mJ"̺tퟱݛa5 jEGZdXHµTFD[?ISnsJm2J넾jԒb]z Nj,|Kzݍm{hQ7a3q`Lԯt ãDʅR1`zCǢ9D2{$#8qs}= E(Yaы,*"(!oZюe:C(1Tݰoģ6 _L tmX(Z{Xgy9)kP*ǒMQ>c3>~idQ~gaHy77斿NjՉ,Vd/3(4W7fkОΑXWQDF5qTx{0[2_FM}Y;9{"3MaTTիε\/įM\uC3Q4ZI^rN0bK(-m)TfJO>4!݋j ~ѻN^UO6J;34^ ^C53Nw^^SR;B"ebȪ!hJFF&Gv!T,AF& E@(D5J(Nh 2"OtLIEYH2`3Q"@-DJ”_e4J)iJz'r/q8\#A:[UCĐEg.%@قbhVur]L淁RFbea.6{i*EY8VYH.hܴWLlO ' g/%.rI䀠'8De)}QUZ+Xm[,0#""vO0-,hGۙ(rߦzMAX8Ke(`K1CyezuB xXPzOYI"Vu %V@E%\s ǪQV)nVcmM++0tZ0EWWz"[~!%<=hztGvB\),N0EHI/4ԟ|)0;ݯ|ϧ Xz;]h4:3gAQ*5d_7~R׺XQ`)62?k".2؝K9mLDHг1Nzgw98щIHNpy̽Xd!"P{oU 43ȃcAEF1#X:gtT"B`Ԡ(T --mlXITrcfHZ0 N}iC h ~,> ( BC qT񩛰 ~ڠ,Dvw?Vȉ$A5 B'VAzm!4E9Bk a(LP Sg 4$>oXՎ)df2e -§%Ai{J0\_`<XU uM9kY~^̆St𲊰E_ߙ!PH?ՓAwa2ǟܠj 5gFT1@ ۶O~sJ ܖxe)OlCO8[Nb]`tL=LI^hѪ4f^Kŭc>"2QX!؀s?ʥ߇I9]& Ș$#rdкl8Sn>\VHhYįBqj!1gl usRc!q〮'N91aHl03)39d`4g2);c,xt&Mk2L.٧M{/͋#o)BVAtq|'dWc1bnC$ bm%aLH."`) $"d)f$nC$XzC}֍"tL,`"/Q1 ]XhaidЅ`V.3G,0A颈IP$VuLShf`RI usX!]j{Ntj~oЙ C2*{KԺ4۶io)JnT1jϲއ M O(K`s(1nM#SL7u6.c4TmJ2M08 "c; 8ɤ&CLLkVe!U3a498aq:c+A -xZl Ք,  p6zbƒ)OY#+뼰Ećz:zEݧ~= Sl!6G%1Pw@z}*Aȕ ԍq%Υ{4ůN˕kFe H`1) zquރƐ@f` =B+ B]M%3|㊺@V5@Мfi1OmAe¹Pe^eeQwkxО1Bݯ[)۠:vaÆF#j5޴<ܰ-3vћm-]qzQ.tꄐXfP-fnkuu FF9-Pe(YCn^JXOVT $Bf,; ˗P*5g @$PٶEL 1Ufc+PudR7́v"§54ӬK[gL5h3s%^#y&2  AI)RacgJzNrv”\=z9ijz46٦(MFHjЙ1v0*)*M=xe4mXgz.0 k83c :θ;(d *BBYxШof׼@]SN@M45nߗdK [ 3: 8Cα2q{uXs5"b`=Z&(3UEj 'Y`\E'lM0*_€AHB $9* Be$PL! raswd)w$ll6aXHChzESo,8a&XJGR@#{5CD,q$4x7T$ouM'LId &\ )Oi1 u6$,!(HTή'Md2WL*C tB٨afL8atP;C:,"B@&t::gV&IU;V"%T$bY 2'4K٢HY]74=x6Snn0:dXvLxCha$K1 &'Hp~RMBNݥنL'H lI#&(((VCL\:fh)1RDM$ !$VY ٦P:d46e' u]NC =T8zoHid b pm i\a.JM 9KgP i& vJB݄ Ha!ɛl8fr2IxL Ҥ,wifUNU\f1Jx`K;`t\]u!%櫤2!vLRIsBa-C YRM&rv,J`I;H]v! .*Ci Ht!ӯm6d ^=1Oi d<4E#!P^Y&Xx2c;@u$C RRWM"mMY R2k޴ss 9`i4)&umPҞ+m;O T>OkT1,> &;8@4㚁@X 9Rc>2o/W疩Bs>yֵq'~T&m5JPsNtaø I]Ri' &1P(|H|ET9#i(˪wo㚽Q}ob'N|H^(h \&C] . ndH5 N8"4wѡj@iy݀H+>"ůwb}XLxv>QT3H\pYH|;+>ˬÏ`zfM/EV ;t2' XCޫڅ3|<5PPq:I(n1ӍCAyW~aJBhmC>(͡lsDah*?E(#)^Y @AxGh] 13 `uv=ۗNS/ީbʻA:029gg;VELZSj(?f%?vFzKȺqV'S Jaķx'Y$ 0߻$rKSkǥUЦA]%s@jД O, 8ʃu*.n!r⭗L *^TF#C2vƳ'`è6IK+IE hGRPhE8ԩ 3Gۍ^<,V4Ax+6X ]g^iS:~r:?KھW@Xi6sj^8`@]LO]bjifzm+f`Ք!rt}8վJ eQ* HW +mEsB 3tT^ve:;)XrSE#nUu]d0,Mt5V^W JX7:LQ҅uDn4T5LQP3C٭!/`wV[.}AYt 40>nHBɜe{ѓiJڰ=d^2!4d momQ"."%CPPB$\8R\ Q;mܠxAJ`Hd} |}6,B^@އ@ Dn Q*P%mzxnKB72ggdc@A^ Mmkt.2~;b1i mYY4$N>!40(MԈူk]XԉQj_PVҀC~1N~}S~aJ%)s RY]c = 1^ @AB8$H613W2m0@\/?8T+)~zM=.bHG4x\JU_+>XlJ =@XŁ'MBZS_ye7nMs,4 2M[ dRP="%׆`Ux3BgҪE \wpH靌iGOxƊ *ӪJ\SaVQ=W~3cU[5gM(yF-$u{OG8GHtk#CX׎uYZ 7\_ ڲ>Zڱ9t 5f S~cK/PtY_)>ohA :56fk&P1MWyZ&#Il_!Q$b|Qʆ*e;xr,CRdhh5.[No1#U0~-_ʚ+4\yɺ |F EuI;#Qn~=yѽ$% I8WfpPz2kchu6=Lr-β1N}omۼu0_ sΒDQ;5 9$Fr(ʮvNE2ȏ;qBFBh ڬ8@;>Bk@9 NRJ]}&}98̄ok~nGH)X:g),?KO\m7Df%j-NYtxpDb_1kg"Z3u L5@oϙI4{5n4*jt{=W= r0zV:S9[ۿ`ډPpBE9ZՍ1ϼϵ f:cX\)N(sE~@p XRi¾yG{¼L}{T5zEP6nN,QP%xvz5,۽Cb~Oy~Bϧǔ ƚWsPuI܋ҐyfzuOPD$$jt%EUK`S22SS[/}qnm?7MxiՃSBm\G#mLϰtD].aA1zݙ_ KL5B8p%YLŶaڣkZ5g,h6zVm_r0X>"]F9t)`VQ *H|ѣb)<%|3yo ҉I@Vp湺t*oP/Fy-ACǁikn*푕8I(W:Ky[n D 0nJ-s*~R: >N4Ι79`ea7ڢ I}o>+9מx~3`ZZGۉy^PВV|e6C vT]2>3C3aU+b@'lTC(2?u5mcdqhN,$ R65:Σ@K8zڝg11-n}*f4D|DaLI)I97 _WIp՝%VX#y"r6wo:LkYKfe fKQ;矮8Ccui҃B ]LlPG KJ&ZZX|2] dr.Z* 6yEzOH[*m6f0c,Ȭ$٧R%21vʃwwYEZATٟWi0^%#* AmR"YٯJw15J (-y̓B6C YI41,%÷d3vBG-D=zC%Fqu_z `*ݍKzl IY]]J]u"(cUol]C\i}Nj|E E5t 2UXkRQBG (\3?o52XOl{Zz/_ې2 A>qZR8l(E~6r:BfXbOw2wیbg3R~h W;gxgٙqJQ_Q+iXltm}_jVvF"tD((EIQV)Zhz ) kb:oƻ4u?wyQPE=ޓ&81_NDp_\__hX*U5nWV>n,F*֪-] \Z[DmOİ^՛=PAyByժ6x[%.6SK4jSo01(ުԧMSP/YwiQs"cO>'9)ʇwD,YvL/d/1 Lr}#">#[x&b綥P, ,@2MF F-U <$F@UМhhl {bG1"OӸp}ԟ)#_ى.;!!(Dn a#*ej* S]gLfؙ38|?FF A`EBdbEcA':!3-ߕfB y`y;-Ap*Q5Ff#;rPp$wb]1\fM@̂I$0H` i&` d !#hI4 ċ LEQb$`` 2Qd`T F F AR ȂD@T%}UN@MB$ 62@0QV9J($Dc(V X̕[^3=Q`3PKYÉarAÇ% Txפ+ A#Lu?ztk_~co<\0C) R,EQb(U` DAXDDE)HS?MޒFj$ DVE"ȡH"FȑA FH" ` DPX*"ň0F"*TbF0XdQ Č@B   V0H0U1HH#UPep_Zo.bajFC ~k!ᘢFN15Zq`V#4["IRKEg]SrQ|-Sn^<ֲIT_YkoWQ7hRoY^`}:N:t%Q;pM!D_n6FO59d*T+z5`aCO5M.Ƕ2*bD@TUrb)yJVDž[,YQTE W}! $b,V DAa"6:i:zvX5*oAaS Q?M%H8E墬 YS0?0[n 6wT5s3Mp6 Xe:iL0*rʢ,3XnSXP:t0:" AQLPD EYVE"H[("TIYkebemuftηX2}9_9lWlnDΰ{3c//Kj0!wm!֦v&q'Glٯ9u U,v79nkpd:*D1#"&ڢe1KR:m3EdQqQED(,X*c% տ+8؛,+Q jG;BB$FFDMXU-Qlq,U:aDbE~eSeblAws5ZC,"  Q Hx@Eؘ$1vM& $TB*M2dB)(ue2)q7C4%5)V$ oY`SY`RuowpᖔSAc H5_'CFsSzEhX":`J}4,c$KyX@X(APC` Ss wY*VAVI)Vh-PAdLV42Qa(X)Y(Ѱ@bߖ4EqDA# 0g>|̝Niz/=%OXDv {3th FգT4H?d=E]8 bAnZ+ur1+SwNfx32ݢ?n$Mi pӎf,NS4Vә*'r(ֹ.w)b bF"`zC!?rDP`"(8Eɻb#1 TZ5YFxR!{^Sz2hN]YSaSӄI v'1mJ` šԯAZ t{;@$CfU  X{ѰZҭ B$R{rǑhv,;B&xwscSs\¡jÌ;L\F1қlV?2jJ"H?V03̘ 57uONMH",E]d8[t?[S2D*լVFDUʄ1]uQV_̞QW(7?u}~/ 1QQOHRlީyjz.*3۶g|WY+>O?%e?+N_Qԡlz9xNn;b mt,"kMU;HAheGj1Z uxK L*0Fzm\Ě`aVf婪eThb^=h{GEDP>l,{c_:;jGZD.AAͦ :גL{pH?hf!:P_o`zQ!%]K?j  \lPZ't cf]㡊_e ax^T@})2lE$ |s)¬TZ̙B]tؠ^~_+CS=aQA ?/=見&'[T?UE*DcF UWO_Yt~Ac\SH~rJggujJ$ S ~bDc"e QS? n $h,@4o^s :Nywe!ؕ-CFŽ3pbz7a@[thI $P,Kl{_/0Y?oZ!S`_Y|@zM!+q'*OlīJZ'htΡWzcF'Păg=JT􁴞Ol !XHl6eLe?0^&2NeĚ`gDLGw lsFO$'n>2m!n K%7e$!ը2qP:m}46L'ldZFq-ppNu=!{Hq7&0Bف:NONH9ecY 2LBMo ;d3I'_VC}P=Ҡv7hqd8I$FrɄuDd,h5nKdM! f&e.2@:+ 2n$:`pMi)))Rw,t:d4G$+&=5"/2NnՠaE @H1 Pi" raa`ai $m8a29NHhY d]SP;`k 8}D2!=3C#ߛ2"n PIB $(A JB @`R4ydxM0(1 =Xa%!mLGa(.ӧ8 0KN]"Dd$5! Ld-jA8d$VO *竊}8D&x;Yµt1bk32[bm˗)fSL.PIP d+ݹ66 7 ziI !TzN fH=6Ma` QЇf|Jbxx|ߴ*sTx>0 x:I'HbIS:pBe fZBz0Ğ1C]&)4+ǒl逶ҊXYޭz֤*RIXq&[ 鞟m>2qrRz1N5HkɃuM۠5d6 `@Q&  XTa[IMjM$80Ĭ;; +mƇ6NIboFMD, &1ήCL&fi]gsG i!Uk=@M:Mq4"I `"UgvI(a*I*#$"Ł$HkT&29$ur $p 2J06kְP>>*O))| YI=axf3^֬=NZ&Y:VN0'Ё=XbEi7|lwƠ$xRabgݳ$ HtkBx$Za$1aZI%I0.2;+P42ۍC +zSldǽ kd cz띩<<xś=jQHc*N 1%BGC! ~/O"[5F5`" Haٮxhp( g`]6Q (yϪ/L<# BtB_ p_LXHJLc{t6/qUv5gro< PQnhXp`cvi&.%oCpʼm[z+{$ʚKW]D [YUSP E"Q/VI _-B^KExb3(.6S]b]8Zප9qkW|  !ICBHU:(7"g Ȁ1v #+J О `f!W # #|_]ljGGV"udqy"`y+B[sR6#sN"핬Bq,A`PNЭCp<*&u6ZwGM\.̚ s# $}&4vhS,e2tO^֯6ZR|qN_8Qt@D5>6 sK( |2Z5з U&qՖ(Lm3\P꩙5^Q8/2mGb@k^B1F$ىLKWPLl](R(t(6yţe4 %B9dfb8ҝhUukKv+q}C-CcrO,Z(U⑅j .M7:ݣ3 0{nv CCDԢxG0(lzJ0Oº(W&//OTHP|6'7;` d*%$~_.,$M s?[׭zzQO((joDeW%L$D4 ,Yգ)[TX6\ս$.ʭ-Z<՗>HOb8h/^+C]9 _h&J,؈ 1l > gP5~Y zЮ|)0GZ̀n^}q'5Jjm{R/Ww)vowH,mX;(Hn}];U^McĆGZB[CHk۪IۣvݥlxF1-X0ST]KBhpdZ DVw:pfpگ>psC1ʣF^=s"ł;/,YȌ|d4 )3ʅFz<4u|迵lJm$SyaESiIU56f*GvGJ}\Q~/;׷!gNdEiIjFftk^`7GYrQw~6ͻ{b;ܥ0:^D|@ j Ɍ0'rPBG7~x^l"T0d<הǾh-9js'vjW C-ExUx#OZ5ꨁvmyS&%s EzsPL INրAQ_[N`蠅]CrZ .X6.M3y3X/@P:~={.PXP2!H&'m 6ۨWw[a~!p3*_옽¥ %-Qؽh{/=̪Jm#rfdvKWŶJ6zƐ=ADhEӛQi KJq[65l[X'vo<+VQ{}ͰIhכKXһeA/y2^L?A^:4+bG]o'M`Gy %HOЦOP6Z4κDDkј#j UV8lM8ߓVZh8(IӯEZ[I'Bi9:gw w^$&ҤZHM+{]߾kBu})z0ʆSGJi 'TLa D~8PBkl ёx+0B `w+nvA#: AW& h-M M#7[6[t1 za;ԼJ7Z#CP~55P*#o3*í ~$M~%S Gd=lBuLPPbЇiג%n^4N~ Q^Dxb匿H!sE7jffgټ%eYޜ8o}Y!'tF>*q^qGܫ*RZFNI#؊?+~&<>|3E#J_wBہ}K{NT ǧ+QHb[F#Ib0g V*}، XRF Y%A*\j!m\q\ B(^^]eE&yíꝻT*_SY.sδ^Γq֊;#K)*[9zi}*lm 3YCa2MD&\ j& */f3+1+S a e-eaJkz-tu!*a;:A+HG.Ի1pzu.$1k!v?eR46sYU܌wƿ!ޔO?{5h#IO6-t1ZpnHL ZΎq~# =`9GBXr˥lX Sno{'oZ68 k F3c`풂^pf{9컀#h2Afʵ4ӧ* &/TJS0WmRS\ٗXlҊh=[܏-'~c*?~ӻ,OݘXu3~mދbzN ~z &Yux7AL25$mH!U1+ҫZ]O[&Cyt%E&yq3ֶ" FHl0b K! %D(kkOP3jH/UtE{mM5fb9R ϡn},yF0*~@3Dke4,8\b?P3Ng4_뺧$(L_y3>IkdB ݢib*s*//3i1='Zn),g DR f泛gƭJ.PAf/onFkLXU7js8Y ;̫,*1XSh2>tڲhV "z4fumC" vO2dȠæW5FH? sUT .aZŅ"EDo3!i_SC~NӡP_o6mMHR7ooT8ue^_מ50Ak`k8$9 Ci;Ք^0[8 ե\80&! 7֐24ꁶQYy:6؀Ϭ232f`}}Yݿ5&3vOvU@?|)(B/vCo.&yua | kpA E{(iV7Fws'Z;r.2کBe!{Mfi" 4%RGv}iSJ [*WYUc-% Xlfz֩0E{_ض>yTFs 0:)c]rC(X$e$ͧiҿM?^!pM5tijltS5O߿6)CZ!d'@۹t}?C!k-?٭j@* ?T3(SփI\@C2 PHnOnQJ0{xPd F?p{9:+n20E hXfG0T(UDP" 6~5njN@AUMHi,>djj(2F$ˀ,HT 3 #m@]RǻX=YIOM*QrLTjaJ"E}3 {NtɌ-{ƛ{Ꙕ]#OaZ~4j7ڵvS#*mYs\$^`)n5jT} bk/ LeDDAX+\PA"$DEUEUV"BAEUUCɬufOR;d(xX*R"ֵ+0d`DDT H0MRM eOT+Lz2o͇j"q2fcM4/_[} aA>kM cSj 0QKѷ0!cv']I$v8? IR'Eh &FL`}G[jlj]`s ),1uzJ;z1"~B | Ȃ*iR2!AчGT %lc'N:zWXŷlhRY4ַ9V @7T̖n؂b% t )ZSV !iV xY"WLIbJ{Tcruz5fk2++wqP}[ gbRݟd"ey $8 P!` ټ;+;a*tQ)ingż)>ǯ#˩'GW9uEx\N3 l(˷+#%ݢ`]ߡt6 YJ' y7r#n8 $rx'Aac?4bEѭ$H?t '@Ôΰ*,vOn. h}Z2i 4ˣ 1ϯ:dT2#1"wAo۱CEΩ?{<՛. b=*~/"?!'< :d!L0S}v>jL=ה gU E$YtN66T)!: 'KqGi !1 bY&0%OiXMZqHc%b#${] Rm cBubd.ɱ8DYWJ=&eST dM0&$9ѬU@|b|Oiyt}3[@$ֲίR\ q a45!!a HeCIIuO;dݓI$%pQ avKZ\SP,Z|BNG60:Iު]K,< z`g6]4I)'xd9nve@t#[%4#'irMfú7B:d! !ҙI&8 8N[eXr鐜$6dh%`ը N'%ai fH03V i& hIuT a@` 6@N{y m'i dPLE"g vZm:;wPΊ C&{+ }gM;b}ޓ7AIąI}zcY[𑼏Mɫgndr蝵Qd[VhlNYv®T]BAHvuQk!µy}(`}~,SsxI8ɆHDK_ua(Mgm@,aQ̔CN'O)fNb0aW20%2r`˰'U  6O&I\"p. O 9@Ӕ !fD׊$ `Td 7A~(|,,!/}C7V$}'k4aL껰mʰUv%Ro z0dC !ך 2hOPB{0+la4e:ghBKtlɴ0]Y'h[TgHN޵BC;㷦CՇ4g:I'Ha4͡]6n`6 !.(Pu6ZZ6Pi )'H!!{:f!|h@H I1ii40'^r^1]ԅ,; 0-ؓ0g m9ݾI遤 PF_E'd!0yaN*T b@1zLa4 dLcT MAh6:aa_)DI%RCNr2`ࣄ؛HM;Jap.̦6Ƞe:HvaIw xdقˆ@%0 #5$M%dăzC]1S:gCl ӡw! x=$:MCc5c4"?b36x}5 jL=X-A[Φ7 Dj !- I*Ett'5$NLn瑎/TF%ֵ!]}"FXӸ|u0xy O:TDE%m-R&)mp@0\(J~N˂-,xftA$<8D2Yic  9,y)beSkE2Y x{9щTC@w .MYTAA 6ZvO[>Ӌ6w#7OqVϛctހ&jY,+Dl=Ut`ӄ5P4#rד0vNAQ,$4 "RrV:c>68Ctˁ6_Gc*YiJaٸÉeQ5o6j cاbȔ AXy*YZHQA,  /Z!_ ̄z(1N6ADy]9B;A|轋 sVi+o&juӦ`B+DCr6 xJp$,L' RVt{iQh[1ET`y>Vr4[zՙ5uYXad-& L"i"\G # )·*Nۨ9șOG`G,m5d uk gr"t0K.2BCcou{nlᯍ^QXm G)3pm~۠.bK(P>*lfͤp[&o&yy) d,㵹UWJsWi3T^| O54'VwpD5+#s7=nR&L' D-KT9*2f#A 2 IoMcNs|ڼ]D2(xK~5o 2}4XTE~<#Z}P(u6t ~Z3mmiB/{AA3{ݣ̵`) x7.Cޗaf'TCl!n7Eߩ@p!Pi+Ҭ4 vOQcncBoH S#TK)dN y΍W:p1LWVZ B~RI6lN~SٲXb77|ȼGHGǰQyaP[(O/}kiq0q>r|iM͜-"qwL41kmsl͆sHKmv0UҰrh5v`LVXH,~w8l\4 "hn|7E#싺C ]C/]%ʹ c ,bOAv yh,rM{Js *UPhJNPp[a$C%F>E%%]$a+[D& -y6& iH5f}-tfqܯ0jGT  y-6"}Up9U|cBy@~WXx/ =m0Al;S1L$?Vls.ls6 -^> VN"DmX?vU 6\NH &?Vs!GF =~VdTG[~Nc8p=ڱd]IL,!h?^_wS]kz(G\FJv̒eܐP@D)6KhV!C*I#㫼):`7T+*鼗 P"Ao iM> yINaP% Fxכ23/ È?K#q7NHWrW` ,38p;ch.uUVA`I1e&&C0H 8HlE{6PPtpຐ- RVvv%v1r6EA7HbDc 7_!%7A89T8[AaTÃ)TA; wHl]ČGhpjqhEq" 3µ3'0|z(naiBsܧ @"EqI74=%& [FTi!YH/sh&4b6ҐhQ_RKzqG;l(^K!X"'*U cEvבj΅*HBRr˺fmʍ>Gb r\A0ҍ-!GJ 3ֶ o/ǔD sC${ Yqh0?;Ucm_TqMFJ&-Ch!Iu 0+uևpIInzã~Mlͳ'{}]9Atr$s1Pah(@ !k2f<] u q)@QI)FN=ݝ J\P3ZX$AT?P-`x`u9n#ٝۀWC"5 Vv3ۣ&}:'o*X& %/ç N&Lz)FSƄ2lzcvw鱕tG4=VD`Lvƥa^Nig*  @Ұq*MmчH46m_$?n ̵@|0Pנ)@:Em7uu$ !!5 2Vд%F2[V}b*lT6"HyHe3n lsJU 0! u*eUāLXP %kፂ "m PoJutN6K,Zrk^=d- ( ϓ0RXPBaZ?rL)j,N$ wv^Cvsi-x7l;X&Dv"{P6D,<%Z_=8omn {2WGa5yw VYby$!;0Rf^QGѫHٶHŢ(`0yit^XԫI%EF_.LOC Te6K/XP:$P~}(by+<6)%28Ң >~zs[t!PiQպ?9D@X&BWRֱJب+m-Vj2R~5 i6$m]f xFM.wU^}q Pow:u2ӢrkbaCD<c\SuO)oy>\Jn-T=X:uЊ$ ~Ah $,HToRXm:iŊt<"oFu0 vle.=kH8TF.q2NǜaTjsltjFYss \ՙ@Hh}HK6}v;zXz7x{ֻ}|fW?L;d XCb2VV%T%*("e C[Q#.pN#`C"DQ@a~ (%VAv7R`˱Yj}zӣ%!oΨWĮ&q18E JA^K ۤm,tMڧz+%Xm*po[4sf LS(5`25 'h|Av?~Z`@?4BPE5Ą`IAWe'>pJ]W%wZ|-'4ч|8֬>oCz[M>Rd3%0z?a?j)ӇΜLHd= `]ݐTj{f\QUr4j̈́FQhXw=Y!XC')wd(eL~2L@CH i̡CPs &Oų[V\?zM=lYߏ0 !pժ]kSwlMFio&O0M:¹eoy 4V/{Q_qFh(.ё^VPFyaYfmBiaKR~I`v$¶jө)իFTHJȬ|̧mYJLߟV|RF%lhϯ) ;#-ٙYI3Zϡ YG,6@p`,m6(['_$RY~A h,f-!"͏صd-@FizC@B@F/đ;_녛#th^ᮥFN\Oѡ贰+εsoH#DBrSg+M9iLK - 3e7/{e~\upkmfI{N|yivla>vQR1CN!|7}5Yka~̼ڶ9{\lp64DbztyYfCX *|04)K`l@V J6бOjDR/ڤK0Ig܌OZ >!p:MA㨳ٯ73W(q"E ?[ 1w۶\cX,3 $@L0y{W7Tg}P}i 4 >s~j@~"ݝA/HoXK~{Eb`~2oT29`w5KsP>]mBVZtzrGE!HX" }&tѴ2%N~$A w{jٳZ!FUc\ fx/X~_T̷E"M KJDemgzB#0/~KߏFZnCf)&!v N|L0qPHm %B'hV6FA"Rl)aٖph'Xmzݓl?؄<%Ђ]5j % \. v0Dʗ.U7VN)"MrCY 6@m ;JgICl:Lv97f3`kOe6 ôͯWMhҵ^{4~ 0fIL4[С $6`wq4L!{gi;I#7'"2iHUM$$%].ɦC`Mڲzqŭv.:N.*9/)&A5,cva4ӴSLn٤ ɴ}1'c$혒vIva퀲)'(Ղr nf8gHI6d BcI&dBIa.vae,Oin1L0rxI8a0:=nKiY) 0dgbLa>T( BT$5C.F1$+ی!I#o6]F\fAѽʱ#[v2m bT-⺄-3AZ)Q sfaY%B>$g׺c |M$6&ПIye]V,2H]O !)/\<%YU$U0%DCh`@erS&"s-Sk*BmCi+!*':ׇ~GVF i2uLW;KLd=hyÆi;CL# v(jӾ;Iy% d$Oi6ּCRGFS歘Y $8tL@Xw`LC140IڂtnHKLou$ !5rlםm5h_)rE"mpP@$ AXId%5퐙]b}'\7myϤ<|I$BfQyg: . #xa ryR5$0Ya|ֶG,-qE)' \jĖazC,!-:B٩vPtњ Xls+& m HtuExNsF mrޭ'ta[Up閾 ˔ГLVL& &eR@f'Sa8!:z9z쐒?-QzG4/nFlNyjΩzi hx'oYɦ$ñEPuDY;,w c{ rsC_&0V|k7 yB)z^s]NtYugNJJ{mLf^4QӂQ401\35*z|guaëU==[={C #HVâEnlYRzIזՈiIbmRg )aXm=I.Q`|d3;I=2Nq T>$}6Q~}Y@Hm W"Öpo [ \ @ x#kP(ɘs #uBVC/OL'[Ι12ɗիAC񒤇KִL 5&f]!_M|HsUGՀ}' !L)^nsv ޻vy,M>'i> bFN}o{l>ז(t$LEvOI7݁ptxx8*!!Ne }8lP4Q]u24s& iSla4dB9tD^R{IAaR2Y RNS0', nd0͡lLG&nS˽%8o!Cgm mN;eαCJ`3sߏ3qNƪnPaFCB,&!~-kCr:V5ZI#sp"o"`&k mwi`j)K C,$2+X h:ն>}s 虡/8X9엄M];--ra},Pv PJ-Xwt+yQ rt>nz`;<|פuM2 RRV$ ZA!(!@@4B4%Ӿ*MY q@A :B"p?yT\MڰdAB4OY@ aviƽwnxYJ>!y i{f"c$`4#L`x@Hf X]4"j\4e3CBc0۞P4HRM23ukTMub4tWU,w '*0D2.&gzOTjC:]&)ht|SfZaANPL#M$q@sC$ c:@ $Rn T &, <25ۆlv35ZӋR,8L$C!2!'Ce톞Ϊu ~.S%(L08惗  ,̤{CؗB;uĉ&5An 3z;Bdv,!XKAP/Ht^k}\_(5Gu*B!cI 5,؅u +X$o&gWAI&m-)02L=i^?4 J7V(&mb3Nɼ yeӛJIF? 唃|ML!] /u<?,1^D!jc)sA}hll0AeR>) c<ָeɿQ HQ!c؂ֽ{tj8֫DcGɪ:Ţ014+DrzNxSF g~w`C6Wɝ"ګ`nS[$ コƚm󞷭 T<$bSB $x`R@q-[j+s՞$/ g7 '8|W{xSȱ"ASJP8>C+w"csOםaEPѪIUsP1@ٽ Wԍ}9 (7"bWN䄒W&ǎ zN+ BxSJd*FŴDnf(~;;{k]fX2wKϬa>ݢz\MNIKѿ#u<+r g\`^7t?iJ vzӣ*sMOSmڒ,`~ wxX?r !8qUօ!ahvQcE2D)XƬpޅ>/1UiZ$@BP] +7wg|4=Jyb >s fX0~h]"n-.+$ɱf"p [c>)x/b~:llݵ \a|5ZX}hȁ`JL||.B2X숐Wͺ Q ;HM_<hHM%-pkLpגwʱ&sF6L~ւ6 29r!L3P=La-xcVPs] jx0ʳR`XAyJ-ҌP\e=?=󙱁ն i@ ?n9<6*Zhxy}u 6}t/((w}x5AQw%#_~o}V_"^8C#"y[Ն2 D@X-pd ˫SvnL\^NdiWJۍ¨w 6]&ᑣ50wS~RMꑿw#t_A`QXA9@S! u„1Lz}_@Ě|۹$|&[ V @x[:F&6Z)b?ǗM,<"GKg`-jvit޵\ "ab=UNn(Ww zu*Ƶ}.Jm8(&d7ab*J84RZiK3o:*W7>jGG/]Au~iMԱ@+p׭GEۊC% 'fCSfbYe_ǎ>_I9<F|=\P-@e5Ek 1zB}>+.S:XJ.vRu-@_&Q`ĉU(mdB5dJɻ[7Bf1~zUc^$OLL0R!7 Kxd"d`IOi7/ac93 R\LxukstI Ǿ[VNowΜ-'H, fu]Dĸ#9EE&#L'ULǏuF%4 \^瓕H1iIOX7"}}Tat R,k`njQ<&P'pl0e".Rn]{W8>I2Nc*~'AYyR p:F2$?K[Y,8,k,1iUHz @FcE:-)%\Gёp)tk4r@w?&N95W%3(eɁhߝMfuoNG\FӅ $jxʏvcFfm8pL{s>Cw❹c (m|+ۨw6IBVWt{9|p˚$E@bHwXl T lb!`2@+h"|.HVv ;łDVN5 5ٱ+8%@Rh KqDcV}(ztiT&iX  w]@īcMq񇠴 !^h.n#{.Ns=-V!^}ZZD|>+R7-w@N$zgu(\P(V ӊݚróIJD, }ط@ OSPE` ^ٮxƦy,C;AH/zfU;^[ C.31)~ Jj;5jCS2PadmT+9*NfYs JdoA$5-١ML{m>;L-I(`X Ũ#R&Enw ]I:5% :oE¸t2R>.01 {+w+"X~Y,HLV;SA8O)2y4-!m6Q/HvgD K"EE,tDzC2&QR stblӣ42;f]ÀrODP FFfZ:JA߅W{ /s-*=Gv8ewŒF NfZge s}7h y "o v 19wMI?Br[6 t%d&a63)i6PU?ˤN64i:?B̪"3Rpt=uw5l 3X쪔 {,C/4"5m ayX _γF2Dۖ׎Oa&mAFj񧫎,M\ #un]ŇOG HdV@:iT$4@ -f2bL5B"M[DLY ~rO0x -hOB!ȳ/JLxL_í1Rk%Kf?̜;?r7ĢH<_ETPH`i I`؀Jt B4Xn/Ѻ$װ!҇cǼD4D?U(pݧa?2o7=)<>8*>44\!| Cm4gz݇n2(| u(|Td1փ4߬IMgW.$-PqR?0?%nE= W*w`!Y!8@M~fcwFc4fGϲne_墣VOprfiW돿0Am QĽ_!e&K~(4a󴢓‚]p\E1al4+ыZ]fL#4X,g线fs\:Y)-}>hYRE$@MMO_Ws{ T[dGѭ̬5f\8^/0]DoA {:c,MaGr U0^sLUDX-!,uY FOw0 "b,YD"5+ӏ4{F[6=KtQU\E})6m`I}|%Wmnm/1w"B"XzF#VA9BB( 0DY2T 4!Q t@? 6'Z>dX~3,7'{y ETiH}iyi3_5tkF[4>* OJK d Km(" D@kDTA`@b$kem @UbEUCmQcyV[o3y;W 6ef k?@_ y~ϑ}jWԶ1iw믩kIL#(C['hrH1$R*1 "" TX2A040mPE<%BVD,c}m:0a/" *EzN TLW젞~Gu?ՙs^:|Mӈ+T M nn&+5hOkPq)t 9l6ZL`("A@ qڕRmf&[M 46CFK0@u  ڦ`6! i3;m0PL2 ډL4Y5]1Nj-iX\m,3乺odݖJhPcV PX9dDIubH\p0UPT*X`l8RU&UuC1B2:+3Ya<5&3\&6YQDqZ\Zt\r9IF&)ay:6 vR E֕-,D=2nM.-آ"mciUeWM[PSa-a[-)eUVf*q4~00o`(/%%C0bQymLB>;ՉfdĮ\١7 ?1\Ȍ;_PԮ:'B r^ip1KX'뮹sT *H ,,HI"~en8eՐA*-hGm{9Q$_gQ,1^Ρ@eRPcCt9#X{8޺~IUV2(HIhᴿ[LZIXDayZƝw5" [1}sXk?otT/d.BTD \Ҏ27hςa1߉{&!*`Gi&8kV ": x=s a Ei}kԠ>})9,t |TAvlͶ fS1vV]NִY3.:^7\w}i_鮑@VJ2d/ث*E$#;.dC_[o3:G  9&tщ>٫+îmVb"jʱ=\&~`>wfBL* m$G~Cݬ NdRn+86I2TBX]Wrq#@"  B*M9ߝ⿫>(†[Ճì?ad HB/U@%Ұzp,HR7\ tP *vZ~pmr2b" M!Fک䁡fְnZjR ^倊E 3^{{Ы {ɆSz-"T*k倴0oc ckO.4s'z_[h)VT|ᆁQgptBHT9VNmcҚQ,0ҨӑD ,{L4Q"*ـY ~'+o,ڬ %OMpz:pvÀ_ 7NO]гD`I~v>,3쮱 lV=&*-1M&k, 00O2!YCnlZfHu`L\/3YK4ß7g뫢4#)2m@c |8{gpq d-K^CC}LQ`<!&=&j(l #I7Bo[Zg, ɨ[>|&*Yݺ!bm$'$Tɴr£jfOy&rMR.oWGr4,B!?Y*ڍ9vŘ4K.D8awfр駧zѻbcX= KJ(ZeZ(~Ţ؉PqY㙊Zw1[5);c`NII@%=i*YޫjD£L˷NR3c.*9NcGy,%:ևJh 0$(aT HaH%ݜȤG5aĸ.Ս}ϭ0> 9yBL4u^[$.C՘HiM$ Vc$0D&?G6PC4 J Kd{Ieq GRc3vd"$#X=$i8aP0S ll&Y:CQ44v ',_Lr >!7VHhdY >!XAtyiN]bdlt0$oF0K0@Be sRk4C..v'/dM0AD8a8@B.@Ht鐻 $i:B9Bul'IL $+ q8哔 T NuP6m$8YI<Ϧz!4Y;BT%@CzoWdJ&Ohe5qTM v0μQd&;CQ;AD$,Cl&0VAa^2z! 'd8BraNY4Mx**Y'r!9扦x`gU 2xHtVS8g t-7g)vv-*.X_tBlC4, %3/[K$.SC.gI>!d1Bk)Nαi9CE'h&i!Hxwa2'@Ô[ί[aTvN`yCGW @!/iK^sYB iSzjVt0{͌3)d&R(uT͈Ih`t&] B($4uP6ۺS&qsV &96:gLrP0 :Hxgvߌ֨VC;VL>e)<ե$Yad`2{a! P ׊$T6,Earɱ ڷNӄ:2]P @,<&\i/Cl:IL8B́}֙:EÇ Cij˲@g,' ',,Btý^ᐺCjCW5 ].2t!1޵Kq$@s\@ a8IMuijM3%lBT}Pće2Ha&)p gv 3ā'q:mGP7ˆy7UP<>Hzs[2 tTĐ9m"ĩ!홸^O|7|Ch[A4q|{{5zճOqVha{CY>+ Ncd m=R c#Y7͑.;jyQ Sa5˭i,@1$ " (BrY<1UA{Kᔨ6Â{%Y ^M+'؄2"AIR( QXQF ,TT"HEi?W9ҎLP]QF*5ʏu S+hj ^nLS͒7~fXY ܈d"+Yb>%[͸@`oLVa zd[,q P[fknXpJ l':VJ 6W{ D27۝".lab;rX`piTVhv?}FpjȽ\±Tl)(ι@7x=noN ğpzxd/h,UHBpܠ8%<<>"wbbLDg* @!KH;JeWJ/=ăsؗ5 -$k~ „5ShB'w&`qNie_SduVZ34nȳ6Y?.X>Jx0blZyBvHuՋ_EO7N1z<37;{o2Jɏh%X܈e66R4[$m`kE@ />CQG F,wwѻo-(d5k4&,b] U]ѿY6#eP @ࠋKr{5Aֈ 07[emB0wiYT(EV52*RGSz(mvyd e}PiR"(OAJGbIVMtvxLfٙCe $և32M[B7b1$@YQR7,}yY:q>U'@&ލbUܵ8w_ɴ%(0(TCF|M-jAnY,*43BP\NLcmqnEiU곸dzt.hx7xE= fN}uD@k҇E`T7" }n_@shH6J @NrbY9 m .4s5%:g:hhmCb*ȟ XUU2L v%(lpQ6@Tۮ^8H7ZD[PP*#GJkr\a]Fd4( I6]jY"| B bsK@=k6 &jd`PoEzUw^( F*zpj% @vӒN`+yWnc&BȹhCB}m?O5`Ef!2[ DD+׶F"b2F$ZMC$ZVjFFhМY6" `!=?Ms6ܻEERGoOQWv(ixz+]G^%@l`(f& Y\E֥^-oAq%Vйq ԛŐ!-=vrCM^sП8U Cg%a = G QR&P ^ZkThD_\'|z(Z2qnDŽDYpNH@1ɬ,~ ƙ]O*(ꌡµL#!ܡ04-BAOP'K @2-f|MSmW/aLh G@7r##"hJ#cOZ7'A (L]9 c&{;GFr3 ih /uP`kkߤx랰rLB\˲pL# W 2a6t<U׋M< N_&|p0W6n`Cs3mN9伄YA~F/ЊNqD~g//[cU@^k_ח~ hKHF,|/S8*Vtn4s3𿎚m6_6B2tSc/C8~ϡu: "2* W9xtj H{G+V*qR ~n_d/ ׾SѕnAmWI=ؾ:BBiPi`[ ̞c 61ۉۓyZՒL4+P3F:Wlk [C>;>55$ ~F,t;41KuE~ a)Ra"I \H7%Sȏ G\7QpQ`(c8ۡ(-s{k^ Ŷ:\ʭfȹ1U|}qDpy#A9 f xt4JV!)F ov(c~ P Y:))F90аU4x Ҧ1h lRٻo `czL= wߙ -/zacN2(f6$@9B߶f(薵MߨQKQL\ǚp%mq/, l_B0 [XDT7 #?Gc2e,$z8T?~Vg#kEqdIsL??cAm EU;{2vj4QZ"d{\?1B#7CaTyJyM`w*实ֺ h;54` Tj&Լ 0Bv?W>YhFCZ47PbtY'OSS~]_׌^*V:%0/Hh{ Y> }?#E l~"_DR4~nS_]hx3ḭ/ek@P?ctw"G1ҐlQ!"%M DU؅J3%;\ϒVjkIXDx9~jAb\Q`NB.wo7Ec&|/mSBƚgX~~26@Wh{+f1ib G( ]!3_V0z56usc;:N >&cd̦/^eB9޺nپ?g0wWP3X?WmiRA[2ڎ*cO%LB4Rd!ĒbԽ&M +LaD"?^{ ڗϨ~]tNKWT]Cǿ.]8,Rō~kZCipW30(ΩGAjFi[@zLVKIB8wEUQF)CS1}4~Awe$Wа"zқ{_+tq}CH}>XGG8>KC ՋKN_ʈ% ^g0fLU<׺S©m|{c}n9q ZZ?r/wNKz>:kC6-> A {¤L5iTk&23Rvo=dQWOvKs*o/{lFQl ѱ÷ (_q~軰mBKF_`JR4WXe/*dK a#(BA-#61TgK$#1eUhuZ)Q>½5\@dr'c4I*BJEЪ lhnFo7]$8C~N2bV{8?)%N] djySnLh}&{(V|~-ab~IL)vCγY!t&ޭ hqm*l1Cv:t6ɢ=^$.凖,y'ZC@0j +:MAzg^;aIuO=$7y ۆ{~*L흲] avğ<ť4z0D03Rڨ 3k%a yHiP.RJzIIL ' 5,McMi!ݲ/46T~>?@`''8i 3) \T^Rq߫+ e!@9@f4ɤ2gl&CWz;`O!vD^mC@eOl*|gOAliXtω =Y8LXOm!Sۤ/ m;$+ Cy龩8(NY9NB(N2w{[l]edU e=-׋Yc^s2M3LAObAT&i- {5(0.l*lI ChRC I s&Ot{7U"I4 T0}]$*-HxAX$$d鼰&g3`ɣݚu֫F {&fЍTdY J!GH1#- 'LRqI S&j oDI\xK!WU&{8ߗ)f:<@ͦ!OYb;O Fu/j]'A2gU?=a(+4FI)>'DY v P:+LZ0-ՇI =2qHL Rꇤ̼f1̜$H;`J7kқuL$0!$*D<@̓]WHt '=Y,7IQ9HꤤL&le^;De@31D tIb}f ooV7 ٖzEPd3|a{Ol I0-M0!>)#_f"8i v-07{܆BI*K\e68KAU{̶zo 3hA",>s0y>a'LBYTf q$ J'\;g80CzԢ9| jK!@uig$`T ٞ-\pjq yZ0 ˩q"eWUa|UOa~?Yc;f:a POYM=qY/FֺLdu˨HtՇθ襁N{kͰ }) R"0dtt/MRIjC|[iC/$= 铫̜a4۴Y60Ӈw]i:$V(*F &5u.vwvSXgN]&k\9O t{8vngCɫaTwܦh{VĩGpy0G7#䀫0P$ WU@<K&B+c020v6LQ6Β$B@ =0%^_Yݓ>wcs>5g$;Jzt'b^X!\p\eud,{Zݘ+d2y V7-a1zqݪ戥 !d+ a÷0r@UA4fQ(UV ͝a9qSQiQ$Pኻ`WC9|3#H; sA:ތd۩ N<. t !;g[R0-z;Lck{K0CЅPYVkՒbI%= s:֔S_6$Zyu`Ïx3Zu~x 9E ֲ1j2mcB{\oNWV˨3g;nVh _w`a6ip+}jJA7 ~"}. p0O:nj|Ã|ޝfF5UӚ}*̪L'ɃI#>z$S\`X`oyf?c 0V*UH`9۽U Ɔ;&=^& Rܦjg,ҩtvv~+_k}iEHoaWz{1ҸwGk=74JAFG{H>x띥bx216nfwlIM4ՌHv7YY$L"*_e`k)wCǒEcܲm) C1] 4Qh mpUp-(/((ϱ' hggZQ+ܽb,HJڻs@@x5gFv&=QqlT-9!edMĶj=v4e`$(,*hdVo"IT$hS_$ eAB/u@HձPYjn>zַL w`[JBda4Y4#ǹEE!F>EH6Si֠~AbDSy}*yڱD/9\Wa&OWk'z\keCQd[Vr3mȡ p$ Odo}@XB/H{X{3 ]0`$0$Ekw_aA`fy "y؀B}?FĒx3 -` pמh= Y@k5#Z_%3)Ձ à@J̡lv 쀧iGaԝ*54(ѦTݏČգH8Yxo6 OE\Aص¤(~ޡhS$sTPPAB{g܇5֞@ӕuoEG:iPG%c:@v "\m_(] s<'ôRAVZg)jE0G=5\0:=a,}"nkU]W=Nnm#5^Hu1fL`'v<uw\6ֵ"#m@r%QGsȖ] !Ȉ[c?xP~4.K[{@Qdmx喝FFJ &:FFW.gdeЩ,ªtBIѧ<Zu?FDe ֝DZлɒ-bXv6ŝ/5^So54zԔ1Pő0¡ r/J"N?ɟ#z@I3꠬3!U3Z|"5"drZ.ՊQJA25`#,q?VLt$wكjlKĜrwn#d D#-{?uX  #2'ӇQj`3:a܆àlnB t Q+lصKS;L`,`x67B+o eQ7ʚ 5|uiq44<M0 }9UtvN/w:v0 0xcqBN| $0DQ,"bGxj|6wC%+ "D -oI@RB`t̔YN'`W7TEfe`k-\2"&>%ϊ? no6mnBtđ¤KMiBxOHۂmˡu*Ǵ!IsE} č8׈1}:=*4Źk;P@]vBG0־:DOEQXihCHTz#[S7S;wq IhDn Hװ@@`IuX. R4 [!QuzM gs "ikz*ul~dŮEzv3@P""q K60Xy&C~.z Z|<HĽsK\yxoµX,o#rPI$Ꟗ5h8` PFk jSȅ2-gfH^孕06DWKu>}(2 *US\3uK%颫Ս[RWK ѿ9NHE )l`PJ4@D_E/|,~zfB1tbXE&qSDӺ7ctD O1ZQOչO~>}ÑY1|n 3[DMe>w5eė%&4ޏAA4D#|.؂BZg*PYQ#a(QlE-a邘)&".ׁBY*2DHTA-Yf 2jʋJXT&&  hDGr& Piwe`nl5AJFQ.qwU0 b‘֒\mrG"ֆomon6n|<.lkfϬ=p0A5ME wڨIdΙ`%h-_w3d;9]] BҎhai|};f[Ͷrk@{-Ҏ\?>75PȞ=oCz_xAnL]WzQ:egC:l; /h5ʢЙjQDbWrB Bl"tO[ gZ#f*:~V:??X 5-=jRMckK*픾w}2m@O4pD]L s[˙h'a5q  y+5QK 4p=]` /F#zw4m~u qugFp6oV9ގZJ 7.BF4u`|Z?{?;LMX2EZ}{=-x/ւl30,:FښIgzv:aPAJ$Rq3dux%&*1S'%?t ~QH\!#H/;(*QLc3C!d-Hi$"\EiҦ2ed}@/ :1'ș3C46&0 dfZ) a`Wa[2^7oT!R cu{HR)&_t4VnӬ(KZ -+M`Пd%N&όB|cѧ8 O-0Y4tۿ\u |Z##n>M1]'hF4%bDR@z!iD?}.4\ XVvF`!;7`F>+O® 48&|s zxfٰr|=1m 0:u&Fh~6q%t#Ip(dT8؎ !1G Xh Ȳ }͡7 X iаu]k m XZyF4 fI AT?TC_^ZC0F0R:V~ݜ$Q&3zI_|eDi@xة>*,-n8Bk,,d~ޕhlI$,Zqp:~L8~H$nw0ɻ*ʚ¢zrʀ1gS@P$b֎koo~Ѿm3vId=~v)韢j$ҡA@^d?$d8{7eOْmC_+/C(403tfyzlf]`⇉‚}XkN{P.+N}7S}?2mHza9=+E[(QrI,'k|(40:,E^"}%QFO̖0 X*I_,|!,RM5RI>pLIugkјMKpM2Q0iyf1Q*(t4 a !n"$4Λ ,HaA諷M~J$oփ\C1С !UHJS[q Ɓx4ֳA"?-~J5էxe98]lWcѵWv`b-0oָ,מU|aZ Y~h8+zn>r?#xWGf&~'Ѫ^ʠcwj) @3=w8MMm3=;)O}_av޴\M":ԸQiXQ=:t*łJaheer 1tQiJ ry!"h*wˀ1P -\ɔ3 uE0bT$7HmINFVdEFPXf# %٦NmTn쁴 x!h;Ö K!<%NϹTB J]bӤxiMFbsstK85PaVr*Ms*)fdN ~2c5hMs#IPѦCmɭSߗAg1@ː..!]eukd OFeL~{Mj~ɔ>6P"60 `lRH?`ĖV`P͑rhuN$=,`hRT $'9ߗCǦo)(9>;.6G:DGtyHs z:gd1oe f`aE$c=3L-ĚvD6aػb" 3{k hgBݿcUݫm6,fl1fkZKqZ ĸCHQu%I\>ԕ>?;vO2'I61CM oC@.̺ XavxmyCH8vC;O iߔ CVr$;g 誧2b`f DC:H̦w;lis\u D̃M_lw}i2Jq衘kړh_MGjkɦmQe۟32mҮĮ\wθ[wBzM7"4hos6QMyunG*Yr.h! BT_ ӕD 2\ѣC˓#C6m7h6w Ua\Ԁc$S(kLrSgNfL~ɀ>TCtT,s@ǎq>}hlRM5, 20f#$a!@ SiVe@;dm8H aP$ $^Fzp!t۔I ͤ$&=!%gL;Hq(aC Ĝq&RtE س L g yvfSIY鬓SLZE4'I.Z;EX]ؔ2*me!vw HljLf8`tȠ';g.7WV4;fӤجqD\vZ9k+T_ $6!C-IA/V[4Cl`xd|;.)<>NsZtNCL<'Za4(p˲CURftє4 u6Ʉ!)$=PtΒ&uYxaӈ9IXIa,ΘJd2knj >+,3"NSIf]Ʊi IBy惧~0$8x)|blH~;N @+5U&/PǚmCp򐝠$ 4ɱ%$a':($I2&S$d uVg,23J3݂]L !2äfI !fkuHM$&ri+ @v!eE6;;@ӯa5oiE 8iąBd{Ix xMkI7t̂4 > !ɪ i~PTGK6z @Uc}^!2{/ u^+G)bF0^!s}.0hB,:/.T@ DDiLy<WrȺ/c~V,~ 1>sRhW@yst$me-ֻ`o"b6eڪc#2mJC^֩D}x%`=y_HϤŽ8o؈'GccÏJVDȺߜ#`f\]LՂq (mMu1ueDĢV;lb2!Nϸ 6람:e)7}BV*53hs}rly~Ͻ{՝YL\Eqa B xȳB9Ǟhps L@L 2!`! lq0GtMDS ҉-M2i%5iGm{dqP]]3p9;!W"`Sb6|n šJU6,9HAޯ[p<֊kc8gXAYa胊#GDb>ݓn"c`%9sBE_z :rS>4B]h0lcyjzƙ!98t&iwl.>5ڣXb2JRWQyzȅ4amXY 8[hl>d$xz:x/b2snQ}tTJ+nOT"cioZc ^hހLإ( `sGZ;'"(X~gyeګ~TmGŧl[;-L qugnH)9*HĠ1_R)3]H^N  Bm1tU"(4$  :WNH#: d#n0#]CL P6ׅ QEBecBL2B0!y9/C~Q/+5!0Z\\$$+3چq'Q d\ܯGQPޟwI:xfyDN̡}P5|1 |^ ,7\>}:~@:WpOaw|*k7hbP[ ߖҌ>`A;2ș^eLtPu$lw4z…J+Vz kS uDΞTOW `T+!ٻ/w0輭q5V5|73j4Ԗ*V;݄WNy5R(T 0aDkݛ|/"v  -UݟzJ0s!. ) \*o׾iggd^w!x. ӂ~ocRUкS,g]ZT&7C'OP>'c)g{C7h.9<0=V}^Y;~zPjuoHZU\ijXpf@! $kl[26%# 1xuwA )'=*_TE3_D@ɃC@%CjPĹ$&uVG|A<׹p げմ|*7<;h-9w֟Tgt3`$[lUa3*t`6$Ƭu BrdOcbr\0QF_/õ8tAKC ꣝7gl"ަ(hSŻq Xׁ) (A0("Ktͪ"6bLTW" XE 16&;]GIGD݀ nHhQh ꡀ LE8GF}"827-yڸ&TuRjLL ȕCXΉfqN׻E;΄^p9Ux~gƶ[LH=U5fWzu2,6AcM.j?go-Q!${ݐQBƏRr8E`٤l̯ћ*LSrW}ou3}~d*kT1H6~ԚPB,UVq( m>˫ 0cI'hH3'wΓFg6h-tkN_J#Wρa :_"T0F~*)4ڞQTC #ЭDo x! JXH?j]OXՙP?/ٍQ^+&f)ՓIk᫷?n/}Bb8 ;6KG y발xiuf_ >,H`|9j (V_ð5O)s4k8C@/`‰Pm9JJL>@?NgJ.-ܧۆnڻQBkm\l|ړ;wqSfOF׿B)r|;Wa?@NG ~om\* 'VAwf#@e[#W`7o@4p.@ΊN>]'_۠C HbFfYqQAc=wj䒱r\^1˹`GV@s(=>ƍkd$#l }U^=]MiN$PO~#iO5~Cb]򓢇0?bPz kr[T Ne./V软wrҴSJ}Q} G@5$U!Xw`}قL7p 0@DdK^|z-onB7 5H3Z,>u!$8%`%ojgq `?V i0]kߌF@X2Riyr(òy"Aihx}h@_fI jO@(0Cc?k ec(ڕŵ,U shQ+ s{vxfk 246RC:@A`tA #2;BdomTȬ4$Рfa gvWؒ*5(˅JZq T1h` zЁҭ1"B]R.ʰ̾9Χ\\k$ <2 }<6ٙdE'vQ&sNᲺ )mѸVe/7Dnf3Xfjzyѓghk]=Si0 'E ݰxA SR .՚] I #KIhx]8d,ah?BF1iXx-~7jSD> zv7V9:]1vXfO_x0r)nLRٲNoy¶"I/ݫ LM]ae#!%9kFJC@#% S>OŽ&5:FGk} ޚ 9Y?@W7oo?Y&(Oם5t>IuýL6 N,O}܎dYI`6UX(n5 &hjUb% D_#w[6 LmƫO՟';9 t3i'앐 9 |$q+nYd+ xfVWĞ2HiT'.2Y r$&]4vO_,Xigh8VTq&X vY,>bT%1izv6@ 6a8H !I^_o|a.=I4Éw`u&081VOH>!XL;aX8.nvd")t]$ 01 \$2;d/u)]:IWL񁌇 IY!gtC*Hcc'Az@3ck4ĵ IvH@.ezd) [;`Y;If9`i6& &NS!t:gl;ChPIHi倠vwC{Kh, lHv22M"! !R̝0$^ yLS9vw;ev vqyb$a6&M5Ij&L n'Wj{3d|n?]U`Ĉ5IAbXAdѩ$/q?yg\`0#z8>$j\8SgKKcUS2Obbdp5WG_o/I }kN1#}_TS]~q׭F6W|a#WOnsy`*O?Ngo"|5p5ۗс*7ōK23>+NfAhwJk_[|m4c׃'w`>GC׺P-NBʔD2RtQSCЦrdhhLDxp*!T"%QHd8G8Kk[QB(gQod3,cPwQi 8J=Xfqt ;*1vqtVhu8^pq)V4n&vPA^{JWbe-Bid2CI֎yyKXJ,wÛ7 {fe!0LnƜrBc\T/leu;퓉HZ %n!z%S+1 O oYm˛.ܽy{|JF򫕓5QeiËuXمn\ׇyZ&aV;@抁NfȚe7'딯vUzdp̄ݛh{qחu;1 3:dl1P ӧ8FXi Gc=P@H#VYba;'Nnm7xBQ3$4-M-"(,G{wT$X"1@dhӮRɒs/jtm7kU:HżLukyN]T0iڛ<7/ZEb+bk|К,pX (_t Uu'6 {;]cdXxٶ< M %V1Q'y*_b9h/yh6jgm9nڬ2,P]LjyǭW\gHPNݞy:N_e+xd\1ɐ^(NfREQՋz WjV zHѶ 6rR"*i^e&b U2M?Oُc{-dLٔT- V-Vh)R~Ȧ :3u_~_g{Ö8(J峇icvΕ ?owg8!R=.{DR}s>}pJZc4}eNGɎ~m !gZә/W2W^.r#J;'yC.o/(1o9 3S쨜N8wn): sK<Gy=z&syFYܬcqdAL$A VhRCo :A0E'!c56C:< =$,%^ϥfu\##󱲥- Qg~!G2GOGɐ[=,gjPx>53#(FGXa>;փL A{Gn'z:?ŷ6 :J~ߣ>>V'@F+LHC^:\B;!_݊bfUgdt!;'Dx?SYSb`& IeL8GmVX Q(8DY)AɆdn w*jB$7RIthgf<426m@LF@1oZbZ,EmӔ-#Nё* #W=o%0Z<-݀KlB(3TThQ;N*iИbE{5 e$ ԌV\pM[0$&$RJqOPaEs}vf0`F죹 ڮhNp w JB!Dӹ Uw`nЙroq 5!I9Z2+LpdN JYeL(b\MuD T;Sf^乜B^u׫D$KfkrRIY+un"E*5-(Li4[Rt8Ԟbchȓ+n#0*a:7ZB9G%  K|lbiy%0 HaEI5Gm!) 񩍢.,q }YGfc.ÕhhaYDwCMl;A(X,R7<[*M)#S\ ͩxćJNҪ"#Nd_\a{jlఀhn9J_b 2 䠙F+Ut5*E j^)uƓpNU%\-h( f$M t'Q@`0$ %H惚SjFCn "D:-„ɷ0l]ci d3 qBiˆū dJ԰``c5e<ͳN+夒%N #"v, X` C5VꨓEcc&D@L(ai60'A+K08|6)BĸXn:p>"N"bNeۥ -]PI U$`@A1uڲR^3MajؾsF%.0l e hN4B1U6T\$P޺sd]Tr-M1|*AMp2ʆ[;X9dPsR.n/ڞ'CM /[ʤb Tw2d`k*npPf 5p+a6TF24вOuܧmtWW]tQO'* m[=d!c7BI%V-Bwе2%ЬwܧܤѮW)IȬ .i'n.ztT:^dݺq*#u=66k+1 ʧ#҆!9=Ys'ii1Ц4f 5[ԉ2Ź몑beeLwwcVmrn,nΆ$ҽ3:梤$9{Ewm\YuoEdoJ1 ulڪr _3w8 {C¯Eb{dfjj47X,aQ U;4U`BLmyp:[{$܃-vkTtS*d7<7[q}u!1|3eU3fVԳ"{,l3p n c(g bw&QOLԘj0'Bb(K0%g7vWHxC6I[~'CrHxRIo/W|8>g?aKgޱ|2W?xC]//yo ?kx{|_s7e߫g!{_-R1>l <,Puo}3cmY~Hگϯ0]%1hf}f/_Ձy'H Hg_SH='Vd#az<&{v׫'{#Uh ߂a/~Fكk#BzRϑ{N z߅ h_YNdc_'x~AKomQAAix!Oܐw&5ϯz=쟉$p>i~/k~g!^$G4 < 7n/{e똬U+K̵}geٟ>4zq῍~/u~S{nVU{鯳g[ƃC > ;߷?eb=;=C'wx?s@Í?>~4p}_ś{_S񿗺Ew6=i$b0oZ~_^_i4|t?3H |L}yѝ/W#yxʐbK>ɋ_4w.4]?>/8/}F{$u##؋~}͚J K~r>L#?j= Gi#Pvf[]~c4~S^~O=+b_z{ė}\ױfgOT>;v%!weҗ۳}]?x=T~QGGUy/߷}.a=.m?wT^_w>oN~u7xU,-/0ϟEQ-v|>uv'wח~{_/Og ϛ>KWn.omq/A_=ג0->wgkeIkh;}-h}&$}z?~R Zx?<ǿU}9yάǤ4{Q+6?yΏ;m/e_FA~.Kݻ޿zi2fX8/|=|ܹ~I[P6?դZaݻ/Z_YɈgM`z9>=zCL/gA#km.%G +{okGqW56.Ml/˟UpQ?s먁W,W{jpk{~?kc?A|$l}Չ-\Ht&S(nnLEس5Ivb*j*fj,BhLc?M{:?} 6A֯ c:B?п ~?D?qyכ]Nv)w_)U7Z:~sh>y8I>)to~RݱlY.S$˷ɵCoTl?`ϰPUcJR@PǏ{|un f|_QU8 {#^[=}U6HQj[7j4IPṓ("$M)=vĹ1XG\1' CQ\1DA-L  q62f)uQucF3 /{(4mkHzϛcvvf[t+L)q9QXg~q;Cm]0!]5ZCpk"B2 F]\^?xr^P"ϟ.{ߊq]r\>n,Sݏ>7~`~* (sĔ܍Jƒ~<ԋs+̺t^,4b3=)%vmj--\lZvY, tHKJ4F)ھQ#> BDoL^a lorL`֘gIU%`BCf$3@llAie෼/HF`ZtY"L:B+LyM޳ .F&4AA\$=G$Avo\ ʈVCT(Z1+@\ ֟Z!w M)ǟԍSZO9n!5qz_v"$.Ɛ+?_ːNs4>_%)sb>:Vۭ;IӟK>z^zzy>ۇD5ֻ I#@$ $aH@u1̺:!!GO+Zb9KhEJXI`EeyY#(XB2aTT d'5kvI9\jsl4$3ZOE"XІB2n[5m03QY [̥拤\]DM(n{Nvr B\!L@*D$\8Jtuso!U0SMq5L F%p.H2Q&$ZBz:ޜazOp\͐ieqTQ8DI!TʠzNvrj\`ѐ!H&䠘z t v (3S*=r[uv!Ke0s/VH{[8޳/tɀSMB[JL;xgk$k cφ٬uMΫI !!0@ ` W.vQV2& |{ANdKX3!"2~ $͛}Gzl l|f% H*Ęz 0JhbZ~y" 9@@b jSH-U(OO0,_S0)?UUX>6j_zay.%ozJّ1iP,;hY4· HDQJb-F6blłupC[OYм|i"_b4 V[M1j$TE-= A8#iQsbcJ4<ِ݃`4j < !ـ% tS)C 2f %c7,E\-J!("PsQd$[äP jSт!00C6ɿ[aM04V,PU 4!0` +gJ+ +6V6M$2Lc}6agih94rptRinG~YvӲՖ.{_/xr۴XS4w>~r/b&F\LVhR-,kf@@![i] EͅZ $$"6BHHG,Y@96 , ߎ4rUT b؛=Ԇ0$L\)Pt#,6I¤ۦ쪤"W2:ͻxTA&3>rj\2qo]lDJl)OSE!EzK:ET%QCnt8R`0hMM&1*( %5[:]學!E@c640OK dX16su1uM& d6¢0B omzLU׽ᨰ`+]}H ͵ؽMC[X$0{V :7@0\oeZ-蹱%bt;):ԴM^HIҔcֵc{3í5I4s=sfi_ݲz"?RҞY?'zfy| kYUEKO+ *-LL$464@ӈ+X2Bht"+w^;wQ)8%@]IYYe1'p^f}'PY퇹łW凳=+ X& >=M)H\؋nWEږVd&*PP>3¬PidZ~~NDFho3Ƈ#$vW1Pur}Ml*a3&b{EWym~4TmB?X󲲬4.N:06gM<\ښorF;473(`;rࠚ`e@-="E{187BbVD!wz &Ń kXz^37Av0HDThERPl&bnmVv07 uu,.k0l@m۵:ZFC6;pow^5(RyWi4u5uK*kTQ$ ¡1kW[GhEnH<VFo) 2eH(.X.p`ù-˫4k7Ξ54!t $eS=1x>J썔)]1ĸd(岳q5r3,][ t;Q",i$hi!@D4M6!P&"fTNP$iE4!6EG!HnJE ! $ccn$(g79FZ,9Z[щtFZ֛0MIZ Ŝh,w2ulޑv^cFE+39!`6B@ (^M6X=ZCm*)jDi$ On#A,Xܑw}elYsVP̙i7$:8"_-ȐctyC CnUt+U>tK/(lIG44( 5[JCҢ̬:蚽x۩`)sݧq3ɁzlDKx,U vZss* 1e].M j>ct8ѡm + C^;+1PWGm0uFiGLʵOaW=R6"Mm裔vF< o e Vwm ʢ6" DIzM뽬SF9u7@d'K[5PƹUjzD uAgWYMƨ*p;,: iu8-,Cs!lgnPa*澁@=rL \wo=r,NAVc̫].QQ;RLbgi*,2s3*r[pjˍllpPdZ2fvhwpѬt:vq_]IRcUi_H+r"]+c2:6 R+6Ч ,@P3VhnHZjӑiq9]Jbշt'EVM꯷V>ِf5]׸Lܛd&bzwRQݺaܲu:sCD`3*(1)99d̼áS6FPC4䡳@ne_\`!WQɫ'\8ܚfjfE\Jb0k.2h *0-0!20iR5R##kZd I[4kʚE3 J H#j$0GP( dnTX E(^^ I,r6Xwt֬{౵h+UM !SC "!fmHgdf^obrHwF&p"}Q)g~>_>'󃅷1y˦/NO ; m&VTA;z1U‚N;]}}w 6n^1 iVGQDOpe BOM4<W#!M."SvtdhWVwL=) VCvY! عaD̈́S/زu4vlNwΐk6Թ@$ d"VYIrd5Fqy@9KHhGU`R0ƁdTșY@1 Q 4n6$ M@D`l B&qpM8%Ty"b4,Ym`(:P.Rޯ* 9 c; :"D'ؖ0 P[J!2:]=hu2άDgvw 0Q`^kj. f@s ";0-eᾙ_!#W!u/]:aުѫ 0c-ВtƍfƙeF1t[%ĸ]])6 ,M\&y$,ajLCm5+iZ4 CVgvܚ#H4gP.)ef%t$R8j:U$8uٝmm ͘ˉ様lDH屓1fScJ5Dᩖc3YXb%3R:LӦ5d ]kZ֣R+P &1n<,D5SE C㦔ki#%AW BA)%@q(,Xyj`-:wF͎ൈ g' wzc2TT`c^K:phdnV "Dƻe8ݹJh(ӋHʝ7^ LZѩT4P[[Fbb5tSp 7ou7in^:NL]-)mD4Q&ZuLj H]Ķ9\c1ۢI4ӖQHjֹZ!Be^ȠhRӎ$e3ƷHVX/2R,2l 8if !twVwn0 S16庼0CR; qavZ]Bl9 -y-./Rj5tY#7TRR5'zTI- kNy"}87vF{i#2/M*zCPr& W5ydCB- Wnd3zcL^R&hs^F5nWr)Â& 6.2!3zx735 3nNTBaՍwAE"2]!J1S{w{;سonüt$d@6-|ybt;Xv ]]TήU:Hon Wp RD00:&,eenX$mIvNۮrqr'j92ȸ豶N .PigRB0PzT[ ⾷7:RMg h;ָpÌ]MKe EA TdeX HbJADVeոųi7ReD&G aAHb`38D-Ȫ{`RdѠB=c:vO8ޫb{}gLGwz4H 5l)W_5\Tݻwx-({c3lЖ%l53S?ı,]S[ ,/;`Z+*)bmi-&6[}륭3 2k'TJ"$N dCh -&4Bd k%j቙Lb)Z*11.F&4m!r.RLW+ղ-ѕS $A4$JRR0"cZc1)),A`$':?QE0!҅QϵE>M+%+[վ_M<4UuQX-?P1t_G)'d$؞b{_cIm_{x_.`~BFAXcho,S5L1V g9>?/" k ( i,)l: QA|E45`&7́ !Il܋O|WT\E5vctˤE|~Q $?HF4k +mpI$;׍DFm^40Q;PTP nd0=?e6el^*!{DޅB$0vEfEq:԰vQ㣜6;f;qXeKtAlM4T5`F%Cat\Gb,lN(0 p†:A B  0 D; 8?vhefԨ3yTO(ثH"(DR1-1 R$ge?OYj+k1.sAE.ufu;+˜Rqb5"% XSsex+A 5d(eulTV&p {kN 1歕fh?_]Q,XͨY$ǁH`<> &X& F"H/ AZxЬMrrb YWn, $v-*ZЯ*.: 2e-Bd+j16+ML1'w]{!$!&&1@ JŁP&Xnۺ+UTcV2xRsFN_"?K|aJj DU=u2{7:voD:ǓpVsP^P%SM.\usC&!0bHTGvP*r5%(Ra᩵dʱ&P٢X>9oS`(N!"PO%䝈~J !N͉(``lI&&cYltp*p7Ώ t( 7YE0W42(,C“;))>Gj[NŒeXNA着,y/ҢlJБj퇀V>@@:0b d~ɹğȊTF0QȰPH$# SH9X[U-"dB+$5g/~W<\_)(ܓ4Z9uNSf\#fEqjTpJF96LEC0`;1nʵvfɄy3Pq6Mlߩ`7{[ beqbֵfͬ.QbaTa4e d+4] " HZY[W/KZ;O\WŚ ☸%)? Ӧ(kBI|E?'_;ʉX=FcI^]T,,'1YJ@HJyff[EwOII!$D4Gd; |s5m]!ZqdU&m=Ͷz-LnV"#J _s^_{sҫ,։>/m Bx(чF gB0fX+.+kUPI}]tT-\MM\X̭B.WO48hvQ 5 v% N=(II!XQUC#+$sU[{I~FR "s^j+C%hmѻUϥl>7a,PVŏoT(hndKOK/rY$AEv%!.?7b}~ME|rOGU[ @d/?Ǩ3 {CI$h290V_;r~7& ტE}̔fT- n.,­֡jo>g9/9ܮgn|l|wS j1e U Kxa6Kw+%*B""l*1+EUut asCr9Ld L=]+:!$yKG:׸|DXo.~eAh?{SE0 J/N`JiD_w?ėx&J|Oɟ̜B>X?-yvA@N߃vai.")(q,#XLWw0+H7m6U8J_2=? qbΊNOkġ*![:OVߝy^/>Cϧ`~O/<ׯO=6w>ԇ/QqC%w~WHd§n}~":䚝j'ǯ:(g=?$N~9{}mjVT[`ܯK*& F6?8ϡnJ}}pk`)o;|o+G'嘯U#y׶ܯ£C %OOo$w=}LW^t#??( I׿i_dg{s}~n*ۨ~9czH7[}h)-xϽ]I7nК<>{ĝEI>/6 @cO,eޏ?꾗?oioGQCoݙj \'v-Q< _S\<_/?__?fG4cߟ%f=˞]Hma#mZbQdY}u?S3A?|Sy{gR_=1cyDk"WX|zBO[-zo6(?!y0FU+Lߣ*L+;Lx?/Do|o՛j`Q?w?oK=}W>5u@}پ>t+{HS30Ew2>,>]H I|,a"1‘C2ŬxM?q۷ @Eu= \J,gp>j2hr LLS7~eIY(y{~էOO)p"'ND¾WJO>i/^U_n?y`ZZ{k&Ֆ,4b3 9 tc}rĠ6rn"dQ= %W-w[Y]Bdx*B2*pC04JRVF[ ] *]l^as1=^R0jh3**F 2ش/o0P z%+R^դOAlY)(^Xl1?O Ȕ"Oos!6v29>jȠ8ϽrԌC$M ;0Ab3!dۇ%Tk(dlz؂xfX{O`CϒQADbX cEdbE=5KTz[~g'S%Zr"B! R1TߟyU6bSe{ `A$봸8ʧ]4{%Sٞ,~$r\[oj Bp@}(,RKZ"ꩴ$Oox0 ;N+?4_)vr?o"D/s~"N@ I~0duUCd+:3{h~ec(8ӈwAwTI)?H,PՊ(x\>̫1H82kpp=1OVХªT̚b5\*hAZ6\W ?ڙJقQH( i1G<^OYܔR6-A1jݝJзX bfV ylli6b I J0ͣlbs7ۤA5d֏-Qf '͵PS4OfFc9A9!9 EbK[U.ίT1 dlm7e0DElfǸD6D@6]Yr60MYF&:.%`&1aD@Q&+2R.\Cf|ThXS ( X4 j (6e/8^5%[{fKlg8rojb%J˗x;\rd#Q *PLT D8W\E~xKUsY1ZY2 WU6|Ikg6MlT6{gI= DT`ANϽa}z5JnoPi0"kQmpphM ` `v&񪖌8|*[lbD"nڪF Db66OS_hXĞϟΩ' y<-)(nof:),źHV,U d7Мt+7b(v6fnAMI5U6DT܌]Xh)%L$K%%g tU?gZz(B$O,\!oQA e锍:m6L[ JLp/17>UDTEDXY=}Nuܖ6&C9VX8Bm(a H'Tr_ cD127l5DB!@ʆ).ːY+B٩7T11`bY#oo 񁃏gnb - mzsJ%zd#G3֦O>㕜rP'{K@@I%CM16pcuǜ\jaƎM>Yē~'Eq0]=jZ^HXV LY1:S(tL(6 (-_7QƏ..uWTr%;‹ qdpe%A*ۃRi\Ddąf1U1Vb5*5)WhDDCH` UD% Dgm?WG'<DsE PD(^XȵQ$ڌg EO,[[ `R뇊} {lDDԩRՙnM"AyVWֱK~ ѪAf7reo#VfdK-b%ʰ}?rӇIh;n+S3wh)Luki3%XZM}:)ަֵbKUa79q=NsE59;9i*"?lfBPdӷ!Jj/7`ܾ:]2 #j&tt.umw].g301UP9_BaiT&qܚ$cC"eB- N\z6N`lh@ RXo65@P*j<0̉6GSq)-_ѣ NZ[D""9z; SAr}2jdm\ȥt+uLyvDJt##1engG3ba7N` l"8MVodm.48ݣJ,\.CJ-6hu3EA*!a$" QA 'C&FeKƘ^oR FAg`Y w,S3 UQ!&d [d^j6ВvBD # /9LL 47& h2k!rdypCF)F\(l졠N` !@:0. BS `ȴ]7U4NDh)^"ÁMJCc`PQIi ;]cBĴ`99ظ6`/&ل $CtNg}9|,UO-V.:[O̳'CԝM?b"0?4,Ee$qP>?M(BB煉v{D;c) @qqH# M%Mь4BӬfmǴ-ݜe)JZ`/Xԟ-=Yퟄ '@+}b]-$@!ARN9PZa`) F!)$eajn`\‘ c S+K[;%߾8,ogG,"kP(Z;\uoL!Պ@/-ST$i$) b"!Zʖ.H(,)IfR!f- uY b ,beYBɲ{;{!<?5~vUA(, =,+{Zˆ~+U#_?U\ tΈ)RrҖm|Y Bd6B;FlbAhIr&I`R&D(؁4ʮM6mhHl$Ĕ1& 6ؐ 6$4ĒlHRE$_N5* Uvze9k3}*qWyk?¢/)[5JԆ Np.H7ys|C:.=8̠iR24(Q`ipQv] ޤ>dZJS\2Ya_gg$5̢0ixXrE-;R0{Nmtz- Փici4%Z,IU=!1ט5R T$gp]Eŧ-,mJ]r;c7iokPB< {I~SҾdߊ*TZDCMB`([(@w^P).3*Ub}(o5;?Cg Quv4Gb#DB gB/?&D0,Y`ٻMw&ZHI0"#9m'4%I3iYe"j)` )`ځ @չ@`Yqd 6Pi1)7]iZ7CffGZqXeؐB+ C48EZȋx$d&fҴȲE["%K`Ø$GY}tuRadma#F.XN"0@!\em] YF \L /z'*bYˁikVڢĂDZ(=FIwRfC&"L NlHhBqDY8``Oc@pCDL4h4cf)V+)Ntf-&aMDT!0 bd˻R P"~ |}#"!eХ,|ipeh 0bCvYp%bЕŁX,+,QH)XV),E B,]`H]QA !2`jJr&U+mhl n6K`XT%K'bʅ2ɦMT&SRG ԋrքDʕJ `k:h{9M;*JoZ 4RCd!5&|TTmmu,E44X‘1BI"D @2&TE,)de((L"kOQb  5/;I'h9i"L,Z7qHܨ!h~ O s잝 \r@Aɬ:D8>׫DqD `0Q<{JxZ nŦB 9;49 +xv`l噎J+b`Z 6Zѥ#`sFVtdJEvfʽygJHcLD4@kM¶t + ī* Y!-04vRrwDb ,unMrݱ&`O=}OEU:'㊄Z$1i \PpWN#6%ܱ帍3I=ٳoK̡?GDF AZ!#*N@Yy}OT" OabȆ}Y)$&"V,Dh(_Ϯ33?y^ueOwLQ=M;伏(Y /^J$Y:AgvLe4ݒ{8.QD<('bNĒll,!K?t1x-*l$p*R$$ZݭU (># '};>T&U~D>E)ky{֦qE?Gm)L(*2M˂ xnxD&r51CP?\??_ԥ)OC ƵVZդ”ŒBĴTB|9U-`aXmbnQ>U *!UAs4PGUW8VcsFU>~NN mЇ*3wP%Wx5ck qߚ0J^t ͑O XޏB!=)NI?R݅zr(US?ֆ]%{WO2QrBfMh!A{39>)~>Q>Pi!=[}3-1C:hfM6؞\ҚhHf6.Vb( p~J~&?s9L2֤6~G.KPei1E2P}|?Ԅvc;O_t6g_ v{nI >'j+᪙T*hzmP\iH_|Oeg_ܽkEO>^]3ol΢i?6?1WeA" $I&CB δrޓ' M \MpW.67&{hm{=-Si>Z)CS ?8"/TIB&+%RL6./_2KbaK&"$Dӕ)C JA46*` ,aʐPZҭf%kTd)JTRT0jB!Q2ԑejL(Q$(D"Q@( Fw.p,lj Tf34I߫W1UQE]SB,mXZhS+ெȅ hBՅV VbHhZ`mmoB\(Whв1bNQra&EwB k 9.ڲ(R 7JE"RMl(L@Bk$lzySlϲdU )u$.ɶ&4&6;6my-fD6 <|+2j$WH{ϾeyϝEwdM"0cߋy4ms/iJEr^{WwYj;>}U$Uz_3^7"ń.&d;+LZ}[P]ױRB-72; B>׀Rs4C {X?0E=|>tqca!"lHhuV:BeD8˷dIwd/TtQ [u%hj iy@\SwnNSQ⁶mҏ 0(0Yk9o*uYI!!??-?H&Ռ |LJ[S )/ff@j;"A]ԀN G;%k,B0 C$WdNsbݬf7"8b &@7H`ːCbɑS;$0mUȀʛE!N`D EXޡ""or*mw7]h;dHъ:N-8V`~x!A/e0\ʲi*lѳfXl0\ Q6'h4z)64t`z cPzD>FNȜ~k{~ ͚CYƋCUܨI+  pبES"3y4{іx`r+I8D kͨEtvsa,Bc1j:ݺ P8فO+kT  BVvq:sn 9+X܋'"Y藕=*A6R᠁;03ok|'.; X@~x$P 1K L ސ..;Bg$vKCK睚)0J #5 &HLBOu 9"@=f3 C g)ƙrqCUVk\,# ngSsIZuTfxZmƆ)¸1aTpEYu+В0ʴT_1gX}PETHPh^2 4'0ly#F@j+MẈ&a\xLCy%1$$"KI ЌROO6/ֿſ'#D$MHF7eb[%Q4 gcDП'JUc ~Cp&ϖ.Ex{Wv<:if廖)?쵭uIShکZkWmumW,0(!V,& (R"A!a5R2$ ,Z^+\k]P E B0[mT7hCi8eX&K ) _˺dkY;ioE=ik(ª(jX|gF$fYct a 9MO '_8чo5Zc+-MMajFԅ?ɟt$3-fX_ ¸v]M Pw_,fSuZxP7f 2akg"i}[У*&[kIh-]h|9q+W1*75.Ȍ/mlf(bBbےأ3$^]$DLBpX`ʠ_𭋆Mee+BU }"ٜs4JTNmal~vP`ɚA=-&$;z8iZDҍ8^eC2nHYGQLb1R•Q䫮=u 4VB~~2b ^7Kj6?Mھ7$WHEt;֍0 #f"؍Jʃ F@H "A%dRc# |z:Zprth2XHR(Pl{0@:p2`h<)}'ÇFў]4m*in>S֭lgzھAC]W66QҰ+U;w7zq6JX` ܱ!qV6Io.e(>Ss%iXDsTS/5XJR~Ds=I(&;l֋eP d I߂0M\H""F}\toTGf{M"A=6 r-Zk-am_-܃ڕ̦gGdI$RQL)mٍ4(R?Q%BꆶGKA+e&O2f^'iN pNpT&&TMBZ b ղƬX98?sVk*ָWk^NBjK`^V"Rީ*- 75Qy`JJJK 8U͵)K1BfWq˦2")\iZ "-*STTbaإUTX Ģ &OΧ$7/%0p1I>\jvZO|W_X``ILp֏>6lE@G j1Y0e,P_/sW?swP}kU>eeQ>IdVj,Dı-B7?9_&֛VI2}JYfag99,.ިhj1h (P9l$vB!orrw:E$}7߲uc:/eZU֭;̽[sq,7tw Lm$$.嶛mV/'q#J$ȼC]<]ҢX.kkhkZ,60# ($cNP`]I5)6lm@\1& (aw ''x=ŅD*ϳQ@0f,B ѕ X(i {#.VLVWu:g%ZǷɌ,Ov~ҥJw->^=KBh/Ç[3p2DaċV0^^;?g9'X̵=%{е7N;~}R^V#ՉI}NUQL]Xb-En:{*jȣƧy$w6bƂkw6i3]S*y̹09lN(vOEoS}+Vh) hM4 '2E@cs-ApX`=`^f=}%P$;d`S]no'.t;#QDѤ$@D2srnnfHD)gn 1J1GHvtffRw%M,㜳L{kq=U4RJ Jr֮KXj da+Z\:Ikt9NOe'e\"8C["Ћ_Eѭd]Ȥ]ּr&HZ؇v4Amva|P VZr.^\[3F0ъ*!B&tʥO@L_ Ybq˼ę:Bm$UL;n ys|4q&)(jjmZhT"I.YMhmunfGgxmAbhαK TQqhD:Ɂ෪է6He0@RI/x"lCƆZ.a(酩Mh4 ?t[Gk:Di &5 (hI8#sAZB|iZ,B o8JB1/x&7qw =2Cö^2oNم~/r-e3m+W-raY4=<'tʎ5r8r:@#VQ+hAO2X}3{$-9UJ* WcM;YO$rUJvjd^bSjYI&hMՠxH2aK3NՃ8]9be)BSo 2jhA5Jrjsذ:x9)ܸ3d:h9]1& @5[QlۦV1S!*Pr(ʐrU0,(m9ܰTw!kO>zOMiW[ I1vR'ZyhX0G/-S7l9$Ɛ5zTZ O)v7c<$t ܁.8yHJLoL\fnNmFђM-eu'a"u*tb;i!RE +I@MMڼy QE@(tv aH)G)kt:=l^ۛ HK*$:ҨVu9) - ("(Pܼ p4:@DT(I@(%( h QB R:*]zJ @s4(vKk@%-u* O۸]]۠ mB[b^֊J˕PO|^z=)(JSCAJF (tvcaEt"wg E nz4@Gkt}{s}s@wGYrjG@=>뼂}҆e=*DӑP)FHU ҆.I(mJRhȪt۳@hiM$4 ê`vjfڄ&δ) Wn:.[MT4( [ 2>EUEEWXKvJH{ȦQ"Ja]vh:튌 }qK*"[:^Uل:}|zwNN=zwFoc]Z%*ѓyɹbh:v lCC  ;@:P@:+mn{`m7-ل4ӹmzt ilmP7N@z]vvP<և;Hcn*ٓm$6P4s;*iӛn9]ka-֋ۥm5whwA}]4K\}Z@ h}}/owz'P-`[b =fc݀:MdjؠJ>vvu N (i1klլ2wcۆջNew({k=C7e]4J}zF(:; un}v.Ch {kfVkl& vu駶=hFg/5iV]bPUEܬPxnR}dt26:3[mP2UZjp;.8m/s{+;ΒGW6d}k=}t:}Mvj^:@ U{n:lۈ) w;fھe>XR.lٖ=C Gc@݃45]{^Q[cwg)j5!nVFl(`:6grN@U =yzb'JA턔dѥ o`XhJn|̵w]o=-.`٨[WL'c;lcSiYޮwL9ޫ@T_f2wn UH1mBn*]1]ۭt־ؼ}{usj Gӭ}Y@S w9:֝5-txٙ%Ýkbɭ4Wjٌwkn Jc}5϶>m|x*}TP͈CآLi,`V̶FִٚYƂ׷5s `CntwV35{mݺKw>TK-cs﷞M4mlF8Աf}^ٔYwNOC!pyes&>;mVI||@_lZmi" 邔PM/ z|sm BT2H#L([mM4YܖDaۧ( T(wq/'{ǥ7 5}C"uvfG}{w@6ͥl`PJ|w |# RWl7=;^Q fS`ʂ'iD4522id!ꁠɉ4~QB"D$b)M4idI Hd41444dbLA14 &@DFFDdM!`Ԟ!6Bzz#&#) 2#&&&SzMyMOIM5ܿ}A#R@@VwxWQ_).,vWF3q.=\ʿKISg|T$ڹ7{ݖmWߠcL|p%4_X$}~yO; Z[dGӅ \q*ywSx??1=[zyˊFR7uE(c`ΌG"k, !hˍbo?{.{BqaSlv*׊+0c\fl7~}?@0%4x!VD(E  JjZUZiB;"P E;ʂ;Q*$:?t Av$PI7xBF LgʪcθF0BBʴ Yň UXd{iMA3 DW- wwQn-[7sޢO/LVbuRSvT “qT)G qضZ4 Ϟ˒nmq N408h DpmLpR/#QH12ni ēH4)j E2tR5q#:F1AA,@HK ɮ0;A4΀vd8Hhs0l0]@Eh @"-ZD*V7U.G@XdHŢeH-Ix(sJA18sʺhe]4\9Ҫ"IYb, +QX m`^(8 +D}upz3YΜ2}o4wCyO` k30RywBҷ{xӪְ*n pނ!)Y4:*SUwpDNyH;xKOEHhA }ٛ^#Cm iDZ,Ex 4<%0.FΤ,=[8#KۈX[ذk>yUXGW+vC =Ff-}'i] 3ػXB*hRL{Y ̀qbx`0+2 $;Uֲ zU`l & JKb$Gx4AdR7嵾;O9 ㏓% ~7ʹ~wR+UzWOxw.r(AwNV<r4 ,C*Ӵ-6mqT_2fDe |TPhcZ6Y&͒9|[V U()qv: Mn GRIwdUN:6$yt2UbWWOT!LBnT#62[κ[՛3b 5EU$&h{+ *[gJX^ͳq1ieIvG~0m+ \hCG1^w\KXM, jQ[Us-,6[Q6i#V oyLU&&0gA*٬VŒIݓdKV65-UN2X*qsd Df]@̄W52;{Dӹ|bo"o5| eD(z IWPX(!(X#1!\W|sdQ)hXVƘQe˄io&5Wj\B͌щ1W4^] 'P3@Bhob=) ʦܼc˸5xnDʅ>;lW_^h[ Z^yECZt{_[=!IWC<`yxyh 0CfۀT4൸H,x:7C #m:nNf=3u&hzbP , dGWP28p;;"Baw!p2tB4Ri HWmXUaJ%BbCu rsbÄ0YAL^ƥ{ bWsV1!Dh7CH)h#L"4:i3K.\Qfܦ:^A"쏟&(/x`X^ HT6O݋C7KY `1j0+W 0X $ LHHRZ=S yo\P3PN4$jUIg" EP9;-pk;C21ex"B oHXn2!ZU"ȲU֮XS0Ix%#]1b(JK$  HD#D@ * d$qFurwiF,u5)XYIC@ь7ì:Cv-|b(0o0(QnH0`u`9an(fD۹C &Ws,S2n yKpq ;Iu IMg6zrSij:)pX)Fu Udm1H Хz*'w i̡f'‘X})EwUnlCՊiJ CUй"W#+{|mw#:1o7pxXƌQ{DF C 4066̫U2K71>cxCKG[Ô+l{Ob] ^S `tcB'wyW|o:>Ԉ}kxcS3|<0U{Ɉ luzGnuNu7et[2. l+7;yc7sB)`cFgh1]ǰM6>HOo|r]'5˺9"Q=^-*D]{ &0nu[6e[gmL("qIIpoW ttv8p\r[yf\弃3rxN*ӕ4TЅыWF 9.XP#f%ө;$JzHM$|H۝qrs@\ /{p_XvGlkd2쫶&@DHZ57tt/wcG}U^+Vhv!B%fI͝C{|<<2*606Vw!/2 SiЙ2 %@5i{w@eoFFe +iEU|xd'Dp쀋7tuNlxȅJ8.oTr ¥tF:T7xVfU: 0ڭ&C;)Y.ݲNeqΔ T [Ws8tr6nѦncLUgxڟ= BݭԙteUьa>y7⸅yY b6(m_Q;4KIþɑw27 ؼ"\YVnT~0PҰ>#K*{{m77Wg:YS7{\OB[LdԢGA9 vL[kF`x̎o-( beʮt6w Gv]0:(K=YVS7Na KmCCV] 9k(WyX1>N32zog4 xW\V4]QYu&3ǏGK 2(|'u&xi  칔ZzC'Dƒbٔā1= h/C,amf Go"jAk>Cv.WYʥ ʐGw2z*ۣeXA<K+XG.a esIcp+@QZꀒs1iٵ$Ǜ/B7o 8>;.Y!bNM/ 5Au }י޹+-n,KCҚۛ<,)Rn6-4Mzg0%]*Ork` 0Bvۿ{tZ[Bn k~Pr4 Ci#pN\E1b)֡ް 4 % i^k{0! }.DD-cZ4m^n]KK \!VkLœՍ\]HpٞWD=/o B{ҮAX+z*gȔ: ܠÙ0+g]V4l w,>ON}BgD :Z{sɞU8\]*X:]1Uf"tvUvd]NSN0<9uPa@16}M|N $ u$ cD[[0,M_([EfV &8p {[bquQD#W`yjKv#W~AxK]|dzl0nB2B3dy0kZwx퓥kO lipFwHN02C w2taImiF*6j +L@s<-{qg.KtaBjC]Մ WY!V0[tXrJLB fy3`f3BLܷhSA xcdCv]K{`(YçWٳF!<J wHA(4vG~< }pvwOg ԡI !t8 h }9Ee+ʰULu@` Ц^)ǭ2k9ZrsBw]AQnGm|Q#'A;KFV"j%yOYr0eYdHh++^ ɝ&Ѿ-ZU,t(r9 j4-\GZsh4ǥ o:e(-,i v2W>6>y/Ma])ȶjܺqK(v%֦tC2K:pioK5v|:σ`t}HFJnc@_E+)ѪԻ;a NqVmsuYWU"9b+E;A{+JZ4!c}pmܭAwnzP# 'ysݗ[U6^qudC6Iލ9\{}ysXqr&444s5@ƴ!0H/Ѥz #+7Y9;dٙurʈ3p |ݫ >2 paeyy myel,;˃DIڬOwذ^f6i8J1 jJ2 zCx3z->kb `Ͱ.ueScMH AuF7Wn;U6sm︙{7,rFg% wM3deb Ǣw{|GHHڍXA]vˍzs7iaXK@ `ʠd,ĮhQQ\ųf*TY!vrX20M;,b& #iN. =tPj @pgiO&VooVϽwInlJ[R9{c׺uRq(9qkvm'W{9+}s4u+utWz{r]"׽Dnm罱  yS90խFgvkQ{2nn{l8sDKU*Itphʪs2#6~Cݶ(#f\.Up8/U$w2iHhK!b ׶aUdy(Rg y`SsX:gVdϸM, _F+JT{)\ooC1WG #OcTz>\ ՙW9y;aGqۡ#Zm;p =XnEVs;N 3*ScO*\]wG w'xq+u]v U_ L/*w಴jlgu箱٥z1q@Av 8$Éav!dPKTB8/ݻFgp† ᜳ`6, k@⇭W3|VY7kBg¥拖U҃3L.%t{3KFV1( bȩstjM{+MFxV"lʱq TB8u l/O31ww@rP@Ãue^ޑ(4-GW> %q';%-㼌gosFX PnokyԧK`!r*>&Xz=zn1IACxad~liTgdc43h10yw%+n0.Nxޫ9 VuDS4R)Bȓur\!}ތ6p}ڀ a- :՟ syM6F]ކ!)0M˕~s d̘4U/)Z@b:7pMb1u;<+] W&xy %7Qr"qkV\(_;x֞)p598N7xUe6N#.wpFoit쮡ֶ3S0nlQdudN^y|![{r=Ĵb<͋V4MͲyl۴)z M uXÍ8. N oC0 "(rCqށ&A,D5ip=՚A9P!v`D 5hBx mG`Pnxfv9?^D$q˻75W3vɣzHBGx=ۥ4UʗDS ټxCYgװi@gYQ'h^㧺sx7y""R7ʂFnyu'aWٙNۼ5l6ʶw6ecS\:eÍj% ƍx[C'8]{νѯ׬_n=ӵpW}DBe{ƅr3`Q\ׅ \&t 8ɇQZ5+G#bwxf(D:˻DwufY$v\f[w1o8д{޼mN4|#^B6@_h&ogtcsrИ 7L֮U{\t2[%ᰆН/p;eȭ0U,(!N?QxRt%9An)Ǡ8eulsDKo]43_ V1M1@sfɐ ʻ1, b4תoݻ "L:C>·۱fdZcsln3/~O :hWOywYJGQ $J5o˒<.6,8]i4v=Sdxj7W\Ev9-,8GEZ(-U]{ք[fY F,EN$\TWV-,dq,Դwt +r-Xvd:"uŸ v\I;*!aZ,näYV靵Yjbg`Q&A K]uG< 'xqGM`3yQF+׫4>鲲d}/,/]!}RƟ.ԥJ0U͔~Av+|;hտx! FuHT9 P$Xۭ6I%Q3. uOTဉBbAyNtRk^ǴkO "/by/ GX̛uc*03بזy^m^u*UhϺfYJW9ː,Ž˖i/p>ks,Z{")l=7e>nJ¶ 7:d h7T+!X ^煫" >] nw{zvڕ;"%痚F`t;ỳD"wOy%ӆVxкJC+tp]6%v6,ͤ2ZعHju~sZK`;imnu7ٵ+j`G!%sZ+noB mmŖ7=Yho#0 daRL) lf"{gttcǩ|)՘fpB'. |7HNqȷb#Xؑ0ɽ3%SMJT͉$EKBfxY7$jb *x=(IgS.Mܻ=:Wj:*ʼnH CB5@-jmu܈B$RBT2!E΃u듮Lmhܪ3!Q 7UBstErh2,Jn6 I*6ĄJ2 4 K A, C)Jbi7N9y;}cEoz S~1bVuX8ȗI=";{u|][v4 Bp9 !RpXMfp5 ^ڥB:w0nbWXZtsޘzY%ZԻW[Q,3`/4lZH<;Na ; WpDiGv\ףB0nDsF(Tup=4Jw3gZ C `@A +v*\~Wu\gMњ lzu#*vs7hW /z1򭨝,k9{:M̰;^B=/ntUuv+CMk;sк}Du7o.v̕k%/ R,w5U2WS {ʤeyaZ{a[k2;\˜nث彛xՅ<+c7Et׃7(ի l] m1F9]0M:&[k}cy-tvhlW8xmA}tX Qn!7&9X4b zg0̑Le 4 6#BB4 9*-˼^QٍpFIε'N"BWyW PX<)A5+w 7^oh;{1is&ff1 : h~;gaەc4S2Yt39ލٗVx`v5·tc]V,$;xmG7GNjl㺛%z[vJS_VM՘%f*ўA K`4Kxޣ8WA"u;p䡗u6E[Pwy7AF9}lcguU-p6^%^8֕cقFGuu^o{Ԅ8аbdٙo벶 6sh2sm3yd<R SyT 2/1=S qdv(<^f {ܻ-é >1z [xN5xkۤ%n]G^˵[%ةhk V9V\0/HD6*PhΙv^e\QDi8 (*TA Y1r8 6!gqhE쉤%BBӗf@VIF][vVW "Y>3yx]{kG'; WVUt]ܭ8cd0^#ݪ'`W>fGQ9>wEUl޻KLH, /x x tna˔6]B!j_GGFfm켿8vЭ 3.r9!7=zՊhz7@ۮ7xen&1Mw^ ooI0BJ}RYAU֕G;h(vR[^ٲ|Ղ1P=ᓺuTՉ`Br[s}ޝ~>ދ4] 1J$nUVT{{CS'FpovYh<S{=Uope s)<{69Cxk-[m/ 17}T6pP#]7]FzwX>%T%M@e!).6<ܮO\X9ݗѥ{-;̵AbVPedje?yv"=k4-q#u0 ޯUie&3y0-Yev%:>7 ooo!s,qpq`> +&7ܥn%kasȁAxmw6/FjPeֻٵݛCw/n} MwFo@\UT%m(U ]t=WtNX VMwT2vH{2=SG>5ef a: H!i΋ FsVonj"ʛ gz# #o !V^ӵd2T2$p0FRh0[I@hэQVrU;FWu[fdB#\U^jAfǖ6p`oKTZxiz( <S"9Fvu:7 יeP-݅% h,+;ta'<Wݕ,T 2 6pcoĭa0LD|[zH 2Nwx_ivZ=y2^֫ί.@ <@xC9+vK/Wۻ]?W OΠԳ0?NM`LM1qqj#}Pm܆tY4]7{AT2Zm@,i%d1˜gX&eͭ.lfLзkҦ[9Xu6{Hӓ.t){"Q_4ެٜuBe!}݊uUr/|yk&:8 ݹg'Hd'<6tnQy!yVmvN2M!w#;KK[C]yٴ]{tb[{"!:u/DBS6Pw!eA* Dܼ3gl8oPWjKhMZ"A)n}VXFhZ.&{{ IQ v*!MUW$ˊ*]Hm gFb 9T c%$P]_XېHm.l5 W]0ʹr.܄#ނM;*I&z1Mw 'Kiۺa_ T- &j؅}$z'p.9gC=ƻn0}C,o T oa*+rgx} Yt9K4 OT[= gÌ=tžb*ݖyur_qapqbܸYJ=y륀) ,v4\]q9SlygGLa ,lyvPbV,0Gwe'f} D |0ɵv ƚoU׷{r LCQ ,QؾlG^gTZ򽮗GT*CE^ԃ#_ L4fJpcEq F»Za+%E# s-b7aZ֝p{OgŴ}yxʤ*PM^>xvN'JPJd+jNtPu˩Xlb^[ d}vd{r,jسGn,37" I%#@"W!5PvSb0sES}(G2.*棂^ ShAe{Q,st ] L_%9Y,d*zH-eB`S tQ[q5ִhk<2;]fG9RG20;s/&#=.\bvX(<76-; lp94nMX;nq]>YwVn[\^JHp8n"@w}];fuFmPv@Gەʻ1ug2wWzg'mYe8uuu u-(>5;@.Ӓي S-F+uhcha/WRi.)U(ڽZb-Z3g`c "sg GbyD^wC]78@ ܔT{.x EC^uGЖ]umʈ XYVZnT vL).ېD! h1440ovpޫ ys;-2 HC &Cl_vlIfм@W]bͱJc<) Rh3ldC݆2}+-[MuYe tlC;v ੥l+ bX@f0d7IQAZ.ʫutbs%M:]X1.ZyLjd.D+P-lQ)U^܈oi.us\vD@AG^ =YS{"BUW_\4$Od@kn_GLLBbֽ:jV0@4hqfuzPw8QKf.adW |ok,A{^`<.|0Z iO7ZTX.4vU-kdfb 39`V6}#50X+6Yv"']٠۲}j rmDr4ڷ cT7!ܗO샫uk.KX[۞V_`.=x^0<=vpeM>jü.z`[woydR:Yc["r9v$v4aJYͺwHÅ<r^ι5[(WcN}x+!)Q*A`D&&о7h1zjmYxoX4Bc4oո̜m9=w+F t,p4"Zuc)|kz1` n+?dhcx[:yBYGpW{y7XY[)8cӼ}=ug78:ffs##NK+/^um3 dy 32:F]_hͺ<2{ifؙwPox0e" |Co d)^dT>tFȭae:OS Iz)tL;Q .6#kMU p0[Ve Cko)<9CtY rsUs.vVgVab=r6&:_U^\pmGGKq0tx5ѷWQ1Yz:XL Tl+.' `Gg 2Uw-!%EǶvO`l|Vbss.gu?yR`[=tiC: l"YAU"7xh뷘YHNHh Y<])_*հi*hjʵq`ӪGc R8wht0hk0G&CA{uNi@i/DYӬzwuyLtM5K+/.fJA4M ^{*lzHs69mh;|f2tX;y^]RYG(c2h)M1t\)jEw-gbcVpA&љ/n`˽Ֆ BmV5wjGfL5imVU+wy^lƱmFU8 x ަ3S7yYտ`\]{£A3{jnH)g /bƅ*-ޕ6K7UQb`$zw03a F:\vǾ{wP]{tEs!{uHt HZf$7`T2wL7zݐm& `i zGa,Zp8diT&{܁` EZ5avy(\ qC5[r so#īӤX{ru֌T4V5E|zI@b9e|FduF㹳SZ珁)a300U fDH =<$1rlMhLnxzT C~ٕ D!gpXϢu<^ EރI ܹfUW6u*3:^n4FomGO7^u[F`&<"tkQuy'X y!rܾ[کG3v[hX-6ÜL gA&H)6+hA7dtzf*moqR13h/yB1h3a`ޱ* R)UUbksbRzxZW~~=xxhj ` 3 &ac 2w7}!2ngXxEuAt"ە$b[{ݠVNpǑG䙉C#Ɂ.s%:A4_7*GomO\sYg6uks> eaWM1u65;Yr4ݮɬNP]dgKa b;ދV8{- a,O5uq pqI#׎mk]x`7Du3}dv>^go-[xt=Km;5طw֎MX*sO<7%9ӡ!Sے8Ps-&p{XвJRfL p:)aܱGCTw*(/&Geʣz*ҍ$`.ەRnUrV zQIOEp6of0MW`B!+I!~Y`8tTs`iHqNVԬX`ؐ^I zƕڼuo:ծycqvٱs}S@=Ot\S@{ dʈ-U/G ,FMrI}B]YK躟Z5yo iv\:FnC/7b TBQM-5R-Mb`q73'Y:A@#y{xj|~ƹ;%I:K3۠tBzYQՌ퐢-.C&=,K Vp嘭 E" HL@&8S=,60} gKrOn>v:CG{5,15n'k?﫲+5H hr5ug@ph #ۯ/mV^t~yKkc<@$RPo'so4edx484^bU̫d&;4QfXv+qIgPڬf qp׾+}í>ez/8Y"5Q8/.}1bYT2яUw.IytOH݊Wc =e:EDVFƤ[iKYuܮ}Ǫs𐦌!|  *}]{f5TX l qg !PlY]p so;f`8/]|\ȥxazӫnOXz5[3UTy(4]c+prn {Qrgl)p5kRU?_i!yo !g_^w&2#2u0{w֜u`5y5v?< )Ox: @-jxҔR?^ Z?l?AĿ^[{tE0wcbqhDL~MߨxOvJu4Bwf%Wg}L%sehp ١Α^(0W-ݒ>P}*4gVD}˸eW{n~o8iu#aEpRbZo%SkeE٧ Хb-Y6j;;y(nz&!U>[̏>KlF>IJ ndb3 4;S+Cʶ>%ǏeU~$}~ ?R {7bjA?S}mP+]ҲLUd#O9A-&N-Ddc^wv&BLE(iOr0p;Rbr1Ywd1eЦM9CX| JxTHSVPԧzA3+2m^P0^6ì4f'o6(`!;J7Ȯjϓ0. #3g=usz9ș;-b%Zشsߏcc.6WX8( :+ק{aM_mLcE^t>͸UoZLЅ;G&u(aIV&(z}ʙ=Ia!.w~[XN{,ު.g[Z՞mO6-g5A19^;&d '7fl~ppJIJoZˆ)nY~3Cwv9ڑBXt 5Zuh:6݋%}F͆o\~<6c^S*iY>_v15KƂ9œa@mǂT, ?AD}ٖ+`PXD>g~^6ŕkQ;{;m{ebЈH|Irlm_p;9;rQ|$YfaPg[W,wvZ(k- Ha?[V#DbHzraC&ehs4p=Դ r%Q}y&+ʼ_=;<; (C*8m#<ю /+ͩ1#<t;{۾[0;`+nAE$7g?EVsx/3Z0N.A7BCi u^VMJX.^(|̪My=ran?;ȧ]bZQR RVW2}k? Ql&)c}2ÿ] iP2 풌Uj>=/«3f ka}6yJJUw}K}w2I*8??|WfAC `{<625L|ܻRUE˖{=R_]A{8x/վ{5LȨ4K^ysQ](n1UƟ0ga3cij[?#z[˝+LYaI]h,>O Ddw,2P2E%"hKԑ)iz\CN aLgtB3uMPQASCL3ID5UMD $ ga|霝ϓS]rsEHR1%!%ALETPA!R!Bw>Lc "K-hBn[wgoLZk[eSwb;6жõA]/AE|EV ~ KgIzf(Nly5]uEl 5 n+$NWDyB}" >SrĚeh{EOBrE {=8iHkkPjL@7l,p#Q\i{/AICJY⧿n|}!%LCEZqo(i|7CwvI5y1 r>>յU~~.kPjDgܾ]dCCXP9 zM.z-5y|*u4 wm3mDFRUJS86~,a.&e`y؂y< C< `93%ǝ'?z"j_%~ܹPT4csw ;ZNiqU#\:6Ť,=2-i|kslQu1ǵle;Z~eu)vG+1w/R&EI*2 (`5ɮXaF:tԫ^kym9YCJ~n5D]ȁJtFURxvw\gN=?@ER,ߓY~ɫ@ I E * ۡ:6gېPL$40L5#ov/c2Usn/Z+q`d?i dA{Yn%ç紹^m -,(sNJUy7}V?9U1v<lQ %T'vep&B@#\ ],^t3$Dg=,Gҟ)!V Er)ZE70u:B̄"3z3\?됻 '_γMPY[Zn-̲[-a|5B`gIb̼OR>!q=z`Z|\0RqvV!_ b}rsѾ(ot!fj` >;Zu (7A{c wh頻3 o\:yOzjw'Y2vX^g*[kLM|>dXqF͆q+<]xeFU˫}nM\ӾjSN0=vz naCgk7:8 PIg^'w(d_M#RNqhwy397E9HTp ?]=`6 Zp/-LM` k2z,VF9|;Z_I:xpw:WXcl|WXbSoEyAΖ}ִs.sCJ̈́\UXmѱ_p ceVN'wtLߗ0нT"~҈[K BI_[lQ10t8."@LGgg(9Z-ϋ504!"`M Yh_߮[J~TXsPkFDO-zߧRq*6F0 à!#Tƌ6r"?2ªM>uz~EO$;R$󒖭.t3`D윫vRwA?[fXMs3aT*h O {?Ol6e}NB{`_Af+ ͪg\xrYja,[ia:Ǒ+";iϲ̋f)U#,{;-r$.ޭB|kU7@\\V}e\T5=- Y&|{Saqr7^\&+Y^Vz q0'hcYxkj֯`@ɁL1զ: څE( < w".YDKΡieW綆}uk[N!pp<3>F耣LG%3zENuۮC2 5<5QR~ ݸW+M7׫K|yV")01ݍ3Lޭ0b]$>R5`ihA0Gޒ]"G. CI3Wxa38y6yŞ#NJQvX8" wE|~N( _>E!DI˱[[ q/5ޱHV"C]3'BaljVdVXscWY,C/6T8 +1MwhjufrkhLLߜ1&~2dM? `}η4=lgbtipXA8Ɣh1,,%#cl\>n.ah b]̹ʯ'wDJi%Pu$x6STEu:N [bLO* cOk߽g|`wrpug2gbcBڀ G'x.$?#(<[TUK|> gi>m!/W*cy! ,v7^c*ÿ*{u2N(sʡx'ZZ`vkF Ws=ryBZ͓&^|f4ou_7u5rې Á G"2LZQuj8W`ʽ 9VY9;U_>:0TN!͋[ϥ]avծcSn=u`t:^ˋahwc"P,j jEAZm某+/9ySdPն9vwo,LDaal[3㽱d,ߥ9y>?)3@@_`؃Mc6_F7ëtMpzػOL1'<^jBa!l-^U:U!kVqCrt(Q#.;|+4J8i8*hg;ܬG1͜U_X0iR@_r-46 @yǚGo_0o Y#i  a*k*PAn`D?4dS ˥#c^q+ŊfHs> |7V>J^(y;h}S~oyb 9*T=Ne/JD aז+8Pr~˥O{)8_y؅~7.0*):$ʙ }|ţD XYr\U5(ZZnw(3ƺ"`W .t4 2ўf~?٣>=?~̽α35Ma Yp[0&l['k(_Rv04DYezril ?A?u> HŇץZ3|o\e>DJ,Mp\5jOpA'HIJvm^rUՋYMZi'Nd 9Y|VՕew-Nkj%"eA*>H"*l&*'+-TyۗQbs+wʗǒ$[|@'Pc|Ț04tΗ%^ǫ7V8}rsk<x*E+q<Δ0I C%!ֿHTx}zAW; O4Zwd5k_h0a J"(Y((f)fh:6ӗ,ݷS= nRR4G)ĔUi1ӵ=u³IOWYq19 q'̕~L\jx+. jػmP<ݠ]n(R9+|ik" J|XK$ ';Wo+ v];>z?{GDb&w[Hi [IP B1s 9eruѴ I!6$1+č A@ oc!KnJ2g*]1m@w)w} D5rJiǼ S|a;B(6 Mc9#Ɍ a+X𼷵V'u 2 ׳V @#^8 uD7{1J>7Rƅ"{1x{!điÐ9mt0Vj| cʀ=2!+;oڡnAnM/uGXDpls8n64GƀPlzVZUp"[+4 "bX8G3YPdk> :ӫ k5 W1:lW^Gh N^wpqP΃x^VF7u|/#Qꂭ3DfB^*M6~L`Fzh)1n1qMZWiQcw\*&-ּXŸQCᄄ)G5\! d@Q=즶W/0kY6~Ρ }sފ{j/OjOߟ _`yweJ@T EeoXg @mP*L' h_E|o{o[*5Z*N۷3ٰqB`d@}vҶ|:DFI6xqD,#@1Q! Ǎ~ǣ "kC "RD<ߟ=,~J%,Ɍr$g:2̊Kw*^  Jr.3|mKyH5i6u= ;ad;`Ad) g:J0{wH=J,ĕH$i T~4umUas`(^vöX&f<5ѻ㰼!N!V9LQ$9ïg%} EH|D{ -4\~|q0j0iXhtąD%VؽaMT!X:4 %k?8G>>GV/,\iڎ*yϥ_Az3-ڔ|<܏qwLzWGԒtdߛvX<6|>wAG"?7eV45P1W  F`~Ny1`xѭz .r|*H7:cp>+؍Tst4HYqd3bSBiJZꜲ3Z i 6D̚4pKST%m!U֓;yٗYjf5hBF,Gm&bFHQmu8T\`.EN-Es ZapEmm׽\ߧ _Uu8o9ٚi |7nԠX|J^vXwb5¼U}l/KLz⦸uAZءWOI= r.PKXIU0/֭%|ޡdA$xGYGifEy&:.C569n/my6G9~PsO}}4dsU!uLX&\ВQTeَH$|y+pk9VSZƘ؇anN7f\ ՜F$h氄V/(vKƎ0R_.'S#9=)]#742b\}{]uZۈ͇X4-1x&کmVGf%7%Y$1k>K%Z=̗N#M0PW&e:NRW w}HSf y!nzǿ^u;Q0jAi @kCyp~C&u&qr.w7$y{y:y?x-Hlރۯ<^]M׮M8NOSZZyZ5Ҷ$09ȧHȸyjk]wĪ '0@Õ{ 헰 9o|mNT:K_w$8=ZZ O=_"8EHCl0po@X}|@1(89"fx`.mmr"^`{3H3BNSp ܪ][|DEy궿#o.Gb`Zپ2v!厗tQPx(f^Ryg=$NCF7^hUWias5@bHK]ю]M l>>3]\2Xȑ_1u ՓKO9a˗9r<OVNS3[ڔXmzi[cjzm)]X]Q7(dgԗwMȀԻ8 (v)פ_ ?R b0߭Ezzhr_E%,O絊8ʄuy-T2K]y w(iPuzH T?`/͋ޯھ=Vحf*瓑.^uo}[agy_մ ΂ ٺGC?~W E I{9|Ԁ50Vxn4`OMg iaG7}jx/!Xnf8IE滢}(#V2(P'*3(ԫ{ |G ,&W2XexjS(E29]2ywpxy R&ڧN)G99zۥ''jp^q^]icKKЧk=wDt/;.W4WcU!Svsaz0T=l(;Zgks+$(^wFdiYF>_Ngk s)k?*^vޞ8Ņ8B7p&6,C-V?+mÎ0vgc0ܐuKヽ sN|[ỻB̭=Sc@ݞ;qпi5ܴ|m A^W/ެtZ @^0ˬfnw""w:j*/z  =ON;őD;I;a< F &3Kdݮ `.Ű 0Tx{ܬW5"`w{x9.P ±Pp*T3T)S6Ң.6K >gB+J,@ J>i]Lq¶^-/fxtx ;v|r&wgJ䗻4"gYsֽʌ`ou*A,X~F11 T9rie"[z}g=X^gWZg?,0{_|ϞݑV7GWА9x>ۑbXp Dxhp+of#үa h*_D@#īe m+[kg;yYGJgo~cxs!o>[cf շa&:an0\gI]>DdKk* *e:E^1vD=80ki쁎JcfmY/` >s\_,tdKZV^_|ѫňa5! z# 5g;@RtSƘDK  9ij*9q֊s̮5ҊifɉUm y y- j1ZSUhs ॅM?%Uz[r]ѽc=E܇^G^,y=z. [K VT0 Qa( ^_ޔufPx"л]LXi/i2&rb#!bTDh@jzJU;pݮ ؉m1n\̬/էAFdv2]Y;{>pZ?8/$O>r2рD*S,+;8Z9 **8xo_ݾ3*?TЋ*=|=g5cdIE]i< 0)((c7ioN)?;O,ά=EYՇǞNÑ0V9Nxm{&n}|ܪ8 zx ryw'0=q՗Ψ^6]fNʡG^)Bo?A $GWjoWkNSxQ[ !M5qEOﺀ>ЁLxH7RbRuS?t=n7Xë+D~zʤ0@y",|: Xf'!r>ί*'UUmyAk “5[깱*([o,b$J%̪/-7s'w%RQPʂ,d2B$~]eR#6A)*o5Y`>ƩSjvPCU!QWPt88u!,g#+i.N8m=a#b8 r<(Qqqь/ZUT*[Wi7Zѣ + Cn2.vy r7+kXXd']QM~rYFěwxv U< i=b"@[Eb#tȄ0al_UsE(T!otdg?Z~DR$f2PR7?CC:7JvA,CS8rM|U}QBhg~&akTY 3ՙ&}+Bv«OCLopBeO3$3^ koiNÆX$Buly"8!0#=/t9&qR6eD`wxWcy ކPjLGg2fZles蘯|[UXaVw"͉#J6fɕmn7M#Gx^_@3?}F_.\4K>#jPi^K gmVw7mzgL9.& G8N*nոwyDq )2"ծɟRέA" hٯs+O2f\krwW9Q+,/e@ ;*}fO9= _aU[.Uf4^[.c)p&kCU&DX,0C)L%ϗzj+~&_Q&8./qA5 u_uk_-)Lk_'Ϊ@Gbiw#W7!yX9 !R+*nhC9yoIvX;gpX zVrrkkޙa}9XY(id0چe1yN|e͋m $. j4o=ϩ埍5Bc߄$3=u;EݢCcB;71W{.׷әv}ZmT>\i " _eXgú+ݸ-G)rZRƢՇfåm3/t&up+^B )2lܰg9{4D LSg^urQolU[?PNf}+K|]&wpV]l #qWJgÒ_ @Vf@A A-K6œpq 6'FfV]oyϾݺiOx?9 "Z}AJPv#ML:%<rR2?v⪾ϳ*kpoBCk&/=>e޸g}n=ݩb%igm bET< tǣi<9͋FS䇸NUq-vVfcAʩ>:ҫ 7"ɱ*;;])NϽ>%ozMSV=m$݇Bk Sp\6ͼDW+Iz2X=r_ 7;!wίhX v0\ y7<.ǢTX(~Vn/!O:F겟6|:}*QT 곈J He9FVǙ+jU_x|R^:YN/3j%@aqVC] +^`a3>5ZλvSص{@R"@W?B1V{. Z_j놆ap9 1] pB]ݖX{s;SuhmuWu3='m7g X3ާ֎marhvY`C+@^ަgCpg:Fhk!a\Sa25Oo3x^ڲ7ϯh g8ŴzԵ6Er_mW;O rh8WX3B=ZcoV7z/ FAD<7;AjL]Y?~<<7QZU 9אڎSSU,3T&jؤ a8>aVyu::[zx h{Ve|*_;R9Li,`8pm@xA^PwM /4;D_q̲xӆJ<[:eɠ/B'wf ^H}F-(f@ZUZ5W ]發B Y>ߥ:B:ELhz"zlQ=Ч~ւ5\^U<<3przG߾N/9p[: h",M~0)[\A}Y&,}6int4w/-m=t~8c\ce׿ nZ}k?v˃۸hIW1?82u (O-y;~yK*c*6; _NZ@{,ixu=?W}c#C!CGj:$B3^^jh.ca߫=мjQ}zeWגr}>w/'V]P!د"O} |` (`:%A˦ݻ(!ce{aO9pt͊Ckvhx9I^ڲ;3R AtNgB@l%;{vҀ%!~dQ4 2`kٚlB'o; oj0ePZ>ˮ<{v7H;x.&fa|3}´u}18Uq'O:{1dd Bp|JW>u*aGQ+ G:gYd_'yykVά0,[yA\a69sR=!q?ʍ+=Tz\"uI{^ *۵rWԑ>>0ՅaK\ #er#jV"0mQY4<(Ak$?~zC8|TOv:1j<µ,!VϑTRMsF`X9/U.lu^64 >˽ |3g>P+gN+%ܾ;=>9_]~F#E`͒T6j㚯^rk;6ԲWci36 4-k;wrrz`٘C!FmtЕsr:Nc +2^ P=Wߊ=W/OGt)wr|xт'{2f {O[/`DAkoϝh^?t,; |ҷ0#`k'eYo_Frt>rkvi?Et򾩉^tD5K ! wtt{2=mOx7GpS`8 s0o(r²E:W iZoz*: / ){k{$.J8Ќ?: C}+Rl޴yf3n`<"f.M~Xg޵oŃ+OnЖlǷ.䧽>Dim7s [>3E* Ag _6, \&p{\9]`?nOR9Cs ":upW+]Atσ]ma<6~^F?( O.ʞ'bn~ rz +**@RdɈת붷%?$CUgj/~@ߘ͞Q Ȃo}%\)mP4EMmJ[tuiQCoLv* ͤj/'A @aX+YbYW&4c0ͱlefaBs"ߛh D~ZSP%Pl$fU滩P $GUb.&Ɂ9M гn+\CC +Rɱg."3>yM!1n/nSִKGZ_W*z E5V:%g}Zl^uJ\'7T?@DvNNOfC4y]tp%U|s{&OD->Đ,֨Ȅ!Q:c+BDWRavT; C fQi{{3G; pvޱ#ˁ\C_'7=_lUo0{ mz?V_,8][[G}-`]&jP~cdۦ{~ r2џ}cJۆ.o٣ DW~2'yQܸX򡑊y)ʼ8ŌY ^!3bo_5~x} 0I"{#}T9=|ޭ;q}68@O$٥K³= zƓ0huWxXm9b+Mz}j>Acu;UCР —,K{&ģ:wXD+sNIptBժTE`wudv͎hU O{PR ֻ9r׎2DR[A`;o6/u2$"pū DڒgFve&NIOo{̙'{&aMje:ۣ:cFQxClř_pwk޳3-,ucgh:We v#= K5ǁgcՁ]fS@ 1_1{_e%gҾus6wb՞~#44 uFHvc/v{lKeep̢חwL i6%՛`P[gÐ zUFV"L_2O&zw$PYoH.C*igkMLJ]"dE` eh"ꛄ;&CbvmiUkH$Ǐ_ :ׂ ^5 k=4U$[ aw;%`ڟys%ׁ'à*)y%Aٚ;2<FS^/͉bgMP`wt\xiVL*ZDc;QǾVq!(ZqI"B$wc /]1]9͓7SXԶ;(* lZ6ED]Cx)`e@P-ؘsFIU_^? ׼NRYF/!A^7Fr[qDcc?]6&ʝ_B;y;qe/>:X;W*z> z*T5l\LfYm82hR'4W! q퉰~=Fs`xPYZ^~Wu~߱S}T+ Ogݐ .Hǀt[T= \%36tI mpִٽs(Zx0( 2 @Fmif8@(( !4==]=]i`! Py+p8Sz4f"GAͺ|ḱR(2H@={~f(1!v/ NH0=/E"&;N^n&Gƫ厖>إ!vjQۿzDa8k*B-)U>  }}21n ~ά᪙pJϹWB2gc#JSp}V5h!(ڭT ,667=u+> h-U^?$4rww<gkFpC:6&-)԰@(}ݨ܊}(A׬Ko0=ӉN`c}vWj(`fgpZ9RmG jPX܁g1cUsvƒq͙׎ ;e#I0hrXa /كU}ת`u+{Ko(OSHK(^2L';E`4OչV}pA|  :fBZ7xh9oBqյ]k9ۘ-zat`-Ȭ@>^!pw>=sU2;w])2F׼J CޭoY,X{ c- [t6xzV^ u9o9wW`~yo#:.c yy)fjݽ?A ^T [̺c_,}>aKقY 7o˻]ΏPWҬZ4K!^JAӳ^qNb_7vwW|&+zښƿ6#`bFWx0-.{+.T4mlja=yN}uiEEE4έ[ C*BT΀ gL:rEg[Jầ<ڋg UubI}BenGU-ѐ4PxW*d7YW/)m*U٠MRu콰 (߄!W1|ȿ'$¾F%nU|"]nUHʹO$05jB@kMW+p k-=ܥD#/{DmۍӯڛDrJLˍק,D+֣1/Pj<=|\]jf ?'@7e@M_ v,5?̽ୡvh1CsʂZ=CE,dl01NUT`Y{kpx=3в0*ءU{])xI 2bB"Т5;êK`U:|)D*Lӫ_ aNU׷Zء&ྥ̇gJ;:4U1HQMh\!XN跻گfx3rAvA u}~}=] ]{f"vP}As5<X[C ިr)kkNMaG ݖ/~h7'cc.pπ?,,iz0|KǭVu[N^9g-Hjz*$\X%#1J3ct U C*Klxm -#MzkcĀ3N6ꪃ6d@I[!kVrٍu =B29>UK`߁9gɪ|h{-1䌗ksIUb;fN!AljvƎ4m`D4zÛʹ ϶KY~wř WBy x7"ut59j;(Ƶ̆anwASQT]x.FOyOo!:!? \.u2ѝJ݆;<θNSղ sN,N]-h1Ad۵ګcpI6Ī~L.y[لs&W_{/L},ަ> g~jv Rn+%+1,{v N!X4X+ !4ɛq\g?L?S${jO||T"^У01mi.3GFMUxYj/}TkcO2-f>eI B zhuWq ~VܜΝ^SO',;uf#|o@D;)aY~yk6}x0 /w/G4J{{q-;unvAfp6j_|͂:d]R)W/馨yӸ[{# ڦn|Py*%:A$;a:}Oѝ]v uw,p߃0vƁ+S;c56ӤV6됵t+r\7X}-:klS>Rz9/ f ed9`RY-=Vלq-2*$w9uxotm^|p߽2C(Y)om#Q\4e}@fAy07PU'Pq cTW2bCOڧDrʪZ ysn+ XAf99l5h|S{*ѯn l2 >J~U`c ݿ }sg)\|,v^/KKS+SU>KdS;.vMY|px C^mjOADЈȶϦWUcQi͠[eVCg>18*zl{tL Tٻ8bI]0>8?!On9hŴͼ ih 'ZuS{+PQwA@W~>0HUzٟBx؎.Ƶ0s1#^?/5ZҦmQG6+ #eцcQVHX`߂'8_*^_/,:NlZG!`" a+RISoҳ ǝn=E'k{ XeVADSt}B'3W^'Ll%l6bh0 wuI|< 7yx OC U_6n%\HYAHsyoOU㫭Ֆzon磘ױ[A's!-Gy:]J" ubG¯,!,Fpw#Y׈3C>b1gf97aÎÝV̐ww &!^_zr`x%;.Ce A7"wӨH)ShƿWm B6GadTR߳B фt8eȀ:U"Կ]z:_:lu~Vl<W1X~0A_~%5ɕi@neqG+pRsWrvzq;ȍ`͛:CU 8.՚a\-Bjf<}Z%}̳(HRqյo=)+>nٛp߆π.]Ohed:/`,E`VqLeO}_qԧT8h 2]Oݍh奃J C 93jMsA;^9kFY{s25|u!eXE^lvbS}~1 7m..3& KiX.a_Ī\˗҃+=/^^rRhh AڻX͕wO:utMeg;öc]h^_0)I t(­`_⠽UF1/{d3$wosV i;'–7Y%i@}2՞W>#̜M(i.>0OJX)*(MYȹp;uy}?;7qY*-Kg 5V"^Qμ E# -? 5Թji_ك:v#322$UU @/^Q|nTSwcô6ύ1ڊͳr5N>D-#{LM,Doo. 7~Ys+*`;6Dd@a6tA pI*X;xYL6l;]˂bdK;Ֆ{F\7G`_nW-@!Wx羡$,j k kpg$jW^,Tß:o(j?e )ljua%toLj&MO}k,Q,> C%ZtiPp/? }F{/,C'J/z7.]`yefcח vk0^3d{KUdml2֏?zoABQ pļx 3g>r!~ځoP廿O#dP1XW&ϱ?M"/V  ٮ1[}ٰqV`|0'gEöB}fgќ/l=Y4> 5ePp6c#3w9Msn kљT+B] 't>;5aTἰG,-]kg cǯy% ꆸ}N54aذu[uZ+p00OP N_jŘua#ΤLswoyz5otd-oTqJyL]o Nz%4L_߻v/ztUn, ,"+/VjԎ'p9v}o~}C?QO;wxFauA^}Zh e0-yK_-a<̑8`)}XX˷h29*@}og4\ݽT8 )rs3?FKbՃ/Lح9}NuƯ113@KWF]pˆzp}oEsޙ6,肥gsJZ]7zɑkuj.U~rFA}\s,ԝџuO>Ld])V~dٍLvp\D.Ohн:tl}c nhCz.ɋҬ{o]XZŚgr/Hv(hzxI}1P7uR!bo(w-V,tDD_XH)#hԷʨrwIDzY[iަ|=§9[o}ft|5NB8pEZ^ \ YY*|Մ㷎s|rkzsNu( o6 x @𻔔߄7~(n(mٽn tfЌ8DWFV·WrD}|6;Д506*n8_ X홻%pVZUwׂB3պUSps/i,7j{4^E kT-dmX:fXcϽᘇgšL0ե'|Obuu~ބ"m1bkvP9uDONtc4.g<M%s]U^> Y* g?nls@5y7Sn`vg H4RO{4>Vŝ>{{S^sPYlIؐ]Bk[bif#yR>gقfOW4:] jV-Hg\ӭ%~pʀD je!ucsj`zzNWGYѤv}v֟f`m(jk9ZաEo&zWp e+ϝc.Dyrt.`d {mΚ;v@BUZSÖHyZP/t%yDWKWEjMߒotF. T˩Sy'1*-vVDi]tȝ,ۆbr[Fx߂}|=*CFY;ǨMxD8RQ&jˬ^IfDλʽu"c4\3@9 g5,ľ8q78VX=.O\Qj Lυӥ ߪ|Qn뤑 k ZX[LP𢻹CpgI5;Gh.`yoʯqPpJ?r#T9a==_ux{(AvVkiIo50RCp~X8f&ªw/ל>PtTYv2maIq,#Q:fpEܧhS5O1 \D-\؋} m 0J~o.r*𖘙Զ[WpV߄ n}٣BǢ/z;Fme+-f&^TG۔:ToKÛV ց|k7%\OHW5E9bd#:wi񷻸L-?v~#Rrr^dJ 5{C]Y/0@D? j5 q;ee珷H#ծxd~!]sGD12 { ކmUNA'*f4@ lV+ad*2?^ *~Ww_$KtE8R;鱸qN,6EvB@B&XX+\V4yvf{EV*AQ;.$&b\PO/ ã8 MU.x iyJBFvQ.1|N6K%2 ]*opoF9ּ{$N,=U̬nxxbW8m$Ss]ЧLP+iYh]n͡8ڗ6Óy`):A U῜uZ>^0 XwӤQmi"` }[έ, Pw 4Ʒ6UQk-lEqO3l,Md_WWE-fϷ˛cϞٌUwׁW1pcacu'v"D!3mh 4 ơǡc#n;32޸M&Qs|z[oS<PZj[0fa ѧSK\U ? B^w=`Ϊ9IVibHJ Ϯj[ 81aU7*Y,%Z6E͌i\chQŹ6žM͙j}_nZ*gU07&ﹹ;iܻygԗPC^Bɟc,4k 18wY7"H|Xg)T,|kllxf |3e_Fs& iŃNxb5M+ڙ^]G%4Do9tjR~߈ި6Hy22"&7bݷq+UT+l4+&O#̹;5L@I!;h5 æ>X~ۖ_U հ,4.}վl֭eCu+r`h|Uǰ߰aċ_27/R;\~ukw 6 ?<, VOP06)4DsI9i*q&tRx~U>+B~J짛V^;un5ݏB;r6 ܿ`S{[|;ySy/K706lhݍy7W&CJkq2v駭8y@7Ǣun>4@bu;oW)Q=h>'gLgr{({EL1gd'(êkp8xh́9W2`5y|kAc/v:5%/}9TwY2l94Ntxg&X= z5y6p߄?7ԡCqg~UbEu41`;jРs ٙ ;#uu!'p:W֏ y<5 ӠiЌ2Bl $;+ltە|ǟ߃}ܾZ~&\XW? *̬ϥӢc&cZ c̀5TƑ kB?r~|iyt);cEo ~f6oK056s}x` w~;SqH(F~~T3DJ TA_AQz%0P/yDZfV^pkV4cE zsLokcfǽ-Jt`ɱep6x)fv@:LrFT8}Ѯmti]1s;ί lwq~\-(چ.j-"ve5rMcbDE}#|{w uz<;*R pڞ1Pz7CʼnbHjiؕP n]`S]ǙU ,KU]VC1U:e> oPxڽ}QDxJ;/_}c3}}@z a̭w(׾z#!1.VlsiK_ b_shr YnWv`Fhc>!jUeˎ饬j~ !wύc[P9C}FC{]d[, b:]y[PTC_WX*o7+~~|Xisު5g/'7@!=+]ڻW>k, t^kR2-ѿ{[_Pþ|G:g-}1*Ec7owpo[=PoBL`glLıŎVH#j_._>Uڏ<bn8<3r9x OqZh3ąwm>͖\0s ©bI-W[4'6k(rFpEBAw/[՝ _gbq|`ao?}pvwJd_|!cvV m E5?*5Q;Ū{|}Brۅ.UtW0zꜻ`ոT9n~]Nμ.`UJ>Kc A[ʊW^z-b\1h=I^/@Lo+g#!p.]LX"Mpm} 'صӪdܻW0+mu,µ_>ھѕlui#ϩTsȎ6E{X[FPxjԨnuzsCf+.SlW}3wH_I}+ R/!oo>bhЯ2t`\nҶ+} f}+š˾"7Q^*=㹮!gCP1I!7[wOi(qjXϷAW}ʃfÇIzka{>8-ʫ>9I>MJ댜J̐"ɷӷ+ҕ7A]cgUH"0Ƶhpqs[ZX /1nh$>xE[@W?mG!Ϲ!߂`*meG47_}EL\.Wg|`{c0]EG&y(1:rr*SՂSs4]}RHXgp8CZ Bzd='ps-x__L~Ȝg"/Up~ϝLLsC{oj8[A`ÔoR$q>h- DVb79>[߈kخh95Z tex{VE5D[l=gU% 1xFWfLzfe!Di܏pNЁK] ƓnZѾ\ fh %LM #0ERO8O'.N7$WvnZ\m}G+2w]Wd+QOu>CZ|X[I9XWSvHJͦRŵN{[⶧X4當-BŽڢ(r<*pP{}֮( ~F|:ExCTEWk ߀Y^A'4} ׇo;Uk;np|.{_yО E\݆џgOH.]3WDo|`Cd O\Ֆ*}pU0ۗ,{lzE}mf9 yѶ }Gͻ_/fw /9@Ѐ7Ke-ZӜ+W12I$ ! z"J;)Eޜ&fAs!{Tg dW7ܞX %JY+3~+ G|78Ppß7K@Vj CPC__k[꬇dbȎ L~\g{4Pr^d¬ -A tV֠d{}"sR/`\7wl1)5ϾMcs-xZ7YKnl(c7wN)4(}cl9T|U'߁J3 ~}SVϔCÃ@X˼>#]@*H%T9-֑c}^x[,TyP| * z-: M,XqPi % dQ|+Q_M$ϔ߽&5j tpt}A=㽚7>#Jk5 n}ϔpƇӳ.C#^뵞ף1R*hãD6RVC=T  N}>&9XnuE"㡕CX͋\Wgr1cm>T 49';0o8 ೳCm `:]+qzn+9y۽rnC/BhYe}.Gek}f.dE1V3=u8o2J/FP,T(kϬfښ a}}]>(g`l8Ht3 DW}z C4|_,p @!BE]vߜun/ݹæYiuX`tdci3q)Tޯ<3G [M?xQX"gy-CQӆqN # 8§L_ƚt1F^:ɟUgG7G#dep4`4rc_7lHаTciDU_WVMGˇzϾRsjwb^{/HKաG7P `jeܵvDnkBP3*n@D߀=fCR]lCzKPo RJ-ʾ热ŏaW#;A:Yvcvl!+Cs;zbn Vg̖ŪDi*N2'Ph5iZQ%E! |72#lXەBЩqeYYyKA|EJiy"A70Q.\S2_ncݕuV$ʵedϺEgHxt"BW;U|Ag~v\t+tU8\ 0~_r`T)dKs'zow5f QarsI݃ak1a|t,6CnH1۠AB`:{ߐ>{vāZB'}߂W*pխfz/}*hva:ޛ| >ݧu2#o)_uӮ1}mӇȒwMl4]2N !tC] 2tA"ƃrvx,)lfbum]3*RoKii4 ]Re!@ ?rZSAUccm}>y즷:gZTq 5wC&EXѹ6Xkm g 9BBLw|`:÷C@ )8Rh#}!$cW)x؍;Ʃ!lhW`j*yJ¹1.nn>aBoi *@S&Sm^"ùKz V<Q!:KE'XQ{p~˂̩MR햆-FG8ȢFZvc HWj.LҺroo+mTE[w<*f*U:xÎ@Y4䅪~LGes8ɏHǕ*,ۜ=@wc|#y!iT(Twj}]*W{嬱 #ؑkwߨ8o)+}4gl>ۥ>ʩ`Nkz p͍K>^(/^3RͼqXQzDV^iK;*3[: F( pU ]5ܜ |%~;1D(T |$gN\}kd" 6 zE p[a>z{d1Wn/En'+<sAg&ܫpW]2:pkp{^f',92 -wYy AC|f:M]W^u@ziW@c#9uwlS܇35+n9quGE9a`fLkL.ۍNFឬj( tZ;I7ŏڲ[U _@'~ WWĴ>?<4$} "X٬bz|}N=kP@ *r+9򪀡ɇXVܕz჎72zB8slZB7wV/9, 0v"{ J#bXɎ}w_{/m}hч7u߯즧^y4\n~-(lRM`у4L߭ "^~vޠ]OnMeaڤFqNeo _ ~ωTcKPb_+E+ }@?P>k…B=k].ր @6H_gBgBrWyi طVYLm+иfOa4}{J\]<sS+l5,gެ]ժj{KK{~ 9f>hn  d+oY}e!Ap]{?n'P5kӕ2_i Ea#QKo GH-O&Cb|P9/eUtC&{wtƿ@5PVS̫zwD^"T\k&_ı ;Z7{x`t>_x|)}:]P}CX.{"t LqPcX@t_oeml#:eB3xHAy8c"rk;8܆;GC CTɿڶLo~UDž]lQL΃]GM[x8fnu2.ꕾ":r`HxCv"b:=զd6 Vtiz$vESΪyן3ګWh w>XÉ}ݓPNqb:(83NR| ]wtlrArƭgR~3 d{_oi~[MC~q!`n!d3q?2(h=df a;@$]14vIݦ T.21dX̙.ltToN@#L~:`mTVo]lO:Gvdޠsv[9DYG(m w5m^Yi@7}h 柀+Q-GTuP.}be+OW6'EOx qDÔ  (Kc1 8hږ-2Q?,wt)+075թ+M֎ Ƞw磹;;oIf۫!ݫ8p 2*Ұ*ffd(qy,T ƌӬV*4{iJ29zzYrtKrx%}^HذpA-Z@jNZ׭{-s͑ %P)6[6.,7jpfra՝7>>WVݭ`WdJ(cهz:k|e7{,h_'yxKHP; Aqo@Zm'U !WMN쀌+۳qo.y6:x4;=awB+2ZӵT`ԧh1vdHۅ׶Kغtsi؇FĭPiO;3 ]:|_k0N]x-f̛=;I:?V4|`&z.]=՝٩`6M:|_׹@2"[;C;p>o̓qݭٰ,$7}=Ct`w7KHH\x#1~z{ Es<Ƞ¥}`%Bs+_,Lbu^IմX5}ÞTn,ßYnt 7N_i)bDIKxnjn˝[q7nSbfT߅^[sF00~rbѠ6 ^!kg: ш7(.6X@ fÄA(.9wk⽉`_0rjUd=~̼ǀn l{i{}V|+pi% ۲\\VZnDdMHiBvX;P(x9#whk>[3gt-y0@ e 퉵1NJMN;\q-tLΑ ݳYYw{h%;5ȢoMHY,IJ`lj3B`K2~`*SosP gSOY5QVMa1#,ᥦ!.0f]`U$uu*}6EqF|~o<s9"x=a|F0cl@&b;cIxlfg nz?΢tpcɶ4.9g}{{2qJ yGmڼzZGg'peCZQvdОYN˔oEkwbmb}urmՀsvn_3+ ڨ_n ՘6t wYwؒa9W 13ae8+ŏ]r_9xnG Uj)X lG{C wAT^}d_#&3n݋\wƃeXP˾a`D֝`PP+5vƾK|CZ` !}sDì*ݳڋiPkU9sbyʂPJ4wBw'7X=j/EsǪeSi'`pκ3%kϛ=S;?$Nܭ[XG<{[Nr[7;i6M0@HJ2\n3 }INPϻ`0~T?W|!@]eA Bof']U}sA#BFRyn5]J--Cstr/N>ZIͭaZzXW4=Nm=څFYcsUdu42;雗}; DD6w o.ﻐ!ƴ'V;6KF?U>JBE a;4,ٺO2%h 'ep1t${9[mjMc41֮8w2i5̛s5"MLN2$"f]Q'©# WO0}hh:v`&/~?cR#D v=',LUAa:CT*j{n\NE>Ճ1;;5w(o1ah}ePd{5ȘTGc\|t*49/x4FRZ2<8AjZ. U^;eU[7 uڻ_B[B%5I #94{$ o폄ɪ5,Z0GޚtM]x8;w|== ζ l$ _)֧#5U`x73}-}+K߼t٭]z;}&77-!z@]f;rywU_t>FSchͅW.aPd1.^b*y.uOg; 'q==/ꁽ]UVS]Bcmn$vh3U<ڪ]+p<(.##_}S|E AU ֻEHCw^1<]Yl<e ف[`c:+dCV8; RoJ^q{=0b\wqSڀ΁UQ!(|̘r5 jls{.l;Xt'Wjۭб ŷ,}՞vϝcKڪ0B}TJYVS7ݕɞ8#y#F8~,v` cG &[Eи.{^1T~TǦ yJ.P*]6j-⧻#4t\6d%3Z^]߷ "O?>^M?7}6/ SꊡyD}v[h}? ]>~/ vf5U(Ydg<7?w}4J;n" {~ՙ7xCuzUg̨+~)uXs߯>?FWo>ڜ }_5_) s뿜z# #.d7^¬ˏ*s.N V ڪ+ɒ0]r6oyupFjaQhvy`PS{7},n^PP{F%9>WVsBsO KVC%:XC݀4 {Ƒf;5@zef1rç76g[B55Ud^ uYԞ|~ ^`hCp|E`r󐾽(]SYvZ[՚8r/sCӫW iR. 5tM 7W#PÃ.s`;k1˭Y*{CՄ\t$nc DŽ8XmŽ3щ\%1w_#?vbTĈVGK{5Z[2Vﺙ]cǹ=iE+M֝Z֖^e0BLJ2^Ѭ"|g(jam ۭt"^>u\{q rqx$'?MY1^7ȅ&6Z[*1BP#}aѵS:3웲AKf;ux7ĵnphJsl1u0@0cH%qM`;>}TX#W? Q;$|?-}r;ɻS6&VtQ7jFdg%%9Vdt{ܮN,;j[qXw20Qj+zQ٥fB۶`kw0un`ҏG/!RZ}dɮr<fYXJsd̰U$r~5ߚ/__{!A~_~aE}A "yO 22#lmC,ٶU]/J{>,.UvMWcnSkg\Eʴ_isJe_:|7P6H3@--jjN9}as6/O-e+^SMTOj\bgg 0CɥBOvu@죲ȻѐC?x/,`qzџ\9ȱP4kٮ>KXn7..q.ֶYrnh6bp,/NVRp,6l)W*CnY $Wٗg>֩hY ѰGhwnofe:+W\@srBnRR++^?ՆTxߙ># w;{ =CT^foF"5jGʳ.Oӛ]hubܚBByÞ0Ԅ567*ި[i 6 SXkZu9Ş#F#T$Smp4o$KѸD]. Ɓ3fA1{84'%Ѷh^9*$ cV ^ Zмb%w0H;y6]˰w²LbD@x&c~xnyKuvuζhYeYvcER~bc+D#?E $0 Qhت Oi!!@FH -@l 22#FR҆%,H71" ʀz4h6]fZKq.wgA@8A X©Xqw#ll:D'&!u + SI0J TE*E櫺n~2HHIHAI:@}(he؊iHU~m"y?͞'?$FN=T_"YŌbIpdXtRN a{ =g RS~]k9E4鴰47֎C #}īn/M2 JEb,)+r> d=3P\BȯgJ@q>KʶxdDy~SEI` **W<Lʕ=e7o9tF;ʸ@AaY @8!;tq#vv,dc 2y0$񣦑@.,=9h}0-PihAX}E0E arID¡ϛ6Uǰ™J6#''2w(Y "qHɄ~S:mmX7ᄒ@q8i,g3\iUTUDDdfN`(VS1Ѽ2<5q A 8qwc>nVl^13GTm(P]}XBL5]!3V]ߌrԦժ1˕̆;M0SVZo&Aai}k*\023-aIϥ?3 $"hB+($'⌷%`d}nP/ Yo9=_ak0=h/( q̯aç%6}?IVkafƀn8@t"s3n67w`@ma*] ^k83gd<"[pgZ0f;jJ14xfƣAPc+' .̫ݗt37 j.Z);%ț= aH+1Vh^*hJA&1vB{#`zzM$Ldq]gQ;dՔRi.DWܖ*1%Vh"nB$OOcJGأY=NzCczw\؊}R2 ǡ@gL13u KHIL$[gO<Sx]IP_3~5 ^uîR$Q`z/>K08C4G"q"M d6$PN0ĽCO4AvPF"E{ѡ{1.;pNҳc8ZfeAWOc{O~X =짗4oHL7EXNц3XȯvVR̎"Cg8ΛIQ";BQutyEˈ`tꈃC`Ęq wI$JbsD20L U 3vw XUjHxIDR1_m|eT}a "Ur椲ze=>Z%֪W!Z19 Aa`X`&i\*f +yn^D+.l&G}:uchowt(uwwZpjtéD/P 0$"4#nA)Ih,*Vgcj -O] [!i=*^}7ow&(M+ZՄ#WWgHn{ޱMMiȹy,g,U^774Eui@V4ao^+6lY1 Qڱ9FiVEp3T>Y,|GKFIRM"AHPF'aŨ& U;7/:쳇~:d c_L1orop4"h{sdunko)&0gXڂg_- (#S DBQ`%ơ;qi"s(oe|I oF}b}3xߨ0D4U4IBIu,bύn'Q6㹲vqKlmک^|lvǑ 3Љ{5KSrz Wj5eN#KhNRlqC Ym:{!S1Lty % T37E kXu˘45C(VER:QCX7ZKCۊèʬSuv$,,v.B5܍wP*{i$Cn{b0prFC`<F;j0@$ܲ(O%z;`WT_1;`5P^"=ת8x@!A# }aI+WduT,$Y 3&D04J 7U 0[LD6}NP:YK eV kB%h2'mmfhZ2-SfTZbhG!LAD!.; (l#UlyNe:q4wrh4rd*2f"n!LRFc2XI+RqǤv!6@nܗ Qe@h4l¬(f3E.2V&>5LMM$*Y !(`t#'N=0HpmH";!-.&sfަUƛZim\d`gAްkt3JfТ`"ՂlĹ7TcUƊ\UyE$+Z鉤'V3T]d%hz ;w eR0*E2 :0+k]U†rTӠN*mfYElSM&j[]Fe`[1# t9vɌZ0I1,<.fJ.iai8ɱV%f+mQtq1"0,:^S7vn#fGXFĹDLӲT5qQ"sc 8!QRa$ \ Q#/)GF]0a\&eK]]bi;n;LCI;gI05uE`{d&8L=w3["cA8[ D&UeJ-V (P>gnQ蠒' uK2M4ԚPNyLY4ֈN2H6&"RWfWU4=E:Zp`8 V*w}\=}Wơj; &za <|ԁhP@fHI`&ŸVB?2B:a)uME>bčL C &_@/MP( <5\mL #[2*#(H<1ʰkfB0!U*8 c,g}l^-Qs$x>n$^_z@a"{p ,GX|ޭek $}ۦzק 2{7CkO61KoTg`HI8y\ K#!)ώRɬ44mjͲt*[aӶ`;={qXlIe һq+-%Yeb:q% VcI'H9ô.ti HFx2 /9G[`7ƍj#wh۳ !\&+ʇO.B9A$${k2 )E>v.H&ՇHeZcbKWa8IƜ}jjkHKu.o( 6p}iXv!:jglNt 0;Ld<˖r$폊]VbLNᕆ0/&@Hçkd`oG@9x;Դ6ߍ`|Jd6XtčI)};5P+Spgo!bW 6ΐY'0^ 2 gʫilih[bۦʢ>bWh`qAr#^@jmA ݴ444%bc|3!\-<94>ĮA M*iS]`iS 5&az YBb]+bHGƛ=k>21#m, mGͺi`hﺱz Y=OMt_y`Pxچw7SjVMa9uA~AMDy­|lxI>RåUQ-@q.8mZ :Fډ),JA:Dq|mP֥gEa 4BTm}viikXa'+yxM,0ٗ9HuM|Éx.bo-tXy pF5߼1z\ab83L |榟+te2n 4S!QeIVАZy'l; Zk~Pg^Ͳƹ}ol>dĨ|2/o癡i$F{-k㤸ax񆝡MgeByB^z'TRT֨ot|G~|=x6K!lVKlO6oۤ=>#jH5nisQf|@w%|),. 4?52Wd~4all儮_]5'釱 7ߪ~,*}U=ZXZm{/3A'\.3+}f7|k `e5֔wO/o"|zm 'oLya:V6av70=69/Q)Z/jz\gy#/^Ҷ֪0Fl/2ъu}JDuQR,2 2tjW/z/)4P@,>}PŧMq+v>nZxh:}4iϭm[D`,^^sG(>1}ZO!']5)ǜ_=m!#|탊 d=̒u2 /DZ@$†> ݏ5>ÕbaOO  I7z1!AE040Z#"aIZ 0je|^̯H;?_v"H0Ɏ?4ϊA"XVDG)j[IT ۔H9P+"Jq>Zp}bQ-?i)Ç=aS=WYiӎGE|,k1:-D} 25g&)ww=;%W#)K]dEf|hl;a]MRf=rBdo& ftCFOb9Iu"]X>$'g^j[+?Ş|wCdR+Y+[D0;Tnp9<~4w?}{uR+54ϒ9BUy/W`}!%c2i=!:'tkR b 7DPO֧R͞Ql$s !Y̐}v./8"]h'QRFUyt24f"\zH,eXuW+@qĶρy2 \R$DTqWr9":}.KznW+$׷o04: Kv]=xIm:k*%\Lo OR7m̔ IU?O&zp|6+]RndJ|-1F䎪 ~L28!pN1eȅ8#r΢ 7:+#k.<蟜pAu~N%$90}s=nf\@Ȗ.ŔS/ 9h~7ǯ<ޮ~qMV}uʘyʚ`TIAW$B-}C J=auif~.P2oNFJ7ذ DmBϖ~,6'>%}X~31! TDcQArdckJ"?>y,:~E(R #mY~8XY;:XV \V2=(xXwXc0z_?5NF)!0"P}>]c.r`8uFXRV: {#H WJD;"y}g}8[9f5,ࣉ~,VoVk<0P0O!O  ?vɆ^Eʹ `Q;up!# ΪT*fT Z_8( !ON}ڱe.f}1A>Wo:vD ~d9{a+ y+2TG*JA+3߆ &{>7ceȔ!^+0Wqb.Ǫ7$ee ~\]͈*itHm /ZlQ=w)ʬI 0DuEx2#y\1+`PaQf6Cl;J`1!H PFV/؄@+_leyfYqHejz5d:(A箐3}4$q~;*ɨ ]D(;$Ava/}jcYy(B&|pUR?)Pi9BF9G.Bkǀb1ҩ,qfg܍$q ` rۜ̃緣$c>0dB^]i#?f l+Dhc%M)(J 3./4+I2\+M*W#>,(cc _fq@OcSSTtW~4pC=EK3TC0#jgUмЮlr\L!ϫ`{_w=W=Nʦ+κo.0e#pgs+ntcŒhug(*4(H"K|="zVO$vۗSLW«Wց!mNV%bC\)-1b 0lf`LqE7C-sI6qXsssI $ 9*zEv#h5"įK2tqڮ3.%M}X cA2yvDc^)~уWpG>?X0~1OF5BƇ |Z4x=$[ ;-x|uYz^<"Swqn+ nfjɶSgh6D~˻xaHdQoq_O4[ʍ۞t`UwLN}qڞbq j^Avb;K/Oaۢ8vY@۫nD1]jm v5A,XGDb*( (̑%+H:hļ~ڲbm;1F"[F*1amo☢ xUVył}i}!5=6 wL*]:U}SH-JE1("aPmV'C2 ?>0K7..h0Ո{6`̡ 2yCLK"1bňh-0Qaq^^Z2b#6e"EO9fV%}X50$k٘`_JgHMti vPDCT<&xn4oOMF _-}5F"-Xc&/r[mFUQ2zZPf>QC*A łJR.Jm~XVB-,A""mTylF)ꖟ9k3Tλ\[ˇ10>}k0G:5.'YS4D"hPT I# 6tutT & &*hPL")5Y8jwȌ_־ӟzK\M6(52Ո3͗mXy.}0Nz|F)J"*n,DAbmF,Q5X1UZr ǣ(*|<37s,yemFL8gj AV#OMj+i@Ozd/>:ΛK;Q? cw ()mOwf**m6 Y[F:TE8<ҼhmaGv}z\ =ZaU3|aK!PgMԖ> =وT3Lq# gJlbW)N̥㽴be4gR-eQ>Yř^O6XlQGV*- @|5ՃV"hJǧ,L)LM{ّK/42}QUUDCoYuO)34gvUuw˕&0UQƞhPmaڄ$f~YTj6Uz۽[Ɍ?3"Dtј k.3-h CF*d2Row r@o,_g$>:x6)Zۢqwwݣ_YxoMwSb#,L6`[X`bgZ&D_;4_mkiV(  V"fzX~m/3WB߆`(nLTģV0}5C)Tkf&SlX0PIwORc%ݱTPxF"bc_cJΚ!ؕFwEW~}q&6*mDEM3“# z׭޺sZ2QbQC]sDҢz*pBFBQ̙0O,5Ht?cUpP9'tjL:5R2(IP'"JڱwJGł0*|ε؜s.5E0Yl%eE-ZA,h2Qk)TEA?+kǞͨ`5l6\g 'qϒp,Ye o.qTWu<_< 6Q_EZd!w46]b'bDׄPg$?K@ ڤQ'1Gr}$!2§֟L`S>!r;g0yEQ}MNq3gyfrN?N[IІW#6p*BF?o}e{: &K(G8b E3wa6e]Jmg7uU0VJ4̬kvn:IԊ Et1 옗 к4'XUϓ:1 uWo|lL"\[A?iKpD9 - plZi}ƕ5ʶ*ňޮM;ьTz$TjVZm֌3TEm ϊse~JŇmVMЯ+3xRϧ.EN06|JŴ寎WE_kyBWU'C9,YKww~Z>) }܀ҕ,=*JUFQfx̋_ϯn~%:PD]WM>=ឡ@r6Ҩmsc Rcks`>TPcyG`4>E=hH6Z][n (AƪJcSLܮa.z XǵueT0AQ#Fm"J4Kq{duAfZRF9`7aY*nfC2n9X:PxB|7$!ˎ5Dc*)M|޺PCq{D'Jł-bht X 2$2ѠT J0ЋmTP+*b*Vy,1+*@XRQrcr*%\*>w; [QM}(g=xяZDf2TʚݕN$0M?Vԍ,р^Фb!1Xѐ6Bj 0C5Dw j\4hɬP\k6nd14`(7a?ά)J&:Q eY-ڭW7.a" aF񚢠kW^3gl<|,83C8}g(d-a_tɈh''bbKլCB'0Up΄x(".3X!Eb*1F(V(|j஄BL `\R|$0&[9p"DeTyJq]Oe鱊´\ 6RR -BWټ*`ň ~0Շz5">y:av(t>e#{-ᩊκ.Ubw5Įy\֞7D5B 4F,kՔUReg TfFwvvA>/EEhYGcbv3;Jm`9 e*ιs R:(]@oʚ~%bzr9-MYFu'W[fLVm,qp1YDW˂J+- _1Q7*Gikp/낝%,SzˆWW]griםmAؤuo[0Q^8~+,g| ezd_i\ȈR=6G=hXgRBAсU~MUWUe9{x]R|QZ"3~gZщP>xwqNɿiIEYce#z~ו3P&ⰱpBB Gٍy_ ݖ YB* TRta7=x1b ,$]. –yQ5}=ÖsD+l~ M6jJ4>7"DxտL * ' 1D}3-csݰb'bUJau:Eߊb X(#AU}SpOtծk& 5ao{4 L,]Z&bb fbeP(U) ,o^X1Uݍ5̊U}2wU[ȒFBjbfHhB* ;X4i[!J #ߗۂ*Dc^#:"_v[q*S"=Ygo)4f+kfb:o kZm*A4DVދ*5Wq]0ueUR޵ZFD1_%\G#"j:pLQQ`jTET[Jm^jF&;;ae6|6"Jnڽn@KI `B~nd}0d,9T4v1CF?~fBp*v2#(TME\TՓ R ,p~o<瑱^zgaOP~ a4>~#?tr<7W_[h=&(:e/ޟo% UݣTP8Ӻ-QV ඕlO騂 }3>(PN%*YQb1K"{M@b"]YQ#ʥ" PTv>S4,G"0Ac1QF h&f CgcgF!#zڻV*h45K攧w"6ҬUPĩbf.j 5h8Z`Xj-頌ױ`ժzDaY^N ,nTT,{BCؚtu]9YQV6Kb>,tb3oW*:46%mCqVo,>P]b4(`Ǽ2,~| үC)/Y|ۃէJDyoV'M:L)Xg^b?M簾m#ٯYuS/B-kC7<|8φwra>b0M8E1= AWxYMu[ն&gT>J9׬,՘ΩtwLE6BO3n7)yJ{ij_+)g1݋]*&`|[դkV S.#hpZɯࡡ\YXT KJUMO/_ϭ5o4:B@-C".5l(P$A3,S0,H eF! e 1UD7Ac\`orh7jH>z^dDa,` rPyVXaT2HQ9b Vj _/Lt۳u>sM2hA*$$T4T~oNxl5/#_g^:Z*kws@ y$(F")Z$!b&hX5f )j(&*h b=\ӯټfP5Tc=:x4_gbM%) UDֹ\YU͜pE~V*;{L=kF"3QZˈ*"1@kD +W Vi*Qڪ2cmF1& c5KFZV$ UMG^YgO7GhR3z!GNxVu Ӫo[wJ Z>F*(JmF"V[T؇jgŘkWq1ATy `)n8Rf][uf[FyѡѼ"+Epʊe(+]6L:qE|o* )Thn9"&FڗTQF(K̙[MY)(E+X*ֲb}}aj)҅1?R`*ɨDe,mUTKJRJ[0%s0BIՈߋ29M 3yI]-`oG`(+$ LELM5EHYиXe%բ*KaaQ*D,0.iRm43Y!aoT?n\G󖺭J{1.Z|1,ި(RLKXy@@aJ}-lMYpITK iDg5SeuC޳*ZЪV1KF30*qrΌٽG-m4L2Y"|nl?r>XzՓ=SηDHt O_%*iRTTJ>5D *v:֎ L]Β*Tը/Ia Nd&uݫF$!EF޲Z/NEq,Tm((TTwƍ 4_`Gˬ*"*)]--~} /Q:J AooTa1Yn-jQ|ծWMؠTUVNm[,A#D=QNo ͍""+BI%F@QT*!]'GO tm,#2*S'`>^ۘWH[s.|bՔV1Sų}]|$E(Ni*[EZX\l"Llmnb 5;.l"]Oϸ՝iR&ƺàGKԶ:-V]p٩~#GeP 1`Fc@pY哦hShҿ>6塾sKr>5۾ۂ>`'h (4眱vI?rD{w/W4Dχ*6϶i5EFN>\Sxшviku醉4,\gXىDc&8|.U')K{}N)g3bo,j1F"&~W*UnU1_Dt.j|^A\qIh Z?]pDj=l +bxm**x1{& ~RP='O}\^~\2aX?hׯDɁE5pX*  7KPφ_NdRw!Z8߫bƨ'lϊcA4SSk~ԺOr*0Im~ysm;Q}+`bYKKѻ,3.xa:p.}{Α=fL~g5J%R(EQWֵ%U;bycb:!O/E:Qy,ߙ}l#l 5o101k4O''Lf:CbPc3ڿjHnxFBqf*(|4_ՊJ_ޡoE@WXk1nf}"2ǚz[-0tN6pr`?|!έviSONIu_݂xXn"kuNAz>_BbC4~WڳxLGJ1-hm m>t=Ro; ZiEID0T^S\};hJ^67tTpIMsItša.]c)ec1ŬdShWt (m= ټDbY +mejXV"*)G\2F+thl,jQ]GBvQz'i$BLv8MlQZ4~3ծ~-}Kdڧ|P㿜 Aa陟Km[Jj4 Rbղmcy:d~-Uإ#PÊ!UFrd>Fzr#jQEF m91X.UUTTDj xwtIq" C FO<㧕VH@鞝=%_(by0XO+=a}ei|Jxh"`fD^{a9JBX|ŒZ{kϑ>v$qYj#\>D+$3$n|hi 1b0gBVLKl'n:noͬ*bU 2צ\HBs>>^ /L ts׎6-tQ zmj$,9֩wLCl< Õ6,&3:Xm,Z0E.01FF{BŦUmgan4k#>G-OA u.әzsgo@@IAbrF&`T'k`4`Xu˭Cy01HId@W2bRC M0aK@ `"J"fU $LQ.ЇA7O#NJ4r3i iRvJ4ClgI;`1F 7UCAylwb4x#>#1=\xGZת]H!ی ڒ-(LxР>LEo^/t,;"nf> uX0d:r}O;!BxʭVZ$ca3 8ScpAB=s^=am.\gjaMz愋} d$!ۧBj/kPDxv (ly~VϝpE؛72еR/$_V'0: փϑe>n^4h -u4иŻG]?SgJ;t"RmZSj/}S=Qʌ|/aw">F,!^E^y4J T4kԪȓl欓mMr2%bLO"s-a9rKqDwC&IV_AYu☚`om^sT&e59ʧ_p*R|qb<Ϗ#y!1'OxI| uy 'N1 cJUb-_=v4ul o؀وe)v¸k!,:WGY̰m/|{hMݵ[( ;a'Z tydwYzy<`dDYTBB!H &|pFx`(&+XyI6ժLٴ^`oWiFh9Zkoī:9Km-֌r##FZ+1iU ݯ(q ]SFtS؊|4WD`{lZM 8ؖ;ku֤KǦi.7{傠XiSZ&aRxۥ\gk|CYį)Wm6Xb]҄7C33֘)^QyF66إ+.K>R8 g46W{Bch ]Be@ި`tg]sS%[k@{aPѻ`{F,lm4 (!H7k-7˿! b!/"3\Q5Sױ^>rZA#⼋ ^2l f י%Zh Mv-܊bhKZFfI4z=G9T B[2p߻$X_udw!Fy"WuD ލ8(kŶ{b'鸿#?׍~ϰ@y|h(}a 9^{ y(R`*HO"&}í33ҠYZ;2 H4քQ~"t 1kS$2sEԜBGH}8N!1ow߫,XdJ0ZGӀ[Ibr1t}Iy%CpX9s`` yn#T'HFҿhvC#t1 Eۉm=<:=qoYkʉ* [\uբZ=Sb7XJ(kF'zEUϽ*oho@`&ĄaV./_ko݄@A(pO0kf,|p*PHr3zJ>A wUqRsD&ײ ,K' 6e֥yj C(=:1mJͽ-C֒M|\;x0)`R4W3GP x?g밆~j崅غt?Bo<(X;G9K~fZxxe0eg^".NTFGd ȇJ9nXT6V4 sRw*@1mÖjj!L["9n(e~a5X[c%Q{:4 -C~J|!bK2"gy 画 =&J*?‘C==Kd~,v)p` rbٝ4up0yeƑp4etdvj)7NEߕyYH&K!ҡq]#醄agW7*vTާX2;;ղAu0xMk0h^Sj~dͰ'!(D ˫:fkؕm֋n`@<%8u31G "M n8ڟXpEB$:醐^WkS14PLMS ? ZHЁ=hd? 'tH=Wl^H[1^Bn p˥// t=(z~x wL"CP4Kŭ|i[ahAZbܪZ4W q6!Fs~ቼ1uĒXLM(8~\DU Sx 5a>f}? /t}V7E֥ݛ|9|'#7?^}mz1(i& |gς.줿[|\I ;msuk{ Ӝ!aDŽ>?3sЕȞBȱi$V4ey }_,6KEYE~X"' +pL3(WAR -}SyBa&<|JVCA>I{mhr!zi'\buH+Ae ,Qü@5xbO]H+B!ßeՊ@6uAٟh ruab_/YpP/?i\ a$x̝F}Q9쪗 ;ޢΖ]ː9LeD 'e\KV @_W}yq,epߑq*_3Pÿ~ fكy{C5;HV|% p5`nS!00>2d vj6M>d ~Fjg kv1ew҅iJ!Z*hve$e2)({|+)&/GR=aB=9kSЬue($r'7^!*Pz'&Ty]=4IϼPagyYCuAYa~P:?pXPT9lufy򈅶hӦ"+!\ ͬf6R0m9Āh|sK(ӅWREpGMuDj)W3ECc5ǭbE-fGaL24)jsR&e|:~@9b>U)Z3(`ȟ"A`؅:'$)%O:z*W=u"S} Hd ,[ze",;UD" Ws˒ϯB$:x)Ѓ sjME}ZvʬbHsp9K$:~/F(h3u)L8`ф b@*Ô +;5;\wS~cok$<{"f91 9bQ.bS'֖Ozt,7DމIAH**,@ssnB t{! 4s#qhT~Β]z:lW pŨ!0?%y*rm~)c[Os?r25&(>_C䮱85\xk0'mU}F}yۯXBD1We:s?=令9w/mFyLj+_Mw:sR^b$}0Ib!{#\ mtJ_Ұymh)LT|8^<6}aQ6&Jr)сUm*qv8*maSCN{^\C߱7 ǚ87h}O\Zj0jfR|Aب ),=~Z-S)\{d>|>-bH-@:(A*@`ĖXs(HRww[+7_ݿ;_gأGeSxSD9 A2"F%ߪ+k>Q =O/<{0<[=Mn:flxMqMXq'"Z|Te1ȱ6Pd*K+ ꎳ֡BE9pRzJ6ň QLjCԇwhfvvv&61qUl*&QwkvlO4bWYrQTOC1F1ׂܪ"WQKʳZIXtҼq`֥rQ-mm=Zo̢yʡu QQh1"aIѩЖ=6" 3>rjg)k*PQ%Y7iV ӿ;OȢ.|nRӎMǓdM (Vn۽NU*-*j3KDkˏG\RϣMN'HmC.W+ǯg<~=n(^ֵY_EE+v3٦e< CXBpex'I۴S-a~&n*1[u]iA@e6H6:88_?qvx1opӹO=_NE,RY$4H('8c5uɇ~*[ `,\p8`V GYܺsM D$ 9L!c0q2Tr0n12YaZ0֬b>q5ݗƿ47`q5[~3g}a\$af"^Sz~$3~s}+kPD֗ \.|h̥UF~/=|^ 'Hc<ڡEcIPȟ,=^y;+K թ@<%=("(pqeJ? 3ƪ1E_L,AUUK[]ŻMCXmrىEF>O *~ <\VO4 >ۤ He,TEf4 Fȱ@V(1}]ڽ(T3" gJUpy5K5&AwyDw-Uo'3Ue'3'OMb[ 1bۃF,ʷ2>JD\ae3(+'b~ַe#>{9'_,~J Bg!J(pdú%b4X?߁~! <|,s6 ,hd|?U{pesASTxoHO+Bl<!Th/0te+}ky`z-WkG=~=y򩷼cVq:;#j,0aXfqPn'߉7#We~pe$EٌIDd8UR!CA HˢpNkY cFg[šI/!]o7gI;GŪv32>s%Jw ɤ*em4}#'I)_U:1>hov!De©p*24C^j#TN 88rE%1LԪ:azu˒1Qt:ng}ŁGXhZ߾k#|JY.ߡj#[QkWIUfj- ^emO.E{cV-Zxp#BbJ" 'z[9eEM]Zf\ulQN(,P{E0 #H0v]κpMRSX:~̘r@}SvETwJ,FB*߆wΌTS$k`]f`$Eay`'_޼iK~򷿱c=+4Iy:j}\6v{B_p@{2?8-=n`ئg^d2v+Z$]-J4|yFJ[-TQrCG72äӤبt]Z>)ߢc'ĵ$Lg6%j@,t`Ɏ$ b4ᆲ2am" J20||dwr`gC=E>TjaAx(|j5>ry9SU6XaY}e"6RdE#S8wv'_?[PO9LJKhq!T-#azq8p:QG!d~\+~aa98'|`e'W 9}b[ ZYM1n'mKht[tZO+Cb_XTS~xpO7LOl6pDQ1i`T>&dm)JZ:Y ȣ)D$Vxun奥TcF >@A>RQ0GШT}^22QYQWJ3"#҂jGy訦6/݃mA˵)U aըu54}nF\Z+z,Qύiբ.رGTvQ#mV(Q9-FPLJV weh\\"y.;?z}| kzZUP":bGe0R)@ݠwq|0!(E)-1I,!(UXgc ~^ 6k}!^@ѴD16e>ڱtіa(s^I|6emeZ)_7߇gj}6*6wMZ8[{M F($4"}j = 1s8UpqDmT=C->gqB.8TlƟD覥̳UشZZ~?_Ѭr9DRJ =O6!*e7EnؽT$j2FD|9~uNd6qrh"4f@U?PT# ;?(0&gVҶʲ# YNmacA,mVT!` he-RΰPBV#[f-KEP55s&qC%ٛŵ})+ESGcM:HEAQh\pJ lV AC\IT%KDB1g W kbSV OվW`c_6է4S3a2+wLXz>4_g80 />zƏyM"JYǎ /÷{B(xOv7bm܂~Tv^1B{"\8Y(F} !؃&"enO^c yq2EErE^i1?}gyp.[~ZF? Ϣ^2QTJ/_rl ۻr!XizO.x٦ơ|LpD,#2Omɴ{#)JpylDUN cQeiS0k*/wYyd,ђEcC(d۝ X|4ʷCJ^3" b q2EƔbL30g,Ǧ譵d@F@^ҝNj JюOliZAǚY{hvK7&Ƿ@W99(syߟr( :o43^BQt2 2%ANBSG ]bXTȇZ5- *-S4m= q0g2Fn=<&Nj,Ȩ*]fxBv(nHs_s6WVjE-LTKuL7AfZӸQa"T19f?bxnQR)_u+|Eb*o QѬ֭hb,jUL]5ҳ*w]_w`'[<t'zʪJ   G[1 &/mcӫZ&7߈Z 7FW,䖀 t #U¦oox`)SZxMOA.ԇHc`[uM8 Zs6qﯳY` ϻp?>utw._q98[ t {ʼnb&J+ Q1s-{@ƖY`m yz*<.S֦ yJ}-ҊD3h2TQ:hqtT޶(*&jzVspbQi,\~=ud1CDk~pV_0ĥM8%Jԩyo'3Kg9Pr~w{wժ TR9"-<<eRY.%yXQPdS S`us=a$lDG0%0Ggk0oR*hڵL]ZyXn3ZɈ6V)z˧9fJvktڋ7 Bf!D*4Jp2nxB; Is_\׋K-5!1J&xΙÙ|{l^֧hlWW2SLQefmhoاWĨOuPkDxt0+zIrAMBŤ$@; Oe[ qr8Un  UdQ PuF4v["Zeb9z{||] ԙ ~r2U9{WCs޵ֻklY{Cũs=1=jsS9v3ÂATUR" N 4+H9([h%nDE;-d:o =_gѓX~Ё݄=LgL@l$%dO $x/MB + I հ$!()RPSy{p0<j@a Y a6b]֨JyL͟C{3{v`FGMGꑺu^@F#ADXZrHNDkug.KۦPXzZ-{|j*^;7W V`mA2s Z",Dbqx燎 n["4A]!OE=Sy _3h:c#Z2a~5E2ϐ0((a1ʟų-}TP_vwז}]k]7-/?Z%O{4dUW򗢕4.Y1ۦW}뻽]k9ULv䬖yTNVq8566@#&H Nc4">,i$ mDV&`xZ_Uy}y c+"蠇_ʇu~L~DyȳhMɴ]8ﳙT4X9V4 ɲ[|j["t"$vguޮW.wpXi4/vZٹM0\̤&0iFDjjFTJ:xKݣ+ BTlVN:I E+ tE7kVѻ`m2 FꀻM16XQM1a&ق) H[IQiiHWMLf4*$[4zvmt靈s͹N Jpk4ư|{ԒR7P=X5Z60 8e  eY6rc%Gڈ׺{y iq5 <\VN5+85҇՚tˇfIgTGbc3,^֒-Nq؛I|aH9$P\$h3|ohnWbu);0:̴a!C<0)u6[LbFއ쥘yLÛH[ d"?VD5=v8߄H릐4f~2ulf.0-4i_wH _}YaCKmx0w[gxÌN(a 0e8˺ imu:XԿG5K5 pj|faM)ZZh ur&d \;@k/o5Jݱ&Ү] zv1僄mD@f&e7s 46-Ê3KZƖ&G!@ $ Ia6i &?AĞP@kaZkO89~1Q*D!!x+nWS$xsUE !={D_n:.?WB"zPlչ43Mл{O_n\w"ob ^CybFXD oZIs^e/Z0+z~usKH,Yal<, em rM=WԘYtz~16%ϓ%mb!Y6FY|s34hAkvSq8iGYL MxHFi$E6L!a:Cv}SmJ-'m%6h|sniĈͱF6HH-\Ku8=5g3ÍBZgbV6ìJEZZbX}i~ZT\ۀo;_= T40s؎xai<=CXbOl<_Thx6A bšZ 1x KL^Yk7b1['zM't\^ '32GDX 08q,:6?o#FaXagx2z7zl"B, H%1.!^VԗbC{oXk1EjqGec| 723SXO1Z`l(OH< O No5J$<8IJ9jz_Z8> 4'`eő`eݵخ=S7=F&c,-'6!Kb㳦H_#VrO ' BԷ(^eت Z4o!XplueQͨ2G 6G.)۳njZ>>هW @}D7O~j|+e ^Mi0Jx~dd*j)-c|) |Vd=m1eW)H޹dji.>%(9z}d)(1qjaeEP#磣ǝ^xg)>\;r;8 >pH yceJpc>5*)axAT:|->0Z=.fԖ_|<#\~KYB/Y]{.vܸPͼrEVe*hL 9a]Sbu6U; ;L<њҪb!`~(7 B[C >zHz$9NCrc4i#v]~`1@C kF%`ij>aQ"`u Q_ AYA9siiS%Vώ"*X֭LBN^r#qN9eBAJmLlIez 1#C mw} e`~+O/j`~u3'U xvϞR(vʑ`TQ˷mvBW|K?a%պeJeu{FoUUSvN\UR 7x n3zBΨ}wfp܋l#!0af K_t|BH͑4 <$هv #7ϵ5ډ /~Rftu;_MP">Ne.KX.39LTL=<]YV ĵUfv\k)$G 3@W @?ʫ켤e08@'Vj im4>lݑL|CekI& Þr/wC%ԒOneX9DT##0]&b6s(/GҞ7?.\sw5KPbCګL (g{!?Q |?N Q{e,vG/f3^O fs_[XS1ژa-Ή7x[]$$daUEQXؚ!{?$Ew3޴c'vBmȉU qŨ$$O o,Zè`\)$Y\%VdlL)OY3>~#H`Xs6Wb^`0|!_~B7UHQb. D̆_YN&DLFBզUZ^l:טy1{/pu'B!Wu?'=BX(;~L2 fX+~ ?@+"c\~Ϟ,u\u١FCH Ài:[vx0HM7$,Q.Dzv#Oh(4DݯCj锞Fln?33p.Tk#H"b^\[7ca3$xu$4"/Ϯ#ca"xW2t!:]{EքSBH*)Xx#.lT&f(4-{*?Xws"v^Fhr<3NC (_"nDSDeQp9P5LVUrgNJ/$M(Uv_3[6+j2Am9s>"E+z#JCڡ77n< >(J7eټeϙ7DaP̺څ1z4(spQ-D(:就#Mm>&&)!~؏ W$f,//Ҏ!Ne/=Ӏ?e@H@wprs/|>++xe#`]]jiڙc7Ѕ߁ h 0,kZbiz{f $vK;N>⟨Fmav~fF624~5TC][;M&+ݪ"AG;6}[8]Gڹը8#FJ05r}#:)}f5*#0ulDY|tc~.ʂӌEwe\ix|?b!R5/[JulÙ2{QQQ"*X cːQQؙ߳9f̧cO ›LiHʚ|ьLp-]} mtuO)vod㭔o)VhUIr徹֩U WvZceEA5j]f5QZQYϦI*)N,L2ꁞ$KJnxFn3s7O.bxCxWB{?m>ٚE !bY? Y`uG`6'@̪~M:R*[h&SShx1T1%!CT Ek d5 IL?>SqXD FsAXjH֝W&;~)?? JmYBN';WU0%P̅P 00C55BQ0 04L̒U1U14TFL G (CET DDU4UP4TEV1Vf:01É E xfXH) ֙(n޵Ur$9Jjѹ 0.@Lg E)_Hҝ< Xwt$LAQ,M0DPELD舎-up3AxI~2HbV* fUb&&hh&I"JX(a( ` h""B󊠨0D2H3PRUTBDLE $E!vYuCC\[il8T/F~9)\σ )᭧'P)O.w iɂDVcLJ[UXTF.}5(~ vJpdKfWS qTd11Yb(un}sIiVOVTTnCZ1`7`n.>hki FnN3KphNTR& 1MOSwZI$J$GpS$왬fuCDGWl8'iоo v㠭BUHp-H|#JU-+TQF&j ] E545` #FqPRvb#  5sFU,s\q?2wI<`:a9c4JG?C?ӜvǃzelC K@æ"{2 ! U%lΉ㎗r*YK}w#t<݆ƂDy4l3 TZ0;ŨX$E_LJ$IPb1:媳' $ +T`–l,*3)AE$V*&\HȌ*:˖IX|3nr*PQ09(Ĵd1E%[`$+ R L0Lc  c2(SgiIQE+s7̸;a@;`VI0l=]]^֊cRyIQYP-0ue4t*T-d.9!qfd gh4MiY֦J ؁M*/k,cY:㘛8ʜ&5c,U3H#lHt"TR@bRt4b|-9AR4$"T`TʹbմRڋxp)L1WX]amiF`f]ar8+˻X%.}PM~?fMwn%s6WAQyRF!]bPM0e-0Q{>Jk݆{gvŊ,֐ZKE'@C-D>ƬlxuQ'YKڻ:gVjZ dXJ~Fb8%O ,D㪘?}ṉF `dXPr,?8l6akGRi]S.GP21^1ZWiEbt*N0E[gGcl`KUd`"ª#D)+TLLQ`ۮ_I;@B!d{CB}uQQ вi 8@>&p7W_s\1,?ѪukV(\9SßŰ^DgTo&| 5v^Jzu xpӂYی],'}oz񕕃V$OךZTt#l!WmM2#g(ﶱ8vH3c.5|seDTrHThpq1Ab? 7=jLfm4gr o8>LkAoxo#٧#`&ZŜ9pŠ`ʠTb(L##?O`b[5Tގ&ݸui*dj{6orWVtq Ӝ+ ֖*0~.Û}><}d DFHM}T^>Hh7x28&3$MO~J 4Z`/np֎7G[F-x~ol2ėkxᅋzCi6h1-ٜŌzVw;N볳9/9Y4Q1~Dsz+fa\PV~3["_d[y6=((R":ʶR |X{cbx{HΙXV5J.Wb>ˆ\@6fY~-Jޑ2c3JJZ6e w1!! X(I@)n hKkD.5#2l?C5gϫ67(c.sSL& j;b>m[1[;XV5 ڬQj$c (L?f (l hba)$m QXbTQn-2"0v3y^. KL=Y쮥i&ʋf ]!ѮԀm;*ݦ:O\VB5KBOiϻu%:bym# 3Ms eJ;*8eԃ|#ck#0OoL !5Ӡրdl9i,"vҙ }Wθd~,0hgL^1 ߎ1HT |tFf`ꪵiIL“S [*v~)Èq5~ k{X=b_Z4mhl (Xmf߼t Ǯt.jDJ1k̶ܴaEiMa+.Z7aarPwj+"*Q?Zu`TNCBSPϮ4)x)џ鹺Qt9DJO:-f*"V[_']]DEW'd|ieJwZT{=?oVQTTP>|{/ɪQo"??_f8QE\$0 Ci-QsvH[< [j TK) u]Y ,Q* Yac5rRQ<(*X*7E(b &*B,!Xg,X|YB%@Q۫b YFo̶rrx8ICR03 a^fe1eu]G4ׇСYS?gކaiR՘89AUOas$CPWqidyظ3V"뮩z1Ƿ5z^ JaTQQ\ߡt. Q"'<0yh6ALUboySuSDHV9p&?~O\xQ%%cJOCt6a`%߳ giх3rxUEύ>8tjR"w:ԫqU^Qh)Q8NsOd}>3YS %k ~3-PPt{-+xEy/7Ͻ/TiF(ou,$yvfƳΦtl{f13C ;M^de GՁ4GD Pg8h85VbvTX(^u٣x'}L?c!HOg񇼻Cnrf%(ٶi0TJf. 'hM0 t,'Mtc3a ` q>w|zR(]\:αԎSb@d}T5nD`;Z} ;k ?߷ ɈVp1DR~0EѮ50#MsbN7D;焺7;N`7K}B &;x=$(8IجM2VCx9ΒZ`xw0򓔮yK0NĖXlm Jl>06ό9xDlF&ӯ\sY'l3w/QS2Vq }u{O $;OlpJщ DO8p| V{I8 c ; !=dӴ\A-0F3pF EuæHf3C"Ѣa #<.ٍO,Ƴhcq/`l2Z@q_fXan$~6ܾ;ACI ?'"kNA"VÆsKRi ,XP,2a -p&!tӽ$YN%ɶq׎d'Nd+C3v1X`zC{z g =0Ri$ uf' BbCtRffEД]98˲]c nW%c2@Ԇa \eClt%xknym(#SR֋Y"אX|PĻCwG)6qқgbW(B;as pucL qVfa4Ѷ}F\H{knR(ZfQ0ͳ:5{BQ sv y b!B %ăa60pk/MX+F5~:kJ|-4LD{DaI@fQ#k|Jjr`ջfbK~zf{=%cr(\4=wzaX{g30H";2I oM!DP=Y֋܈]Jn`ili|\&=k/1t:$nKN"ϼ x{vO8֙;_Fn O{t`T6uAd|o9S46_@ĝa+6a0@o3zDE]P"u3÷A+‚m `qT3E2Cs+ęD&زQ2t1l=k恰qA?^YwmK5e EUSSx{pO1aMƌX0H3#,.RMLXqͳPRC1: viW' IQ  &sFS0 Cv;dE&!Q1E3߬Zh| |K r{/6(v#\E?H8ƕ&$>x7 bN | 4k-zMm0cEꩯqǶp hMaօҵc~J-6ߛ)/XiVƲ jr*Kat+,@%1EvJj5ݼ7I5D B@@2{..KJލ` 'sm\nϞ։*ث b\) #,qU)\&IuHw|H] :ɰx^/v).dgvXr2\xi` \}wl[!Gj\|biXle2, V4n.i4nX-7# ;ƣ8tel5N(w;\(r $&ɭE 3yqLgXkPbhX#"#|ǵƍ'+8Jlap+*) < 8H7ʩA 5H$x]au6u1=gGh644#W2akm֭e< ۸(֤/$)>fםC $P L*oi.Dh5cʪȲ3M86lAGE,? cb2Q,64)>z.zIC*b ˝d}H9ap c4 ]qӀ jDB B`|Pd^Dh q;\Cnݸҽ4$F*H?gX68P<^_8W1tLSVDLÌطqU0<(ՙB 1‹R)咇2?Ĭ$濮σ]j׽rIK@iKEb!S%W~>\qfY|y |P*+= 19b>C41\#X(d Bptt3m~h:0W0H{UQih F܊5$m_άZ ey,Hf~rT__fk) Q c_UL3 U+YL ^/7MUP:E_s3a;Op#@G(q*ćq{4I0wg(XaB5܁#4 Jɧ֣}".J+Kp6(ϜyU4 vCn$T`@bC?1R^e)鯲A7/dYxc^g]9f~vHX,e#/[[/>̫8rPR(1@fŽ:x)0"ø`n1 J&WUnȳPcХݜiB**[x QjH&7ZS, "eN]ujߥ|  W})~| i!9ra\||MD& (7YSDw4:4G1q# AE `c@HnΑ>́WX)C`#pulB8QZ=w6Eڨ,jV5R5*gVKJ&yKcLsˆ!\j,m#7شWWSaGPJ"ALS{rz\ͱ F!9=)&$Bg} cV8&̸?Yd7&jt_:pBQJ8 =*6Ig5Q9dl& Y(\@^)w!Q^,\ (aTTˎn p(k cqpobWl9BdNkEa?b҇|fVd-(@L-`1~ X`J|R߂O*"%r7j3*7 0.Ԝ>; իPк$?6qey:hBEVnQUr/ ڳhbG mJuˁ?E_UPL$pڅn 44;<`74 Tn0ďˊ2!6 `z]o0q.%û8q*< _| H{DRH+U[+ZC炁\yUSF2.L|oKIC3ƨaJssH]7dq+,ul\ )bñ B0{.Ő %-@ybm~ͫe-Tv*/B)<4 IڣOBUG(ng!#^i,)R̂~xPS#BWH?%)?]$n,e](k>TP; Vz^w>x |gtRFO1QgI0^aRBO7?3ǘ>]AcE;*Og aN9 ="世n5@MC;V|-9 ܚE& c!Cy=~w'D8y޷iyZݭD Uk5sKىQj7&d;+vʭ(y^2-ww;7>sȊ{e ]spOJ;QOaiq5‘r70 ;[vV9bG)zwo'-!X_Yxh겠*T>6'V1K]yVP Lc1 Lms8;99ȀPd0 Hk,hi]ߩ jAXCLzc̅־]ٻhͩ\OITGU=`</,֡$b|%=/|%k}?wPVC=kq^18wB|K+w=(`|1%&jG_z8S&D3I{Ņf DkY&r:P%'gH-PE˶Qʘrmeuy:"|Zjʎʻ2iKAM'eЧ9"$zt`\c+J(!_1 @i!4ER4 $SYZ2D\zܩKϘMӃ3ۥ"Zf?N ڿksUmz\HW {ή9JYQb ݚT+ZA/EQy{,X!OY `̸Ar{TW|3Qz6/)Q>Q ,h>Ws/PjNB!`"yV_Řr,>ƳA]5*İu 8XbY!zblr,k93O[:-uWlaQo= >̦0dELZ f{=_dY>R^[XuSV-us=go*nk3z6yTRQ_4mhm:wSS9*VF7j?mkoU-+۷_Jvϑ7Om>q;]'ʞ6nZ^:zef-̞mb-iIddKigKmJ]_${ՓϠPSX1T283&fEHBElŁAX v,*4(SWCby]˩[e3)145YQדz~7҈'ow~ h^)3?F) >8 PR֡@x" nX~W;j`.3nXk5UV x7txa_ܷz$¿k$eM56֓V"Os#ʑƬ5f[ '= LҴ[h1szɖ4T1_`=@]2q34 eQg7Ceet؅-^(F^JsU:O>uM~şLGO/#lv#ˠM1%NޤkcD0ʿPHOfu3E1 Ku^yOV]0LJrVR9J n[9y֌|y3>;?F#mYt/s4DrݼAEm[ЈkFg^u6qхbsB_L\ڵkWʌ1~דx~[hGMIk.L&ZxoELZ2f|s $.McjHPvK#kS'w )" $)nŅTT6:?B~}#^(e9 PTBf˛muqyיs¾?侮G7iA?P:Y2`QsUo^uJ&^9yxBeu?:rFaVqe*4m[t00fo51,1U<|P_ (Q4Pu3DG UiZH0"(2fdX5 !Q c6wp'\"-jïve0cF0_8d13t$`(Ae(MMQVCVLNZvm| (X bxYfBC¦Κvm_!+< Z +:eyKAUF 2ȩiDP{C޺&1QdXAa 0{|$O((U(iNTAbP9LdE4|b% DWwنE_Vwolh*)tT:ѝpv;?LTޭX p.iX4$Q0{r+piJz;}&/w?~iqٴ kFRbNӽOK݊ g :km0c$aoVrT4#*$`$eKcxM]MjoBnM!G_i0X iE(jE({MI`~Ԋ7rӾ˜iаr%)g]NO}XzdMOgO޻2lPR(O\2Ehi~[oO* ^l܍ZXVĴ/Zikg]*aPBpzyw(&!?0-~;i6"hwfT7:' ?1BXCY. "$ +P&OBŽB xrVQfgNZ;Z*,p].Y Sf !}~~?o~Z4wHm((E (C;tt3dX4.#J澵~沚:H"o/>MM<|G1`1q6SY6 ?dXQH1Tם8ȩcZz\O~^ESq/eClݖfST{}za3.AUQڬa̓O|=D6O\t&O˞?!= J!T8& cb~ ZS"4kِ/oh 3^M25Lb15&d5,J9̇56&E'0T~l5Jj'5pmC.6 fm k8 .~Sjc:3ˏtYr]'&ao42 EjI9:;!٠|o9J3  8∦"8]&QeO?|V,"I؃J&DLU h0RKI$U$Wcir$PSA$4Qcn5~g;?14DD B%>ҁOޛ]1iuǓ0iO>˙JK=tXx$~)~<2M0TX Zzq%"kb0B!ϯ0:AcWS񿳧q.ͮ׾:Zv'xƯD,1J,{$U!kwc_H1_FfSZdtRר69* iÃnf"5 .Fp>O+^aj~>W?9Lg.FeВtڰKjTXĬmR(UO On -(tsZU R"ZX,Fdl̵}oGTל1HUú0 i{ގ|l)W Fillsuw>;BcIf"}*fPK)5ZLh2-pɏDyCIe.ԢQ&/ߘf0f9AS3 jd—r975Si$nz8WFn_!# InEnђVn(+Y)MKFVZt:.%ѓI}jze:5,btaAHR9HcUE5AUDre UI7tܧLjJFs0igwSoyL=Sm"™r%LRSL8:- d[nM-d՘k4if",ȶQ1Ӊ\ID6ŽP48 M\f aXwi\ #$3%jUv v#CjKGd`*P+0H8%,ai$:@6h|1"F[Zi'ipzGXlf .2mx zKN=8q R%H\fu0BFz؋+im%eSa9.P*CJHphB%(k5]K>69xHhI4MR欆a`ħ{vQ!+*V0CEz EXѐ:tr@X5*(HP$LP3f/fd|> Ҏe)T$H~,{HUA' nSѩ1Zųfkt *od*M[&eFEB6b>/z{heɕCzN:3uSFƠxj߭5oV[ΊuUJ;q`T%iⰛyޔד,r6+ {/8W4}m425e AQ ,Ƣ@!0 fkEY4&PsPAv>,qf[Pk/C' 50eaPMWTTKemiV- C׌z6:/.+EbNY. PԗצAuG_ 8 "HIW .*[VEaDi`I11+hbiA_WR, O>(bM'Ixb)4ʹ:`0uz`c, gn'OP\fio|0KTX3v}R؏7 ZXKM0a,pko@yUdCHimcpN%Qc1>LNla׼8_O^cxɜ>" ȐQiut 4 RVxp%Ds!9mH6VF刦I1a7G(T7C^2vԆho[~j{jX F: Vz09^ZZi[^űp,5l\fX W7Kୖ׍e#YL3(kiwv7i8¡l'izHDX=`~6֘z* 7؎5#xug]Y1d=3*@I[mcg7J$jizֆ06z{TKü!$ a‚'AbL}^!39DMy GYpfb)mnTzŦWAxm!78{ ۦ@zhQ^T],r\KL@B bP/!qiiyboX•=m*{h#D J}f:'HD>($J=>[-vTZ 4)w؎z}+="FFKzw)?FЖ[G}=WWH= ַAͦ 93Is@ByzE=f;g`(ۆr|m&bKh;9@L \ixy<q iDmb#hfXd&et]F2p0bn6;hū`u_]?: EKǂVUKM"0(YWP_^f=La*telc43[ʅ_2/<Hb&1 Rtœ @9y AW틺i/XTgI/'>4 "6vVRoU-Ui taf:XYƎ4u2tLe'Zm/ &׏;{K85OF:irж̀lXյ-֭ު 4Ɣa|+0~QpF߻,6^m&);0e$0ea6g9mXXx8k#SWJĄɇ=#yXwk{">peDK*lgO"RI;nlH6Ю6 %vC ȀuG90-{ am&Blá7 *}+:uuQ~Dqf&#y-[*&Ț"ͽn*:AJ/Ngm_RG!yn kD.6=;uy1];]3"2>ͼcUXI% Q64u oZif_fd6lf#"t܈u my6 &#Mg^(B\H, BDz9PR(\n*G6٬X* Q?2,5IXTѢw_x 0 M;0_%Z,x/4jDV`"BJ*:ű}>Ώ1 93iwae"U݆ܺ(bS̔ug  sý,״Vᙲ ^mx ;)6V@:3x.ބSTL:jW3|DH ה]tXU(U]@ 8O A^}AT<= z}D"fT7r՜wiF̤$TX^ en7Ŵy7Ye2"@c8,1}9|.R5|a.(Hj~y{fn9aZZzM[Ŝ "qVDF_"r__9`ڱx@G9;v["J*Nz,Y(lGك*!TiEw>v>z&s[Tl={{,U6$MyʿpMd8QC-BTZVО̡>fP\WLe(wgX:G-;xG)[HriAiͅpZa{|^H/Vc(Z3lpjL8&@# vNX,ln{x}vŁyO2:U,@0Mp(GՈB;f(sPl\k5̱ 3Wb@DjhmT:JV'MD QC8Ddl*B>`\ a舀9)|| ce5"p-,le®6뽷h#۳ϭNoӤ`đ(^CWpͨ6~(.37Ʃן쟞t( 2~w'Hޭk ?} {!!9/H;heQRZYGq۠xK{XwyĢJ!t;l*a/ 's#"|#Djh:k6~sA×_K]TOQUX,!27Ch(8Ek+@h1% C݁0d A qRvigqH~_OjF\jT1YntU O/eGC@{d:RÑ BХ&M!3/\ZaU<#"AnBů)e̲ ]_H4ǵ c\?xW'8oEn \2`|.ᄥ ^+mVۏ1s>??\0WCuN2:rd/(y]œ<\벽֜ٷЎgM+~j4(4gڪK^t,n2y^0$_|gw~<4AHCOs Fpvn5@cl}*+A$C"A rZSv~A(8J{!)da|- kiPrַCN߷˗ݳsЫhͦf7k%T ![PRAo(DDj*.'gv+awkR:;qm"LZp= DVkl$O>VgǓ=Q*C6m}D!](P6qEW 3ޠGrFFV|~ eRWU#vP.xl85oF=S6~.Glc41&ki;1CG0yB t_?$U9q=yؿ>4:㮁bkT%eB{$x/bQkV.~CphleB!{\ ~ScaoA05‘Ȼ@?f5h`[%߰wE[+"Qw;`g?Wvr{eY QJ]avruC+Wizߞ듙JUzuq `| jFES7NU5I@:L#U$pظYJp"<hEwPVb\M Ш%ᘎr+h2FD ,Su!tSfΏVwr54L~Kc|it1S6Q>ՅQq?^Fyݻާފ ?L?!Lm*-aX[`",DDQX|"ȰPao g|E!4`2QMA-YfVQMִa<0YQVYP*cE~hrl}KSNm S}ɭQ0q8o uzA3C?:+a/D`rUC?mceqM1GX_)Rk3)? lM>j}Z;35߿?V{nJg>xV R߮?OS] 8{'' EFA6TP0@ 4gftれx;Zi0|yS,'{Kh{jZI=-Mi[u>F^S Jfd$HP9! 7f[Qm}8i:a\Cv+Dk o$͐06/»N,;DFڠ,;C16!ԐծZ_S%u܌OE >#ߙO1k &txa`"PUQ(O]uv q4ZV+q6xGߦenը{K/e:Ȕ7ywt$`YNpмYGsEF7yTD(v{ lUJ܅^o׼̒ك#[jn%!_oWpR]ro73~C>>-oc8~0<>'W|o:vK֮TѪiZm,:>u8?BfQZUG؋b4CH]%iȺ+"6 /5; Sq4=F5UwWߊoC<1<0/,8ԡT BH+b̿ HOYio+kD!s:׷k)&Dp_v[E%X]wM ue jxcC4Fh+gXJDr??ϡ"0:p|7dY 1 C*A:~6I꬇\U>6A#?mG-u7d2a[ntO2>wrn}֯( ÉY~$dFί3M(b-;:Xixӵtdΐc 4g+>a8/)JO'wك:L݀=|Z!5Uoy)ٴfc.gn}5Wcy]|A^XiO *'NҢeg[YE0Y6ˌ +OFGˍf\zH4X#z _ $=+J±1*fR(~]eM3~5gsakBoYm>nǮ]?X/ڇiWT_)=LuCN|2sHD*&cFYH;I5NoLXxU H(IO[\^`}ACO-s(Gt,32x-P6a$[S6b#CGŨn4j~v\swCC3虆b:q˓3W ?~0a.p>3},&)=jӔ6tv(.{K74Pu|,1y5ݲ>֮0Ìci:?δ93!ƹ-YRi`s) {?)?mROyLLbL.۽*f3mT-;}=MOYƲ׼j/KYrku}6HHI Ưa?P>ȌH˺Id.ډ~Y!>/.S5d*M1gǫx\.rg@mGSz֞lqH02d|hZV: )O חX,qؾ^c ֓30gp_?1LX?5h07\5Z‰k8G41ԁ )N~~S.}Һ\=DN~itOǙI@SIE k?,ں_~~MLFg{30 /};Lg?(2:g{B}bxgQad|xko:8I[߰V=yxieH$:9ĚI@w{eN 9DLpAZ+To.!W$YcA!k @i>XC4CiD*i6ʇl̤:| BgٻoL&'P1lﲆm0^4fS5a֔aC KDm k'k )Tdž C@{I6@tH{zB]ya'; BPI| EyQ&7L" K)YBP@X AT',+F=,ǫY:OaK8 >2Rlk^|jZZεDan3l mXsZy<x8 FS ~2T+m[#tP4툽gJ-˜=2v7򆆀'؛v%u+l}\j[ZۻyJ߬E1H޴lN3~zf% &1[$3y<@MD`i0ޞnSr5zNfIn}Dƴ3L\ywSі(5O+ĶU$Fq}h]rC-# cbB-3l[TіTjbō4vcְFZ5f23=压@l-0$Q%,"֌ Cܒ1bŒr2ݚbA"bVfJ!P\bWgZic1y0B@̫b(;f3QMn 4q:9 Tz21vkX9lml2ƺբwT#L/.az[0аOj$l4cYI;δZN++8q01ViYNu NXFKY/6KNkF`\&Y$ġ[7aX6AATuJZ"8%r ˈlKl#q.\#GydA{P)j3clKRYk+MTL":鬳tFh6'b( j/x0^'\`cXAO!|b1({t{kcu %h#*^M*(~;%Ƒ>B4d8׺_XF蝭a@֩8cIX|&ӯtMD)VJ`@C0bdhH`k 4*K/mk3!b >th8e3:A{>Aqk #Qg" ik Gd!0Zn{:"v-sU:釬\>5YA 4<1vaƌ%:4 _Mkszz;x1 g 'ooBv;@E<հ׫ k$;^5ۀYלoa0]-BWTي>P*OLXyT8Y]zOL&oH6²mHY6κޙuLa\q3Js7b5Q`DBy(ji 2 |h :6ZvR,?wa ?{(i3AW9(#bT6DC'BzM#ZUƕ5xős(c4XH-ZtBsq,8\Nsx9 dɍdr@Zln#֍r1x63.MZcAñoqx ipزbS7μm&2P ze_[+ B s|feh_NBP… [YHIzE|7OoՀg'a. ¨.mƞsGݪS * ="!fe{Gð[tZFdaduBap!q? 逎W$1(&liIyU?]Bulܞmv|\{QB,UACfgz}=á aV ACfemw$kGmY_N0LZ;Y5=dF[&}v(.$3R&TŖt8]CБ%ޑYYA7Rw.FNro~@q= BbÂS=" TepuCXpv_ ,sߦ'oN8:mݔHwD|7BbNZ=q2@gt gO$u\`4{,]pq>ˢװ'$Ѫb m`$s` eY~˜5VWs.!`874B{yɼ,OܺXA.`k[ 8|BS^TD "ڙBpBKoU,`" L0_̎_NpX. ;v/J^yB?7Fl`j.QK?S5cU , +A_T1Y$It꟩xCAh(`TZ(X9SIjJf%x9{Kc[NHdAojSc̹zL29 c6"BEaj֏ ǚQX hd}V"GxE'Oks(seU#`X;I0*)lp?D ;D\" epD%lU_xuP?ؓnC0ED62,{6^wҝXgE,o`~Hp0]Wؾ?_]l'I'K6x aҮwGuQ\Y @+a]QnM;҇4ʗ̶Yq~iqtc*N6: {VʲQ\`WNP-ofyǞ._hgKܜa{wn߳o[D-fqXt<P=kv@3@,&5īVQQMpbKDy oAZQ"L|2 ׏={/Na'='LuCa E̲ѫiqò}NxLs=;:kݾ(|0^د'L}x6H'-Y|C\r' ( FVZ&9k?\@cԚ=lNKcE}AuvI;0M`j# 0Y,e == WlGAK><`ŧ@uk|p@];hLlbi`{[7v|A j:"V%XC+^RMeAjA3"=ʯ3y1Ye]ol/Y$V(RBТa#/~Fi]3RWs Uq x4w&̼VvdUwKYn߃|񏼂w3A[/ag;Օe;~wč _><ב}4E/vۙI`p:$d,sD@q:q՜ܑ0M }?kK ->u=J<Ϫ  4A@>(U%|+Ȯ|qb ouJ3K'yn!w`Z&V\.6L뼕_T`vo{kZ}V[Q?A .?)eb {,n ?/CtSI@ 8{.D >q2x<$ 3lGH\R'_Dp0Wq$EGO:,:rx|dzV&R|o(Ĥ-%_(yx'Уt(ڠTLVUjaM'qe'B!c\k Q4+ 9E7?gWa&x;,CۤO4_ϾtyN)6 фF/zɴq7P4fn2a|JQ?xHI] otKYA].3r!AiF䀈F&қL%+CYpIrY:?Y1X#4xiIPwLs#BqkA9:4(^*Zh/>Nl ڻ4z(+Z e{8׽͎ΥD}f3% IdHbPЯ@ݗAr#@"Ux`$cJ_Ѻg̼~ubbuBZqITV !C`Ĺ'd 2lD++m'pfb RRL,D)0XQ21ot>){¶S8_I >4dĜҹĭMUk[=XbWǰؚϮv_K<|?PY]ʠZ4{K~!PO1<Mn:H2 b2?%'5PTb1UUSk~:C}}L8rNhZt(',ᥘm^0Q;Fk5X Zm4oF UZH K4JؘnLʓN2{;(2_sEl+Va>i녝pJg݅Kd(ȢhnQU%4|բ&l bEk(NPk)i&HUF'\Ԟz9a`u?]X~<q%ErWzlp$"5S(wp.$,ń!E$QPT $A˾ 8зA!2L&vY՚>~ XuCQjxBvAs l>](Fc<$|ofZ{eU;ç2Ɖ[GwLZrL #tj-㋆-zkȹh'lM2}>$۴Y, >y"#i^0c#MJ፩\aYJ. jkޭLm4J̸"H#ba3 H27bN5ˉSfhqh̵[J"fPI9i%BfPěnz,ț:Gh1S,Iz1,!wI&EA吢R$ @,X6S%$*3"U2]܂*sDIN4d/83DbQ|@FtUS^Mc7yjLd.Ӗc;AMI]b8b#mA݆zYZV&ĉeQO) SF! .pLZ a*AŦZQ*$.Кa\locK&e ,P4EPݦ[w2s eCbPn^ G~-uҘ2l?1%leGÐihhM`GcYQy~E|f^/wzfVDDKn%Dspa^zw oͪϷ_`k1~lmFU JF,G lIʋM6c#H&8XVv6$l OvfeL0d0=Q8 c{7sI68TxWї{@z)4۫w?O ,TQ߯癣KŠ}0NS3xH A},S_nO{>vC$rVZ }"hv>|"Bhi9{zlP[>U ~3=7wT4+oIzd_9E݆?EҮkAR- I2-Ee^|[եZ5f; ~EwqI YU,M]@ 4AV4ᓶ{-*vgF橅9ABA E$=r8Te(0o?y6|~{4MR[k"Qu}ᮄC1TX媟՚$<:~? ~?n:lQ]M h|+`j-_鿺F&~KXφa`/ b,B )hc~˰{*JiPXcBȡ~F$pXmP ?O; d $2 8CzhTjdF3:p\|h!Mгp<;Zw[H5NyvY7C>3o@4uG<`gY, D_"*t^[~˲f$l D8|wi ᓃ2Qғ?-Co,p\,~s>NiK  x#=`Q 1/N@o~?8D1t`79VlCJ v]|Hr]IսNck1Q*<ƌKs]e1&P1NDAi4B1g aLfFZ[D ~J5*Ob5i!$er\m4;WnAa$؍ .e&ǔI̠_%3 ApѢY*VC 抹Ip m A5Jb+ QБ]l=RUc\2-0E)5bpAAQdJˑy4ؘ1ziZ>yny`kQZ]Ze{sF c4LWDYƝ YLQ4MFAD$TQU*dQ v. JvkW!>- 0: {XET 싽Ѻbl nF-8e0$Db* |a;% JVI퇄IN綟Qlduc"÷-aˈ 9`i6D'R`7Cv$! ˴SJ6QL0!g4CJS m Ch)XĔ!fm_tiɖ-~Z 0<[ٺ_gl64f{VlxƗ .]inQ6VŶH2wqR;確3K8A;`yg"pO9gt34J3wpeig׍sPFZ.Wbi(Xif5yAn3Le&ia DGX{bKؓbgϔ ?gQ,ǸG\WГh b񬴿&YYmCJHu! V91|Y}ʞD&cfbL"y{600í7ʟ5t̖k뻞]e ǥ=&e/ܞ {Z|HW`6h5l}xu?3׍.,G1,i/{M ,T]F6@ux~4A~a09ɵko&9[LڠJ|^=j!*8fҬfoLPY5T>< o jq4@_2tSx82 67C$eS8|ܓo ~Ҟ!URJH>$O|G[9d>S8.Ђd>39=, *<')%$ۛ9r7zKx2~;F#"%F[1cB&o8.(T6_%+Ljr B찾%: g ]ږ4?k/T_)f13[LF67</Y ~|$APJ-T( mnf_:bGweO*ٙ||)`]y}GQ@AAOWɖz 4?kHtfP}oǿwHQ ?0Ĺ[׊ )(HF#'!NcB߬N`Ll䴀0C`CDQXOO#_zw_d2Ot.R剤k[%.Yo܏кɥ+}aCH ZT[[ل](3iy7E&loΎ0eO:TX.34`'C>-&h2xs[HuKا0]=g첐'ZQz%22[6stɝҵG51l PX׌L#d"\y娣Bp" Fu).DϋyKߟp hx<89@;k#CoK`ÁFGۧQ`~n V@nu,W;|,I|`^nkaLQQf&0.3kvjxoP]$M > g"E _}d)8x+lLL&IYuߘ{O>4 n:| R=/Z\D󨞏Zt~{=B>ǹ0"vdWf]/\}Ͽ[~-y͘Ns3l8F ӘFH<[; AiHwv%i`clxk]3- Ƕե-_8/=OjgB** U>lib6/ 1G-qGs\r5ǜ_Wyl9 6YTҢw۱ԝuo\5p3:c(Qeq0GftbzD*C塏Ǟ5kZ!I w!+ď o!XZ YNx_ + 4--s .{ç jL9jU`+g@Рx7ou5.Z(&(d345f^6?T FEf.Ͱo .k ,<oqn!*W[|-{˟Ny@lJLU]hr< ۉ9[z#&5we%$4R6$G xJ88j.zn<+zi\#h2;zBAs9xa+c|10Ǒ B( kP ̌ĝJV\Qj2s甩9!\zmlTZ*R~j#Gϩa$c)%? (Wg6t_#LvqoHA|n@oc>ƾk?^?!pq,)C\?(iNW|FnE b }P~|6{9ל$'8~zh=v_V _mmgβ}Jm(χV%i_j, ҟsU)Y b6t 96? ;s?c >C_zn_}͟>=Ed ?E}KwVwf*ƭԶ]6$_W~ʞ$*58f'X6J5O̅T8BhC,~꣌\R@ @cg6MVk1=Q-6XaQ14+ii.  ``0Jt8*܁CݔiѲ݇Ұi=?fy?79T2{ g_S0ѥ=6h j~}7dF01?yKTvpm&۴כ Ez4Te17y5fUDl`B~zdP d?]n,=!)r&$^Wa3~o8xOayXF( 6w[zUZib2[ iP:ѣ1nMѿPo)G;͊[榴3/59K 9$&O 6n">ή⸞ݨϱ*W(^s/BuƮn(*{<@鄗nV h.X~S}kL˦W;x4jEt?>$R a=# wq_/g`Ɇ8)Q9sQME"ߤl/n:?W7kyhrROΨOzhrGѼsI[\\QOg]FƿlO&_vz`xbl֨X׷gNDK>߷}un?2H `Sԉn(% O,pOxCе9 q!ryMA>t艇Cߋ(?<_!#k:Ɛ(^ Gp[JkŔC$U`.NeC,  Ia/:$9[N,7/Wݡ?ƃϷh`|a@񍇭M}CA)*lW3YƏ/]hp^1΢!Dib1;oHIŹlL[d O1]*P4Y)*$i^)f*qq՚ޠsx^kZe= UZj3^'t_}:/^:a ͊ ڊ>U] 8ō8fuScLń?f$*C#5Zcp˕ |$=0yH oQykMˇFu;2=a$fi^?)>i䘟F?{KYwi+ yd[cR՟ïJ *Pg@]( ,$]Y * HӰA~J/񫦿Y0ԥ1q=&e Pz,, >\1 &x&gé+?9^|Δl_ .A;Ƽ`u\eui4?iA}>9E2ʄeBuCI8HtL9݆PaNi! 6P:}sj96Ɉzgy`}I1xtaR3[gɹ84;~ BL @q@r3N{X3^T=uSDm6}G ˜ -Wb~O4tvͰ<"۶Ow'l'bc=IĒ/ƊmOV iX|j$դ6Y/VxO 9O -hΙ QeT;i|H~hqL:vM)i BT:@|M; ,M79;؋qmm޻L4OVcxwOmyleLTVqb lGi!.$̲ YXew+Ziy. `xL/w?hriz1R-6{ Ő`0Ő=^ qR*5[wab?xggg 5X]td,& 5`Ty}uvC}qya6(Yд|~F=}m"fZ3 1 }h9|aZ[ bOM{iFa4  tZ`y*143Y46q11],.bD Bj5^S,>,=PaaDHb#F.3*/sZqwI ֧6nN*py7}fVN=7B OJjT7Tbu9l?`ƁI9v~12cׯYV~P1dž٦ؗz, )MiA5;Azoyͱh^1܂$o3:k ǪJ {vbdyk-1^^3` 63{nݳN;>(V3='zH=3l_hwh#C,a#(<$B7qYZ<`<$= 8g;04`Vѩn޵-#yq,8lGz ,)f85#<4w6|!!g1d;eqtְ/,WҖ@:6_.=x1AgulϰT7^m$#\5Z=;aRE4N&=&EKm+h4Z 7փlb0z|8퇆| |}fx ? |2VR^֐ OB2qvZlвtka& x{$yӌ=Xdd!RihK֏j .c Q(Qﴅb. ,m֍ }, P4-,֥!jJ4gjjSlEx|Aam,+ IX&tĚң;oƑ ەq* ҙea/,8i%wi`ľA+/F[]`Vᷣp.b)3?sBUtaNy ,eAg7d5twC=$w*T2m0xjh㏃w1 9CzCLY L`(gV}ROLءtl8iq}@У^mI >DƒK9*b/u|7JmŜL|a`q`%ꥇ T3^DjOsQ =ͶTtҤUf"%*)P ._,KhFft:`'6(C<~\/砩+HgpwƼĿr/NuŨ7*6y쏕 x5uVHU t;rf `0,H ,[Hڇ_Ym1WƠzcf9[z=P$?OR*TȲ*J" zZcOc;C lD~֨xch:J,eTHwEN5S:iWPGO^ (z|Kt/7@xϴ*H&Xj ?̓U`)~JU yfe'B#_].>#8X; {%`-[`b1-0u_lϵuhVp>_fJRETH2򤊞:X@K+I fp*QN}ֲTSDa!0kp?@ -,ppUU 5lq63Xs"{4CW{nڤ?~B3O1ڲ[gF y #|[3R6N6۱ha/Kl• Z衕W9vax^=u?FDN[^E7E1 ҡ=47غpf.$Nscǭ !LWcl^%OX'h)g0fͅIx< e(g HN󜸭E֯A7hfn~$dx]ikuRɮӏJ%=j^5_n޲]a)oU7K;z"&>P߾5slwhРGɗO 4J$XwQCmbys*~?N UXjOy>H-9ebqTڗc]3ߜߡ# FY@d 9U}&ڦ_ \ʬ'mIw :28U'FD"Z`>OVx.l n-{3rE;O=B%G$7ԛ⬹_s硃GOp ,g+1B6[Vռ %fX[ Ϳ1 m>/۪|  x~vu \ iWmK"AJ:x+&3aO1}* ؈/c1z5JYpBe5Rl!.FP6~|(.pul~(miqTȭP%SK>ˆnYT(`Mk@w֍Ct@B䡷2n6|2b0)T?ک19 ?$VX0z>lY̋DV/ `~ \WEcE6+4 ewXCN 's!e8>; W.9։O%FVD?n *rWU~|Q.鏐IdB\&/d@[@LDHhtkUxG. Mĉo{5ݘTBlb wü7wa°',xb+CdGP =Q;E_R:: 3Un|q>aA$尦 2^4G2'^d tOyMUaczdr#+U=B)2٫XJ,xoVE`K \h)x *m>*O&k =2<rw@/$Uic #&q(BU`P%&R9(`k  C(2dH`K_* hSy UzY9,sYԝ7yڽwxs!:$l]?,Q3LUGC 0߲<Jj?ex2VoTh܆W"hx1Pi$%u1rݵXw,liq?/sydmp͔vu@|0O׆9 4`MpGZA{r땃|~E}_w+jÍ{C[:t\|-}?:Ƨ߀ucz39[IYYDǹt`dв*ɘ]Si3z%9x_2.EGhh#nXR8ƎU8r +h[ݤ.?w$i F!QzacU`|,Ք0#`б0b(SuS P2+3<9#sl?dJT7}ZzyX?U˵. 2YL{UxD\9zkHW`#@?Rȟ/S&^6sZHS4>nMP`(QCC&K%*5br7EuGIU ɇWHz6 jeq LKۦc7\;:oĿuz=Ah4ai8GE f*ӕ3IZGMb;ΟAsGc(\Xl L1PIJ@AI9yrRf%UXRiwm`#Aa)?IGt8*!)q@LXY6[~3A>~VRKcnaLk2Jo$O+֏<0wF]:ND{ݕ Mī@G;DH  +?'.6]Q 7i nL5aYe-̤fY3IY$"/A5u dXD:%l[8DJ۬Ua᪤ 4P֍$""ˣʃNtZ4a35gKv^& 7:fzCOL;Ն% ;Hyou;8gfWtd嘝!W?{M?6^Y'H kkuSsc!GAC z80\+rgC MҊ00`AQ@`+3}*SL1#"gǿҏďPO7y7CCne:^'PsIELzbiYR)۲< xDAIAj׏#v@tƆ;dsv0*:73)&iʖқl,!'ŊMg3dtl@qӯj1SFu.^0rV"&⦃2cxЧ! 3A y !o~Z e6: °o|P%Oug׭]c__F=."9)*~~4lh UHyMZI!kf1wc}:wOh0bU>d);>;>u_`?l>zpi bc|>F~o>>P}=Ryt$ 6}>GXqhȿ,Ve"V48/g>RI#Jj>b\y,aH"`hq/ X XBc/ .VH:emq׋rKho8R}m?Qb at,-;[۞ONk<$uyNi'NX[ō5oLFq4?1? o}L !+w!kۣ\maG\SO!rh~,PS 6,tL|2̙`3CU̐:SfJFE@և}>_}ĥpώ| Ub$V;˙JhŒp1#fsXͳ2L:qZ?8CVlîK ;Uh,5<1r'~x>n>uc6'3nZ!0ދ}RRz:ޤuݒ~KV~|K#s$Cw@ӡ|=jve'ϔQ{#D~H!W dVk3 hl[&$E& eM~k8F(}IlC_Sϭ%;VPG vJLb驞J:v@tC=_ XsQ&X8l, P{1iaF$t֚&SehjObJ2I}`iٶ=4r$SZMvɷgMAįuKj@kыϑfهy!XN3tULdĚi6%Y+&>4ϗ&/#\:֚ D" M 6Ĵ)$ՎX`U$%.>ͳ@@0\ 2H`_X.)Ǽ*X27 P#҂g>P?qו[K[*|q/]u`"u{yxlaγ ]85%4VtJ mT]~.Yl:ڦ器˅2#xo\wM5SLfu㙖A$Y u ]M ZTCǧ̲2iV2ڻaXA\ex1qhT]]K8wdlǔYazj,&8j,Ӱ~8 )GE#kTR6fonc*E)ͳ5 VB麦+6cv.WGyh5`e q1M:d F[r|Tu$hLy=*D F*aw 䇔w+/U160Qt2 =3YҌ3XI!|ikl*)ݳ,.ayM33gI]fi;"bHXj~0ZE?Gg0q>0_Gוuv2pt;sQ{z\<+28CkYQX2z'bWL;v~j"HE|5m <"4Z{a8+Vi|}+"4N+kAaa`3H!-_Vhyz(qXywRċ (y 8$hʹ]ȋqMJRiQ>:NJOB3p?(HGU&RHLz@qf(u4h2U& іlÜUS& s13eaPٶ".X]3L ť5|;H6"{Hi@AzKlSƮ-s]mb 8o&>5}j\M\E5ap1 uf:̃"k?j tm3UyfGD>yϐAj9Y{>ЇLP.<$< 'Qm D i(f񀩇ZaZvPw0oP?<ˡpy-M fVEgb̀lah9[ijs(c:Cljf3׫8:qPz{bVҧ4ô <0{o@3 B؃h##rMz -|im:gw@ϋ=D,{g0Tѳ.4ij^l^GT ~RUm H*Ei),aB@k, _|N3lD0|$GI|Y:C6xѧnUKnrg 2+ $Hw!mwhC wJi H{Diġ\4a3&C| I)MMkHn@ə̯L{{CL߻4!bE\F H7XצX lai&oJn'fI 3CLKY6ؒ{aᏛ9hAf SH8s݇PUNrc kۄsxd߬$ď !]™phyN1& qghlHiV=9uփm& k,M#_>& GE^Ch>0*a8{40yAea>zog n6V8U~]8;7qZLJٻ²~)/FTDPdiZ[4j;(Hkkcgܙ`xƅ|%=.ϤY#޳SK 4 "lS /yH9$DLJ C!F/%l²ySi*xa0XeVM 8FZhFkyܤen7b8uA12ƎYYȭUrmƻa60lN$9#/hob)io|8í#ּ.3MN3mƭAa4৷{+yg_{ij4V!*hm3TD luxw);2o0 wBҚ0 4v"8أ_O\ 6.e틌< Vҫ*(ga0 K}6Y.izK׻+0]h#A6fi y#,+Jqb@;Bp%8brj@&yPӶvhâs.9h Ǜb3)k>@9KL,\ hl/P-}+jj#XhJiV5Cl\)m hA1)ՐH񙼾u$7U(oӟ~8sX^/Cyoe /T| KỶHo6|(>~#s].b<ɱLЪ]Q28TPruon e}7Ps1zRk(G"5Ѵݿnb/_~ UHłc/)Ł쫢~ +)\Gz Z|۪4vB,^ZP -H݈x+<=y<"x:%[׽x6xbUȎ. $LM#8*ReVd֕lx%ǵAJzGcO.Ie2ۄIEŒ<=0W?Δ:VLYoKSDhw5QڍCg0-N:Ay`yd( ;-?|Dt/~:Q1mŧaKO샊}^ay jPPp6 >쿉mC'wwץyrޡSw}>;+ﲶ Bp 쁘3{Qр?z!aZ.*+=Mm՗84%9<f*hBvM2d^W02$2cXIhkiZ0Q+{Ҩ1Ao1ZAj[cH"DkZǍXd%p:t`>Ac^@t8Е8cE zLhi}l.E}, ssҴo -3xE*sFQt+EÚ}90oN.zLf N50e,R*X {Ujr]ADiYr ~_n䤱 xrZ=sY*`XIA9*b:|l lUPĄR[>=n""ϫ\:;^=0YTg` NZ*3ځtSJOsЎ Jy^_O9{AK0aj2rVml5HAh?)"I4!i򨃯+1Er(^yѕ0X7 !vXX 0+`PY0m`AA$| lK~:$GfM. q $@Lz8/"<ʉ\fן- "eͫRdi42tA$X<V!&Wp^IN fzS~FB+6{ާ"6Ӣ]{2g U9)p`_y/#N1 %w99."~AD<ݠC07 B˜*&'r-LCAļD@Bڪ/Ԯ*+X!O^z }9Qzi~#o*q`yGˇgߒm^bT~\6x2q6=ߜϫRˇ^=M 3čVfҙa6laDeL_CGQl *O4*4fx `W 0 DJkXQ |5<OoAلDEc0*vqj27 jT^/5jE]ruUm#B~f^žhBPfX\jldvw{67XnkJE 5VF(QN.Xt75ft/%4w,,m׹Poь. S(wÖ.5@F`Y%F` 82\v:`*NVX<*-‹(+X 8͚;=nx}bfhq;,SEF y^zmD|g B)e-hMqlŮK?k]:r;qi?4f飣 a|.?gsQ*Qa O-$P@/b'9"B-@G|^S: ?.g܍z aõݵEUyEw%GxQYWǕj&L9G'dnQfߊlW)EU\?`GmEz*\_4Dۛ<m{(BMٸI6\}`1Rt3.ocT nľN!^XЀw/ 5k+%qmp,[_ =xؙ[0ywzaPooP~pmhrwQPn=ɾmԂo/ 84Ye?eEO.j>IcClq;V:a9eo$쬅dX)bJ%gxUD*I@@0Oۉ+XB<&7SM&d1XQU0vMzyh(`,1/?rVdx U?/8kc6R7( ;CQ"$tB$_ *=E-n:7ϏyjB|Ehfvˆo. 2;ChqZiPaAҐB%?f~? .O2WNË?>D4F6,Pk9$\G_zrYeL!41uP͚wM̾˱._t4wgs8?Ǟ3yG/L# >X:OG)@EO9>_/_q{j&yaCh:fm&FHo m!ƁbfZO ]ʺ!&$?}Ly@o:Ci0!+񠆡2OB!F#[fwY/C6Ā(,-.F5R{m+?8h?ojJE'[m9H?$ѨbPq.6>wpb>?)2ГP+hiGGCd` M"&5-.9m; eM1 AotvLP*j\``?f}YpitE_ڎÖBB,;k0 b4sk /NY@,4b:3ctyHtcb܄^ U|?={gZ='+m~ٿ~:)sq^/[˻Hnޏo{ЛeBs`mChP}[h f^X{h=hb]b:ÏAu?ZJTwkbOĩD+6ݎ]pRq\{9pz>yT7U&⬯ ׬X/Pعbᄪp;ː:j@nV=Q ˕[7!Xە:U(=ĦQnShUVjguuSo!8:'ۓ&8rq+mnF\. }mW4FvmsWa[6Aݻu_w{z/(;I8)]wza4{ԧMwQ+7f}u ܧҺp1:Vz-7 B붷Y'1y+feN|7E/+B9#+Xx>폸e>}}"=&=gzϾyU˽4#Z){)WrarJC/qY4oz坌S#룿kxs[2KC]ĵh32mfT~-gxZ^)aV82Yx8w:t ތ\\%}fhK|~ G= 2_ U쿮 ӄYꆔt`sz iNLJ.!sY(i^fYwdeeEWM3fhBt9[xIz3av cUe۸DB \04܈n[,gDb׋zE4}9_mplJPLpuB;,aKO lAū&%19ROD8+ $ܷv`:N0Mh5;OcjW.zji31phf2sv  CN,iiI6;5D:"Y r;&C7a HFCboXښ8čUBT%mQ‰:f-`Bg28boHuk3:\ݼ cT)Cq"D-n#y2GIh/t)ӤIc0Q+RjynB +"agPe aLP{P]Z+bҡh-RtBW@0jJrtE TQbcYKâ,9(2(60z#1X{`qF$1T͑6KcBiC .[%Rr:ÒT@6,Di!y`duxpq s"a8@@4hRn۩puȉد:9&KSL΋hቌ̶f,Ge^c32b:/{{Xfq0"&w^ 5JXp}J]MV;0<Ԣ]o.g/>di,2V*xCޜnx }J(g.^y][3vXlwkVPۏm.OE\С L_Op)~K`Lࣼ۩?=>o}pcΏwe>G^ǣ=ѧ{>s|sž!}Ww}/|_s4ww0Oغ"e3c#?1㯨~y?s!I/&>w?gz9? Z|Nh}|,|?E?_[[=a>?~/}7O~>j}}X>3_GvK>_}OAG?|\3k7{ՏGgw}>GsO.}>CgǺoO|?>coK'Wn >=_q/|w35^|{;~o_nG8g^ggU>7_/??Oϡ#1Ͽ}7mOI3O!վp~4<'5{/}_z;9?}==m?cB8ya'A\=>+K^^}~N}]{ׯ'5`;K{_OµG?CwΏZ>v?Eվk~NWzh4q;?o]_?{Oz`7G}|MO4o:;~}o:WGQt{8|/3߾ߡk}$~*ǽ]~j6线L_~?gwp}>7_g}~g7_狽Aױ_7?co{o=}~ ?~z~WA?s[EL=}_}o~S2g2 oo9:|.awA?o&~K~#|/sq'c y_? >v?^)>*>_>A?~?U;@?s>=kO}^?R>Cy| {񿁀={|ߪ>A)>=7ww{և?x?o~7N{.Xc=St9_F޿Is}e񿻀>|Q1ϽOϙyq') |k} :Sta>Kc{r1c\{9<v?hWGZ?~`$F UtD #+ԍg{w,u!4:']Jw3n 1zA/S3W̊G߿ vB9=uD-vzep5a@W~֋O=V wxdlE,}iB@â1$G F48iX 3@Sޓ۱e9z&jY+MCBE0Դ_4gp ht6-O]\g썄Q/7,D /{W4B W<@#(斌v6"J"IiycaS\Z,$/ 5KiX4v=ՌiFyŭK2-;B4B˅J #h"0$b\:hA,cNɠ}|e R: ۂ:T.Z.L"g ,EEd6ƾQW/B&}oQDѾùC㩯JӧH`EQC:>#v",nVK[ULNr]AUatHP* PT(daxÎRYIEZNDI\x{s35ޕU#RB!鷂$4oP20RdE !P?%=wB?/uYb+IL!17E 4t5x$rcܪ@&/Z:ͥp'0.SSdۢ,JT=66J |u#4N0 /< CBb;cpk $*6S EG Hy^$TC}e a|lxtR!xo_ZA-|ۆ;ˌv0Xwz8\ x䍐4v"Rj*ܖQT.$Y] 'Gdqe2FS-'$ղQFc.r@С᪜]usL4+L:5²dMU'+!ff'D7]٬uN/kYS*U\T=J)=?QJy??~?$Ur]٘SS~?i?i5·\Bw2'3(` Aδ#k*H=Oϭ3t B1 W8śĩ(A,V&@R;Қ^jeom6^ecȷJ D  Tl[s VhR,7QlI#(jb9r g>|Zعjn js҇x)o)A&b/ԣ5AdF l9*OH53p-6{s(+d4n⅐J|I*H)ug9)Q03OjVL;2iad>F뾎 ų]7:x!ʈ<'`ǂ1SᏰ?`Z_ P7&O4_ƆxOCpycȃ {G>HC> 2E 2pF{}V1$Ex)CGNge{g22gK ?tu̩ iRy4~9x2vPqws"G8Sߟ dl?crC 0c)(iH(}f7<^.ҧe9}d}`:o @Yt?]?f_qfnڔ_`n ¼ ʃ#n|/R?נ.yB OJR|/77=*`:NޝW^^^G;z3U%ECԜi`]zׇV#8f\JU1/OJz~>Ӹ~0=>>(e7?oO>Ѓ~? /ր$:1@gusy+ Cox=!şW 3400+^Z`NJ~P(,X@nNg )ޛu]cL*;FYC;Չ3 xW>b`3_4b")t@{@Np| Gi˨L4]\eBF4MАCTF^\HEX|GwǝO H~h[$tt|.m<кVHWg^fxơr a4Փ&@Wxpgt^G+=I!jC 5RyNoa(CDP!)LQ#hDʁo&Y7E"97\QgH a]7ƾ>9Ar<. 1壱v_tv됕[yQ*в =Ur UJ \J#Fɍf`]%cpzn]p[&R`L A m0@IBp4M 4m,2 MQ/rHoXa<l9|"`>MXz1;^B]S7][Cյv &pJuՙޱ7}{ yax>[zۤVM5軵]UVe^Ԟ+qY=@g` &+B{aY+D_nMJAYSA%iAFMTEswkp+'BM:|)V-1Wiz޾ڄKsoN% ҷ* wJn.29WUZtn9i" Q{FW`|A0:Rbv| 9U/ ozc&߽ {3. ֵ5XU P #KJƟyYEeRmsm :WZ-1aZtOpD{a e`E[T;'IIzH^A[v%Вt{ o b: u'4 GgWŃAqU/P'*iJ(tmRޠ]G-N(suhbvlH%2IXwqLR{Ssa9p7j@#bpWUWziZ ~Fֽx+NK٨BmbkV,t$Sǃ;v+f`_2%y,rsF;b .J2Nql>c ,kl#/IBdv@2܅8N[;ru:K\0np2n㠮&#BAlNHl\c1A-Il${Ҍ%iS{ ѷsb"AA4Ih $gEUG̝^=L4@8 4-;mn`+-+WlYz //V~Go]x["2zc({k2P&5CͬB`_+5vbL'@KH M9]oW52{g]o Lf-Bfe4zԔ.Dy%{jEAB,L.4HeA5ef()Twxr88.$;6=NȡmhwCU ӫU2MQ贡rZ2rI hi(U **M*-ĥ Y]7e"4& K kz/l\!աz5ƊJ`36"=8 ]`zL+L{ˬ4HSidh,3M!&3\]n2A|# ^D4AmC: ۣ֔+Dkl&PlԨq3dC41a(LBF>{܂#`"0$P%v=ڳ τ>!}B!+/z ^ uT쾰\/_'$oj+|5T蠑Dm@QI.:(M֊hJ4Rh t& \wz›%&ANOy䳢}tc լ##>clӗҖ:$. V Α/sBWLaQ$jrDCf2WI[Fc%7Cg Ù|qPZ(rQqN4B Ѣ j5Q;l4 "ETAo0IjuoYQ*REC-vpz!eZS]H'^)n9F]clh;X'f]Ќ 34+\5e֭WTIjP ɩz[#N3??.2l920t1\ʸ\ֵ1X#أUh`}F08h /O^l% 5a=^X\A!X_v`P2|o)+:pV*I쭯CZ]_}[۹,J_5UJF)fuWVf f X à{h 1 ^^i/4ɎnD.x'+R5d%4!rF&S`#x1eԧx =KZڦoHK./X 㛪Pރ+Ask2xصpuxu͇ju\A~}Rfqvz |БW eoU Uo%_9t㌵PTR&QMkĺ-*隹LAM 2yؤ瀝U6X/Qvk"yKzX^C ƥ V+5FGG|u,_VZoI^ ada2g7+BpmfԳwM4OBX)kX&FNȆ(BPS@mݼ@G7/ ٭d ".Iy\v+$m ئu+(Uw!U9a0ZnJR X 1,ؓE^ HUqI5O;6oV+5o{2RjX4^ƙ{T}G!WqMwIpkc&8gGRxkѻɫ;yɟYŅfǵ _g& jbYVU@颐3l)w~2c|$lc mJ͎d3IninВ`j`feel06L1D N>;zW9Zs!(Ik+kw\`v.3*{}},o\_ ehp^b  /]/yAXy֐LyE^('c~~ZN7s=&QS;gCU(qq6_NOs5IS(G捉/8dSi%ϵB֍O1lpJ`Ik6m5~U_֐!?/В S|A;31R-( Q()JƍK.ukbĥآT4췒|3FH&??ZY#?@8xG?:x:>dm~@F'T>M2!'t'2.޻92]jE3 ?+UC:Co6%ȡOF8`T]z{sk ˎ}|{ `Ukmgow:Ԝ gC)/™i8'2xQ}OG@f=g.d;j&!* yͦ^ݵc6xzw>0!|2O/ptCH `&'+_HvD8 `r)%:`g:TMRGu{FxoWyx:. +.F!ga/HNGjx:n1>qW7?UPO1?G?a[?% QA}0JL!͢ :p|؅3CÅ=Wu:h59.X\r?4}v~BaPߎp¼F?D})lO 8+P?~\~:|wO!?bLV_G$OȈiV ?W|s VY|! .[24w' z171>{oQIСPC^[h:\Bn`VK /i.r+w8 ɏ387 ~}`}Z'5η咝O?'.̰c-2QgrAfygs\QArxAfBͿvm8tN4X)3-lFSC7[N$a 3|SQ%(;.2 a}]1&PA2$P,DI H8 NQpBt'Ǽ0yG`@Lcon&#gr2դIYd2}"%D9A(d 2 TúxBgqnQ6uDXlx%-%.eVCKk9Dbo M^t;B:'D-e\C@ VDqZh"hż0-1 $ pǫqNZX-Qm&F.o~z;#n;GoS#Ծq:ߠF=VSK_Oms9t1)3їFH~btDUB ^z ϗp#zwOx0`%ci8):z;=ׯ;pyGxj\ܞA4;A!G_}=V3偏q}Ƞ\s(f H]_MxIc;TykjNBFC85?Xx#DTX s5U! Qp‡'A~_j_>+\G)V3 C psc:^] &"2q;ɓBJ@GCn œ_GGIx ?>-,VՊ'*xWVY%.Kgr\CPeЩJﳢӮ/o9x7i[j{v1]7VW ֘)fpx͕Y"JCxK0޷AxRm V,HQojv߬C.nefvɌ'ѱkWT6&3btf]1Wfn] `[ֲƁzX`\06X#1hz3z8ʹ1\"бBa][o0r%m/Fb21XOF@Aq%0NC ;}߾oL:LTr^(/ w%^dmU'Ըt㺋>{ T37(J6 G)]*B0.93d{FF ("8.pr]n(j`#w<c y6!3GQ r&7&DJŸnx=gF-a  ?<!zPiLג߲/sjw0׮H s`WB[ug8Aa6ib*-t6օ9l#pO K`b Y+#IA4:vXm yP4ns ݬ\*60MGJPҭ٫(|Ee| W$5pTmawK'uButspેg˫ C!QMo*p2Rՠpnsܝ]wn|lY@zb=>t{E:Nfm3P5M촨;p/3G{^D\a o{z6MO;xi"Q cWc\B*wr'jdrT@Hn +!'>sP`?10J|^]N|땋ӹ_J>3-F*KXZ+͜+5c0]R(tD J`da*Piwx/I?,>Cw?^#!0O~@ 4돿~j2<=yq%װxjS5Hb eڬ=g>SIH)Y:Dǚck]<~8 h"Td P"JuDJG FiFEiU>L@%!dҔP% Lʥ*P14*0/G<gwN:[}%]!c%ϑO3Gv==ٱLc(a9]y%8,@a쾁!>9_ף?(?ߩt}JR__ ~2+ ۠Ϸani;݆ 帘vmch,tY-)M ̓1q8Ԉl <9$Hv?zP@UO#*?T?ew:Q H=Kl?~0~X*  Bl)i7_P>zAxGAr{fP3!MzMYw= 5t58o[;x'p{'O ^a^TEw$28fXFuiTREb i"k!ݻG/|'n9D`SOD`31>vf< *6rK`_] =g|FUOIO`2G1?\OwϨa>]??$ݪ}~O_OO? '1?{'/ ?2A߷=SO~}~=llfop?SRLk3.i?o6Pƽa?~CވwȟŏTSw_PH<O_G.0(vokF6U?Ֆ B ˦"\$(ۍykqjVhDb afw^fgX >K.Z yZKvf3. 2ԋ'G–e] `v7Uw7/t6K,qrIš@(ĥiU2m :h`q1T&Sf]f#a/ptY "ܭ:Z|ۢ0aۙȸꚤS0kUV@|w6/h{UR @!A3Q r- %YM3 BD154Ӣ@Ż:(d5tKKOݴ|QGX׎=.$^-)s"*ikZ틔6 #RӢ%0.&쩦\4 bc6(N!Ms#6\;unc}$o|\{Gϛ4ǑY=o+#I$&0o%0'P}Qz8z}q< BS4g.֎PcrM5^?>ͺJWn@P+!?o8OK~`*V #K߃Rhj l"%kiCKf e*q+ڡ-EW9ye"8. ]ZZ;K NjfoƆEpv!f:|C{؆TJ5]rlٴ7Vg1X/aFQ6UbUKAk+2K2H\kk4XZҲ"ffkZFnnGxAf"hxyc5–()Ms¶TB9`;Xu[cز~U !`HhxcԱbbG`3H6KY 97(U@e,"jqNɺ:"dQ̈́z"Y(섻 vW,%r׉ <_v]JLqd,ǙͬL.AݭRbvu6´BވS[Rz[ݫ]͜+cͬ={TGZ%hHYT]7^v8#_-dlKLκܠ̗S9f]Mir1x-ͫB@ *7zhsL S+]vAbwq5$,k'(sSbMi[ ."azBd9-끅͏5噔D@o.[[meЦ BJfۀc(S &3dfimBEmo?V.*TyQb]_Rn8u!hwp G=pޭW,dDkV4Tr]$;TP!q* "yƋXR΁PiZPӻ7h-A ņ@сt0sxVS;|Yubqŷc+e*Иf[wgeݱ4ZtziNQ+oWi 2k BZÎZ8]P{rѤDBv@;Fw`V̭K 9D5(}UmtU2CA< 踜91Aeɻƅ0F5rp 9B޾b`,$ 9rBh;g2: B&ImN뫧;&t\;{x5X$сNܱh~??=<'&3C1E#A2U L S$S4PLQUE Ҕ RyXQRUSAQTPMIDADMTTLRIM1RESTEMDDQMP!TP J7a.؀B*H"AQnBM !On\& ȉ&jQG-XqDofRgG?b 82]6 DXp +!_iu`Bf:Vmja[Κ:(iq |:f $M·n~s Z~hE$n "(Ht6Cfontawesome/R/utils.R0000644000176200001440000000026514467775557014323 0ustar liggesusers# @staticimports pkg:staticimports # s3_register # nocov start `%||%` <- function(x, y) { if (is.null(x)) y else x } is_na <- function(x) { isTRUE(is.na(x)) } # nocov end fontawesome/R/zzz.R0000644000176200001440000000053214467775557014015 0ustar liggesusers#nocov start .onLoad <- function(...) { s3_register("knitr::knit_print", "fontawesome") fa_dependency_obj <<- htmltools::htmlDependency( name = "font-awesome", version = fa_version, src = "fontawesome", package = "fontawesome", stylesheet = c("css/all.min.css", "css/v4-shims.min.css") ) } #nocov end fontawesome/R/fa.R0000644000176200001440000002450214467775557013551 0ustar liggesusers#' Generate Font Awesome icons as SVGs #' #' Add one or more Font Awesome icons as SVGs contained within `...`. #' We can optionally set certain style attributes. The `fa()` function can be #' used directly within inline evaluations of R code in R Markdown documents. #' #' @param name The name of the Font Awesome icon. This could be as a short name #' (e.g., `"npm"`, `"drum"`, etc.), or, a full name (e.g., `"fab fa-npm"`, #' `"fas fa-drum"`, etc.). The names should correspond to current Version 6 #' Font Awesome names. A list of short and full names can be accessed through #' the [fa_metadata()] function with `fa_metadata()$icon_names` and #' `fa_metadata()$icon_names_full`. If supplying a previous name associated #' with the icon, it will be internally translated to the current name and a #' Version 6 icon will be returned. #' @param fill,fill_opacity The fill color of the icon can be set with `fill`. #' If not provided then the default value of `"currentColor"` is applied so #' that the SVG fill matches the color of the parent HTML element's `color` #' attribute. The opacity level of the SVG fill can be controlled with a #' decimal value between `0` and `1`. #' @param stroke,stroke_width,stroke_opacity The stroke options allow for #' setting the color, width, and opacity of the SVG outline stroke. By #' default, the stroke width is very small at `"1px"` so a size adjustment #' with `"stroke_width"` can be useful. The `"stroke_opacity"` value can be #' any decimal values between `0` and `1` (bounds included). #' @param height,width The height and width style attributes of the rendered #' SVG. If nothing is provided for `height` then a default value of `"1em"` #' will be applied. If a `width` isn't given, then it will be calculated in #' units of `"em"` on the basis of the icon's SVG `"viewBox"` dimensions. #' @param margin_left,margin_right The length value for the margin that's either #' left or right of the icon. By default, `"auto"` is used for both #' properties. If space is needed on either side then a length of `"0.2em"` is #' recommended as a starting point. #' @param vertical_align The vertical alignment of the icon. By default, a #' length of `"-0.125em"` is used. #' @param position The value for the `position` style attribute. By default, #' `"relative"` is used here. #' @param title An option for populating the SVG `'title'` attribute, which #' provides on-hover text for the icon. By default, no title text is given to #' the icon. If `a11y == "semantic"` then title text will be #' automatically given to the rendered icon, however, providing text here #' will override that. #' @param prefer_type Chooses the type of icon returned if: (1) providing a #' short name, and (2) that icon has both solid and regular types. #' For example, using `name = "address-book"` will result in two types of #' icons for an Address Book. By default, this preference is set to #' `"regular"` and the other option is `"solid"`. #' @param a11y Cases that distinguish the role of the icon and inform which #' accessibility attributes to be used. Icons can either be `"deco"` #' (decorative, the default case) or `"sem"` (semantic). Using `"none"` will #' result in no accessibility features for the icon. #' #' @return A `fontawesome` object. #' #' @examples #' if (interactive()) { #' #' # Create a Font Awesome SVG icon #' fa(name = "r-project") #' #' } #' #' @import htmltools #' @export fa <- function( name, fill = NULL, fill_opacity = NULL, stroke = NULL, stroke_width = NULL, stroke_opacity = NULL, height = NULL, width = NULL, margin_left = NULL, margin_right = NULL, vertical_align = NULL, position = NULL, title = NULL, prefer_type = c("regular", "solid"), a11y = c("deco", "sem", "none") ) { prefer_type <- match.arg(prefer_type) a11y <- match.arg(a11y) # Ensure that the `name` value passes basic validation checks check_name_vec(name = name) # Get the icon index value in `fa_tbl` idx <- get_icon_idx( name = name, prefer_type = prefer_type ) # Extract the icon width, its label, and its path icon_width <- fa_tbl$width[idx] icon_label <- fa_tbl$label[idx] icon_path <- fa_tbl$path[idx] # If both height and width are specified, don't preserve aspect ratio svg_attrs <- "" if (!is.null(height) && !is.null(width)) { svg_attrs <- paste0(svg_attrs, 'preserveAspectRatio="none" ') } # Validate the CSS length unit on height/width (if specified), # and return a number with the unit attached as an attribute height_num <- parse_length_unit(height) width_num <- parse_length_unit(width) # Fill in height/width defaults if (is.null(height) && is.null(width)) { height <- "1em" width <- paste0(round(icon_width / 512, 2), "em") } else if (!is.null(height) && is.null(width)) { width <- paste0( round((icon_width / 512) * height_num, 2), attr(height_num, "unit") ) } else if (is.null(height) && !is.null(width)) { height <- paste0( round(width_num / (icon_width / 512), 2), attr(width_num, "unit") ) } # Generate accessibility attributes if either of # the "deco" or "sem" cases are chosen a11y <- match.arg(a11y) if (a11y == "deco") { svg_attrs <- paste0(svg_attrs, 'aria-hidden="true" role="img" ') } else if (a11y == "sem") { title <- title %||% icon_label svg_attrs <- paste0( svg_attrs, sprintf('aria-label="%s" role="img" ', htmlEscape(title, attribute = TRUE)) ) } # Generate the viewBox value through use of the only # changing value: the width viewbox <- c(`min-x` = 0, `min-y` = 0, width = icon_width, height = 512) style_attr <- paste0( "height:", height, ";", "width:", width, ";", "vertical-align:", vertical_align %||% "-0.125em", ";", "margin-left:", margin_left %||% "auto", ";", "margin-right:", margin_right %||% "auto", ";", "font-size:inherit;", "fill:", fill %||% "currentColor", ";", "overflow:visible;", if (!is.null(fill_opacity)) paste0("fill-opacity:", fill_opacity, ";"), if (!is.null(stroke)) paste0("stroke:", stroke, ";"), if (!is.null(stroke_width)) paste0("stroke-width:", stroke_width, ";"), if (!is.null(stroke_opacity)) paste0("stroke-opacity:", stroke_opacity, ";"), "position:", position %||% "relative", ";" ) svg_attrs <- paste0( svg_attrs, sprintf( 'viewBox="%s" style="%s"', paste0(viewbox, collapse = " "), style_attr ) ) svg <- HTML(sprintf( '%s', svg_attrs, if (is.null(title)) "" else paste0("", htmlEscape(title), ""), icon_path )) structure( svg, viewbox = viewbox, size = c(h = height, w = width), class = c("fontawesome", "svg", class(svg)) ) } parse_length_unit <- function(css_length) { if (is.null(css_length)) { return(NULL) } if (!grepl("^^[0-9]*\\.?[0-9]+[a-z]+$", css_length)) { stop( "Values provided to `height` and `width` must have a numerical value ", "followed by a length unit.", call. = FALSE ) } unit <- gsub("[0-9\\.]+?", "", css_length) if (!(unit %in% css_length_units)) { stop( "The provided CSS length unit is not valid.", call. = FALSE ) } value <- as.numeric(gsub("[a-z]+$", "", css_length)) attr(value, "unit") <- unit value } css_length_units <- c( "cm", "mm", "in", "px", "pt", "pc", "em", "ex", "ch", "rem", "vw", "vh", "vmin", "vmax", "%" ) # Retrieve the row indices within fa_tbl for all rows that match the icon name # "name", using a variety of interpretations of that name (match on fa_tbl$name, # match on fa_tbl$full_name, or using alias_tbl to translate the name). # # The returned value will be an integer vector, that may be: # * Length 0: No results found # * Length 1: Found exactly one type # * Length >1: This icon comes in multiple types get_icon_idx_all_types <- function(name) { # Attempt to match supplied `name` to short name in `fa_tbl$name` idx <- match(name, fa_tbl$full_name) if (!is.na(idx)) { return(idx) } # An `NA` value means that no match was made so there will be # another attempt to match against the full name in `fa_tbl$full_name` idx <- which(fa_tbl$name == name) if (length(idx) > 0) { return(idx) } # If still no match then there will be a final attempt to match against an # alias name in `alias_tbl$alias`; it's important to note that these alias # names are all short names (e.g., "vcard" is an alias to the canonical name # `address-card`); canonical_name <- alias_tbl[alias_tbl$alias == name, "name", drop = TRUE] if (length(canonical_name) > 0) { idx <- which(fa_tbl$name == canonical_name) return(idx) } # Nothing was found return(integer(0)) } get_icon_idx <- function( name, prefer_type, fail_on_unknown_name = TRUE, msg_on_unknown_name = TRUE ) { # Get all fa_tbl indices that match--if any idx <- get_icon_idx_all_types(name = name) if (length(idx) == 0) { if (!fail_on_unknown_name) { if (msg_on_unknown_name) { message( "The `name` provided ('", name, "') does not correspond to a known icon" ) } # This is only in the case of `fa_i()` where an unmatched name # should generate an tag anyway return(NA_integer_) } else { stop( "The `name` provided ('", name, "') does not correspond to a known icon", call. = FALSE ) } } # The possible use of a short name may result in a single match in the # `name` column of `fa_tbl`, no match at all, or multiple matches (usually # 2, but 3 in the case of `"font-awesome"`); resolve multiple matches with # the `prefer_type` value if (length(idx) > 1) { exact_match <- intersect(idx, which(fa_tbl$style == prefer_type)) if (length(exact_match) == 1) { idx <- exact_match } else { # There were multiple icon types available, but not the one that was # indicated by `prefer_type`. Just use the first one. idx <- idx[1] } } idx } check_name_vec <- function(name) { if (!is.character(name)) { stop("A character vector should be supplied for `name`.", call. = FALSE) } if (length(name) != 1) { stop("The number of icons specified in `name` must be 1.", call. = FALSE) } } fontawesome/R/knit_print.R0000644000176200001440000000437114467775557015346 0ustar liggesusers#' Safely print any Font Awesome icon in R Markdown #' #' This facilitates printing of Font Awesome icons within R Markdown. #' #' @param x An object of class `fontawesome`. #' @param ... Any additional parameters. #' #' @keywords internal #' @noRd knit_print.fontawesome <- function(x, ..., options, inline = FALSE) { # nocov start to <- knitr::pandoc_to() if (is.null(to)) { warning("fontawesome can be used with rmarkdown output formats only and not knitr only. ", "Icon(s) will not show.", call. = FALSE) return(NULL) } # these formats support inline svg so use next method (i.e htmltools::knit_print.html) if (to %in% c("html", "html4", "html5", "slidy", "revealjs", "markdown")) { return(NextMethod()) } # is the format supported for inline image file insertion ? formats <- switch(to, beamer = , latex = list(ext = ".pdf", renderer = rsvg::rsvg_pdf), docx = list(ext = ".png", renderer = rsvg::rsvg_png), `markdown_github` = , gfm = list(ext = ".svg", renderer = rsvg::rsvg_svg) ) if (is.null(formats)) { warning("fontawesome does not support this output. Icon(s) will not show.", call. = FALSE ) return(NULL) } # icon is written to file and inserted as image in the document if (!requireNamespace("rsvg", quietly = TRUE)) { stop("Using fontawesome with non HTML output requires the rsvg package:\n", " * It can be installed with `install.packages(\"rsvg\")`.", call. = FALSE ) } icon_file <- paste0( options$fig.path, "fa-icon-", rlang::hash(x), formats$ext ) # icon is written once and file is reused if same icon is used several times if (!file.exists(icon_file)) { d <- dirname(icon_file) if (!dir.exists(d)) dir.create(d, recursive = TRUE) formats$renderer( charToRaw(as.character(x)), width = attr(x, "viewbox")[["width"]] / 2, height = attr(x, "viewbox")[["height"]] / 2, file = icon_file ) } # Pandoc Markdown syntax for images with link_attributes # https://pandoc.org/MANUAL.html#extension-link_attributes knitr::asis_output( sprintf( "![](%s){height=%s width=%s}", icon_file, attr(x, "size")[["h"]], attr(x, "size")[["w"]] ) ) # nocov end } fontawesome/R/fa_version.R0000644000176200001440000000011714470000355015255 0ustar liggesusers# Generated by fontawesome-update.R: do not edit by hand fa_version <- "6.4.2"fontawesome/R/fa_i.R0000644000176200001440000000724014467775557014061 0ustar liggesusers#' Generate a Font Awesome `` tag #' #' The `fa_i()` function creates a Font Awesome `` tag and not an SVG as with #' [fa()]. The primary use case for `fa_i()` is for legacy Shiny applications #' that use the `shiny::icon()` function. This function is called within a #' `shiny::icon()` call and all HTML dependencies to support icon generation are #' hosted in the **fontawesome** package. #' #' @param name The name of the Font Awesome icon. This could be as a short name #' (e.g., `"npm"`, `"drum"`, etc.), or, a full name (e.g., `"fab fa-npm"`, #' `"fas fa-drum"`, etc.). The names should correspond to current Font Awesome #' names. A list of short and full names can be accessed through the #' [fa_metadata()] function with `fa_metadata()$icon_names` and #' `fa_metadata()$icon_names_full`. If supplying a known alias to a short icon #' name (e.g., `"vcard"`, which is now `"address-card"`), it will be #' internally translated to the current icon name before returning the icon #' tag. #' @param class Additional classes to customize the style of the icon. #' @param ... Arguments passed to the `` tag of [htmltools::tags]. #' @param prefer_type Chooses the type of icon returned if: (1) providing a #' short name, and (2) that icon has both solid and regular types. #' For example, using `name = "address-book"` will result in two types of #' icons for an Address Book. By default, this preference is set to #' `"regular"` and the other option is `"solid"`. #' @param html_dependency Provides an opportunity to use a custom #' `html_dependency` object (created via a call to #' [htmltools::htmlDependency()]) instead of one supplied by the function #' (which uses Font Awesome's free assets and are bundled in the package). A #' custom `html_dependency` object is useful when you have paid icons from #' Font Awesome or would otherwise like to customize exactly which icon assets #' are used (e.g., `woff`, `woff2`, `eot`, etc.). By default, this is `NULL` #' where the function internally generates an `html_dependency`. #' #' @return An icon element. #' #' @examples #' if (interactive()) { #' #' # Create a Font Awesome icon object #' fa_i(name = "r-project") #' #' } #' #' @export fa_i <- function( name, class = NULL, ..., prefer_type = c("regular", "solid"), html_dependency = fa_html_dependency() ) { prefer_type <- match.arg(prefer_type) # Ensure that the `name` value passes basic validation checks check_name_vec(name = name) iconClass <- "" if (grepl("^fa[a-z] fa-[a-z-]+$", name)) { # Case where fully-qualified icon name is provided iconClass <- name } else { # Case where short icon name is provided # Get the icon index value in `fa_tbl` idx <- get_icon_idx( name = name, prefer_type = prefer_type, fail_on_unknown_name = FALSE, msg_on_unknown_name = identical(html_dependency, fa_html_dependency()) ) if (is_na(idx)) { # Generate `iconClass` value for name that results in an NA # value for `idx` (i.e., doesn't correspond to an entry in the # `fa_tbl`) iconClass <- paste0("fa", substr(prefer_type, 1, 1), " fa-", name) } else { # Get the fully-qualified icon name from `fa_tbl` name <- iconClass <- fa_tbl[idx, ][["full_name"]] } # Append any provided `class` values to the icon name if (!is.null(class)) { iconClass <- paste(name, class) } } icon_tag <- browsable( tags$i( class = iconClass, role = "presentation", `aria-label` = paste(gsub("^fa[a-z]* fa-", "", name), "icon"), ... ) ) attachDependencies(icon_tag, html_dependency) } fontawesome/R/fa_png.R0000644000176200001440000000631714467775557014421 0ustar liggesusers#' Create a PNG version of a Font Awesome icon #' #' Get a Font Awesome icon as a PNG file. We can optionally set the fill #' attribute before writing the PNG. Additionally, there is control over the #' output width and height (usually, icons are 512 by 512 pixels). Please note #' that this function requires that the **rsvg** is installed on the system. #' Attempting to use `fa_png()` without **rsvg** available will result in an #' error message. #' #' @param name The name of the Font Awesome icon. #' @param file the path to the output file. If `NULL`, then filename will take #' the short name of the icon and a `.png` extension will be applied. #' @param fill,fill_opacity The fill color of the icon can be set with `fill`. #' If not provided then the default fill color will be black. The opacity #' level of the fill color can be controlled with a decimal value between `0` #' and `1`. #' @param stroke,stroke_width,stroke_opacity The stroke options allow for #' setting the color, width, and opacity of the outline stroke. By default, #' the stroke width is very small at `"1px"` so a size adjustment with #' `"stroke_width"` can be useful. The `"stroke_opacity"` value can be any #' decimal values between `0` and `1` (bounds included). #' @param height,width The output height and width of the rendered PNG. If #' nothing is provided then the output dimensions will match that of the input #' SVG viewBox. #' @param prefer_type Chooses the type of icon returned if: (1) providing a #' short name, and (2) that icon has both solid and regular types. #' For example, using `name = "address-book"` will result in two types of #' icons for an Address Book. By default, this preference is set to #' `"regular"` and the other option is `"solid"`. #' #' @return A PNG file written to disk. #' #' @examples #' if (interactive()) { #' #' # Create a Font Awesome SVG icon as a #' # PNG file on disk #' fa_png(name = "r-project") #' #' } #' #' @export fa_png <- function( name, file = NULL, fill = NULL, fill_opacity = NULL, stroke = NULL, stroke_width = NULL, stroke_opacity = NULL, height = NULL, width = NULL, prefer_type = c("regular", "solid") ) { # nocov start # The `rsvg` package is required for this function; stop # function if it's not installed if (!requireNamespace("rsvg", quietly = TRUE)) { stop( "Use of the `fa_png()` function requires the rsvg package:\n", " * It can be installed with `install.packages(\"rsvg\")`.", call. = FALSE ) } # Obtain the SVG svg <- fa( name = name, fill = fill, fill_opacity = fill_opacity, stroke = stroke, stroke_width = stroke_width, stroke_opacity = stroke_opacity, prefer_type = prefer_type ) # If `file` is `NULL` then construct a suitable # filename based on the icon's short name if (is.null(file)) { if (name %in% fa_tbl$full_name) { short_name <- fa_tbl[fa_tbl$full_name == name, ][1, "name"] } else if (name %in% fa_tbl$name) { short_name <- name } file <- paste0(short_name, ".png") } rsvg::rsvg_png( svg = charToRaw(as.character(svg)), file = file, width = width, height = height ) # nocov end } fontawesome/R/fa_metadata.R0000644000176200001440000000404714467775557015413 0ustar liggesusers#' Get metadata on the included Font Awesome assets #' #' @description #' This function provide some metadata about the included Font Awesome assets #' in the **fontawesome** package. The list that is returned has the following #' components: #' #' - `version`: The released version number for the Font Awesome icons #' - `icon_count`: The total count of unique Font Awesome icons #' - `icon_names`: A vector of short names (e.g., `"npm"`, `"drum"`, etc.) for #' all included icons #' - `icon_names_full`: A vector containing the full names (e.g., `"fab #' fa-npm"`, `"fas fa-drum"`, etc.) for all included icons #' - `icon_names_fa(r|s|b)`: Vectors of short names within the regular (`"r"`), #' solid (`"s"`), and brand (`"b"`) groups #' - `icon_names_full_fa(r|s|b)`: Vectors with the full names of icons within #' the regular (`"r"`), solid (`"s"`), and brand (`"b"`) groups #' #' @return A list with metadata for the included Font Awesome assets. #' #' @examples #' if (interactive()) { #' #' # Get information on the Font Awesome #' # assets included in this package #' fa_metadata() #' #' } #' #' @export fa_metadata <- function() { icon_names <- unique(fa_tbl$name) icon_names_full <- unique(fa_tbl$full_name) icon_names_far <- unique(fa_tbl$name[grepl("far ", fa_tbl$full_name)]) icon_names_fas <- unique(fa_tbl$name[grepl("fas ", fa_tbl$full_name)]) icon_names_fab <- unique(fa_tbl$name[grepl("fab ", fa_tbl$full_name)]) icon_names_full_far <- unique(fa_tbl$full_name[grepl("far ", fa_tbl$full_name)]) icon_names_full_fas <- unique(fa_tbl$full_name[grepl("fas ", fa_tbl$full_name)]) icon_names_full_fab <- unique(fa_tbl$full_name[grepl("fab ", fa_tbl$full_name)]) list( version = fa_version, icon_count = length(icon_names), icon_names = icon_names, icon_names_full = icon_names_full, icon_names_far = icon_names_far, icon_names_fas = icon_names_fas, icon_names_fab = icon_names_fab, icon_names_full_far = icon_names_full_far, icon_names_full_fas = icon_names_full_fas, icon_names_full_fab = icon_names_full_fab ) } fontawesome/R/fa_brands.R0000644000176200001440000001402214470000355015041 0ustar liggesusers# Generated by fontawesome-update.R: do not edit by hand font_awesome_brands <- c("42-group", "500px", "accessible-icon", "accusoft", "adn", "adversal", "affiliatetheme", "airbnb", "algolia", "alipay", "amazon", "amazon-pay", "amilia", "android", "angellist", "angrycreative", "angular", "app-store", "app-store-ios", "apper", "apple", "apple-pay", "artstation", "asymmetrik", "atlassian", "audible", "autoprefixer", "avianex", "aviato", "aws", "bandcamp", "battle-net", "behance", "bilibili", "bimobject", "bitbucket", "bitcoin", "bity", "black-tie", "blackberry", "blogger", "blogger-b", "bluetooth", "bluetooth-b", "bootstrap", "bots", "btc", "buffer", "buromobelexperte", "buy-n-large", "buysellads", "canadian-maple-leaf", "cc-amazon-pay", "cc-amex", "cc-apple-pay", "cc-diners-club", "cc-discover", "cc-jcb", "cc-mastercard", "cc-paypal", "cc-stripe", "cc-visa", "centercode", "centos", "chrome", "chromecast", "cloudflare", "cloudscale", "cloudsmith", "cloudversify", "cmplid", "codepen", "codiepie", "confluence", "connectdevelop", "contao", "cotton-bureau", "cpanel", "creative-commons", "creative-commons-by", "creative-commons-nc", "creative-commons-nc-eu", "creative-commons-nc-jp", "creative-commons-nd", "creative-commons-pd", "creative-commons-pd-alt", "creative-commons-remix", "creative-commons-sa", "creative-commons-sampling", "creative-commons-sampling-plus", "creative-commons-share", "creative-commons-zero", "critical-role", "css3", "css3-alt", "cuttlefish", "d-and-d", "d-and-d-beyond", "dailymotion", "dashcube", "debian", "deezer", "delicious", "deploydog", "deskpro", "dev", "deviantart", "dhl", "diaspora", "digg", "digital-ocean", "discord", "discourse", "dochub", "docker", "draft2digital", "dribbble", "dropbox", "drupal", "dyalog", "earlybirds", "ebay", "edge", "edge-legacy", "elementor", "ello", "ember", "empire", "envira", "erlang", "ethereum", "etsy", "evernote", "expeditedssl", "facebook", "facebook-f", "facebook-messenger", "fantasy-flight-games", "fedex", "fedora", "figma", "firefox", "firefox-browser", "first-order", "first-order-alt", "firstdraft", "flickr", "flipboard", "fly", "font-awesome", "fonticons", "fonticons-fi", "fort-awesome", "fort-awesome-alt", "forumbee", "foursquare", "free-code-camp", "freebsd", "fulcrum", "galactic-republic", "galactic-senate", "get-pocket", "gg", "gg-circle", "git", "git-alt", "github", "github-alt", "gitkraken", "gitlab", "gitter", "glide", "glide-g", "gofore", "golang", "goodreads", "goodreads-g", "google", "google-drive", "google-pay", "google-play", "google-plus", "google-plus-g", "google-wallet", "gratipay", "grav", "gripfire", "grunt", "guilded", "gulp", "hacker-news", "hackerrank", "hashnode", "hips", "hire-a-helper", "hive", "hooli", "hornbill", "hotjar", "houzz", "html5", "hubspot", "ideal", "imdb", "instagram", "instalod", "intercom", "internet-explorer", "invision", "ioxhost", "itch-io", "itunes", "itunes-note", "java", "jedi-order", "jenkins", "jira", "joget", "joomla", "js", "jsfiddle", "kaggle", "keybase", "keycdn", "kickstarter", "kickstarter-k", "korvue", "laravel", "lastfm", "leanpub", "less", "line", "linkedin", "linkedin-in", "linode", "linux", "lyft", "magento", "mailchimp", "mandalorian", "markdown", "mastodon", "maxcdn", "mdb", "medapps", "medium", "medrt", "meetup", "megaport", "mendeley", "meta", "microblog", "microsoft", "mix", "mixcloud", "mixer", "mizuni", "modx", "monero", "napster", "neos", "nfc-directional", "nfc-symbol", "nimblr", "node", "node-js", "npm", "ns8", "nutritionix", "octopus-deploy", "odnoklassniki", "odysee", "old-republic", "opencart", "openid", "opera", "optin-monster", "orcid", "osi", "padlet", "page4", "pagelines", "palfed", "patreon", "paypal", "perbyte", "periscope", "phabricator", "phoenix-framework", "phoenix-squadron", "php", "pied-piper", "pied-piper-alt", "pied-piper-hat", "pied-piper-pp", "pinterest", "pinterest-p", "pix", "playstation", "product-hunt", "pushed", "python", "qq", "quinscape", "quora", "r-project", "raspberry-pi", "ravelry", "react", "reacteurope", "readme", "rebel", "red-river", "reddit", "reddit-alien", "redhat", "renren", "replyd", "researchgate", "resolving", "rev", "rocketchat", "rockrms", "rust", "safari", "salesforce", "sass", "schlix", "screenpal", "scribd", "searchengin", "sellcast", "sellsy", "servicestack", "shirtsinbulk", "shopify", "shopware", "simplybuilt", "sistrix", "sith", "sitrox", "sketch", "skyatlas", "skype", "slack", "slideshare", "snapchat", "soundcloud", "sourcetree", "space-awesome", "speakap", "speaker-deck", "spotify", "square-behance", "square-dribbble", "square-facebook", "square-font-awesome", "square-font-awesome-stroke", "square-git", "square-github", "square-gitlab", "square-google-plus", "square-hacker-news", "square-instagram", "square-js", "square-lastfm", "square-odnoklassniki", "square-pied-piper", "square-pinterest", "square-reddit", "square-snapchat", "square-steam", "square-threads", "square-tumblr", "square-twitter", "square-viadeo", "square-vimeo", "square-whatsapp", "square-x-twitter", "square-xing", "square-youtube", "squarespace", "stack-exchange", "stack-overflow", "stackpath", "staylinked", "steam", "steam-symbol", "sticker-mule", "strava", "stripe", "stripe-s", "stubber", "studiovinari", "stumbleupon", "stumbleupon-circle", "superpowers", "supple", "suse", "swift", "symfony", "teamspeak", "telegram", "tencent-weibo", "the-red-yeti", "themeco", "themeisle", "think-peaks", "threads", "tiktok", "trade-federation", "trello", "tumblr", "twitch", "twitter", "typo3", "uber", "ubuntu", "uikit", "umbraco", "uncharted", "uniregistry", "unity", "unsplash", "untappd", "ups", "usb", "usps", "ussunnah", "vaadin", "viacoin", "viadeo", "viber", "vimeo", "vimeo-v", "vine", "vk", "vnv", "vuejs", "watchman-monitoring", "waze", "weebly", "weibo", "weixin", "whatsapp", "whmcs", "wikipedia-w", "windows", "wirsindhandwerk", "wix", "wizards-of-the-coast", "wodu", "wolf-pack-battalion", "wordpress", "wordpress-simple", "wpbeginner", "wpexplorer", "wpforms", "wpressr", "x-twitter", "xbox", "xing", "y-combinator", "yahoo", "yammer", "yandex", "yandex-international", "yarn", "yelp", "yoast", "youtube", "zhihu")fontawesome/R/staticimports.R0000644000176200001440000000427614467775557016076 0ustar liggesusers# Generated by staticimports; do not edit by hand. # ====================================================================== # Imported from pkg:staticimports # ====================================================================== # Simplified version rlang:::s3_register() that just uses # warning() instead of rlang::warn() when registration fails # https://github.com/r-lib/rlang/blob/main/R/compat-s3-register.R s3_register <- function(generic, class, method = NULL) { stopifnot(is.character(generic), length(generic) == 1) stopifnot(is.character(class), length(class) == 1) pieces <- strsplit(generic, "::")[[1]] stopifnot(length(pieces) == 2) package <- pieces[[1]] generic <- pieces[[2]] caller <- parent.frame() get_method_env <- function() { top <- topenv(caller) if (isNamespace(top)) { asNamespace(environmentName(top)) } else { caller } } get_method <- function(method, env) { if (is.null(method)) { get(paste0(generic, ".", class), envir = get_method_env()) } else { method } } register <- function(...) { envir <- asNamespace(package) # Refresh the method each time, it might have been updated by # `devtools::load_all()` method_fn <- get_method(method) stopifnot(is.function(method_fn)) # Only register if generic can be accessed if (exists(generic, envir)) { registerS3method(generic, class, method_fn, envir = envir) } else { warning( "Can't find generic `", generic, "` in package ", package, " register S3 method. Do you need to update ", package, " to the latest version?", call. = FALSE ) } } # Always register hook in case package is later unloaded & reloaded setHook(packageEvent(package, "onLoad"), function(...) { register() }) # Avoid registration failures during loading (pkgload or regular). # Check that environment is locked because the registering package # might be a dependency of the package that exports the generic. In # that case, the exports (and the generic) might not be populated # yet (#1225). if (isNamespaceLoaded(package) && environmentIsLocked(asNamespace(package))) { register() } invisible() } fontawesome/R/fa_html_dependency.R0000644000176200001440000000212314467775557016766 0ustar liggesusersfa_dependency_obj <- NULL #' Use a Font Awesome `html_dependency` #' #' The `fa_html_dependency()` function adds a `html_dependency` object into a #' Shiny or R Markdown context. This allows for the direct use of `` tags #' that refer to Font Awesome icons without having to use the [fa_i()] to create #' these tags and also add the `html_dependency` to the document. #' #' The `html_dependency` object is created internally with the following #' invocation: #' #' ``` #' htmltools::htmlDependency( #' name = "font-awesome", #' version = fa_version, #' src = "fontawesome", #' package = "fontawesome", #' stylesheet = c("css/all.min.css", "css/v4-shims.min.css") #' ) #' ``` #' #' The `fa_version` object is an internal object that provides the released #' version number for the Font Awesome icons. This can be inspected by using #' `fa_metadata()$version`. #' #' @return An `html_dependency` object. #' #' @examples #' if (interactive()) { #' #' # Create a Font Awesome `html_dependency` #' fa_html_dependency() #' #' } #' #' @export fa_html_dependency <- function() { fa_dependency_obj } fontawesome/NEWS.md0000644000176200001440000000504514470021125013677 0ustar liggesusers# fontawesome 0.5.2 * Updated icon set to that of Font Awesome 6.4.2. (#111) # fontawesome 0.5.1 * Updated icon set to that of Font Awesome 6.4.0. (#109) # fontawesome 0.5.0 * Updated icon set to that of Font Awesome 6.2.1. (#102) * Closed #101: added the `vertical_align` argument `fa()` to control vertical alignment of icons. (#103) * Closed #99 and #100: reinstated missing '.woff2' files. (#102) # fontawesome 0.4.0 * Updated icon set to that of Font Awesome 6.2.0. (#96) * It's now possible to reference icons by several of their previous names. For example the old icon names `"contact-card"` and `"vcard"` will map to the current name of `"address-card"`. (#96) * There is now a `prefer_type` argument (default: `"regular"`) that allows you to register a choice between a solid- or regular-type icon should both be available for a specific short name. (#96) # fontawesome 0.3.0 * Closed #80: Updated icon set to that of Font Awesome 6.1. (#85) * Closed #68: full icon names (e.g., `"fab fa-r-project"`) are now properly parsed and verified in the `fa_i()` function. (#77) * Closed #66 and #73: CSS length values (supplied to the `height` or `width` options of the `fa()` function) are now correctly handled when they contain decimals. (#74) # fontawesome 0.2.2 * .ttf font files (and associated CSS) have been added back to the pared down selection of included webfonts (includes .woff and .ttf); this was to re-enable compatibility with the webshot package in Windows. (#61) # fontawesome 0.2.1 * Closed #53: The `margin_right` argument of `fa()` is now functional, defaulting to the `"auto"` margin; a `margin_left` argument was also added with the same default. (#54) * The `"desc"` option in `fa()`'s `a11y` argument is now changed to `"deco"`. # fontawesome 0.2.0 * Closed #42: Support for additional R Markdown output formats with `fa()`: `pdf_document`, `word_document`, `github_document`, `slidy_presentation`, `beamer_presentation`, and `ioslides_presentation`. (#43) * Closed #38: Add accessibility features to SVG icons produced by `fa()` with its new `a11y` argument. (#41) * Fixes a rendering issue with SVG icons in IE11. (#40) * Tooltips can be added to SVG icons prepared by `fa()` by using the new `title` argument. * Closed #44: The collection of font files that support the use of `fa_i()` has been trimmed down to just the '.woff' variety. (#45) * Closed #32, #33: Package dependencies have been greatly reduced. (#35) # fontawesome 0.1.0 * Added functions `fa()`, `fa_i()`, and `fa_png()` for preparing Font Awesome icons in three ways. fontawesome/MD50000644000176200001440000000457714470045230013125 0ustar liggesusersc1917fd0bd983a4003c9d77eeec1b0bf *DESCRIPTION 11caaf4ec0ba74100cac2e4e59350c43 *LICENSE b312a2b4d8e71241a31de3cdb7b66776 *NAMESPACE d0278f5133f5b58345d0576eab2da341 *NEWS.md 21381cf7debb12dcb703f3e8ab03b4d0 *R/fa.R 6c736588dc265fd8799ff328ed06188d *R/fa_brands.R 13243ddc2b3fd0846f90c50d7d3c73af *R/fa_html_dependency.R 136ed3648a314b648d6ad4c225652b62 *R/fa_i.R c4c6344a99eede7946d43c3709574245 *R/fa_metadata.R 08c702c99702c668d765d4dba4c01c86 *R/fa_png.R 591e59a834c8b7d83403b509be60c582 *R/fa_version.R 6dbd5f8bc2de2feb5e453ba514315ca9 *R/knit_print.R ef651a37580d22bed0431868060863cd *R/print.R b90a2a8beee4b81b4a860f5bc5e218c4 *R/staticimports.R 753b7977c959fbe448f1bee8113c80ff *R/sysdata.rda 66b2ff96d87c6fe57b796b9958b7ce23 *R/utils.R 1b29af12cbe093a59ac6345022d5ef1a *R/zzz.R e4257c083286fa2292a923950427aa61 *README.md f3b481854279fac0c2d0b7ccd54899a1 *inst/apps/138-icon-fontawesome/app.R 5ca7783adc61f933805bd0467228c7de *inst/fontawesome/css/all.css 1d46bd8219a15f094e4489e7f63778e9 *inst/fontawesome/css/all.min.css b8d8da46c1755698c28c00e06983371a *inst/fontawesome/css/v4-shims.css 665de85010641f678f0178a9d330a7af *inst/fontawesome/css/v4-shims.min.css bb8cd014d7a55672934233c354e1c4a3 *inst/fontawesome/webfonts/fa-brands-400.ttf 005c9aa92b564b73b7582cc4f1fa49cb *inst/fontawesome/webfonts/fa-brands-400.woff2 675809e48e35c47d51c7d6fcc687ee28 *inst/fontawesome/webfonts/fa-regular-400.ttf 747442fa76f1d9a31f9a54a2e8a4b448 *inst/fontawesome/webfonts/fa-regular-400.woff2 0248ab19e74fc3731de14d647db4687a *inst/fontawesome/webfonts/fa-solid-900.ttf d5e647388e2415268b700d3df2e30a0d *inst/fontawesome/webfonts/fa-solid-900.woff2 58f1253e5639d508a6fe310c97327f82 *inst/fontawesome/webfonts/fa-v4compatibility.ttf f20773a753bf1fbe9ccec04f90a470ea *inst/fontawesome/webfonts/fa-v4compatibility.woff2 1b77c90eb95301b1f96c1cf4387e4ccc *man/fa.Rd 6bf146dc92ae5e0196f0fb73fde78084 *man/fa_html_dependency.Rd 0711c7842b6b482f9ba6fab816f37ce2 *man/fa_i.Rd 35f9cdd8ef943f18c0e7c0b321f15515 *man/fa_metadata.Rd 01b3d07bccdffeaeb5b1db038c1cefda *man/fa_png.Rd 144a890a5fc1bfa9d1772e64570b7196 *man/figures/fontawesome_rmd.png 54aba43d1a797519ed459b45513a5ca7 *man/figures/fontawesome_shiny_app.png a99f2c5356f0f525f85db8fd7ce2f9fd *man/figures/logo.svg 9ae00bbb6e9c3f83ded656fb0f04353b *man/print.fontawesome.Rd 684d2f9319d015be6fcaf817852c30a6 *tests/testthat.R 6768bbaca00a627fbbed68252a90fd91 *tests/testthat/test-fa_icon.R fontawesome/inst/0000755000176200001440000000000014470000401013544 5ustar liggesusersfontawesome/inst/fontawesome/0000755000176200001440000000000014470000401016073 5ustar liggesusersfontawesome/inst/fontawesome/css/0000755000176200001440000000000014470000401016663 5ustar liggesusersfontawesome/inst/fontawesome/css/v4-shims.css0000644000176200001440000012114614470000401021054 0ustar liggesusers/*! * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2023 Fonticons, Inc. */ .fa.fa-glass:before { content: "\f000"; } .fa.fa-envelope-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-envelope-o:before { content: "\f0e0"; } .fa.fa-star-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-star-o:before { content: "\f005"; } .fa.fa-remove:before { content: "\f00d"; } .fa.fa-close:before { content: "\f00d"; } .fa.fa-gear:before { content: "\f013"; } .fa.fa-trash-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-trash-o:before { content: "\f2ed"; } .fa.fa-home:before { content: "\f015"; } .fa.fa-file-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-o:before { content: "\f15b"; } .fa.fa-clock-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-clock-o:before { content: "\f017"; } .fa.fa-arrow-circle-o-down { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-arrow-circle-o-down:before { content: "\f358"; } .fa.fa-arrow-circle-o-up { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-arrow-circle-o-up:before { content: "\f35b"; } .fa.fa-play-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-play-circle-o:before { content: "\f144"; } .fa.fa-repeat:before { content: "\f01e"; } .fa.fa-rotate-right:before { content: "\f01e"; } .fa.fa-refresh:before { content: "\f021"; } .fa.fa-list-alt { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-list-alt:before { content: "\f022"; } .fa.fa-dedent:before { content: "\f03b"; } .fa.fa-video-camera:before { content: "\f03d"; } .fa.fa-picture-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-picture-o:before { content: "\f03e"; } .fa.fa-photo { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-photo:before { content: "\f03e"; } .fa.fa-image { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-image:before { content: "\f03e"; } .fa.fa-map-marker:before { content: "\f3c5"; } .fa.fa-pencil-square-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-pencil-square-o:before { content: "\f044"; } .fa.fa-edit { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-edit:before { content: "\f044"; } .fa.fa-share-square-o:before { content: "\f14d"; } .fa.fa-check-square-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-check-square-o:before { content: "\f14a"; } .fa.fa-arrows:before { content: "\f0b2"; } .fa.fa-times-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-times-circle-o:before { content: "\f057"; } .fa.fa-check-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-check-circle-o:before { content: "\f058"; } .fa.fa-mail-forward:before { content: "\f064"; } .fa.fa-expand:before { content: "\f424"; } .fa.fa-compress:before { content: "\f422"; } .fa.fa-eye { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-eye-slash { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-warning:before { content: "\f071"; } .fa.fa-calendar:before { content: "\f073"; } .fa.fa-arrows-v:before { content: "\f338"; } .fa.fa-arrows-h:before { content: "\f337"; } .fa.fa-bar-chart:before { content: "\e0e3"; } .fa.fa-bar-chart-o:before { content: "\e0e3"; } .fa.fa-twitter-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-twitter-square:before { content: "\f081"; } .fa.fa-facebook-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-facebook-square:before { content: "\f082"; } .fa.fa-gears:before { content: "\f085"; } .fa.fa-thumbs-o-up { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-thumbs-o-up:before { content: "\f164"; } .fa.fa-thumbs-o-down { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-thumbs-o-down:before { content: "\f165"; } .fa.fa-heart-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-heart-o:before { content: "\f004"; } .fa.fa-sign-out:before { content: "\f2f5"; } .fa.fa-linkedin-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-linkedin-square:before { content: "\f08c"; } .fa.fa-thumb-tack:before { content: "\f08d"; } .fa.fa-external-link:before { content: "\f35d"; } .fa.fa-sign-in:before { content: "\f2f6"; } .fa.fa-github-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-github-square:before { content: "\f092"; } .fa.fa-lemon-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-lemon-o:before { content: "\f094"; } .fa.fa-square-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-square-o:before { content: "\f0c8"; } .fa.fa-bookmark-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-bookmark-o:before { content: "\f02e"; } .fa.fa-twitter { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-facebook { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-facebook:before { content: "\f39e"; } .fa.fa-facebook-f { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-facebook-f:before { content: "\f39e"; } .fa.fa-github { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-credit-card { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-feed:before { content: "\f09e"; } .fa.fa-hdd-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hdd-o:before { content: "\f0a0"; } .fa.fa-hand-o-right { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-o-right:before { content: "\f0a4"; } .fa.fa-hand-o-left { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-o-left:before { content: "\f0a5"; } .fa.fa-hand-o-up { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-o-up:before { content: "\f0a6"; } .fa.fa-hand-o-down { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-o-down:before { content: "\f0a7"; } .fa.fa-globe:before { content: "\f57d"; } .fa.fa-tasks:before { content: "\f828"; } .fa.fa-arrows-alt:before { content: "\f31e"; } .fa.fa-group:before { content: "\f0c0"; } .fa.fa-chain:before { content: "\f0c1"; } .fa.fa-cut:before { content: "\f0c4"; } .fa.fa-files-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-files-o:before { content: "\f0c5"; } .fa.fa-floppy-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-floppy-o:before { content: "\f0c7"; } .fa.fa-save { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-save:before { content: "\f0c7"; } .fa.fa-navicon:before { content: "\f0c9"; } .fa.fa-reorder:before { content: "\f0c9"; } .fa.fa-magic:before { content: "\e2ca"; } .fa.fa-pinterest { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-pinterest-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-pinterest-square:before { content: "\f0d3"; } .fa.fa-google-plus-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-google-plus-square:before { content: "\f0d4"; } .fa.fa-google-plus { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-google-plus:before { content: "\f0d5"; } .fa.fa-money:before { content: "\f3d1"; } .fa.fa-unsorted:before { content: "\f0dc"; } .fa.fa-sort-desc:before { content: "\f0dd"; } .fa.fa-sort-asc:before { content: "\f0de"; } .fa.fa-linkedin { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-linkedin:before { content: "\f0e1"; } .fa.fa-rotate-left:before { content: "\f0e2"; } .fa.fa-legal:before { content: "\f0e3"; } .fa.fa-tachometer:before { content: "\f625"; } .fa.fa-dashboard:before { content: "\f625"; } .fa.fa-comment-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-comment-o:before { content: "\f075"; } .fa.fa-comments-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-comments-o:before { content: "\f086"; } .fa.fa-flash:before { content: "\f0e7"; } .fa.fa-clipboard:before { content: "\f0ea"; } .fa.fa-lightbulb-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-lightbulb-o:before { content: "\f0eb"; } .fa.fa-exchange:before { content: "\f362"; } .fa.fa-cloud-download:before { content: "\f0ed"; } .fa.fa-cloud-upload:before { content: "\f0ee"; } .fa.fa-bell-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-bell-o:before { content: "\f0f3"; } .fa.fa-cutlery:before { content: "\f2e7"; } .fa.fa-file-text-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-text-o:before { content: "\f15c"; } .fa.fa-building-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-building-o:before { content: "\f1ad"; } .fa.fa-hospital-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hospital-o:before { content: "\f0f8"; } .fa.fa-tablet:before { content: "\f3fa"; } .fa.fa-mobile:before { content: "\f3cd"; } .fa.fa-mobile-phone:before { content: "\f3cd"; } .fa.fa-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-circle-o:before { content: "\f111"; } .fa.fa-mail-reply:before { content: "\f3e5"; } .fa.fa-github-alt { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-folder-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-folder-o:before { content: "\f07b"; } .fa.fa-folder-open-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-folder-open-o:before { content: "\f07c"; } .fa.fa-smile-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-smile-o:before { content: "\f118"; } .fa.fa-frown-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-frown-o:before { content: "\f119"; } .fa.fa-meh-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-meh-o:before { content: "\f11a"; } .fa.fa-keyboard-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-keyboard-o:before { content: "\f11c"; } .fa.fa-flag-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-flag-o:before { content: "\f024"; } .fa.fa-mail-reply-all:before { content: "\f122"; } .fa.fa-star-half-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-star-half-o:before { content: "\f5c0"; } .fa.fa-star-half-empty { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-star-half-empty:before { content: "\f5c0"; } .fa.fa-star-half-full { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-star-half-full:before { content: "\f5c0"; } .fa.fa-code-fork:before { content: "\f126"; } .fa.fa-chain-broken:before { content: "\f127"; } .fa.fa-unlink:before { content: "\f127"; } .fa.fa-calendar-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-calendar-o:before { content: "\f133"; } .fa.fa-maxcdn { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-html5 { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-css3 { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-unlock-alt:before { content: "\f09c"; } .fa.fa-minus-square-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-minus-square-o:before { content: "\f146"; } .fa.fa-level-up:before { content: "\f3bf"; } .fa.fa-level-down:before { content: "\f3be"; } .fa.fa-pencil-square:before { content: "\f14b"; } .fa.fa-external-link-square:before { content: "\f360"; } .fa.fa-compass { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-caret-square-o-down { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-caret-square-o-down:before { content: "\f150"; } .fa.fa-toggle-down { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-toggle-down:before { content: "\f150"; } .fa.fa-caret-square-o-up { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-caret-square-o-up:before { content: "\f151"; } .fa.fa-toggle-up { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-toggle-up:before { content: "\f151"; } .fa.fa-caret-square-o-right { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-caret-square-o-right:before { content: "\f152"; } .fa.fa-toggle-right { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-toggle-right:before { content: "\f152"; } .fa.fa-eur:before { content: "\f153"; } .fa.fa-euro:before { content: "\f153"; } .fa.fa-gbp:before { content: "\f154"; } .fa.fa-usd:before { content: "\24"; } .fa.fa-dollar:before { content: "\24"; } .fa.fa-inr:before { content: "\e1bc"; } .fa.fa-rupee:before { content: "\e1bc"; } .fa.fa-jpy:before { content: "\f157"; } .fa.fa-cny:before { content: "\f157"; } .fa.fa-rmb:before { content: "\f157"; } .fa.fa-yen:before { content: "\f157"; } .fa.fa-rub:before { content: "\f158"; } .fa.fa-ruble:before { content: "\f158"; } .fa.fa-rouble:before { content: "\f158"; } .fa.fa-krw:before { content: "\f159"; } .fa.fa-won:before { content: "\f159"; } .fa.fa-btc { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-bitcoin { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-bitcoin:before { content: "\f15a"; } .fa.fa-file-text:before { content: "\f15c"; } .fa.fa-sort-alpha-asc:before { content: "\f15d"; } .fa.fa-sort-alpha-desc:before { content: "\f881"; } .fa.fa-sort-amount-asc:before { content: "\f884"; } .fa.fa-sort-amount-desc:before { content: "\f160"; } .fa.fa-sort-numeric-asc:before { content: "\f162"; } .fa.fa-sort-numeric-desc:before { content: "\f886"; } .fa.fa-youtube-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-youtube-square:before { content: "\f431"; } .fa.fa-youtube { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-xing { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-xing-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-xing-square:before { content: "\f169"; } .fa.fa-youtube-play { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-youtube-play:before { content: "\f167"; } .fa.fa-dropbox { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-stack-overflow { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-instagram { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-flickr { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-adn { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-bitbucket { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-bitbucket-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-bitbucket-square:before { content: "\f171"; } .fa.fa-tumblr { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-tumblr-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-tumblr-square:before { content: "\f174"; } .fa.fa-long-arrow-down:before { content: "\f309"; } .fa.fa-long-arrow-up:before { content: "\f30c"; } .fa.fa-long-arrow-left:before { content: "\f30a"; } .fa.fa-long-arrow-right:before { content: "\f30b"; } .fa.fa-apple { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-windows { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-android { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-linux { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-dribbble { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-skype { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-foursquare { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-trello { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-gratipay { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-gittip { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-gittip:before { content: "\f184"; } .fa.fa-sun-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-sun-o:before { content: "\f185"; } .fa.fa-moon-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-moon-o:before { content: "\f186"; } .fa.fa-vk { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-weibo { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-renren { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-pagelines { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-stack-exchange { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-arrow-circle-o-right { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-arrow-circle-o-right:before { content: "\f35a"; } .fa.fa-arrow-circle-o-left { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-arrow-circle-o-left:before { content: "\f359"; } .fa.fa-caret-square-o-left { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-caret-square-o-left:before { content: "\f191"; } .fa.fa-toggle-left { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-toggle-left:before { content: "\f191"; } .fa.fa-dot-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-dot-circle-o:before { content: "\f192"; } .fa.fa-vimeo-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-vimeo-square:before { content: "\f194"; } .fa.fa-try:before { content: "\e2bb"; } .fa.fa-turkish-lira:before { content: "\e2bb"; } .fa.fa-plus-square-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-plus-square-o:before { content: "\f0fe"; } .fa.fa-slack { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wordpress { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-openid { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-institution:before { content: "\f19c"; } .fa.fa-bank:before { content: "\f19c"; } .fa.fa-mortar-board:before { content: "\f19d"; } .fa.fa-yahoo { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-google { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-reddit { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-reddit-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-reddit-square:before { content: "\f1a2"; } .fa.fa-stumbleupon-circle { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-stumbleupon { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-delicious { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-digg { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-pied-piper-pp { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-pied-piper-alt { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-drupal { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-joomla { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-behance { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-behance-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-behance-square:before { content: "\f1b5"; } .fa.fa-steam { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-steam-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-steam-square:before { content: "\f1b7"; } .fa.fa-automobile:before { content: "\f1b9"; } .fa.fa-cab:before { content: "\f1ba"; } .fa.fa-spotify { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-deviantart { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-soundcloud { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-file-pdf-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-pdf-o:before { content: "\f1c1"; } .fa.fa-file-word-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-word-o:before { content: "\f1c2"; } .fa.fa-file-excel-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-excel-o:before { content: "\f1c3"; } .fa.fa-file-powerpoint-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-powerpoint-o:before { content: "\f1c4"; } .fa.fa-file-image-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-image-o:before { content: "\f1c5"; } .fa.fa-file-photo-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-photo-o:before { content: "\f1c5"; } .fa.fa-file-picture-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-picture-o:before { content: "\f1c5"; } .fa.fa-file-archive-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-archive-o:before { content: "\f1c6"; } .fa.fa-file-zip-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-zip-o:before { content: "\f1c6"; } .fa.fa-file-audio-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-audio-o:before { content: "\f1c7"; } .fa.fa-file-sound-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-sound-o:before { content: "\f1c7"; } .fa.fa-file-video-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-video-o:before { content: "\f1c8"; } .fa.fa-file-movie-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-movie-o:before { content: "\f1c8"; } .fa.fa-file-code-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-file-code-o:before { content: "\f1c9"; } .fa.fa-vine { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-codepen { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-jsfiddle { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-life-bouy:before { content: "\f1cd"; } .fa.fa-life-buoy:before { content: "\f1cd"; } .fa.fa-life-saver:before { content: "\f1cd"; } .fa.fa-support:before { content: "\f1cd"; } .fa.fa-circle-o-notch:before { content: "\f1ce"; } .fa.fa-rebel { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-ra { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-ra:before { content: "\f1d0"; } .fa.fa-resistance { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-resistance:before { content: "\f1d0"; } .fa.fa-empire { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-ge { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-ge:before { content: "\f1d1"; } .fa.fa-git-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-git-square:before { content: "\f1d2"; } .fa.fa-git { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-hacker-news { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-y-combinator-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-y-combinator-square:before { content: "\f1d4"; } .fa.fa-yc-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-yc-square:before { content: "\f1d4"; } .fa.fa-tencent-weibo { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-qq { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-weixin { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wechat { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wechat:before { content: "\f1d7"; } .fa.fa-send:before { content: "\f1d8"; } .fa.fa-paper-plane-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-paper-plane-o:before { content: "\f1d8"; } .fa.fa-send-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-send-o:before { content: "\f1d8"; } .fa.fa-circle-thin { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-circle-thin:before { content: "\f111"; } .fa.fa-header:before { content: "\f1dc"; } .fa.fa-futbol-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-futbol-o:before { content: "\f1e3"; } .fa.fa-soccer-ball-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-soccer-ball-o:before { content: "\f1e3"; } .fa.fa-slideshare { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-twitch { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-yelp { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-newspaper-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-newspaper-o:before { content: "\f1ea"; } .fa.fa-paypal { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-google-wallet { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc-visa { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc-mastercard { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc-discover { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc-amex { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc-paypal { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc-stripe { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-bell-slash-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-bell-slash-o:before { content: "\f1f6"; } .fa.fa-trash:before { content: "\f2ed"; } .fa.fa-copyright { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-eyedropper:before { content: "\f1fb"; } .fa.fa-area-chart:before { content: "\f1fe"; } .fa.fa-pie-chart:before { content: "\f200"; } .fa.fa-line-chart:before { content: "\f201"; } .fa.fa-lastfm { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-lastfm-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-lastfm-square:before { content: "\f203"; } .fa.fa-ioxhost { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-angellist { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-cc:before { content: "\f20a"; } .fa.fa-ils:before { content: "\f20b"; } .fa.fa-shekel:before { content: "\f20b"; } .fa.fa-sheqel:before { content: "\f20b"; } .fa.fa-buysellads { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-connectdevelop { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-dashcube { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-forumbee { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-leanpub { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-sellsy { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-shirtsinbulk { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-simplybuilt { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-skyatlas { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-diamond { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-diamond:before { content: "\f3a5"; } .fa.fa-transgender:before { content: "\f224"; } .fa.fa-intersex:before { content: "\f224"; } .fa.fa-transgender-alt:before { content: "\f225"; } .fa.fa-facebook-official { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-facebook-official:before { content: "\f09a"; } .fa.fa-pinterest-p { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-whatsapp { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-hotel:before { content: "\f236"; } .fa.fa-viacoin { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-medium { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-y-combinator { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-yc { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-yc:before { content: "\f23b"; } .fa.fa-optin-monster { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-opencart { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-expeditedssl { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-battery-4:before { content: "\f240"; } .fa.fa-battery:before { content: "\f240"; } .fa.fa-battery-3:before { content: "\f241"; } .fa.fa-battery-2:before { content: "\f242"; } .fa.fa-battery-1:before { content: "\f243"; } .fa.fa-battery-0:before { content: "\f244"; } .fa.fa-object-group { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-object-ungroup { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-sticky-note-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-sticky-note-o:before { content: "\f249"; } .fa.fa-cc-jcb { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-cc-diners-club { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-clone { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hourglass-o:before { content: "\f254"; } .fa.fa-hourglass-1:before { content: "\f251"; } .fa.fa-hourglass-2:before { content: "\f252"; } .fa.fa-hourglass-3:before { content: "\f253"; } .fa.fa-hand-rock-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-rock-o:before { content: "\f255"; } .fa.fa-hand-grab-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-grab-o:before { content: "\f255"; } .fa.fa-hand-paper-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-paper-o:before { content: "\f256"; } .fa.fa-hand-stop-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-stop-o:before { content: "\f256"; } .fa.fa-hand-scissors-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-scissors-o:before { content: "\f257"; } .fa.fa-hand-lizard-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-lizard-o:before { content: "\f258"; } .fa.fa-hand-spock-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-spock-o:before { content: "\f259"; } .fa.fa-hand-pointer-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-pointer-o:before { content: "\f25a"; } .fa.fa-hand-peace-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-hand-peace-o:before { content: "\f25b"; } .fa.fa-registered { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-creative-commons { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-gg { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-gg-circle { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-odnoklassniki { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-odnoklassniki-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-odnoklassniki-square:before { content: "\f264"; } .fa.fa-get-pocket { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wikipedia-w { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-safari { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-chrome { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-firefox { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-opera { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-internet-explorer { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-television:before { content: "\f26c"; } .fa.fa-contao { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-500px { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-amazon { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-calendar-plus-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-calendar-plus-o:before { content: "\f271"; } .fa.fa-calendar-minus-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-calendar-minus-o:before { content: "\f272"; } .fa.fa-calendar-times-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-calendar-times-o:before { content: "\f273"; } .fa.fa-calendar-check-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-calendar-check-o:before { content: "\f274"; } .fa.fa-map-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-map-o:before { content: "\f279"; } .fa.fa-commenting:before { content: "\f4ad"; } .fa.fa-commenting-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-commenting-o:before { content: "\f4ad"; } .fa.fa-houzz { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-vimeo { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-vimeo:before { content: "\f27d"; } .fa.fa-black-tie { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-fonticons { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-reddit-alien { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-edge { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-credit-card-alt:before { content: "\f09d"; } .fa.fa-codiepie { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-modx { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-fort-awesome { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-usb { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-product-hunt { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-mixcloud { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-scribd { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-pause-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-pause-circle-o:before { content: "\f28b"; } .fa.fa-stop-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-stop-circle-o:before { content: "\f28d"; } .fa.fa-bluetooth { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-bluetooth-b { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-gitlab { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wpbeginner { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wpforms { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-envira { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wheelchair-alt { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wheelchair-alt:before { content: "\f368"; } .fa.fa-question-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-question-circle-o:before { content: "\f059"; } .fa.fa-volume-control-phone:before { content: "\f2a0"; } .fa.fa-asl-interpreting:before { content: "\f2a3"; } .fa.fa-deafness:before { content: "\f2a4"; } .fa.fa-hard-of-hearing:before { content: "\f2a4"; } .fa.fa-glide { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-glide-g { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-signing:before { content: "\f2a7"; } .fa.fa-viadeo { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-viadeo-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-viadeo-square:before { content: "\f2aa"; } .fa.fa-snapchat { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-snapchat-ghost { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-snapchat-ghost:before { content: "\f2ab"; } .fa.fa-snapchat-square { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-snapchat-square:before { content: "\f2ad"; } .fa.fa-pied-piper { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-first-order { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-yoast { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-themeisle { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-google-plus-official { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-google-plus-official:before { content: "\f2b3"; } .fa.fa-google-plus-circle { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-google-plus-circle:before { content: "\f2b3"; } .fa.fa-font-awesome { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-fa { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-fa:before { content: "\f2b4"; } .fa.fa-handshake-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-handshake-o:before { content: "\f2b5"; } .fa.fa-envelope-open-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-envelope-open-o:before { content: "\f2b6"; } .fa.fa-linode { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-address-book-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-address-book-o:before { content: "\f2b9"; } .fa.fa-vcard:before { content: "\f2bb"; } .fa.fa-address-card-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-address-card-o:before { content: "\f2bb"; } .fa.fa-vcard-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-vcard-o:before { content: "\f2bb"; } .fa.fa-user-circle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-user-circle-o:before { content: "\f2bd"; } .fa.fa-user-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-user-o:before { content: "\f007"; } .fa.fa-id-badge { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-drivers-license:before { content: "\f2c2"; } .fa.fa-id-card-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-id-card-o:before { content: "\f2c2"; } .fa.fa-drivers-license-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-drivers-license-o:before { content: "\f2c2"; } .fa.fa-quora { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-free-code-camp { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-telegram { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-thermometer-4:before { content: "\f2c7"; } .fa.fa-thermometer:before { content: "\f2c7"; } .fa.fa-thermometer-3:before { content: "\f2c8"; } .fa.fa-thermometer-2:before { content: "\f2c9"; } .fa.fa-thermometer-1:before { content: "\f2ca"; } .fa.fa-thermometer-0:before { content: "\f2cb"; } .fa.fa-bathtub:before { content: "\f2cd"; } .fa.fa-s15:before { content: "\f2cd"; } .fa.fa-window-maximize { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-window-restore { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-times-rectangle:before { content: "\f410"; } .fa.fa-window-close-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-window-close-o:before { content: "\f410"; } .fa.fa-times-rectangle-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-times-rectangle-o:before { content: "\f410"; } .fa.fa-bandcamp { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-grav { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-etsy { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-imdb { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-ravelry { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-eercast { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-eercast:before { content: "\f2da"; } .fa.fa-snowflake-o { font-family: 'Font Awesome 6 Free'; font-weight: 400; } .fa.fa-snowflake-o:before { content: "\f2dc"; } .fa.fa-superpowers { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-wpexplorer { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } .fa.fa-meetup { font-family: 'Font Awesome 6 Brands'; font-weight: 400; } fontawesome/inst/fontawesome/css/v4-shims.min.css0000644000176200001440000006571114470000401021643 0ustar liggesusers/*! * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2023 Fonticons, Inc. */ .fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-twitter-square:before{content:"\f081"}.fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-square:before{content:"\f082"}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-github-square:before{content:"\f092"}.fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pinterest-square:before{content:"\f0d3"}.fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-square:before{content:"\f0d4"}.fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-square:before{content:"\f431"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-xing-square:before{content:"\f169"}.fa.fa-youtube-play{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-tumblr-square:before{content:"\f174"}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo-square:before{content:"\f194"}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-google,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-reddit-square:before{content:"\f1a2"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-behance-square:before{content:"\f1b5"}.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-steam-square:before{content:"\f1b7"}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-git-square:before{content:"\f1d2"}.fa.fa-git,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lastfm-square:before{content:"\f203"}.fa.fa-angellist,.fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-creative-commons,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-odnoklassniki-square:before{content:"\f264"}.fa.fa-chrome,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-internet-explorer,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-viadeo-square:before{content:"\f2aa"}.fa.fa-snapchat,.fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-square:before{content:"\f2ad"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400}fontawesome/inst/fontawesome/css/all.min.css0000644000176200001440000030612214470000403020735 0ustar liggesusers/*! * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2023 Fonticons, Inc. */ .fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)} .fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"} .fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); }fontawesome/inst/fontawesome/css/all.css0000644000176200001440000042026514470000403020160 0ustar liggesusers/*! * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2023 Fonticons, Inc. */ .fa { font-family: var(--fa-style-family, "Font Awesome 6 Free"); font-weight: var(--fa-style, 900); } .fa, .fa-classic, .fa-sharp, .fas, .fa-solid, .far, .fa-regular, .fab, .fa-brands { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: var(--fa-display, inline-block); font-style: normal; font-variant: normal; line-height: 1; text-rendering: auto; } .fas, .fa-classic, .fa-solid, .far, .fa-regular { font-family: 'Font Awesome 6 Free'; } .fab, .fa-brands { font-family: 'Font Awesome 6 Brands'; } .fa-1x { font-size: 1em; } .fa-2x { font-size: 2em; } .fa-3x { font-size: 3em; } .fa-4x { font-size: 4em; } .fa-5x { font-size: 5em; } .fa-6x { font-size: 6em; } .fa-7x { font-size: 7em; } .fa-8x { font-size: 8em; } .fa-9x { font-size: 9em; } .fa-10x { font-size: 10em; } .fa-2xs { font-size: 0.625em; line-height: 0.1em; vertical-align: 0.225em; } .fa-xs { font-size: 0.75em; line-height: 0.08333em; vertical-align: 0.125em; } .fa-sm { font-size: 0.875em; line-height: 0.07143em; vertical-align: 0.05357em; } .fa-lg { font-size: 1.25em; line-height: 0.05em; vertical-align: -0.075em; } .fa-xl { font-size: 1.5em; line-height: 0.04167em; vertical-align: -0.125em; } .fa-2xl { font-size: 2em; line-height: 0.03125em; vertical-align: -0.1875em; } .fa-fw { text-align: center; width: 1.25em; } .fa-ul { list-style-type: none; margin-left: var(--fa-li-margin, 2.5em); padding-left: 0; } .fa-ul > li { position: relative; } .fa-li { left: calc(var(--fa-li-width, 2em) * -1); position: absolute; text-align: center; width: var(--fa-li-width, 2em); line-height: inherit; } .fa-border { border-color: var(--fa-border-color, #eee); border-radius: var(--fa-border-radius, 0.1em); border-style: var(--fa-border-style, solid); border-width: var(--fa-border-width, 0.08em); padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } .fa-pull-left { float: left; margin-right: var(--fa-pull-margin, 0.3em); } .fa-pull-right { float: right; margin-left: var(--fa-pull-margin, 0.3em); } .fa-beat { -webkit-animation-name: fa-beat; animation-name: fa-beat; -webkit-animation-delay: var(--fa-animation-delay, 0s); animation-delay: var(--fa-animation-delay, 0s); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); animation-timing-function: var(--fa-animation-timing, ease-in-out); } .fa-bounce { -webkit-animation-name: fa-bounce; animation-name: fa-bounce; -webkit-animation-delay: var(--fa-animation-delay, 0s); animation-delay: var(--fa-animation-delay, 0s); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } .fa-fade { -webkit-animation-name: fa-fade; animation-name: fa-fade; -webkit-animation-delay: var(--fa-animation-delay, 0s); animation-delay: var(--fa-animation-delay, 0s); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } .fa-beat-fade { -webkit-animation-name: fa-beat-fade; animation-name: fa-beat-fade; -webkit-animation-delay: var(--fa-animation-delay, 0s); animation-delay: var(--fa-animation-delay, 0s); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } .fa-flip { -webkit-animation-name: fa-flip; animation-name: fa-flip; -webkit-animation-delay: var(--fa-animation-delay, 0s); animation-delay: var(--fa-animation-delay, 0s); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); animation-timing-function: var(--fa-animation-timing, ease-in-out); } .fa-shake { -webkit-animation-name: fa-shake; animation-name: fa-shake; -webkit-animation-delay: var(--fa-animation-delay, 0s); animation-delay: var(--fa-animation-delay, 0s); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, linear); animation-timing-function: var(--fa-animation-timing, linear); } .fa-spin { -webkit-animation-name: fa-spin; animation-name: fa-spin; -webkit-animation-delay: var(--fa-animation-delay, 0s); animation-delay: var(--fa-animation-delay, 0s); -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 2s); animation-duration: var(--fa-animation-duration, 2s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, linear); animation-timing-function: var(--fa-animation-timing, linear); } .fa-spin-reverse { --fa-animation-direction: reverse; } .fa-pulse, .fa-spin-pulse { -webkit-animation-name: fa-spin; animation-name: fa-spin; -webkit-animation-direction: var(--fa-animation-direction, normal); animation-direction: var(--fa-animation-direction, normal); -webkit-animation-duration: var(--fa-animation-duration, 1s); animation-duration: var(--fa-animation-duration, 1s); -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-iteration-count: var(--fa-animation-iteration-count, infinite); -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); animation-timing-function: var(--fa-animation-timing, steps(8)); } @media (prefers-reduced-motion: reduce) { .fa-beat, .fa-bounce, .fa-fade, .fa-beat-fade, .fa-flip, .fa-pulse, .fa-shake, .fa-spin, .fa-spin-pulse { -webkit-animation-delay: -1ms; animation-delay: -1ms; -webkit-animation-duration: 1ms; animation-duration: 1ms; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; -webkit-transition-delay: 0s; transition-delay: 0s; -webkit-transition-duration: 0s; transition-duration: 0s; } } @-webkit-keyframes fa-beat { 0%, 90% { -webkit-transform: scale(1); transform: scale(1); } 45% { -webkit-transform: scale(var(--fa-beat-scale, 1.25)); transform: scale(var(--fa-beat-scale, 1.25)); } } @keyframes fa-beat { 0%, 90% { -webkit-transform: scale(1); transform: scale(1); } 45% { -webkit-transform: scale(var(--fa-beat-scale, 1.25)); transform: scale(var(--fa-beat-scale, 1.25)); } } @-webkit-keyframes fa-bounce { 0% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 10% { -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 30% { -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 50% { -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 57% { -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 64% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 100% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } } @keyframes fa-bounce { 0% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 10% { -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 30% { -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 50% { -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 57% { -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 64% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } 100% { -webkit-transform: scale(1, 1) translateY(0); transform: scale(1, 1) translateY(0); } } @-webkit-keyframes fa-fade { 50% { opacity: var(--fa-fade-opacity, 0.4); } } @keyframes fa-fade { 50% { opacity: var(--fa-fade-opacity, 0.4); } } @-webkit-keyframes fa-beat-fade { 0%, 100% { opacity: var(--fa-beat-fade-opacity, 0.4); -webkit-transform: scale(1); transform: scale(1); } 50% { opacity: 1; -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); transform: scale(var(--fa-beat-fade-scale, 1.125)); } } @keyframes fa-beat-fade { 0%, 100% { opacity: var(--fa-beat-fade-opacity, 0.4); -webkit-transform: scale(1); transform: scale(1); } 50% { opacity: 1; -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); transform: scale(var(--fa-beat-fade-scale, 1.125)); } } @-webkit-keyframes fa-flip { 50% { -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } @keyframes fa-flip { 50% { -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } @-webkit-keyframes fa-shake { 0% { -webkit-transform: rotate(-15deg); transform: rotate(-15deg); } 4% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 8%, 24% { -webkit-transform: rotate(-18deg); transform: rotate(-18deg); } 12%, 28% { -webkit-transform: rotate(18deg); transform: rotate(18deg); } 16% { -webkit-transform: rotate(-22deg); transform: rotate(-22deg); } 20% { -webkit-transform: rotate(22deg); transform: rotate(22deg); } 32% { -webkit-transform: rotate(-12deg); transform: rotate(-12deg); } 36% { -webkit-transform: rotate(12deg); transform: rotate(12deg); } 40%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } } @keyframes fa-shake { 0% { -webkit-transform: rotate(-15deg); transform: rotate(-15deg); } 4% { -webkit-transform: rotate(15deg); transform: rotate(15deg); } 8%, 24% { -webkit-transform: rotate(-18deg); transform: rotate(-18deg); } 12%, 28% { -webkit-transform: rotate(18deg); transform: rotate(18deg); } 16% { -webkit-transform: rotate(-22deg); transform: rotate(-22deg); } 20% { -webkit-transform: rotate(22deg); transform: rotate(22deg); } 32% { -webkit-transform: rotate(-12deg); transform: rotate(-12deg); } 36% { -webkit-transform: rotate(12deg); transform: rotate(12deg); } 40%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } } @-webkit-keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .fa-rotate-90 { -webkit-transform: rotate(90deg); transform: rotate(90deg); } .fa-rotate-180 { -webkit-transform: rotate(180deg); transform: rotate(180deg); } .fa-rotate-270 { -webkit-transform: rotate(270deg); transform: rotate(270deg); } .fa-flip-horizontal { -webkit-transform: scale(-1, 1); transform: scale(-1, 1); } .fa-flip-vertical { -webkit-transform: scale(1, -1); transform: scale(1, -1); } .fa-flip-both, .fa-flip-horizontal.fa-flip-vertical { -webkit-transform: scale(-1, -1); transform: scale(-1, -1); } .fa-rotate-by { -webkit-transform: rotate(var(--fa-rotate-angle, none)); transform: rotate(var(--fa-rotate-angle, none)); } .fa-stack { display: inline-block; height: 2em; line-height: 2em; position: relative; vertical-align: middle; width: 2.5em; } .fa-stack-1x, .fa-stack-2x { left: 0; position: absolute; text-align: center; width: 100%; z-index: var(--fa-stack-z-index, auto); } .fa-stack-1x { line-height: inherit; } .fa-stack-2x { font-size: 2em; } .fa-inverse { color: var(--fa-inverse, #fff); } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .fa-0::before { content: "\30"; } .fa-1::before { content: "\31"; } .fa-2::before { content: "\32"; } .fa-3::before { content: "\33"; } .fa-4::before { content: "\34"; } .fa-5::before { content: "\35"; } .fa-6::before { content: "\36"; } .fa-7::before { content: "\37"; } .fa-8::before { content: "\38"; } .fa-9::before { content: "\39"; } .fa-fill-drip::before { content: "\f576"; } .fa-arrows-to-circle::before { content: "\e4bd"; } .fa-circle-chevron-right::before { content: "\f138"; } .fa-chevron-circle-right::before { content: "\f138"; } .fa-at::before { content: "\40"; } .fa-trash-can::before { content: "\f2ed"; } .fa-trash-alt::before { content: "\f2ed"; } .fa-text-height::before { content: "\f034"; } .fa-user-xmark::before { content: "\f235"; } .fa-user-times::before { content: "\f235"; } .fa-stethoscope::before { content: "\f0f1"; } .fa-message::before { content: "\f27a"; } .fa-comment-alt::before { content: "\f27a"; } .fa-info::before { content: "\f129"; } .fa-down-left-and-up-right-to-center::before { content: "\f422"; } .fa-compress-alt::before { content: "\f422"; } .fa-explosion::before { content: "\e4e9"; } .fa-file-lines::before { content: "\f15c"; } .fa-file-alt::before { content: "\f15c"; } .fa-file-text::before { content: "\f15c"; } .fa-wave-square::before { content: "\f83e"; } .fa-ring::before { content: "\f70b"; } .fa-building-un::before { content: "\e4d9"; } .fa-dice-three::before { content: "\f527"; } .fa-calendar-days::before { content: "\f073"; } .fa-calendar-alt::before { content: "\f073"; } .fa-anchor-circle-check::before { content: "\e4aa"; } .fa-building-circle-arrow-right::before { content: "\e4d1"; } .fa-volleyball::before { content: "\f45f"; } .fa-volleyball-ball::before { content: "\f45f"; } .fa-arrows-up-to-line::before { content: "\e4c2"; } .fa-sort-down::before { content: "\f0dd"; } .fa-sort-desc::before { content: "\f0dd"; } .fa-circle-minus::before { content: "\f056"; } .fa-minus-circle::before { content: "\f056"; } .fa-door-open::before { content: "\f52b"; } .fa-right-from-bracket::before { content: "\f2f5"; } .fa-sign-out-alt::before { content: "\f2f5"; } .fa-atom::before { content: "\f5d2"; } .fa-soap::before { content: "\e06e"; } .fa-icons::before { content: "\f86d"; } .fa-heart-music-camera-bolt::before { content: "\f86d"; } .fa-microphone-lines-slash::before { content: "\f539"; } .fa-microphone-alt-slash::before { content: "\f539"; } .fa-bridge-circle-check::before { content: "\e4c9"; } .fa-pump-medical::before { content: "\e06a"; } .fa-fingerprint::before { content: "\f577"; } .fa-hand-point-right::before { content: "\f0a4"; } .fa-magnifying-glass-location::before { content: "\f689"; } .fa-search-location::before { content: "\f689"; } .fa-forward-step::before { content: "\f051"; } .fa-step-forward::before { content: "\f051"; } .fa-face-smile-beam::before { content: "\f5b8"; } .fa-smile-beam::before { content: "\f5b8"; } .fa-flag-checkered::before { content: "\f11e"; } .fa-football::before { content: "\f44e"; } .fa-football-ball::before { content: "\f44e"; } .fa-school-circle-exclamation::before { content: "\e56c"; } .fa-crop::before { content: "\f125"; } .fa-angles-down::before { content: "\f103"; } .fa-angle-double-down::before { content: "\f103"; } .fa-users-rectangle::before { content: "\e594"; } .fa-people-roof::before { content: "\e537"; } .fa-people-line::before { content: "\e534"; } .fa-beer-mug-empty::before { content: "\f0fc"; } .fa-beer::before { content: "\f0fc"; } .fa-diagram-predecessor::before { content: "\e477"; } .fa-arrow-up-long::before { content: "\f176"; } .fa-long-arrow-up::before { content: "\f176"; } .fa-fire-flame-simple::before { content: "\f46a"; } .fa-burn::before { content: "\f46a"; } .fa-person::before { content: "\f183"; } .fa-male::before { content: "\f183"; } .fa-laptop::before { content: "\f109"; } .fa-file-csv::before { content: "\f6dd"; } .fa-menorah::before { content: "\f676"; } .fa-truck-plane::before { content: "\e58f"; } .fa-record-vinyl::before { content: "\f8d9"; } .fa-face-grin-stars::before { content: "\f587"; } .fa-grin-stars::before { content: "\f587"; } .fa-bong::before { content: "\f55c"; } .fa-spaghetti-monster-flying::before { content: "\f67b"; } .fa-pastafarianism::before { content: "\f67b"; } .fa-arrow-down-up-across-line::before { content: "\e4af"; } .fa-spoon::before { content: "\f2e5"; } .fa-utensil-spoon::before { content: "\f2e5"; } .fa-jar-wheat::before { content: "\e517"; } .fa-envelopes-bulk::before { content: "\f674"; } .fa-mail-bulk::before { content: "\f674"; } .fa-file-circle-exclamation::before { content: "\e4eb"; } .fa-circle-h::before { content: "\f47e"; } .fa-hospital-symbol::before { content: "\f47e"; } .fa-pager::before { content: "\f815"; } .fa-address-book::before { content: "\f2b9"; } .fa-contact-book::before { content: "\f2b9"; } .fa-strikethrough::before { content: "\f0cc"; } .fa-k::before { content: "\4b"; } .fa-landmark-flag::before { content: "\e51c"; } .fa-pencil::before { content: "\f303"; } .fa-pencil-alt::before { content: "\f303"; } .fa-backward::before { content: "\f04a"; } .fa-caret-right::before { content: "\f0da"; } .fa-comments::before { content: "\f086"; } .fa-paste::before { content: "\f0ea"; } .fa-file-clipboard::before { content: "\f0ea"; } .fa-code-pull-request::before { content: "\e13c"; } .fa-clipboard-list::before { content: "\f46d"; } .fa-truck-ramp-box::before { content: "\f4de"; } .fa-truck-loading::before { content: "\f4de"; } .fa-user-check::before { content: "\f4fc"; } .fa-vial-virus::before { content: "\e597"; } .fa-sheet-plastic::before { content: "\e571"; } .fa-blog::before { content: "\f781"; } .fa-user-ninja::before { content: "\f504"; } .fa-person-arrow-up-from-line::before { content: "\e539"; } .fa-scroll-torah::before { content: "\f6a0"; } .fa-torah::before { content: "\f6a0"; } .fa-broom-ball::before { content: "\f458"; } .fa-quidditch::before { content: "\f458"; } .fa-quidditch-broom-ball::before { content: "\f458"; } .fa-toggle-off::before { content: "\f204"; } .fa-box-archive::before { content: "\f187"; } .fa-archive::before { content: "\f187"; } .fa-person-drowning::before { content: "\e545"; } .fa-arrow-down-9-1::before { content: "\f886"; } .fa-sort-numeric-desc::before { content: "\f886"; } .fa-sort-numeric-down-alt::before { content: "\f886"; } .fa-face-grin-tongue-squint::before { content: "\f58a"; } .fa-grin-tongue-squint::before { content: "\f58a"; } .fa-spray-can::before { content: "\f5bd"; } .fa-truck-monster::before { content: "\f63b"; } .fa-w::before { content: "\57"; } .fa-earth-africa::before { content: "\f57c"; } .fa-globe-africa::before { content: "\f57c"; } .fa-rainbow::before { content: "\f75b"; } .fa-circle-notch::before { content: "\f1ce"; } .fa-tablet-screen-button::before { content: "\f3fa"; } .fa-tablet-alt::before { content: "\f3fa"; } .fa-paw::before { content: "\f1b0"; } .fa-cloud::before { content: "\f0c2"; } .fa-trowel-bricks::before { content: "\e58a"; } .fa-face-flushed::before { content: "\f579"; } .fa-flushed::before { content: "\f579"; } .fa-hospital-user::before { content: "\f80d"; } .fa-tent-arrow-left-right::before { content: "\e57f"; } .fa-gavel::before { content: "\f0e3"; } .fa-legal::before { content: "\f0e3"; } .fa-binoculars::before { content: "\f1e5"; } .fa-microphone-slash::before { content: "\f131"; } .fa-box-tissue::before { content: "\e05b"; } .fa-motorcycle::before { content: "\f21c"; } .fa-bell-concierge::before { content: "\f562"; } .fa-concierge-bell::before { content: "\f562"; } .fa-pen-ruler::before { content: "\f5ae"; } .fa-pencil-ruler::before { content: "\f5ae"; } .fa-people-arrows::before { content: "\e068"; } .fa-people-arrows-left-right::before { content: "\e068"; } .fa-mars-and-venus-burst::before { content: "\e523"; } .fa-square-caret-right::before { content: "\f152"; } .fa-caret-square-right::before { content: "\f152"; } .fa-scissors::before { content: "\f0c4"; } .fa-cut::before { content: "\f0c4"; } .fa-sun-plant-wilt::before { content: "\e57a"; } .fa-toilets-portable::before { content: "\e584"; } .fa-hockey-puck::before { content: "\f453"; } .fa-table::before { content: "\f0ce"; } .fa-magnifying-glass-arrow-right::before { content: "\e521"; } .fa-tachograph-digital::before { content: "\f566"; } .fa-digital-tachograph::before { content: "\f566"; } .fa-users-slash::before { content: "\e073"; } .fa-clover::before { content: "\e139"; } .fa-reply::before { content: "\f3e5"; } .fa-mail-reply::before { content: "\f3e5"; } .fa-star-and-crescent::before { content: "\f699"; } .fa-house-fire::before { content: "\e50c"; } .fa-square-minus::before { content: "\f146"; } .fa-minus-square::before { content: "\f146"; } .fa-helicopter::before { content: "\f533"; } .fa-compass::before { content: "\f14e"; } .fa-square-caret-down::before { content: "\f150"; } .fa-caret-square-down::before { content: "\f150"; } .fa-file-circle-question::before { content: "\e4ef"; } .fa-laptop-code::before { content: "\f5fc"; } .fa-swatchbook::before { content: "\f5c3"; } .fa-prescription-bottle::before { content: "\f485"; } .fa-bars::before { content: "\f0c9"; } .fa-navicon::before { content: "\f0c9"; } .fa-people-group::before { content: "\e533"; } .fa-hourglass-end::before { content: "\f253"; } .fa-hourglass-3::before { content: "\f253"; } .fa-heart-crack::before { content: "\f7a9"; } .fa-heart-broken::before { content: "\f7a9"; } .fa-square-up-right::before { content: "\f360"; } .fa-external-link-square-alt::before { content: "\f360"; } .fa-face-kiss-beam::before { content: "\f597"; } .fa-kiss-beam::before { content: "\f597"; } .fa-film::before { content: "\f008"; } .fa-ruler-horizontal::before { content: "\f547"; } .fa-people-robbery::before { content: "\e536"; } .fa-lightbulb::before { content: "\f0eb"; } .fa-caret-left::before { content: "\f0d9"; } .fa-circle-exclamation::before { content: "\f06a"; } .fa-exclamation-circle::before { content: "\f06a"; } .fa-school-circle-xmark::before { content: "\e56d"; } .fa-arrow-right-from-bracket::before { content: "\f08b"; } .fa-sign-out::before { content: "\f08b"; } .fa-circle-chevron-down::before { content: "\f13a"; } .fa-chevron-circle-down::before { content: "\f13a"; } .fa-unlock-keyhole::before { content: "\f13e"; } .fa-unlock-alt::before { content: "\f13e"; } .fa-cloud-showers-heavy::before { content: "\f740"; } .fa-headphones-simple::before { content: "\f58f"; } .fa-headphones-alt::before { content: "\f58f"; } .fa-sitemap::before { content: "\f0e8"; } .fa-circle-dollar-to-slot::before { content: "\f4b9"; } .fa-donate::before { content: "\f4b9"; } .fa-memory::before { content: "\f538"; } .fa-road-spikes::before { content: "\e568"; } .fa-fire-burner::before { content: "\e4f1"; } .fa-flag::before { content: "\f024"; } .fa-hanukiah::before { content: "\f6e6"; } .fa-feather::before { content: "\f52d"; } .fa-volume-low::before { content: "\f027"; } .fa-volume-down::before { content: "\f027"; } .fa-comment-slash::before { content: "\f4b3"; } .fa-cloud-sun-rain::before { content: "\f743"; } .fa-compress::before { content: "\f066"; } .fa-wheat-awn::before { content: "\e2cd"; } .fa-wheat-alt::before { content: "\e2cd"; } .fa-ankh::before { content: "\f644"; } .fa-hands-holding-child::before { content: "\e4fa"; } .fa-asterisk::before { content: "\2a"; } .fa-square-check::before { content: "\f14a"; } .fa-check-square::before { content: "\f14a"; } .fa-peseta-sign::before { content: "\e221"; } .fa-heading::before { content: "\f1dc"; } .fa-header::before { content: "\f1dc"; } .fa-ghost::before { content: "\f6e2"; } .fa-list::before { content: "\f03a"; } .fa-list-squares::before { content: "\f03a"; } .fa-square-phone-flip::before { content: "\f87b"; } .fa-phone-square-alt::before { content: "\f87b"; } .fa-cart-plus::before { content: "\f217"; } .fa-gamepad::before { content: "\f11b"; } .fa-circle-dot::before { content: "\f192"; } .fa-dot-circle::before { content: "\f192"; } .fa-face-dizzy::before { content: "\f567"; } .fa-dizzy::before { content: "\f567"; } .fa-egg::before { content: "\f7fb"; } .fa-house-medical-circle-xmark::before { content: "\e513"; } .fa-campground::before { content: "\f6bb"; } .fa-folder-plus::before { content: "\f65e"; } .fa-futbol::before { content: "\f1e3"; } .fa-futbol-ball::before { content: "\f1e3"; } .fa-soccer-ball::before { content: "\f1e3"; } .fa-paintbrush::before { content: "\f1fc"; } .fa-paint-brush::before { content: "\f1fc"; } .fa-lock::before { content: "\f023"; } .fa-gas-pump::before { content: "\f52f"; } .fa-hot-tub-person::before { content: "\f593"; } .fa-hot-tub::before { content: "\f593"; } .fa-map-location::before { content: "\f59f"; } .fa-map-marked::before { content: "\f59f"; } .fa-house-flood-water::before { content: "\e50e"; } .fa-tree::before { content: "\f1bb"; } .fa-bridge-lock::before { content: "\e4cc"; } .fa-sack-dollar::before { content: "\f81d"; } .fa-pen-to-square::before { content: "\f044"; } .fa-edit::before { content: "\f044"; } .fa-car-side::before { content: "\f5e4"; } .fa-share-nodes::before { content: "\f1e0"; } .fa-share-alt::before { content: "\f1e0"; } .fa-heart-circle-minus::before { content: "\e4ff"; } .fa-hourglass-half::before { content: "\f252"; } .fa-hourglass-2::before { content: "\f252"; } .fa-microscope::before { content: "\f610"; } .fa-sink::before { content: "\e06d"; } .fa-bag-shopping::before { content: "\f290"; } .fa-shopping-bag::before { content: "\f290"; } .fa-arrow-down-z-a::before { content: "\f881"; } .fa-sort-alpha-desc::before { content: "\f881"; } .fa-sort-alpha-down-alt::before { content: "\f881"; } .fa-mitten::before { content: "\f7b5"; } .fa-person-rays::before { content: "\e54d"; } .fa-users::before { content: "\f0c0"; } .fa-eye-slash::before { content: "\f070"; } .fa-flask-vial::before { content: "\e4f3"; } .fa-hand::before { content: "\f256"; } .fa-hand-paper::before { content: "\f256"; } .fa-om::before { content: "\f679"; } .fa-worm::before { content: "\e599"; } .fa-house-circle-xmark::before { content: "\e50b"; } .fa-plug::before { content: "\f1e6"; } .fa-chevron-up::before { content: "\f077"; } .fa-hand-spock::before { content: "\f259"; } .fa-stopwatch::before { content: "\f2f2"; } .fa-face-kiss::before { content: "\f596"; } .fa-kiss::before { content: "\f596"; } .fa-bridge-circle-xmark::before { content: "\e4cb"; } .fa-face-grin-tongue::before { content: "\f589"; } .fa-grin-tongue::before { content: "\f589"; } .fa-chess-bishop::before { content: "\f43a"; } .fa-face-grin-wink::before { content: "\f58c"; } .fa-grin-wink::before { content: "\f58c"; } .fa-ear-deaf::before { content: "\f2a4"; } .fa-deaf::before { content: "\f2a4"; } .fa-deafness::before { content: "\f2a4"; } .fa-hard-of-hearing::before { content: "\f2a4"; } .fa-road-circle-check::before { content: "\e564"; } .fa-dice-five::before { content: "\f523"; } .fa-square-rss::before { content: "\f143"; } .fa-rss-square::before { content: "\f143"; } .fa-land-mine-on::before { content: "\e51b"; } .fa-i-cursor::before { content: "\f246"; } .fa-stamp::before { content: "\f5bf"; } .fa-stairs::before { content: "\e289"; } .fa-i::before { content: "\49"; } .fa-hryvnia-sign::before { content: "\f6f2"; } .fa-hryvnia::before { content: "\f6f2"; } .fa-pills::before { content: "\f484"; } .fa-face-grin-wide::before { content: "\f581"; } .fa-grin-alt::before { content: "\f581"; } .fa-tooth::before { content: "\f5c9"; } .fa-v::before { content: "\56"; } .fa-bangladeshi-taka-sign::before { content: "\e2e6"; } .fa-bicycle::before { content: "\f206"; } .fa-staff-snake::before { content: "\e579"; } .fa-rod-asclepius::before { content: "\e579"; } .fa-rod-snake::before { content: "\e579"; } .fa-staff-aesculapius::before { content: "\e579"; } .fa-head-side-cough-slash::before { content: "\e062"; } .fa-truck-medical::before { content: "\f0f9"; } .fa-ambulance::before { content: "\f0f9"; } .fa-wheat-awn-circle-exclamation::before { content: "\e598"; } .fa-snowman::before { content: "\f7d0"; } .fa-mortar-pestle::before { content: "\f5a7"; } .fa-road-barrier::before { content: "\e562"; } .fa-school::before { content: "\f549"; } .fa-igloo::before { content: "\f7ae"; } .fa-joint::before { content: "\f595"; } .fa-angle-right::before { content: "\f105"; } .fa-horse::before { content: "\f6f0"; } .fa-q::before { content: "\51"; } .fa-g::before { content: "\47"; } .fa-notes-medical::before { content: "\f481"; } .fa-temperature-half::before { content: "\f2c9"; } .fa-temperature-2::before { content: "\f2c9"; } .fa-thermometer-2::before { content: "\f2c9"; } .fa-thermometer-half::before { content: "\f2c9"; } .fa-dong-sign::before { content: "\e169"; } .fa-capsules::before { content: "\f46b"; } .fa-poo-storm::before { content: "\f75a"; } .fa-poo-bolt::before { content: "\f75a"; } .fa-face-frown-open::before { content: "\f57a"; } .fa-frown-open::before { content: "\f57a"; } .fa-hand-point-up::before { content: "\f0a6"; } .fa-money-bill::before { content: "\f0d6"; } .fa-bookmark::before { content: "\f02e"; } .fa-align-justify::before { content: "\f039"; } .fa-umbrella-beach::before { content: "\f5ca"; } .fa-helmet-un::before { content: "\e503"; } .fa-bullseye::before { content: "\f140"; } .fa-bacon::before { content: "\f7e5"; } .fa-hand-point-down::before { content: "\f0a7"; } .fa-arrow-up-from-bracket::before { content: "\e09a"; } .fa-folder::before { content: "\f07b"; } .fa-folder-blank::before { content: "\f07b"; } .fa-file-waveform::before { content: "\f478"; } .fa-file-medical-alt::before { content: "\f478"; } .fa-radiation::before { content: "\f7b9"; } .fa-chart-simple::before { content: "\e473"; } .fa-mars-stroke::before { content: "\f229"; } .fa-vial::before { content: "\f492"; } .fa-gauge::before { content: "\f624"; } .fa-dashboard::before { content: "\f624"; } .fa-gauge-med::before { content: "\f624"; } .fa-tachometer-alt-average::before { content: "\f624"; } .fa-wand-magic-sparkles::before { content: "\e2ca"; } .fa-magic-wand-sparkles::before { content: "\e2ca"; } .fa-e::before { content: "\45"; } .fa-pen-clip::before { content: "\f305"; } .fa-pen-alt::before { content: "\f305"; } .fa-bridge-circle-exclamation::before { content: "\e4ca"; } .fa-user::before { content: "\f007"; } .fa-school-circle-check::before { content: "\e56b"; } .fa-dumpster::before { content: "\f793"; } .fa-van-shuttle::before { content: "\f5b6"; } .fa-shuttle-van::before { content: "\f5b6"; } .fa-building-user::before { content: "\e4da"; } .fa-square-caret-left::before { content: "\f191"; } .fa-caret-square-left::before { content: "\f191"; } .fa-highlighter::before { content: "\f591"; } .fa-key::before { content: "\f084"; } .fa-bullhorn::before { content: "\f0a1"; } .fa-globe::before { content: "\f0ac"; } .fa-synagogue::before { content: "\f69b"; } .fa-person-half-dress::before { content: "\e548"; } .fa-road-bridge::before { content: "\e563"; } .fa-location-arrow::before { content: "\f124"; } .fa-c::before { content: "\43"; } .fa-tablet-button::before { content: "\f10a"; } .fa-building-lock::before { content: "\e4d6"; } .fa-pizza-slice::before { content: "\f818"; } .fa-money-bill-wave::before { content: "\f53a"; } .fa-chart-area::before { content: "\f1fe"; } .fa-area-chart::before { content: "\f1fe"; } .fa-house-flag::before { content: "\e50d"; } .fa-person-circle-minus::before { content: "\e540"; } .fa-ban::before { content: "\f05e"; } .fa-cancel::before { content: "\f05e"; } .fa-camera-rotate::before { content: "\e0d8"; } .fa-spray-can-sparkles::before { content: "\f5d0"; } .fa-air-freshener::before { content: "\f5d0"; } .fa-star::before { content: "\f005"; } .fa-repeat::before { content: "\f363"; } .fa-cross::before { content: "\f654"; } .fa-box::before { content: "\f466"; } .fa-venus-mars::before { content: "\f228"; } .fa-arrow-pointer::before { content: "\f245"; } .fa-mouse-pointer::before { content: "\f245"; } .fa-maximize::before { content: "\f31e"; } .fa-expand-arrows-alt::before { content: "\f31e"; } .fa-charging-station::before { content: "\f5e7"; } .fa-shapes::before { content: "\f61f"; } .fa-triangle-circle-square::before { content: "\f61f"; } .fa-shuffle::before { content: "\f074"; } .fa-random::before { content: "\f074"; } .fa-person-running::before { content: "\f70c"; } .fa-running::before { content: "\f70c"; } .fa-mobile-retro::before { content: "\e527"; } .fa-grip-lines-vertical::before { content: "\f7a5"; } .fa-spider::before { content: "\f717"; } .fa-hands-bound::before { content: "\e4f9"; } .fa-file-invoice-dollar::before { content: "\f571"; } .fa-plane-circle-exclamation::before { content: "\e556"; } .fa-x-ray::before { content: "\f497"; } .fa-spell-check::before { content: "\f891"; } .fa-slash::before { content: "\f715"; } .fa-computer-mouse::before { content: "\f8cc"; } .fa-mouse::before { content: "\f8cc"; } .fa-arrow-right-to-bracket::before { content: "\f090"; } .fa-sign-in::before { content: "\f090"; } .fa-shop-slash::before { content: "\e070"; } .fa-store-alt-slash::before { content: "\e070"; } .fa-server::before { content: "\f233"; } .fa-virus-covid-slash::before { content: "\e4a9"; } .fa-shop-lock::before { content: "\e4a5"; } .fa-hourglass-start::before { content: "\f251"; } .fa-hourglass-1::before { content: "\f251"; } .fa-blender-phone::before { content: "\f6b6"; } .fa-building-wheat::before { content: "\e4db"; } .fa-person-breastfeeding::before { content: "\e53a"; } .fa-right-to-bracket::before { content: "\f2f6"; } .fa-sign-in-alt::before { content: "\f2f6"; } .fa-venus::before { content: "\f221"; } .fa-passport::before { content: "\f5ab"; } .fa-heart-pulse::before { content: "\f21e"; } .fa-heartbeat::before { content: "\f21e"; } .fa-people-carry-box::before { content: "\f4ce"; } .fa-people-carry::before { content: "\f4ce"; } .fa-temperature-high::before { content: "\f769"; } .fa-microchip::before { content: "\f2db"; } .fa-crown::before { content: "\f521"; } .fa-weight-hanging::before { content: "\f5cd"; } .fa-xmarks-lines::before { content: "\e59a"; } .fa-file-prescription::before { content: "\f572"; } .fa-weight-scale::before { content: "\f496"; } .fa-weight::before { content: "\f496"; } .fa-user-group::before { content: "\f500"; } .fa-user-friends::before { content: "\f500"; } .fa-arrow-up-a-z::before { content: "\f15e"; } .fa-sort-alpha-up::before { content: "\f15e"; } .fa-chess-knight::before { content: "\f441"; } .fa-face-laugh-squint::before { content: "\f59b"; } .fa-laugh-squint::before { content: "\f59b"; } .fa-wheelchair::before { content: "\f193"; } .fa-circle-arrow-up::before { content: "\f0aa"; } .fa-arrow-circle-up::before { content: "\f0aa"; } .fa-toggle-on::before { content: "\f205"; } .fa-person-walking::before { content: "\f554"; } .fa-walking::before { content: "\f554"; } .fa-l::before { content: "\4c"; } .fa-fire::before { content: "\f06d"; } .fa-bed-pulse::before { content: "\f487"; } .fa-procedures::before { content: "\f487"; } .fa-shuttle-space::before { content: "\f197"; } .fa-space-shuttle::before { content: "\f197"; } .fa-face-laugh::before { content: "\f599"; } .fa-laugh::before { content: "\f599"; } .fa-folder-open::before { content: "\f07c"; } .fa-heart-circle-plus::before { content: "\e500"; } .fa-code-fork::before { content: "\e13b"; } .fa-city::before { content: "\f64f"; } .fa-microphone-lines::before { content: "\f3c9"; } .fa-microphone-alt::before { content: "\f3c9"; } .fa-pepper-hot::before { content: "\f816"; } .fa-unlock::before { content: "\f09c"; } .fa-colon-sign::before { content: "\e140"; } .fa-headset::before { content: "\f590"; } .fa-store-slash::before { content: "\e071"; } .fa-road-circle-xmark::before { content: "\e566"; } .fa-user-minus::before { content: "\f503"; } .fa-mars-stroke-up::before { content: "\f22a"; } .fa-mars-stroke-v::before { content: "\f22a"; } .fa-champagne-glasses::before { content: "\f79f"; } .fa-glass-cheers::before { content: "\f79f"; } .fa-clipboard::before { content: "\f328"; } .fa-house-circle-exclamation::before { content: "\e50a"; } .fa-file-arrow-up::before { content: "\f574"; } .fa-file-upload::before { content: "\f574"; } .fa-wifi::before { content: "\f1eb"; } .fa-wifi-3::before { content: "\f1eb"; } .fa-wifi-strong::before { content: "\f1eb"; } .fa-bath::before { content: "\f2cd"; } .fa-bathtub::before { content: "\f2cd"; } .fa-underline::before { content: "\f0cd"; } .fa-user-pen::before { content: "\f4ff"; } .fa-user-edit::before { content: "\f4ff"; } .fa-signature::before { content: "\f5b7"; } .fa-stroopwafel::before { content: "\f551"; } .fa-bold::before { content: "\f032"; } .fa-anchor-lock::before { content: "\e4ad"; } .fa-building-ngo::before { content: "\e4d7"; } .fa-manat-sign::before { content: "\e1d5"; } .fa-not-equal::before { content: "\f53e"; } .fa-border-top-left::before { content: "\f853"; } .fa-border-style::before { content: "\f853"; } .fa-map-location-dot::before { content: "\f5a0"; } .fa-map-marked-alt::before { content: "\f5a0"; } .fa-jedi::before { content: "\f669"; } .fa-square-poll-vertical::before { content: "\f681"; } .fa-poll::before { content: "\f681"; } .fa-mug-hot::before { content: "\f7b6"; } .fa-car-battery::before { content: "\f5df"; } .fa-battery-car::before { content: "\f5df"; } .fa-gift::before { content: "\f06b"; } .fa-dice-two::before { content: "\f528"; } .fa-chess-queen::before { content: "\f445"; } .fa-glasses::before { content: "\f530"; } .fa-chess-board::before { content: "\f43c"; } .fa-building-circle-check::before { content: "\e4d2"; } .fa-person-chalkboard::before { content: "\e53d"; } .fa-mars-stroke-right::before { content: "\f22b"; } .fa-mars-stroke-h::before { content: "\f22b"; } .fa-hand-back-fist::before { content: "\f255"; } .fa-hand-rock::before { content: "\f255"; } .fa-square-caret-up::before { content: "\f151"; } .fa-caret-square-up::before { content: "\f151"; } .fa-cloud-showers-water::before { content: "\e4e4"; } .fa-chart-bar::before { content: "\f080"; } .fa-bar-chart::before { content: "\f080"; } .fa-hands-bubbles::before { content: "\e05e"; } .fa-hands-wash::before { content: "\e05e"; } .fa-less-than-equal::before { content: "\f537"; } .fa-train::before { content: "\f238"; } .fa-eye-low-vision::before { content: "\f2a8"; } .fa-low-vision::before { content: "\f2a8"; } .fa-crow::before { content: "\f520"; } .fa-sailboat::before { content: "\e445"; } .fa-window-restore::before { content: "\f2d2"; } .fa-square-plus::before { content: "\f0fe"; } .fa-plus-square::before { content: "\f0fe"; } .fa-torii-gate::before { content: "\f6a1"; } .fa-frog::before { content: "\f52e"; } .fa-bucket::before { content: "\e4cf"; } .fa-image::before { content: "\f03e"; } .fa-microphone::before { content: "\f130"; } .fa-cow::before { content: "\f6c8"; } .fa-caret-up::before { content: "\f0d8"; } .fa-screwdriver::before { content: "\f54a"; } .fa-folder-closed::before { content: "\e185"; } .fa-house-tsunami::before { content: "\e515"; } .fa-square-nfi::before { content: "\e576"; } .fa-arrow-up-from-ground-water::before { content: "\e4b5"; } .fa-martini-glass::before { content: "\f57b"; } .fa-glass-martini-alt::before { content: "\f57b"; } .fa-rotate-left::before { content: "\f2ea"; } .fa-rotate-back::before { content: "\f2ea"; } .fa-rotate-backward::before { content: "\f2ea"; } .fa-undo-alt::before { content: "\f2ea"; } .fa-table-columns::before { content: "\f0db"; } .fa-columns::before { content: "\f0db"; } .fa-lemon::before { content: "\f094"; } .fa-head-side-mask::before { content: "\e063"; } .fa-handshake::before { content: "\f2b5"; } .fa-gem::before { content: "\f3a5"; } .fa-dolly::before { content: "\f472"; } .fa-dolly-box::before { content: "\f472"; } .fa-smoking::before { content: "\f48d"; } .fa-minimize::before { content: "\f78c"; } .fa-compress-arrows-alt::before { content: "\f78c"; } .fa-monument::before { content: "\f5a6"; } .fa-snowplow::before { content: "\f7d2"; } .fa-angles-right::before { content: "\f101"; } .fa-angle-double-right::before { content: "\f101"; } .fa-cannabis::before { content: "\f55f"; } .fa-circle-play::before { content: "\f144"; } .fa-play-circle::before { content: "\f144"; } .fa-tablets::before { content: "\f490"; } .fa-ethernet::before { content: "\f796"; } .fa-euro-sign::before { content: "\f153"; } .fa-eur::before { content: "\f153"; } .fa-euro::before { content: "\f153"; } .fa-chair::before { content: "\f6c0"; } .fa-circle-check::before { content: "\f058"; } .fa-check-circle::before { content: "\f058"; } .fa-circle-stop::before { content: "\f28d"; } .fa-stop-circle::before { content: "\f28d"; } .fa-compass-drafting::before { content: "\f568"; } .fa-drafting-compass::before { content: "\f568"; } .fa-plate-wheat::before { content: "\e55a"; } .fa-icicles::before { content: "\f7ad"; } .fa-person-shelter::before { content: "\e54f"; } .fa-neuter::before { content: "\f22c"; } .fa-id-badge::before { content: "\f2c1"; } .fa-marker::before { content: "\f5a1"; } .fa-face-laugh-beam::before { content: "\f59a"; } .fa-laugh-beam::before { content: "\f59a"; } .fa-helicopter-symbol::before { content: "\e502"; } .fa-universal-access::before { content: "\f29a"; } .fa-circle-chevron-up::before { content: "\f139"; } .fa-chevron-circle-up::before { content: "\f139"; } .fa-lari-sign::before { content: "\e1c8"; } .fa-volcano::before { content: "\f770"; } .fa-person-walking-dashed-line-arrow-right::before { content: "\e553"; } .fa-sterling-sign::before { content: "\f154"; } .fa-gbp::before { content: "\f154"; } .fa-pound-sign::before { content: "\f154"; } .fa-viruses::before { content: "\e076"; } .fa-square-person-confined::before { content: "\e577"; } .fa-user-tie::before { content: "\f508"; } .fa-arrow-down-long::before { content: "\f175"; } .fa-long-arrow-down::before { content: "\f175"; } .fa-tent-arrow-down-to-line::before { content: "\e57e"; } .fa-certificate::before { content: "\f0a3"; } .fa-reply-all::before { content: "\f122"; } .fa-mail-reply-all::before { content: "\f122"; } .fa-suitcase::before { content: "\f0f2"; } .fa-person-skating::before { content: "\f7c5"; } .fa-skating::before { content: "\f7c5"; } .fa-filter-circle-dollar::before { content: "\f662"; } .fa-funnel-dollar::before { content: "\f662"; } .fa-camera-retro::before { content: "\f083"; } .fa-circle-arrow-down::before { content: "\f0ab"; } .fa-arrow-circle-down::before { content: "\f0ab"; } .fa-file-import::before { content: "\f56f"; } .fa-arrow-right-to-file::before { content: "\f56f"; } .fa-square-arrow-up-right::before { content: "\f14c"; } .fa-external-link-square::before { content: "\f14c"; } .fa-box-open::before { content: "\f49e"; } .fa-scroll::before { content: "\f70e"; } .fa-spa::before { content: "\f5bb"; } .fa-location-pin-lock::before { content: "\e51f"; } .fa-pause::before { content: "\f04c"; } .fa-hill-avalanche::before { content: "\e507"; } .fa-temperature-empty::before { content: "\f2cb"; } .fa-temperature-0::before { content: "\f2cb"; } .fa-thermometer-0::before { content: "\f2cb"; } .fa-thermometer-empty::before { content: "\f2cb"; } .fa-bomb::before { content: "\f1e2"; } .fa-registered::before { content: "\f25d"; } .fa-address-card::before { content: "\f2bb"; } .fa-contact-card::before { content: "\f2bb"; } .fa-vcard::before { content: "\f2bb"; } .fa-scale-unbalanced-flip::before { content: "\f516"; } .fa-balance-scale-right::before { content: "\f516"; } .fa-subscript::before { content: "\f12c"; } .fa-diamond-turn-right::before { content: "\f5eb"; } .fa-directions::before { content: "\f5eb"; } .fa-burst::before { content: "\e4dc"; } .fa-house-laptop::before { content: "\e066"; } .fa-laptop-house::before { content: "\e066"; } .fa-face-tired::before { content: "\f5c8"; } .fa-tired::before { content: "\f5c8"; } .fa-money-bills::before { content: "\e1f3"; } .fa-smog::before { content: "\f75f"; } .fa-crutch::before { content: "\f7f7"; } .fa-cloud-arrow-up::before { content: "\f0ee"; } .fa-cloud-upload::before { content: "\f0ee"; } .fa-cloud-upload-alt::before { content: "\f0ee"; } .fa-palette::before { content: "\f53f"; } .fa-arrows-turn-right::before { content: "\e4c0"; } .fa-vest::before { content: "\e085"; } .fa-ferry::before { content: "\e4ea"; } .fa-arrows-down-to-people::before { content: "\e4b9"; } .fa-seedling::before { content: "\f4d8"; } .fa-sprout::before { content: "\f4d8"; } .fa-left-right::before { content: "\f337"; } .fa-arrows-alt-h::before { content: "\f337"; } .fa-boxes-packing::before { content: "\e4c7"; } .fa-circle-arrow-left::before { content: "\f0a8"; } .fa-arrow-circle-left::before { content: "\f0a8"; } .fa-group-arrows-rotate::before { content: "\e4f6"; } .fa-bowl-food::before { content: "\e4c6"; } .fa-candy-cane::before { content: "\f786"; } .fa-arrow-down-wide-short::before { content: "\f160"; } .fa-sort-amount-asc::before { content: "\f160"; } .fa-sort-amount-down::before { content: "\f160"; } .fa-cloud-bolt::before { content: "\f76c"; } .fa-thunderstorm::before { content: "\f76c"; } .fa-text-slash::before { content: "\f87d"; } .fa-remove-format::before { content: "\f87d"; } .fa-face-smile-wink::before { content: "\f4da"; } .fa-smile-wink::before { content: "\f4da"; } .fa-file-word::before { content: "\f1c2"; } .fa-file-powerpoint::before { content: "\f1c4"; } .fa-arrows-left-right::before { content: "\f07e"; } .fa-arrows-h::before { content: "\f07e"; } .fa-house-lock::before { content: "\e510"; } .fa-cloud-arrow-down::before { content: "\f0ed"; } .fa-cloud-download::before { content: "\f0ed"; } .fa-cloud-download-alt::before { content: "\f0ed"; } .fa-children::before { content: "\e4e1"; } .fa-chalkboard::before { content: "\f51b"; } .fa-blackboard::before { content: "\f51b"; } .fa-user-large-slash::before { content: "\f4fa"; } .fa-user-alt-slash::before { content: "\f4fa"; } .fa-envelope-open::before { content: "\f2b6"; } .fa-handshake-simple-slash::before { content: "\e05f"; } .fa-handshake-alt-slash::before { content: "\e05f"; } .fa-mattress-pillow::before { content: "\e525"; } .fa-guarani-sign::before { content: "\e19a"; } .fa-arrows-rotate::before { content: "\f021"; } .fa-refresh::before { content: "\f021"; } .fa-sync::before { content: "\f021"; } .fa-fire-extinguisher::before { content: "\f134"; } .fa-cruzeiro-sign::before { content: "\e152"; } .fa-greater-than-equal::before { content: "\f532"; } .fa-shield-halved::before { content: "\f3ed"; } .fa-shield-alt::before { content: "\f3ed"; } .fa-book-atlas::before { content: "\f558"; } .fa-atlas::before { content: "\f558"; } .fa-virus::before { content: "\e074"; } .fa-envelope-circle-check::before { content: "\e4e8"; } .fa-layer-group::before { content: "\f5fd"; } .fa-arrows-to-dot::before { content: "\e4be"; } .fa-archway::before { content: "\f557"; } .fa-heart-circle-check::before { content: "\e4fd"; } .fa-house-chimney-crack::before { content: "\f6f1"; } .fa-house-damage::before { content: "\f6f1"; } .fa-file-zipper::before { content: "\f1c6"; } .fa-file-archive::before { content: "\f1c6"; } .fa-square::before { content: "\f0c8"; } .fa-martini-glass-empty::before { content: "\f000"; } .fa-glass-martini::before { content: "\f000"; } .fa-couch::before { content: "\f4b8"; } .fa-cedi-sign::before { content: "\e0df"; } .fa-italic::before { content: "\f033"; } .fa-church::before { content: "\f51d"; } .fa-comments-dollar::before { content: "\f653"; } .fa-democrat::before { content: "\f747"; } .fa-z::before { content: "\5a"; } .fa-person-skiing::before { content: "\f7c9"; } .fa-skiing::before { content: "\f7c9"; } .fa-road-lock::before { content: "\e567"; } .fa-a::before { content: "\41"; } .fa-temperature-arrow-down::before { content: "\e03f"; } .fa-temperature-down::before { content: "\e03f"; } .fa-feather-pointed::before { content: "\f56b"; } .fa-feather-alt::before { content: "\f56b"; } .fa-p::before { content: "\50"; } .fa-snowflake::before { content: "\f2dc"; } .fa-newspaper::before { content: "\f1ea"; } .fa-rectangle-ad::before { content: "\f641"; } .fa-ad::before { content: "\f641"; } .fa-circle-arrow-right::before { content: "\f0a9"; } .fa-arrow-circle-right::before { content: "\f0a9"; } .fa-filter-circle-xmark::before { content: "\e17b"; } .fa-locust::before { content: "\e520"; } .fa-sort::before { content: "\f0dc"; } .fa-unsorted::before { content: "\f0dc"; } .fa-list-ol::before { content: "\f0cb"; } .fa-list-1-2::before { content: "\f0cb"; } .fa-list-numeric::before { content: "\f0cb"; } .fa-person-dress-burst::before { content: "\e544"; } .fa-money-check-dollar::before { content: "\f53d"; } .fa-money-check-alt::before { content: "\f53d"; } .fa-vector-square::before { content: "\f5cb"; } .fa-bread-slice::before { content: "\f7ec"; } .fa-language::before { content: "\f1ab"; } .fa-face-kiss-wink-heart::before { content: "\f598"; } .fa-kiss-wink-heart::before { content: "\f598"; } .fa-filter::before { content: "\f0b0"; } .fa-question::before { content: "\3f"; } .fa-file-signature::before { content: "\f573"; } .fa-up-down-left-right::before { content: "\f0b2"; } .fa-arrows-alt::before { content: "\f0b2"; } .fa-house-chimney-user::before { content: "\e065"; } .fa-hand-holding-heart::before { content: "\f4be"; } .fa-puzzle-piece::before { content: "\f12e"; } .fa-money-check::before { content: "\f53c"; } .fa-star-half-stroke::before { content: "\f5c0"; } .fa-star-half-alt::before { content: "\f5c0"; } .fa-code::before { content: "\f121"; } .fa-whiskey-glass::before { content: "\f7a0"; } .fa-glass-whiskey::before { content: "\f7a0"; } .fa-building-circle-exclamation::before { content: "\e4d3"; } .fa-magnifying-glass-chart::before { content: "\e522"; } .fa-arrow-up-right-from-square::before { content: "\f08e"; } .fa-external-link::before { content: "\f08e"; } .fa-cubes-stacked::before { content: "\e4e6"; } .fa-won-sign::before { content: "\f159"; } .fa-krw::before { content: "\f159"; } .fa-won::before { content: "\f159"; } .fa-virus-covid::before { content: "\e4a8"; } .fa-austral-sign::before { content: "\e0a9"; } .fa-f::before { content: "\46"; } .fa-leaf::before { content: "\f06c"; } .fa-road::before { content: "\f018"; } .fa-taxi::before { content: "\f1ba"; } .fa-cab::before { content: "\f1ba"; } .fa-person-circle-plus::before { content: "\e541"; } .fa-chart-pie::before { content: "\f200"; } .fa-pie-chart::before { content: "\f200"; } .fa-bolt-lightning::before { content: "\e0b7"; } .fa-sack-xmark::before { content: "\e56a"; } .fa-file-excel::before { content: "\f1c3"; } .fa-file-contract::before { content: "\f56c"; } .fa-fish-fins::before { content: "\e4f2"; } .fa-building-flag::before { content: "\e4d5"; } .fa-face-grin-beam::before { content: "\f582"; } .fa-grin-beam::before { content: "\f582"; } .fa-object-ungroup::before { content: "\f248"; } .fa-poop::before { content: "\f619"; } .fa-location-pin::before { content: "\f041"; } .fa-map-marker::before { content: "\f041"; } .fa-kaaba::before { content: "\f66b"; } .fa-toilet-paper::before { content: "\f71e"; } .fa-helmet-safety::before { content: "\f807"; } .fa-hard-hat::before { content: "\f807"; } .fa-hat-hard::before { content: "\f807"; } .fa-eject::before { content: "\f052"; } .fa-circle-right::before { content: "\f35a"; } .fa-arrow-alt-circle-right::before { content: "\f35a"; } .fa-plane-circle-check::before { content: "\e555"; } .fa-face-rolling-eyes::before { content: "\f5a5"; } .fa-meh-rolling-eyes::before { content: "\f5a5"; } .fa-object-group::before { content: "\f247"; } .fa-chart-line::before { content: "\f201"; } .fa-line-chart::before { content: "\f201"; } .fa-mask-ventilator::before { content: "\e524"; } .fa-arrow-right::before { content: "\f061"; } .fa-signs-post::before { content: "\f277"; } .fa-map-signs::before { content: "\f277"; } .fa-cash-register::before { content: "\f788"; } .fa-person-circle-question::before { content: "\e542"; } .fa-h::before { content: "\48"; } .fa-tarp::before { content: "\e57b"; } .fa-screwdriver-wrench::before { content: "\f7d9"; } .fa-tools::before { content: "\f7d9"; } .fa-arrows-to-eye::before { content: "\e4bf"; } .fa-plug-circle-bolt::before { content: "\e55b"; } .fa-heart::before { content: "\f004"; } .fa-mars-and-venus::before { content: "\f224"; } .fa-house-user::before { content: "\e1b0"; } .fa-home-user::before { content: "\e1b0"; } .fa-dumpster-fire::before { content: "\f794"; } .fa-house-crack::before { content: "\e3b1"; } .fa-martini-glass-citrus::before { content: "\f561"; } .fa-cocktail::before { content: "\f561"; } .fa-face-surprise::before { content: "\f5c2"; } .fa-surprise::before { content: "\f5c2"; } .fa-bottle-water::before { content: "\e4c5"; } .fa-circle-pause::before { content: "\f28b"; } .fa-pause-circle::before { content: "\f28b"; } .fa-toilet-paper-slash::before { content: "\e072"; } .fa-apple-whole::before { content: "\f5d1"; } .fa-apple-alt::before { content: "\f5d1"; } .fa-kitchen-set::before { content: "\e51a"; } .fa-r::before { content: "\52"; } .fa-temperature-quarter::before { content: "\f2ca"; } .fa-temperature-1::before { content: "\f2ca"; } .fa-thermometer-1::before { content: "\f2ca"; } .fa-thermometer-quarter::before { content: "\f2ca"; } .fa-cube::before { content: "\f1b2"; } .fa-bitcoin-sign::before { content: "\e0b4"; } .fa-shield-dog::before { content: "\e573"; } .fa-solar-panel::before { content: "\f5ba"; } .fa-lock-open::before { content: "\f3c1"; } .fa-elevator::before { content: "\e16d"; } .fa-money-bill-transfer::before { content: "\e528"; } .fa-money-bill-trend-up::before { content: "\e529"; } .fa-house-flood-water-circle-arrow-right::before { content: "\e50f"; } .fa-square-poll-horizontal::before { content: "\f682"; } .fa-poll-h::before { content: "\f682"; } .fa-circle::before { content: "\f111"; } .fa-backward-fast::before { content: "\f049"; } .fa-fast-backward::before { content: "\f049"; } .fa-recycle::before { content: "\f1b8"; } .fa-user-astronaut::before { content: "\f4fb"; } .fa-plane-slash::before { content: "\e069"; } .fa-trademark::before { content: "\f25c"; } .fa-basketball::before { content: "\f434"; } .fa-basketball-ball::before { content: "\f434"; } .fa-satellite-dish::before { content: "\f7c0"; } .fa-circle-up::before { content: "\f35b"; } .fa-arrow-alt-circle-up::before { content: "\f35b"; } .fa-mobile-screen-button::before { content: "\f3cd"; } .fa-mobile-alt::before { content: "\f3cd"; } .fa-volume-high::before { content: "\f028"; } .fa-volume-up::before { content: "\f028"; } .fa-users-rays::before { content: "\e593"; } .fa-wallet::before { content: "\f555"; } .fa-clipboard-check::before { content: "\f46c"; } .fa-file-audio::before { content: "\f1c7"; } .fa-burger::before { content: "\f805"; } .fa-hamburger::before { content: "\f805"; } .fa-wrench::before { content: "\f0ad"; } .fa-bugs::before { content: "\e4d0"; } .fa-rupee-sign::before { content: "\f156"; } .fa-rupee::before { content: "\f156"; } .fa-file-image::before { content: "\f1c5"; } .fa-circle-question::before { content: "\f059"; } .fa-question-circle::before { content: "\f059"; } .fa-plane-departure::before { content: "\f5b0"; } .fa-handshake-slash::before { content: "\e060"; } .fa-book-bookmark::before { content: "\e0bb"; } .fa-code-branch::before { content: "\f126"; } .fa-hat-cowboy::before { content: "\f8c0"; } .fa-bridge::before { content: "\e4c8"; } .fa-phone-flip::before { content: "\f879"; } .fa-phone-alt::before { content: "\f879"; } .fa-truck-front::before { content: "\e2b7"; } .fa-cat::before { content: "\f6be"; } .fa-anchor-circle-exclamation::before { content: "\e4ab"; } .fa-truck-field::before { content: "\e58d"; } .fa-route::before { content: "\f4d7"; } .fa-clipboard-question::before { content: "\e4e3"; } .fa-panorama::before { content: "\e209"; } .fa-comment-medical::before { content: "\f7f5"; } .fa-teeth-open::before { content: "\f62f"; } .fa-file-circle-minus::before { content: "\e4ed"; } .fa-tags::before { content: "\f02c"; } .fa-wine-glass::before { content: "\f4e3"; } .fa-forward-fast::before { content: "\f050"; } .fa-fast-forward::before { content: "\f050"; } .fa-face-meh-blank::before { content: "\f5a4"; } .fa-meh-blank::before { content: "\f5a4"; } .fa-square-parking::before { content: "\f540"; } .fa-parking::before { content: "\f540"; } .fa-house-signal::before { content: "\e012"; } .fa-bars-progress::before { content: "\f828"; } .fa-tasks-alt::before { content: "\f828"; } .fa-faucet-drip::before { content: "\e006"; } .fa-cart-flatbed::before { content: "\f474"; } .fa-dolly-flatbed::before { content: "\f474"; } .fa-ban-smoking::before { content: "\f54d"; } .fa-smoking-ban::before { content: "\f54d"; } .fa-terminal::before { content: "\f120"; } .fa-mobile-button::before { content: "\f10b"; } .fa-house-medical-flag::before { content: "\e514"; } .fa-basket-shopping::before { content: "\f291"; } .fa-shopping-basket::before { content: "\f291"; } .fa-tape::before { content: "\f4db"; } .fa-bus-simple::before { content: "\f55e"; } .fa-bus-alt::before { content: "\f55e"; } .fa-eye::before { content: "\f06e"; } .fa-face-sad-cry::before { content: "\f5b3"; } .fa-sad-cry::before { content: "\f5b3"; } .fa-audio-description::before { content: "\f29e"; } .fa-person-military-to-person::before { content: "\e54c"; } .fa-file-shield::before { content: "\e4f0"; } .fa-user-slash::before { content: "\f506"; } .fa-pen::before { content: "\f304"; } .fa-tower-observation::before { content: "\e586"; } .fa-file-code::before { content: "\f1c9"; } .fa-signal::before { content: "\f012"; } .fa-signal-5::before { content: "\f012"; } .fa-signal-perfect::before { content: "\f012"; } .fa-bus::before { content: "\f207"; } .fa-heart-circle-xmark::before { content: "\e501"; } .fa-house-chimney::before { content: "\e3af"; } .fa-home-lg::before { content: "\e3af"; } .fa-window-maximize::before { content: "\f2d0"; } .fa-face-frown::before { content: "\f119"; } .fa-frown::before { content: "\f119"; } .fa-prescription::before { content: "\f5b1"; } .fa-shop::before { content: "\f54f"; } .fa-store-alt::before { content: "\f54f"; } .fa-floppy-disk::before { content: "\f0c7"; } .fa-save::before { content: "\f0c7"; } .fa-vihara::before { content: "\f6a7"; } .fa-scale-unbalanced::before { content: "\f515"; } .fa-balance-scale-left::before { content: "\f515"; } .fa-sort-up::before { content: "\f0de"; } .fa-sort-asc::before { content: "\f0de"; } .fa-comment-dots::before { content: "\f4ad"; } .fa-commenting::before { content: "\f4ad"; } .fa-plant-wilt::before { content: "\e5aa"; } .fa-diamond::before { content: "\f219"; } .fa-face-grin-squint::before { content: "\f585"; } .fa-grin-squint::before { content: "\f585"; } .fa-hand-holding-dollar::before { content: "\f4c0"; } .fa-hand-holding-usd::before { content: "\f4c0"; } .fa-bacterium::before { content: "\e05a"; } .fa-hand-pointer::before { content: "\f25a"; } .fa-drum-steelpan::before { content: "\f56a"; } .fa-hand-scissors::before { content: "\f257"; } .fa-hands-praying::before { content: "\f684"; } .fa-praying-hands::before { content: "\f684"; } .fa-arrow-rotate-right::before { content: "\f01e"; } .fa-arrow-right-rotate::before { content: "\f01e"; } .fa-arrow-rotate-forward::before { content: "\f01e"; } .fa-redo::before { content: "\f01e"; } .fa-biohazard::before { content: "\f780"; } .fa-location-crosshairs::before { content: "\f601"; } .fa-location::before { content: "\f601"; } .fa-mars-double::before { content: "\f227"; } .fa-child-dress::before { content: "\e59c"; } .fa-users-between-lines::before { content: "\e591"; } .fa-lungs-virus::before { content: "\e067"; } .fa-face-grin-tears::before { content: "\f588"; } .fa-grin-tears::before { content: "\f588"; } .fa-phone::before { content: "\f095"; } .fa-calendar-xmark::before { content: "\f273"; } .fa-calendar-times::before { content: "\f273"; } .fa-child-reaching::before { content: "\e59d"; } .fa-head-side-virus::before { content: "\e064"; } .fa-user-gear::before { content: "\f4fe"; } .fa-user-cog::before { content: "\f4fe"; } .fa-arrow-up-1-9::before { content: "\f163"; } .fa-sort-numeric-up::before { content: "\f163"; } .fa-door-closed::before { content: "\f52a"; } .fa-shield-virus::before { content: "\e06c"; } .fa-dice-six::before { content: "\f526"; } .fa-mosquito-net::before { content: "\e52c"; } .fa-bridge-water::before { content: "\e4ce"; } .fa-person-booth::before { content: "\f756"; } .fa-text-width::before { content: "\f035"; } .fa-hat-wizard::before { content: "\f6e8"; } .fa-pen-fancy::before { content: "\f5ac"; } .fa-person-digging::before { content: "\f85e"; } .fa-digging::before { content: "\f85e"; } .fa-trash::before { content: "\f1f8"; } .fa-gauge-simple::before { content: "\f629"; } .fa-gauge-simple-med::before { content: "\f629"; } .fa-tachometer-average::before { content: "\f629"; } .fa-book-medical::before { content: "\f7e6"; } .fa-poo::before { content: "\f2fe"; } .fa-quote-right::before { content: "\f10e"; } .fa-quote-right-alt::before { content: "\f10e"; } .fa-shirt::before { content: "\f553"; } .fa-t-shirt::before { content: "\f553"; } .fa-tshirt::before { content: "\f553"; } .fa-cubes::before { content: "\f1b3"; } .fa-divide::before { content: "\f529"; } .fa-tenge-sign::before { content: "\f7d7"; } .fa-tenge::before { content: "\f7d7"; } .fa-headphones::before { content: "\f025"; } .fa-hands-holding::before { content: "\f4c2"; } .fa-hands-clapping::before { content: "\e1a8"; } .fa-republican::before { content: "\f75e"; } .fa-arrow-left::before { content: "\f060"; } .fa-person-circle-xmark::before { content: "\e543"; } .fa-ruler::before { content: "\f545"; } .fa-align-left::before { content: "\f036"; } .fa-dice-d6::before { content: "\f6d1"; } .fa-restroom::before { content: "\f7bd"; } .fa-j::before { content: "\4a"; } .fa-users-viewfinder::before { content: "\e595"; } .fa-file-video::before { content: "\f1c8"; } .fa-up-right-from-square::before { content: "\f35d"; } .fa-external-link-alt::before { content: "\f35d"; } .fa-table-cells::before { content: "\f00a"; } .fa-th::before { content: "\f00a"; } .fa-file-pdf::before { content: "\f1c1"; } .fa-book-bible::before { content: "\f647"; } .fa-bible::before { content: "\f647"; } .fa-o::before { content: "\4f"; } .fa-suitcase-medical::before { content: "\f0fa"; } .fa-medkit::before { content: "\f0fa"; } .fa-user-secret::before { content: "\f21b"; } .fa-otter::before { content: "\f700"; } .fa-person-dress::before { content: "\f182"; } .fa-female::before { content: "\f182"; } .fa-comment-dollar::before { content: "\f651"; } .fa-business-time::before { content: "\f64a"; } .fa-briefcase-clock::before { content: "\f64a"; } .fa-table-cells-large::before { content: "\f009"; } .fa-th-large::before { content: "\f009"; } .fa-book-tanakh::before { content: "\f827"; } .fa-tanakh::before { content: "\f827"; } .fa-phone-volume::before { content: "\f2a0"; } .fa-volume-control-phone::before { content: "\f2a0"; } .fa-hat-cowboy-side::before { content: "\f8c1"; } .fa-clipboard-user::before { content: "\f7f3"; } .fa-child::before { content: "\f1ae"; } .fa-lira-sign::before { content: "\f195"; } .fa-satellite::before { content: "\f7bf"; } .fa-plane-lock::before { content: "\e558"; } .fa-tag::before { content: "\f02b"; } .fa-comment::before { content: "\f075"; } .fa-cake-candles::before { content: "\f1fd"; } .fa-birthday-cake::before { content: "\f1fd"; } .fa-cake::before { content: "\f1fd"; } .fa-envelope::before { content: "\f0e0"; } .fa-angles-up::before { content: "\f102"; } .fa-angle-double-up::before { content: "\f102"; } .fa-paperclip::before { content: "\f0c6"; } .fa-arrow-right-to-city::before { content: "\e4b3"; } .fa-ribbon::before { content: "\f4d6"; } .fa-lungs::before { content: "\f604"; } .fa-arrow-up-9-1::before { content: "\f887"; } .fa-sort-numeric-up-alt::before { content: "\f887"; } .fa-litecoin-sign::before { content: "\e1d3"; } .fa-border-none::before { content: "\f850"; } .fa-circle-nodes::before { content: "\e4e2"; } .fa-parachute-box::before { content: "\f4cd"; } .fa-indent::before { content: "\f03c"; } .fa-truck-field-un::before { content: "\e58e"; } .fa-hourglass::before { content: "\f254"; } .fa-hourglass-empty::before { content: "\f254"; } .fa-mountain::before { content: "\f6fc"; } .fa-user-doctor::before { content: "\f0f0"; } .fa-user-md::before { content: "\f0f0"; } .fa-circle-info::before { content: "\f05a"; } .fa-info-circle::before { content: "\f05a"; } .fa-cloud-meatball::before { content: "\f73b"; } .fa-camera::before { content: "\f030"; } .fa-camera-alt::before { content: "\f030"; } .fa-square-virus::before { content: "\e578"; } .fa-meteor::before { content: "\f753"; } .fa-car-on::before { content: "\e4dd"; } .fa-sleigh::before { content: "\f7cc"; } .fa-arrow-down-1-9::before { content: "\f162"; } .fa-sort-numeric-asc::before { content: "\f162"; } .fa-sort-numeric-down::before { content: "\f162"; } .fa-hand-holding-droplet::before { content: "\f4c1"; } .fa-hand-holding-water::before { content: "\f4c1"; } .fa-water::before { content: "\f773"; } .fa-calendar-check::before { content: "\f274"; } .fa-braille::before { content: "\f2a1"; } .fa-prescription-bottle-medical::before { content: "\f486"; } .fa-prescription-bottle-alt::before { content: "\f486"; } .fa-landmark::before { content: "\f66f"; } .fa-truck::before { content: "\f0d1"; } .fa-crosshairs::before { content: "\f05b"; } .fa-person-cane::before { content: "\e53c"; } .fa-tent::before { content: "\e57d"; } .fa-vest-patches::before { content: "\e086"; } .fa-check-double::before { content: "\f560"; } .fa-arrow-down-a-z::before { content: "\f15d"; } .fa-sort-alpha-asc::before { content: "\f15d"; } .fa-sort-alpha-down::before { content: "\f15d"; } .fa-money-bill-wheat::before { content: "\e52a"; } .fa-cookie::before { content: "\f563"; } .fa-arrow-rotate-left::before { content: "\f0e2"; } .fa-arrow-left-rotate::before { content: "\f0e2"; } .fa-arrow-rotate-back::before { content: "\f0e2"; } .fa-arrow-rotate-backward::before { content: "\f0e2"; } .fa-undo::before { content: "\f0e2"; } .fa-hard-drive::before { content: "\f0a0"; } .fa-hdd::before { content: "\f0a0"; } .fa-face-grin-squint-tears::before { content: "\f586"; } .fa-grin-squint-tears::before { content: "\f586"; } .fa-dumbbell::before { content: "\f44b"; } .fa-rectangle-list::before { content: "\f022"; } .fa-list-alt::before { content: "\f022"; } .fa-tarp-droplet::before { content: "\e57c"; } .fa-house-medical-circle-check::before { content: "\e511"; } .fa-person-skiing-nordic::before { content: "\f7ca"; } .fa-skiing-nordic::before { content: "\f7ca"; } .fa-calendar-plus::before { content: "\f271"; } .fa-plane-arrival::before { content: "\f5af"; } .fa-circle-left::before { content: "\f359"; } .fa-arrow-alt-circle-left::before { content: "\f359"; } .fa-train-subway::before { content: "\f239"; } .fa-subway::before { content: "\f239"; } .fa-chart-gantt::before { content: "\e0e4"; } .fa-indian-rupee-sign::before { content: "\e1bc"; } .fa-indian-rupee::before { content: "\e1bc"; } .fa-inr::before { content: "\e1bc"; } .fa-crop-simple::before { content: "\f565"; } .fa-crop-alt::before { content: "\f565"; } .fa-money-bill-1::before { content: "\f3d1"; } .fa-money-bill-alt::before { content: "\f3d1"; } .fa-left-long::before { content: "\f30a"; } .fa-long-arrow-alt-left::before { content: "\f30a"; } .fa-dna::before { content: "\f471"; } .fa-virus-slash::before { content: "\e075"; } .fa-minus::before { content: "\f068"; } .fa-subtract::before { content: "\f068"; } .fa-chess::before { content: "\f439"; } .fa-arrow-left-long::before { content: "\f177"; } .fa-long-arrow-left::before { content: "\f177"; } .fa-plug-circle-check::before { content: "\e55c"; } .fa-street-view::before { content: "\f21d"; } .fa-franc-sign::before { content: "\e18f"; } .fa-volume-off::before { content: "\f026"; } .fa-hands-asl-interpreting::before { content: "\f2a3"; } .fa-american-sign-language-interpreting::before { content: "\f2a3"; } .fa-asl-interpreting::before { content: "\f2a3"; } .fa-hands-american-sign-language-interpreting::before { content: "\f2a3"; } .fa-gear::before { content: "\f013"; } .fa-cog::before { content: "\f013"; } .fa-droplet-slash::before { content: "\f5c7"; } .fa-tint-slash::before { content: "\f5c7"; } .fa-mosque::before { content: "\f678"; } .fa-mosquito::before { content: "\e52b"; } .fa-star-of-david::before { content: "\f69a"; } .fa-person-military-rifle::before { content: "\e54b"; } .fa-cart-shopping::before { content: "\f07a"; } .fa-shopping-cart::before { content: "\f07a"; } .fa-vials::before { content: "\f493"; } .fa-plug-circle-plus::before { content: "\e55f"; } .fa-place-of-worship::before { content: "\f67f"; } .fa-grip-vertical::before { content: "\f58e"; } .fa-arrow-turn-up::before { content: "\f148"; } .fa-level-up::before { content: "\f148"; } .fa-u::before { content: "\55"; } .fa-square-root-variable::before { content: "\f698"; } .fa-square-root-alt::before { content: "\f698"; } .fa-clock::before { content: "\f017"; } .fa-clock-four::before { content: "\f017"; } .fa-backward-step::before { content: "\f048"; } .fa-step-backward::before { content: "\f048"; } .fa-pallet::before { content: "\f482"; } .fa-faucet::before { content: "\e005"; } .fa-baseball-bat-ball::before { content: "\f432"; } .fa-s::before { content: "\53"; } .fa-timeline::before { content: "\e29c"; } .fa-keyboard::before { content: "\f11c"; } .fa-caret-down::before { content: "\f0d7"; } .fa-house-chimney-medical::before { content: "\f7f2"; } .fa-clinic-medical::before { content: "\f7f2"; } .fa-temperature-three-quarters::before { content: "\f2c8"; } .fa-temperature-3::before { content: "\f2c8"; } .fa-thermometer-3::before { content: "\f2c8"; } .fa-thermometer-three-quarters::before { content: "\f2c8"; } .fa-mobile-screen::before { content: "\f3cf"; } .fa-mobile-android-alt::before { content: "\f3cf"; } .fa-plane-up::before { content: "\e22d"; } .fa-piggy-bank::before { content: "\f4d3"; } .fa-battery-half::before { content: "\f242"; } .fa-battery-3::before { content: "\f242"; } .fa-mountain-city::before { content: "\e52e"; } .fa-coins::before { content: "\f51e"; } .fa-khanda::before { content: "\f66d"; } .fa-sliders::before { content: "\f1de"; } .fa-sliders-h::before { content: "\f1de"; } .fa-folder-tree::before { content: "\f802"; } .fa-network-wired::before { content: "\f6ff"; } .fa-map-pin::before { content: "\f276"; } .fa-hamsa::before { content: "\f665"; } .fa-cent-sign::before { content: "\e3f5"; } .fa-flask::before { content: "\f0c3"; } .fa-person-pregnant::before { content: "\e31e"; } .fa-wand-sparkles::before { content: "\f72b"; } .fa-ellipsis-vertical::before { content: "\f142"; } .fa-ellipsis-v::before { content: "\f142"; } .fa-ticket::before { content: "\f145"; } .fa-power-off::before { content: "\f011"; } .fa-right-long::before { content: "\f30b"; } .fa-long-arrow-alt-right::before { content: "\f30b"; } .fa-flag-usa::before { content: "\f74d"; } .fa-laptop-file::before { content: "\e51d"; } .fa-tty::before { content: "\f1e4"; } .fa-teletype::before { content: "\f1e4"; } .fa-diagram-next::before { content: "\e476"; } .fa-person-rifle::before { content: "\e54e"; } .fa-house-medical-circle-exclamation::before { content: "\e512"; } .fa-closed-captioning::before { content: "\f20a"; } .fa-person-hiking::before { content: "\f6ec"; } .fa-hiking::before { content: "\f6ec"; } .fa-venus-double::before { content: "\f226"; } .fa-images::before { content: "\f302"; } .fa-calculator::before { content: "\f1ec"; } .fa-people-pulling::before { content: "\e535"; } .fa-n::before { content: "\4e"; } .fa-cable-car::before { content: "\f7da"; } .fa-tram::before { content: "\f7da"; } .fa-cloud-rain::before { content: "\f73d"; } .fa-building-circle-xmark::before { content: "\e4d4"; } .fa-ship::before { content: "\f21a"; } .fa-arrows-down-to-line::before { content: "\e4b8"; } .fa-download::before { content: "\f019"; } .fa-face-grin::before { content: "\f580"; } .fa-grin::before { content: "\f580"; } .fa-delete-left::before { content: "\f55a"; } .fa-backspace::before { content: "\f55a"; } .fa-eye-dropper::before { content: "\f1fb"; } .fa-eye-dropper-empty::before { content: "\f1fb"; } .fa-eyedropper::before { content: "\f1fb"; } .fa-file-circle-check::before { content: "\e5a0"; } .fa-forward::before { content: "\f04e"; } .fa-mobile::before { content: "\f3ce"; } .fa-mobile-android::before { content: "\f3ce"; } .fa-mobile-phone::before { content: "\f3ce"; } .fa-face-meh::before { content: "\f11a"; } .fa-meh::before { content: "\f11a"; } .fa-align-center::before { content: "\f037"; } .fa-book-skull::before { content: "\f6b7"; } .fa-book-dead::before { content: "\f6b7"; } .fa-id-card::before { content: "\f2c2"; } .fa-drivers-license::before { content: "\f2c2"; } .fa-outdent::before { content: "\f03b"; } .fa-dedent::before { content: "\f03b"; } .fa-heart-circle-exclamation::before { content: "\e4fe"; } .fa-house::before { content: "\f015"; } .fa-home::before { content: "\f015"; } .fa-home-alt::before { content: "\f015"; } .fa-home-lg-alt::before { content: "\f015"; } .fa-calendar-week::before { content: "\f784"; } .fa-laptop-medical::before { content: "\f812"; } .fa-b::before { content: "\42"; } .fa-file-medical::before { content: "\f477"; } .fa-dice-one::before { content: "\f525"; } .fa-kiwi-bird::before { content: "\f535"; } .fa-arrow-right-arrow-left::before { content: "\f0ec"; } .fa-exchange::before { content: "\f0ec"; } .fa-rotate-right::before { content: "\f2f9"; } .fa-redo-alt::before { content: "\f2f9"; } .fa-rotate-forward::before { content: "\f2f9"; } .fa-utensils::before { content: "\f2e7"; } .fa-cutlery::before { content: "\f2e7"; } .fa-arrow-up-wide-short::before { content: "\f161"; } .fa-sort-amount-up::before { content: "\f161"; } .fa-mill-sign::before { content: "\e1ed"; } .fa-bowl-rice::before { content: "\e2eb"; } .fa-skull::before { content: "\f54c"; } .fa-tower-broadcast::before { content: "\f519"; } .fa-broadcast-tower::before { content: "\f519"; } .fa-truck-pickup::before { content: "\f63c"; } .fa-up-long::before { content: "\f30c"; } .fa-long-arrow-alt-up::before { content: "\f30c"; } .fa-stop::before { content: "\f04d"; } .fa-code-merge::before { content: "\f387"; } .fa-upload::before { content: "\f093"; } .fa-hurricane::before { content: "\f751"; } .fa-mound::before { content: "\e52d"; } .fa-toilet-portable::before { content: "\e583"; } .fa-compact-disc::before { content: "\f51f"; } .fa-file-arrow-down::before { content: "\f56d"; } .fa-file-download::before { content: "\f56d"; } .fa-caravan::before { content: "\f8ff"; } .fa-shield-cat::before { content: "\e572"; } .fa-bolt::before { content: "\f0e7"; } .fa-zap::before { content: "\f0e7"; } .fa-glass-water::before { content: "\e4f4"; } .fa-oil-well::before { content: "\e532"; } .fa-vault::before { content: "\e2c5"; } .fa-mars::before { content: "\f222"; } .fa-toilet::before { content: "\f7d8"; } .fa-plane-circle-xmark::before { content: "\e557"; } .fa-yen-sign::before { content: "\f157"; } .fa-cny::before { content: "\f157"; } .fa-jpy::before { content: "\f157"; } .fa-rmb::before { content: "\f157"; } .fa-yen::before { content: "\f157"; } .fa-ruble-sign::before { content: "\f158"; } .fa-rouble::before { content: "\f158"; } .fa-rub::before { content: "\f158"; } .fa-ruble::before { content: "\f158"; } .fa-sun::before { content: "\f185"; } .fa-guitar::before { content: "\f7a6"; } .fa-face-laugh-wink::before { content: "\f59c"; } .fa-laugh-wink::before { content: "\f59c"; } .fa-horse-head::before { content: "\f7ab"; } .fa-bore-hole::before { content: "\e4c3"; } .fa-industry::before { content: "\f275"; } .fa-circle-down::before { content: "\f358"; } .fa-arrow-alt-circle-down::before { content: "\f358"; } .fa-arrows-turn-to-dots::before { content: "\e4c1"; } .fa-florin-sign::before { content: "\e184"; } .fa-arrow-down-short-wide::before { content: "\f884"; } .fa-sort-amount-desc::before { content: "\f884"; } .fa-sort-amount-down-alt::before { content: "\f884"; } .fa-less-than::before { content: "\3c"; } .fa-angle-down::before { content: "\f107"; } .fa-car-tunnel::before { content: "\e4de"; } .fa-head-side-cough::before { content: "\e061"; } .fa-grip-lines::before { content: "\f7a4"; } .fa-thumbs-down::before { content: "\f165"; } .fa-user-lock::before { content: "\f502"; } .fa-arrow-right-long::before { content: "\f178"; } .fa-long-arrow-right::before { content: "\f178"; } .fa-anchor-circle-xmark::before { content: "\e4ac"; } .fa-ellipsis::before { content: "\f141"; } .fa-ellipsis-h::before { content: "\f141"; } .fa-chess-pawn::before { content: "\f443"; } .fa-kit-medical::before { content: "\f479"; } .fa-first-aid::before { content: "\f479"; } .fa-person-through-window::before { content: "\e5a9"; } .fa-toolbox::before { content: "\f552"; } .fa-hands-holding-circle::before { content: "\e4fb"; } .fa-bug::before { content: "\f188"; } .fa-credit-card::before { content: "\f09d"; } .fa-credit-card-alt::before { content: "\f09d"; } .fa-car::before { content: "\f1b9"; } .fa-automobile::before { content: "\f1b9"; } .fa-hand-holding-hand::before { content: "\e4f7"; } .fa-book-open-reader::before { content: "\f5da"; } .fa-book-reader::before { content: "\f5da"; } .fa-mountain-sun::before { content: "\e52f"; } .fa-arrows-left-right-to-line::before { content: "\e4ba"; } .fa-dice-d20::before { content: "\f6cf"; } .fa-truck-droplet::before { content: "\e58c"; } .fa-file-circle-xmark::before { content: "\e5a1"; } .fa-temperature-arrow-up::before { content: "\e040"; } .fa-temperature-up::before { content: "\e040"; } .fa-medal::before { content: "\f5a2"; } .fa-bed::before { content: "\f236"; } .fa-square-h::before { content: "\f0fd"; } .fa-h-square::before { content: "\f0fd"; } .fa-podcast::before { content: "\f2ce"; } .fa-temperature-full::before { content: "\f2c7"; } .fa-temperature-4::before { content: "\f2c7"; } .fa-thermometer-4::before { content: "\f2c7"; } .fa-thermometer-full::before { content: "\f2c7"; } .fa-bell::before { content: "\f0f3"; } .fa-superscript::before { content: "\f12b"; } .fa-plug-circle-xmark::before { content: "\e560"; } .fa-star-of-life::before { content: "\f621"; } .fa-phone-slash::before { content: "\f3dd"; } .fa-paint-roller::before { content: "\f5aa"; } .fa-handshake-angle::before { content: "\f4c4"; } .fa-hands-helping::before { content: "\f4c4"; } .fa-location-dot::before { content: "\f3c5"; } .fa-map-marker-alt::before { content: "\f3c5"; } .fa-file::before { content: "\f15b"; } .fa-greater-than::before { content: "\3e"; } .fa-person-swimming::before { content: "\f5c4"; } .fa-swimmer::before { content: "\f5c4"; } .fa-arrow-down::before { content: "\f063"; } .fa-droplet::before { content: "\f043"; } .fa-tint::before { content: "\f043"; } .fa-eraser::before { content: "\f12d"; } .fa-earth-americas::before { content: "\f57d"; } .fa-earth::before { content: "\f57d"; } .fa-earth-america::before { content: "\f57d"; } .fa-globe-americas::before { content: "\f57d"; } .fa-person-burst::before { content: "\e53b"; } .fa-dove::before { content: "\f4ba"; } .fa-battery-empty::before { content: "\f244"; } .fa-battery-0::before { content: "\f244"; } .fa-socks::before { content: "\f696"; } .fa-inbox::before { content: "\f01c"; } .fa-section::before { content: "\e447"; } .fa-gauge-high::before { content: "\f625"; } .fa-tachometer-alt::before { content: "\f625"; } .fa-tachometer-alt-fast::before { content: "\f625"; } .fa-envelope-open-text::before { content: "\f658"; } .fa-hospital::before { content: "\f0f8"; } .fa-hospital-alt::before { content: "\f0f8"; } .fa-hospital-wide::before { content: "\f0f8"; } .fa-wine-bottle::before { content: "\f72f"; } .fa-chess-rook::before { content: "\f447"; } .fa-bars-staggered::before { content: "\f550"; } .fa-reorder::before { content: "\f550"; } .fa-stream::before { content: "\f550"; } .fa-dharmachakra::before { content: "\f655"; } .fa-hotdog::before { content: "\f80f"; } .fa-person-walking-with-cane::before { content: "\f29d"; } .fa-blind::before { content: "\f29d"; } .fa-drum::before { content: "\f569"; } .fa-ice-cream::before { content: "\f810"; } .fa-heart-circle-bolt::before { content: "\e4fc"; } .fa-fax::before { content: "\f1ac"; } .fa-paragraph::before { content: "\f1dd"; } .fa-check-to-slot::before { content: "\f772"; } .fa-vote-yea::before { content: "\f772"; } .fa-star-half::before { content: "\f089"; } .fa-boxes-stacked::before { content: "\f468"; } .fa-boxes::before { content: "\f468"; } .fa-boxes-alt::before { content: "\f468"; } .fa-link::before { content: "\f0c1"; } .fa-chain::before { content: "\f0c1"; } .fa-ear-listen::before { content: "\f2a2"; } .fa-assistive-listening-systems::before { content: "\f2a2"; } .fa-tree-city::before { content: "\e587"; } .fa-play::before { content: "\f04b"; } .fa-font::before { content: "\f031"; } .fa-rupiah-sign::before { content: "\e23d"; } .fa-magnifying-glass::before { content: "\f002"; } .fa-search::before { content: "\f002"; } .fa-table-tennis-paddle-ball::before { content: "\f45d"; } .fa-ping-pong-paddle-ball::before { content: "\f45d"; } .fa-table-tennis::before { content: "\f45d"; } .fa-person-dots-from-line::before { content: "\f470"; } .fa-diagnoses::before { content: "\f470"; } .fa-trash-can-arrow-up::before { content: "\f82a"; } .fa-trash-restore-alt::before { content: "\f82a"; } .fa-naira-sign::before { content: "\e1f6"; } .fa-cart-arrow-down::before { content: "\f218"; } .fa-walkie-talkie::before { content: "\f8ef"; } .fa-file-pen::before { content: "\f31c"; } .fa-file-edit::before { content: "\f31c"; } .fa-receipt::before { content: "\f543"; } .fa-square-pen::before { content: "\f14b"; } .fa-pen-square::before { content: "\f14b"; } .fa-pencil-square::before { content: "\f14b"; } .fa-suitcase-rolling::before { content: "\f5c1"; } .fa-person-circle-exclamation::before { content: "\e53f"; } .fa-chevron-down::before { content: "\f078"; } .fa-battery-full::before { content: "\f240"; } .fa-battery::before { content: "\f240"; } .fa-battery-5::before { content: "\f240"; } .fa-skull-crossbones::before { content: "\f714"; } .fa-code-compare::before { content: "\e13a"; } .fa-list-ul::before { content: "\f0ca"; } .fa-list-dots::before { content: "\f0ca"; } .fa-school-lock::before { content: "\e56f"; } .fa-tower-cell::before { content: "\e585"; } .fa-down-long::before { content: "\f309"; } .fa-long-arrow-alt-down::before { content: "\f309"; } .fa-ranking-star::before { content: "\e561"; } .fa-chess-king::before { content: "\f43f"; } .fa-person-harassing::before { content: "\e549"; } .fa-brazilian-real-sign::before { content: "\e46c"; } .fa-landmark-dome::before { content: "\f752"; } .fa-landmark-alt::before { content: "\f752"; } .fa-arrow-up::before { content: "\f062"; } .fa-tv::before { content: "\f26c"; } .fa-television::before { content: "\f26c"; } .fa-tv-alt::before { content: "\f26c"; } .fa-shrimp::before { content: "\e448"; } .fa-list-check::before { content: "\f0ae"; } .fa-tasks::before { content: "\f0ae"; } .fa-jug-detergent::before { content: "\e519"; } .fa-circle-user::before { content: "\f2bd"; } .fa-user-circle::before { content: "\f2bd"; } .fa-user-shield::before { content: "\f505"; } .fa-wind::before { content: "\f72e"; } .fa-car-burst::before { content: "\f5e1"; } .fa-car-crash::before { content: "\f5e1"; } .fa-y::before { content: "\59"; } .fa-person-snowboarding::before { content: "\f7ce"; } .fa-snowboarding::before { content: "\f7ce"; } .fa-truck-fast::before { content: "\f48b"; } .fa-shipping-fast::before { content: "\f48b"; } .fa-fish::before { content: "\f578"; } .fa-user-graduate::before { content: "\f501"; } .fa-circle-half-stroke::before { content: "\f042"; } .fa-adjust::before { content: "\f042"; } .fa-clapperboard::before { content: "\e131"; } .fa-circle-radiation::before { content: "\f7ba"; } .fa-radiation-alt::before { content: "\f7ba"; } .fa-baseball::before { content: "\f433"; } .fa-baseball-ball::before { content: "\f433"; } .fa-jet-fighter-up::before { content: "\e518"; } .fa-diagram-project::before { content: "\f542"; } .fa-project-diagram::before { content: "\f542"; } .fa-copy::before { content: "\f0c5"; } .fa-volume-xmark::before { content: "\f6a9"; } .fa-volume-mute::before { content: "\f6a9"; } .fa-volume-times::before { content: "\f6a9"; } .fa-hand-sparkles::before { content: "\e05d"; } .fa-grip::before { content: "\f58d"; } .fa-grip-horizontal::before { content: "\f58d"; } .fa-share-from-square::before { content: "\f14d"; } .fa-share-square::before { content: "\f14d"; } .fa-child-combatant::before { content: "\e4e0"; } .fa-child-rifle::before { content: "\e4e0"; } .fa-gun::before { content: "\e19b"; } .fa-square-phone::before { content: "\f098"; } .fa-phone-square::before { content: "\f098"; } .fa-plus::before { content: "\2b"; } .fa-add::before { content: "\2b"; } .fa-expand::before { content: "\f065"; } .fa-computer::before { content: "\e4e5"; } .fa-xmark::before { content: "\f00d"; } .fa-close::before { content: "\f00d"; } .fa-multiply::before { content: "\f00d"; } .fa-remove::before { content: "\f00d"; } .fa-times::before { content: "\f00d"; } .fa-arrows-up-down-left-right::before { content: "\f047"; } .fa-arrows::before { content: "\f047"; } .fa-chalkboard-user::before { content: "\f51c"; } .fa-chalkboard-teacher::before { content: "\f51c"; } .fa-peso-sign::before { content: "\e222"; } .fa-building-shield::before { content: "\e4d8"; } .fa-baby::before { content: "\f77c"; } .fa-users-line::before { content: "\e592"; } .fa-quote-left::before { content: "\f10d"; } .fa-quote-left-alt::before { content: "\f10d"; } .fa-tractor::before { content: "\f722"; } .fa-trash-arrow-up::before { content: "\f829"; } .fa-trash-restore::before { content: "\f829"; } .fa-arrow-down-up-lock::before { content: "\e4b0"; } .fa-lines-leaning::before { content: "\e51e"; } .fa-ruler-combined::before { content: "\f546"; } .fa-copyright::before { content: "\f1f9"; } .fa-equals::before { content: "\3d"; } .fa-blender::before { content: "\f517"; } .fa-teeth::before { content: "\f62e"; } .fa-shekel-sign::before { content: "\f20b"; } .fa-ils::before { content: "\f20b"; } .fa-shekel::before { content: "\f20b"; } .fa-sheqel::before { content: "\f20b"; } .fa-sheqel-sign::before { content: "\f20b"; } .fa-map::before { content: "\f279"; } .fa-rocket::before { content: "\f135"; } .fa-photo-film::before { content: "\f87c"; } .fa-photo-video::before { content: "\f87c"; } .fa-folder-minus::before { content: "\f65d"; } .fa-store::before { content: "\f54e"; } .fa-arrow-trend-up::before { content: "\e098"; } .fa-plug-circle-minus::before { content: "\e55e"; } .fa-sign-hanging::before { content: "\f4d9"; } .fa-sign::before { content: "\f4d9"; } .fa-bezier-curve::before { content: "\f55b"; } .fa-bell-slash::before { content: "\f1f6"; } .fa-tablet::before { content: "\f3fb"; } .fa-tablet-android::before { content: "\f3fb"; } .fa-school-flag::before { content: "\e56e"; } .fa-fill::before { content: "\f575"; } .fa-angle-up::before { content: "\f106"; } .fa-drumstick-bite::before { content: "\f6d7"; } .fa-holly-berry::before { content: "\f7aa"; } .fa-chevron-left::before { content: "\f053"; } .fa-bacteria::before { content: "\e059"; } .fa-hand-lizard::before { content: "\f258"; } .fa-notdef::before { content: "\e1fe"; } .fa-disease::before { content: "\f7fa"; } .fa-briefcase-medical::before { content: "\f469"; } .fa-genderless::before { content: "\f22d"; } .fa-chevron-right::before { content: "\f054"; } .fa-retweet::before { content: "\f079"; } .fa-car-rear::before { content: "\f5de"; } .fa-car-alt::before { content: "\f5de"; } .fa-pump-soap::before { content: "\e06b"; } .fa-video-slash::before { content: "\f4e2"; } .fa-battery-quarter::before { content: "\f243"; } .fa-battery-2::before { content: "\f243"; } .fa-radio::before { content: "\f8d7"; } .fa-baby-carriage::before { content: "\f77d"; } .fa-carriage-baby::before { content: "\f77d"; } .fa-traffic-light::before { content: "\f637"; } .fa-thermometer::before { content: "\f491"; } .fa-vr-cardboard::before { content: "\f729"; } .fa-hand-middle-finger::before { content: "\f806"; } .fa-percent::before { content: "\25"; } .fa-percentage::before { content: "\25"; } .fa-truck-moving::before { content: "\f4df"; } .fa-glass-water-droplet::before { content: "\e4f5"; } .fa-display::before { content: "\e163"; } .fa-face-smile::before { content: "\f118"; } .fa-smile::before { content: "\f118"; } .fa-thumbtack::before { content: "\f08d"; } .fa-thumb-tack::before { content: "\f08d"; } .fa-trophy::before { content: "\f091"; } .fa-person-praying::before { content: "\f683"; } .fa-pray::before { content: "\f683"; } .fa-hammer::before { content: "\f6e3"; } .fa-hand-peace::before { content: "\f25b"; } .fa-rotate::before { content: "\f2f1"; } .fa-sync-alt::before { content: "\f2f1"; } .fa-spinner::before { content: "\f110"; } .fa-robot::before { content: "\f544"; } .fa-peace::before { content: "\f67c"; } .fa-gears::before { content: "\f085"; } .fa-cogs::before { content: "\f085"; } .fa-warehouse::before { content: "\f494"; } .fa-arrow-up-right-dots::before { content: "\e4b7"; } .fa-splotch::before { content: "\f5bc"; } .fa-face-grin-hearts::before { content: "\f584"; } .fa-grin-hearts::before { content: "\f584"; } .fa-dice-four::before { content: "\f524"; } .fa-sim-card::before { content: "\f7c4"; } .fa-transgender::before { content: "\f225"; } .fa-transgender-alt::before { content: "\f225"; } .fa-mercury::before { content: "\f223"; } .fa-arrow-turn-down::before { content: "\f149"; } .fa-level-down::before { content: "\f149"; } .fa-person-falling-burst::before { content: "\e547"; } .fa-award::before { content: "\f559"; } .fa-ticket-simple::before { content: "\f3ff"; } .fa-ticket-alt::before { content: "\f3ff"; } .fa-building::before { content: "\f1ad"; } .fa-angles-left::before { content: "\f100"; } .fa-angle-double-left::before { content: "\f100"; } .fa-qrcode::before { content: "\f029"; } .fa-clock-rotate-left::before { content: "\f1da"; } .fa-history::before { content: "\f1da"; } .fa-face-grin-beam-sweat::before { content: "\f583"; } .fa-grin-beam-sweat::before { content: "\f583"; } .fa-file-export::before { content: "\f56e"; } .fa-arrow-right-from-file::before { content: "\f56e"; } .fa-shield::before { content: "\f132"; } .fa-shield-blank::before { content: "\f132"; } .fa-arrow-up-short-wide::before { content: "\f885"; } .fa-sort-amount-up-alt::before { content: "\f885"; } .fa-house-medical::before { content: "\e3b2"; } .fa-golf-ball-tee::before { content: "\f450"; } .fa-golf-ball::before { content: "\f450"; } .fa-circle-chevron-left::before { content: "\f137"; } .fa-chevron-circle-left::before { content: "\f137"; } .fa-house-chimney-window::before { content: "\e00d"; } .fa-pen-nib::before { content: "\f5ad"; } .fa-tent-arrow-turn-left::before { content: "\e580"; } .fa-tents::before { content: "\e582"; } .fa-wand-magic::before { content: "\f0d0"; } .fa-magic::before { content: "\f0d0"; } .fa-dog::before { content: "\f6d3"; } .fa-carrot::before { content: "\f787"; } .fa-moon::before { content: "\f186"; } .fa-wine-glass-empty::before { content: "\f5ce"; } .fa-wine-glass-alt::before { content: "\f5ce"; } .fa-cheese::before { content: "\f7ef"; } .fa-yin-yang::before { content: "\f6ad"; } .fa-music::before { content: "\f001"; } .fa-code-commit::before { content: "\f386"; } .fa-temperature-low::before { content: "\f76b"; } .fa-person-biking::before { content: "\f84a"; } .fa-biking::before { content: "\f84a"; } .fa-broom::before { content: "\f51a"; } .fa-shield-heart::before { content: "\e574"; } .fa-gopuram::before { content: "\f664"; } .fa-earth-oceania::before { content: "\e47b"; } .fa-globe-oceania::before { content: "\e47b"; } .fa-square-xmark::before { content: "\f2d3"; } .fa-times-square::before { content: "\f2d3"; } .fa-xmark-square::before { content: "\f2d3"; } .fa-hashtag::before { content: "\23"; } .fa-up-right-and-down-left-from-center::before { content: "\f424"; } .fa-expand-alt::before { content: "\f424"; } .fa-oil-can::before { content: "\f613"; } .fa-t::before { content: "\54"; } .fa-hippo::before { content: "\f6ed"; } .fa-chart-column::before { content: "\e0e3"; } .fa-infinity::before { content: "\f534"; } .fa-vial-circle-check::before { content: "\e596"; } .fa-person-arrow-down-to-line::before { content: "\e538"; } .fa-voicemail::before { content: "\f897"; } .fa-fan::before { content: "\f863"; } .fa-person-walking-luggage::before { content: "\e554"; } .fa-up-down::before { content: "\f338"; } .fa-arrows-alt-v::before { content: "\f338"; } .fa-cloud-moon-rain::before { content: "\f73c"; } .fa-calendar::before { content: "\f133"; } .fa-trailer::before { content: "\e041"; } .fa-bahai::before { content: "\f666"; } .fa-haykal::before { content: "\f666"; } .fa-sd-card::before { content: "\f7c2"; } .fa-dragon::before { content: "\f6d5"; } .fa-shoe-prints::before { content: "\f54b"; } .fa-circle-plus::before { content: "\f055"; } .fa-plus-circle::before { content: "\f055"; } .fa-face-grin-tongue-wink::before { content: "\f58b"; } .fa-grin-tongue-wink::before { content: "\f58b"; } .fa-hand-holding::before { content: "\f4bd"; } .fa-plug-circle-exclamation::before { content: "\e55d"; } .fa-link-slash::before { content: "\f127"; } .fa-chain-broken::before { content: "\f127"; } .fa-chain-slash::before { content: "\f127"; } .fa-unlink::before { content: "\f127"; } .fa-clone::before { content: "\f24d"; } .fa-person-walking-arrow-loop-left::before { content: "\e551"; } .fa-arrow-up-z-a::before { content: "\f882"; } .fa-sort-alpha-up-alt::before { content: "\f882"; } .fa-fire-flame-curved::before { content: "\f7e4"; } .fa-fire-alt::before { content: "\f7e4"; } .fa-tornado::before { content: "\f76f"; } .fa-file-circle-plus::before { content: "\e494"; } .fa-book-quran::before { content: "\f687"; } .fa-quran::before { content: "\f687"; } .fa-anchor::before { content: "\f13d"; } .fa-border-all::before { content: "\f84c"; } .fa-face-angry::before { content: "\f556"; } .fa-angry::before { content: "\f556"; } .fa-cookie-bite::before { content: "\f564"; } .fa-arrow-trend-down::before { content: "\e097"; } .fa-rss::before { content: "\f09e"; } .fa-feed::before { content: "\f09e"; } .fa-draw-polygon::before { content: "\f5ee"; } .fa-scale-balanced::before { content: "\f24e"; } .fa-balance-scale::before { content: "\f24e"; } .fa-gauge-simple-high::before { content: "\f62a"; } .fa-tachometer::before { content: "\f62a"; } .fa-tachometer-fast::before { content: "\f62a"; } .fa-shower::before { content: "\f2cc"; } .fa-desktop::before { content: "\f390"; } .fa-desktop-alt::before { content: "\f390"; } .fa-m::before { content: "\4d"; } .fa-table-list::before { content: "\f00b"; } .fa-th-list::before { content: "\f00b"; } .fa-comment-sms::before { content: "\f7cd"; } .fa-sms::before { content: "\f7cd"; } .fa-book::before { content: "\f02d"; } .fa-user-plus::before { content: "\f234"; } .fa-check::before { content: "\f00c"; } .fa-battery-three-quarters::before { content: "\f241"; } .fa-battery-4::before { content: "\f241"; } .fa-house-circle-check::before { content: "\e509"; } .fa-angle-left::before { content: "\f104"; } .fa-diagram-successor::before { content: "\e47a"; } .fa-truck-arrow-right::before { content: "\e58b"; } .fa-arrows-split-up-and-left::before { content: "\e4bc"; } .fa-hand-fist::before { content: "\f6de"; } .fa-fist-raised::before { content: "\f6de"; } .fa-cloud-moon::before { content: "\f6c3"; } .fa-briefcase::before { content: "\f0b1"; } .fa-person-falling::before { content: "\e546"; } .fa-image-portrait::before { content: "\f3e0"; } .fa-portrait::before { content: "\f3e0"; } .fa-user-tag::before { content: "\f507"; } .fa-rug::before { content: "\e569"; } .fa-earth-europe::before { content: "\f7a2"; } .fa-globe-europe::before { content: "\f7a2"; } .fa-cart-flatbed-suitcase::before { content: "\f59d"; } .fa-luggage-cart::before { content: "\f59d"; } .fa-rectangle-xmark::before { content: "\f410"; } .fa-rectangle-times::before { content: "\f410"; } .fa-times-rectangle::before { content: "\f410"; } .fa-window-close::before { content: "\f410"; } .fa-baht-sign::before { content: "\e0ac"; } .fa-book-open::before { content: "\f518"; } .fa-book-journal-whills::before { content: "\f66a"; } .fa-journal-whills::before { content: "\f66a"; } .fa-handcuffs::before { content: "\e4f8"; } .fa-triangle-exclamation::before { content: "\f071"; } .fa-exclamation-triangle::before { content: "\f071"; } .fa-warning::before { content: "\f071"; } .fa-database::before { content: "\f1c0"; } .fa-share::before { content: "\f064"; } .fa-arrow-turn-right::before { content: "\f064"; } .fa-mail-forward::before { content: "\f064"; } .fa-bottle-droplet::before { content: "\e4c4"; } .fa-mask-face::before { content: "\e1d7"; } .fa-hill-rockslide::before { content: "\e508"; } .fa-right-left::before { content: "\f362"; } .fa-exchange-alt::before { content: "\f362"; } .fa-paper-plane::before { content: "\f1d8"; } .fa-road-circle-exclamation::before { content: "\e565"; } .fa-dungeon::before { content: "\f6d9"; } .fa-align-right::before { content: "\f038"; } .fa-money-bill-1-wave::before { content: "\f53b"; } .fa-money-bill-wave-alt::before { content: "\f53b"; } .fa-life-ring::before { content: "\f1cd"; } .fa-hands::before { content: "\f2a7"; } .fa-sign-language::before { content: "\f2a7"; } .fa-signing::before { content: "\f2a7"; } .fa-calendar-day::before { content: "\f783"; } .fa-water-ladder::before { content: "\f5c5"; } .fa-ladder-water::before { content: "\f5c5"; } .fa-swimming-pool::before { content: "\f5c5"; } .fa-arrows-up-down::before { content: "\f07d"; } .fa-arrows-v::before { content: "\f07d"; } .fa-face-grimace::before { content: "\f57f"; } .fa-grimace::before { content: "\f57f"; } .fa-wheelchair-move::before { content: "\e2ce"; } .fa-wheelchair-alt::before { content: "\e2ce"; } .fa-turn-down::before { content: "\f3be"; } .fa-level-down-alt::before { content: "\f3be"; } .fa-person-walking-arrow-right::before { content: "\e552"; } .fa-square-envelope::before { content: "\f199"; } .fa-envelope-square::before { content: "\f199"; } .fa-dice::before { content: "\f522"; } .fa-bowling-ball::before { content: "\f436"; } .fa-brain::before { content: "\f5dc"; } .fa-bandage::before { content: "\f462"; } .fa-band-aid::before { content: "\f462"; } .fa-calendar-minus::before { content: "\f272"; } .fa-circle-xmark::before { content: "\f057"; } .fa-times-circle::before { content: "\f057"; } .fa-xmark-circle::before { content: "\f057"; } .fa-gifts::before { content: "\f79c"; } .fa-hotel::before { content: "\f594"; } .fa-earth-asia::before { content: "\f57e"; } .fa-globe-asia::before { content: "\f57e"; } .fa-id-card-clip::before { content: "\f47f"; } .fa-id-card-alt::before { content: "\f47f"; } .fa-magnifying-glass-plus::before { content: "\f00e"; } .fa-search-plus::before { content: "\f00e"; } .fa-thumbs-up::before { content: "\f164"; } .fa-user-clock::before { content: "\f4fd"; } .fa-hand-dots::before { content: "\f461"; } .fa-allergies::before { content: "\f461"; } .fa-file-invoice::before { content: "\f570"; } .fa-window-minimize::before { content: "\f2d1"; } .fa-mug-saucer::before { content: "\f0f4"; } .fa-coffee::before { content: "\f0f4"; } .fa-brush::before { content: "\f55d"; } .fa-mask::before { content: "\f6fa"; } .fa-magnifying-glass-minus::before { content: "\f010"; } .fa-search-minus::before { content: "\f010"; } .fa-ruler-vertical::before { content: "\f548"; } .fa-user-large::before { content: "\f406"; } .fa-user-alt::before { content: "\f406"; } .fa-train-tram::before { content: "\e5b4"; } .fa-user-nurse::before { content: "\f82f"; } .fa-syringe::before { content: "\f48e"; } .fa-cloud-sun::before { content: "\f6c4"; } .fa-stopwatch-20::before { content: "\e06f"; } .fa-square-full::before { content: "\f45c"; } .fa-magnet::before { content: "\f076"; } .fa-jar::before { content: "\e516"; } .fa-note-sticky::before { content: "\f249"; } .fa-sticky-note::before { content: "\f249"; } .fa-bug-slash::before { content: "\e490"; } .fa-arrow-up-from-water-pump::before { content: "\e4b6"; } .fa-bone::before { content: "\f5d7"; } .fa-user-injured::before { content: "\f728"; } .fa-face-sad-tear::before { content: "\f5b4"; } .fa-sad-tear::before { content: "\f5b4"; } .fa-plane::before { content: "\f072"; } .fa-tent-arrows-down::before { content: "\e581"; } .fa-exclamation::before { content: "\21"; } .fa-arrows-spin::before { content: "\e4bb"; } .fa-print::before { content: "\f02f"; } .fa-turkish-lira-sign::before { content: "\e2bb"; } .fa-try::before { content: "\e2bb"; } .fa-turkish-lira::before { content: "\e2bb"; } .fa-dollar-sign::before { content: "\24"; } .fa-dollar::before { content: "\24"; } .fa-usd::before { content: "\24"; } .fa-x::before { content: "\58"; } .fa-magnifying-glass-dollar::before { content: "\f688"; } .fa-search-dollar::before { content: "\f688"; } .fa-users-gear::before { content: "\f509"; } .fa-users-cog::before { content: "\f509"; } .fa-person-military-pointing::before { content: "\e54a"; } .fa-building-columns::before { content: "\f19c"; } .fa-bank::before { content: "\f19c"; } .fa-institution::before { content: "\f19c"; } .fa-museum::before { content: "\f19c"; } .fa-university::before { content: "\f19c"; } .fa-umbrella::before { content: "\f0e9"; } .fa-trowel::before { content: "\e589"; } .fa-d::before { content: "\44"; } .fa-stapler::before { content: "\e5af"; } .fa-masks-theater::before { content: "\f630"; } .fa-theater-masks::before { content: "\f630"; } .fa-kip-sign::before { content: "\e1c4"; } .fa-hand-point-left::before { content: "\f0a5"; } .fa-handshake-simple::before { content: "\f4c6"; } .fa-handshake-alt::before { content: "\f4c6"; } .fa-jet-fighter::before { content: "\f0fb"; } .fa-fighter-jet::before { content: "\f0fb"; } .fa-square-share-nodes::before { content: "\f1e1"; } .fa-share-alt-square::before { content: "\f1e1"; } .fa-barcode::before { content: "\f02a"; } .fa-plus-minus::before { content: "\e43c"; } .fa-video::before { content: "\f03d"; } .fa-video-camera::before { content: "\f03d"; } .fa-graduation-cap::before { content: "\f19d"; } .fa-mortar-board::before { content: "\f19d"; } .fa-hand-holding-medical::before { content: "\e05c"; } .fa-person-circle-check::before { content: "\e53e"; } .fa-turn-up::before { content: "\f3bf"; } .fa-level-up-alt::before { content: "\f3bf"; } .sr-only, .fa-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } .sr-only-focusable:not(:focus), .fa-sr-only-focusable:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } :root, :host { --fa-style-family-brands: 'Font Awesome 6 Brands'; --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; } @font-face { font-family: 'Font Awesome 6 Brands'; font-style: normal; font-weight: 400; font-display: block; src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } .fab, .fa-brands { font-weight: 400; } .fa-monero:before { content: "\f3d0"; } .fa-hooli:before { content: "\f427"; } .fa-yelp:before { content: "\f1e9"; } .fa-cc-visa:before { content: "\f1f0"; } .fa-lastfm:before { content: "\f202"; } .fa-shopware:before { content: "\f5b5"; } .fa-creative-commons-nc:before { content: "\f4e8"; } .fa-aws:before { content: "\f375"; } .fa-redhat:before { content: "\f7bc"; } .fa-yoast:before { content: "\f2b1"; } .fa-cloudflare:before { content: "\e07d"; } .fa-ups:before { content: "\f7e0"; } .fa-wpexplorer:before { content: "\f2de"; } .fa-dyalog:before { content: "\f399"; } .fa-bity:before { content: "\f37a"; } .fa-stackpath:before { content: "\f842"; } .fa-buysellads:before { content: "\f20d"; } .fa-first-order:before { content: "\f2b0"; } .fa-modx:before { content: "\f285"; } .fa-guilded:before { content: "\e07e"; } .fa-vnv:before { content: "\f40b"; } .fa-square-js:before { content: "\f3b9"; } .fa-js-square:before { content: "\f3b9"; } .fa-microsoft:before { content: "\f3ca"; } .fa-qq:before { content: "\f1d6"; } .fa-orcid:before { content: "\f8d2"; } .fa-java:before { content: "\f4e4"; } .fa-invision:before { content: "\f7b0"; } .fa-creative-commons-pd-alt:before { content: "\f4ed"; } .fa-centercode:before { content: "\f380"; } .fa-glide-g:before { content: "\f2a6"; } .fa-drupal:before { content: "\f1a9"; } .fa-hire-a-helper:before { content: "\f3b0"; } .fa-creative-commons-by:before { content: "\f4e7"; } .fa-unity:before { content: "\e049"; } .fa-whmcs:before { content: "\f40d"; } .fa-rocketchat:before { content: "\f3e8"; } .fa-vk:before { content: "\f189"; } .fa-untappd:before { content: "\f405"; } .fa-mailchimp:before { content: "\f59e"; } .fa-css3-alt:before { content: "\f38b"; } .fa-square-reddit:before { content: "\f1a2"; } .fa-reddit-square:before { content: "\f1a2"; } .fa-vimeo-v:before { content: "\f27d"; } .fa-contao:before { content: "\f26d"; } .fa-square-font-awesome:before { content: "\e5ad"; } .fa-deskpro:before { content: "\f38f"; } .fa-sistrix:before { content: "\f3ee"; } .fa-square-instagram:before { content: "\e055"; } .fa-instagram-square:before { content: "\e055"; } .fa-battle-net:before { content: "\f835"; } .fa-the-red-yeti:before { content: "\f69d"; } .fa-square-hacker-news:before { content: "\f3af"; } .fa-hacker-news-square:before { content: "\f3af"; } .fa-edge:before { content: "\f282"; } .fa-threads:before { content: "\e618"; } .fa-napster:before { content: "\f3d2"; } .fa-square-snapchat:before { content: "\f2ad"; } .fa-snapchat-square:before { content: "\f2ad"; } .fa-google-plus-g:before { content: "\f0d5"; } .fa-artstation:before { content: "\f77a"; } .fa-markdown:before { content: "\f60f"; } .fa-sourcetree:before { content: "\f7d3"; } .fa-google-plus:before { content: "\f2b3"; } .fa-diaspora:before { content: "\f791"; } .fa-foursquare:before { content: "\f180"; } .fa-stack-overflow:before { content: "\f16c"; } .fa-github-alt:before { content: "\f113"; } .fa-phoenix-squadron:before { content: "\f511"; } .fa-pagelines:before { content: "\f18c"; } .fa-algolia:before { content: "\f36c"; } .fa-red-river:before { content: "\f3e3"; } .fa-creative-commons-sa:before { content: "\f4ef"; } .fa-safari:before { content: "\f267"; } .fa-google:before { content: "\f1a0"; } .fa-square-font-awesome-stroke:before { content: "\f35c"; } .fa-font-awesome-alt:before { content: "\f35c"; } .fa-atlassian:before { content: "\f77b"; } .fa-linkedin-in:before { content: "\f0e1"; } .fa-digital-ocean:before { content: "\f391"; } .fa-nimblr:before { content: "\f5a8"; } .fa-chromecast:before { content: "\f838"; } .fa-evernote:before { content: "\f839"; } .fa-hacker-news:before { content: "\f1d4"; } .fa-creative-commons-sampling:before { content: "\f4f0"; } .fa-adversal:before { content: "\f36a"; } .fa-creative-commons:before { content: "\f25e"; } .fa-watchman-monitoring:before { content: "\e087"; } .fa-fonticons:before { content: "\f280"; } .fa-weixin:before { content: "\f1d7"; } .fa-shirtsinbulk:before { content: "\f214"; } .fa-codepen:before { content: "\f1cb"; } .fa-git-alt:before { content: "\f841"; } .fa-lyft:before { content: "\f3c3"; } .fa-rev:before { content: "\f5b2"; } .fa-windows:before { content: "\f17a"; } .fa-wizards-of-the-coast:before { content: "\f730"; } .fa-square-viadeo:before { content: "\f2aa"; } .fa-viadeo-square:before { content: "\f2aa"; } .fa-meetup:before { content: "\f2e0"; } .fa-centos:before { content: "\f789"; } .fa-adn:before { content: "\f170"; } .fa-cloudsmith:before { content: "\f384"; } .fa-pied-piper-alt:before { content: "\f1a8"; } .fa-square-dribbble:before { content: "\f397"; } .fa-dribbble-square:before { content: "\f397"; } .fa-codiepie:before { content: "\f284"; } .fa-node:before { content: "\f419"; } .fa-mix:before { content: "\f3cb"; } .fa-steam:before { content: "\f1b6"; } .fa-cc-apple-pay:before { content: "\f416"; } .fa-scribd:before { content: "\f28a"; } .fa-debian:before { content: "\e60b"; } .fa-openid:before { content: "\f19b"; } .fa-instalod:before { content: "\e081"; } .fa-expeditedssl:before { content: "\f23e"; } .fa-sellcast:before { content: "\f2da"; } .fa-square-twitter:before { content: "\f081"; } .fa-twitter-square:before { content: "\f081"; } .fa-r-project:before { content: "\f4f7"; } .fa-delicious:before { content: "\f1a5"; } .fa-freebsd:before { content: "\f3a4"; } .fa-vuejs:before { content: "\f41f"; } .fa-accusoft:before { content: "\f369"; } .fa-ioxhost:before { content: "\f208"; } .fa-fonticons-fi:before { content: "\f3a2"; } .fa-app-store:before { content: "\f36f"; } .fa-cc-mastercard:before { content: "\f1f1"; } .fa-itunes-note:before { content: "\f3b5"; } .fa-golang:before { content: "\e40f"; } .fa-kickstarter:before { content: "\f3bb"; } .fa-grav:before { content: "\f2d6"; } .fa-weibo:before { content: "\f18a"; } .fa-uncharted:before { content: "\e084"; } .fa-firstdraft:before { content: "\f3a1"; } .fa-square-youtube:before { content: "\f431"; } .fa-youtube-square:before { content: "\f431"; } .fa-wikipedia-w:before { content: "\f266"; } .fa-wpressr:before { content: "\f3e4"; } .fa-rendact:before { content: "\f3e4"; } .fa-angellist:before { content: "\f209"; } .fa-galactic-republic:before { content: "\f50c"; } .fa-nfc-directional:before { content: "\e530"; } .fa-skype:before { content: "\f17e"; } .fa-joget:before { content: "\f3b7"; } .fa-fedora:before { content: "\f798"; } .fa-stripe-s:before { content: "\f42a"; } .fa-meta:before { content: "\e49b"; } .fa-laravel:before { content: "\f3bd"; } .fa-hotjar:before { content: "\f3b1"; } .fa-bluetooth-b:before { content: "\f294"; } .fa-sticker-mule:before { content: "\f3f7"; } .fa-creative-commons-zero:before { content: "\f4f3"; } .fa-hips:before { content: "\f452"; } .fa-behance:before { content: "\f1b4"; } .fa-reddit:before { content: "\f1a1"; } .fa-discord:before { content: "\f392"; } .fa-chrome:before { content: "\f268"; } .fa-app-store-ios:before { content: "\f370"; } .fa-cc-discover:before { content: "\f1f2"; } .fa-wpbeginner:before { content: "\f297"; } .fa-confluence:before { content: "\f78d"; } .fa-mdb:before { content: "\f8ca"; } .fa-dochub:before { content: "\f394"; } .fa-accessible-icon:before { content: "\f368"; } .fa-ebay:before { content: "\f4f4"; } .fa-amazon:before { content: "\f270"; } .fa-unsplash:before { content: "\e07c"; } .fa-yarn:before { content: "\f7e3"; } .fa-square-steam:before { content: "\f1b7"; } .fa-steam-square:before { content: "\f1b7"; } .fa-500px:before { content: "\f26e"; } .fa-square-vimeo:before { content: "\f194"; } .fa-vimeo-square:before { content: "\f194"; } .fa-asymmetrik:before { content: "\f372"; } .fa-font-awesome:before { content: "\f2b4"; } .fa-font-awesome-flag:before { content: "\f2b4"; } .fa-font-awesome-logo-full:before { content: "\f2b4"; } .fa-gratipay:before { content: "\f184"; } .fa-apple:before { content: "\f179"; } .fa-hive:before { content: "\e07f"; } .fa-gitkraken:before { content: "\f3a6"; } .fa-keybase:before { content: "\f4f5"; } .fa-apple-pay:before { content: "\f415"; } .fa-padlet:before { content: "\e4a0"; } .fa-amazon-pay:before { content: "\f42c"; } .fa-square-github:before { content: "\f092"; } .fa-github-square:before { content: "\f092"; } .fa-stumbleupon:before { content: "\f1a4"; } .fa-fedex:before { content: "\f797"; } .fa-phoenix-framework:before { content: "\f3dc"; } .fa-shopify:before { content: "\e057"; } .fa-neos:before { content: "\f612"; } .fa-square-threads:before { content: "\e619"; } .fa-hackerrank:before { content: "\f5f7"; } .fa-researchgate:before { content: "\f4f8"; } .fa-swift:before { content: "\f8e1"; } .fa-angular:before { content: "\f420"; } .fa-speakap:before { content: "\f3f3"; } .fa-angrycreative:before { content: "\f36e"; } .fa-y-combinator:before { content: "\f23b"; } .fa-empire:before { content: "\f1d1"; } .fa-envira:before { content: "\f299"; } .fa-square-gitlab:before { content: "\e5ae"; } .fa-gitlab-square:before { content: "\e5ae"; } .fa-studiovinari:before { content: "\f3f8"; } .fa-pied-piper:before { content: "\f2ae"; } .fa-wordpress:before { content: "\f19a"; } .fa-product-hunt:before { content: "\f288"; } .fa-firefox:before { content: "\f269"; } .fa-linode:before { content: "\f2b8"; } .fa-goodreads:before { content: "\f3a8"; } .fa-square-odnoklassniki:before { content: "\f264"; } .fa-odnoklassniki-square:before { content: "\f264"; } .fa-jsfiddle:before { content: "\f1cc"; } .fa-sith:before { content: "\f512"; } .fa-themeisle:before { content: "\f2b2"; } .fa-page4:before { content: "\f3d7"; } .fa-hashnode:before { content: "\e499"; } .fa-react:before { content: "\f41b"; } .fa-cc-paypal:before { content: "\f1f4"; } .fa-squarespace:before { content: "\f5be"; } .fa-cc-stripe:before { content: "\f1f5"; } .fa-creative-commons-share:before { content: "\f4f2"; } .fa-bitcoin:before { content: "\f379"; } .fa-keycdn:before { content: "\f3ba"; } .fa-opera:before { content: "\f26a"; } .fa-itch-io:before { content: "\f83a"; } .fa-umbraco:before { content: "\f8e8"; } .fa-galactic-senate:before { content: "\f50d"; } .fa-ubuntu:before { content: "\f7df"; } .fa-draft2digital:before { content: "\f396"; } .fa-stripe:before { content: "\f429"; } .fa-houzz:before { content: "\f27c"; } .fa-gg:before { content: "\f260"; } .fa-dhl:before { content: "\f790"; } .fa-square-pinterest:before { content: "\f0d3"; } .fa-pinterest-square:before { content: "\f0d3"; } .fa-xing:before { content: "\f168"; } .fa-blackberry:before { content: "\f37b"; } .fa-creative-commons-pd:before { content: "\f4ec"; } .fa-playstation:before { content: "\f3df"; } .fa-quinscape:before { content: "\f459"; } .fa-less:before { content: "\f41d"; } .fa-blogger-b:before { content: "\f37d"; } .fa-opencart:before { content: "\f23d"; } .fa-vine:before { content: "\f1ca"; } .fa-paypal:before { content: "\f1ed"; } .fa-gitlab:before { content: "\f296"; } .fa-typo3:before { content: "\f42b"; } .fa-reddit-alien:before { content: "\f281"; } .fa-yahoo:before { content: "\f19e"; } .fa-dailymotion:before { content: "\e052"; } .fa-affiliatetheme:before { content: "\f36b"; } .fa-pied-piper-pp:before { content: "\f1a7"; } .fa-bootstrap:before { content: "\f836"; } .fa-odnoklassniki:before { content: "\f263"; } .fa-nfc-symbol:before { content: "\e531"; } .fa-ethereum:before { content: "\f42e"; } .fa-speaker-deck:before { content: "\f83c"; } .fa-creative-commons-nc-eu:before { content: "\f4e9"; } .fa-patreon:before { content: "\f3d9"; } .fa-avianex:before { content: "\f374"; } .fa-ello:before { content: "\f5f1"; } .fa-gofore:before { content: "\f3a7"; } .fa-bimobject:before { content: "\f378"; } .fa-facebook-f:before { content: "\f39e"; } .fa-square-google-plus:before { content: "\f0d4"; } .fa-google-plus-square:before { content: "\f0d4"; } .fa-mandalorian:before { content: "\f50f"; } .fa-first-order-alt:before { content: "\f50a"; } .fa-osi:before { content: "\f41a"; } .fa-google-wallet:before { content: "\f1ee"; } .fa-d-and-d-beyond:before { content: "\f6ca"; } .fa-periscope:before { content: "\f3da"; } .fa-fulcrum:before { content: "\f50b"; } .fa-cloudscale:before { content: "\f383"; } .fa-forumbee:before { content: "\f211"; } .fa-mizuni:before { content: "\f3cc"; } .fa-schlix:before { content: "\f3ea"; } .fa-square-xing:before { content: "\f169"; } .fa-xing-square:before { content: "\f169"; } .fa-bandcamp:before { content: "\f2d5"; } .fa-wpforms:before { content: "\f298"; } .fa-cloudversify:before { content: "\f385"; } .fa-usps:before { content: "\f7e1"; } .fa-megaport:before { content: "\f5a3"; } .fa-magento:before { content: "\f3c4"; } .fa-spotify:before { content: "\f1bc"; } .fa-optin-monster:before { content: "\f23c"; } .fa-fly:before { content: "\f417"; } .fa-aviato:before { content: "\f421"; } .fa-itunes:before { content: "\f3b4"; } .fa-cuttlefish:before { content: "\f38c"; } .fa-blogger:before { content: "\f37c"; } .fa-flickr:before { content: "\f16e"; } .fa-viber:before { content: "\f409"; } .fa-soundcloud:before { content: "\f1be"; } .fa-digg:before { content: "\f1a6"; } .fa-tencent-weibo:before { content: "\f1d5"; } .fa-symfony:before { content: "\f83d"; } .fa-maxcdn:before { content: "\f136"; } .fa-etsy:before { content: "\f2d7"; } .fa-facebook-messenger:before { content: "\f39f"; } .fa-audible:before { content: "\f373"; } .fa-think-peaks:before { content: "\f731"; } .fa-bilibili:before { content: "\e3d9"; } .fa-erlang:before { content: "\f39d"; } .fa-x-twitter:before { content: "\e61b"; } .fa-cotton-bureau:before { content: "\f89e"; } .fa-dashcube:before { content: "\f210"; } .fa-42-group:before { content: "\e080"; } .fa-innosoft:before { content: "\e080"; } .fa-stack-exchange:before { content: "\f18d"; } .fa-elementor:before { content: "\f430"; } .fa-square-pied-piper:before { content: "\e01e"; } .fa-pied-piper-square:before { content: "\e01e"; } .fa-creative-commons-nd:before { content: "\f4eb"; } .fa-palfed:before { content: "\f3d8"; } .fa-superpowers:before { content: "\f2dd"; } .fa-resolving:before { content: "\f3e7"; } .fa-xbox:before { content: "\f412"; } .fa-searchengin:before { content: "\f3eb"; } .fa-tiktok:before { content: "\e07b"; } .fa-square-facebook:before { content: "\f082"; } .fa-facebook-square:before { content: "\f082"; } .fa-renren:before { content: "\f18b"; } .fa-linux:before { content: "\f17c"; } .fa-glide:before { content: "\f2a5"; } .fa-linkedin:before { content: "\f08c"; } .fa-hubspot:before { content: "\f3b2"; } .fa-deploydog:before { content: "\f38e"; } .fa-twitch:before { content: "\f1e8"; } .fa-ravelry:before { content: "\f2d9"; } .fa-mixer:before { content: "\e056"; } .fa-square-lastfm:before { content: "\f203"; } .fa-lastfm-square:before { content: "\f203"; } .fa-vimeo:before { content: "\f40a"; } .fa-mendeley:before { content: "\f7b3"; } .fa-uniregistry:before { content: "\f404"; } .fa-figma:before { content: "\f799"; } .fa-creative-commons-remix:before { content: "\f4ee"; } .fa-cc-amazon-pay:before { content: "\f42d"; } .fa-dropbox:before { content: "\f16b"; } .fa-instagram:before { content: "\f16d"; } .fa-cmplid:before { content: "\e360"; } .fa-facebook:before { content: "\f09a"; } .fa-gripfire:before { content: "\f3ac"; } .fa-jedi-order:before { content: "\f50e"; } .fa-uikit:before { content: "\f403"; } .fa-fort-awesome-alt:before { content: "\f3a3"; } .fa-phabricator:before { content: "\f3db"; } .fa-ussunnah:before { content: "\f407"; } .fa-earlybirds:before { content: "\f39a"; } .fa-trade-federation:before { content: "\f513"; } .fa-autoprefixer:before { content: "\f41c"; } .fa-whatsapp:before { content: "\f232"; } .fa-slideshare:before { content: "\f1e7"; } .fa-google-play:before { content: "\f3ab"; } .fa-viadeo:before { content: "\f2a9"; } .fa-line:before { content: "\f3c0"; } .fa-google-drive:before { content: "\f3aa"; } .fa-servicestack:before { content: "\f3ec"; } .fa-simplybuilt:before { content: "\f215"; } .fa-bitbucket:before { content: "\f171"; } .fa-imdb:before { content: "\f2d8"; } .fa-deezer:before { content: "\e077"; } .fa-raspberry-pi:before { content: "\f7bb"; } .fa-jira:before { content: "\f7b1"; } .fa-docker:before { content: "\f395"; } .fa-screenpal:before { content: "\e570"; } .fa-bluetooth:before { content: "\f293"; } .fa-gitter:before { content: "\f426"; } .fa-d-and-d:before { content: "\f38d"; } .fa-microblog:before { content: "\e01a"; } .fa-cc-diners-club:before { content: "\f24c"; } .fa-gg-circle:before { content: "\f261"; } .fa-pied-piper-hat:before { content: "\f4e5"; } .fa-kickstarter-k:before { content: "\f3bc"; } .fa-yandex:before { content: "\f413"; } .fa-readme:before { content: "\f4d5"; } .fa-html5:before { content: "\f13b"; } .fa-sellsy:before { content: "\f213"; } .fa-sass:before { content: "\f41e"; } .fa-wirsindhandwerk:before { content: "\e2d0"; } .fa-wsh:before { content: "\e2d0"; } .fa-buromobelexperte:before { content: "\f37f"; } .fa-salesforce:before { content: "\f83b"; } .fa-octopus-deploy:before { content: "\e082"; } .fa-medapps:before { content: "\f3c6"; } .fa-ns8:before { content: "\f3d5"; } .fa-pinterest-p:before { content: "\f231"; } .fa-apper:before { content: "\f371"; } .fa-fort-awesome:before { content: "\f286"; } .fa-waze:before { content: "\f83f"; } .fa-cc-jcb:before { content: "\f24b"; } .fa-snapchat:before { content: "\f2ab"; } .fa-snapchat-ghost:before { content: "\f2ab"; } .fa-fantasy-flight-games:before { content: "\f6dc"; } .fa-rust:before { content: "\e07a"; } .fa-wix:before { content: "\f5cf"; } .fa-square-behance:before { content: "\f1b5"; } .fa-behance-square:before { content: "\f1b5"; } .fa-supple:before { content: "\f3f9"; } .fa-rebel:before { content: "\f1d0"; } .fa-css3:before { content: "\f13c"; } .fa-staylinked:before { content: "\f3f5"; } .fa-kaggle:before { content: "\f5fa"; } .fa-space-awesome:before { content: "\e5ac"; } .fa-deviantart:before { content: "\f1bd"; } .fa-cpanel:before { content: "\f388"; } .fa-goodreads-g:before { content: "\f3a9"; } .fa-square-git:before { content: "\f1d2"; } .fa-git-square:before { content: "\f1d2"; } .fa-square-tumblr:before { content: "\f174"; } .fa-tumblr-square:before { content: "\f174"; } .fa-trello:before { content: "\f181"; } .fa-creative-commons-nc-jp:before { content: "\f4ea"; } .fa-get-pocket:before { content: "\f265"; } .fa-perbyte:before { content: "\e083"; } .fa-grunt:before { content: "\f3ad"; } .fa-weebly:before { content: "\f5cc"; } .fa-connectdevelop:before { content: "\f20e"; } .fa-leanpub:before { content: "\f212"; } .fa-black-tie:before { content: "\f27e"; } .fa-themeco:before { content: "\f5c6"; } .fa-python:before { content: "\f3e2"; } .fa-android:before { content: "\f17b"; } .fa-bots:before { content: "\e340"; } .fa-free-code-camp:before { content: "\f2c5"; } .fa-hornbill:before { content: "\f592"; } .fa-js:before { content: "\f3b8"; } .fa-ideal:before { content: "\e013"; } .fa-git:before { content: "\f1d3"; } .fa-dev:before { content: "\f6cc"; } .fa-sketch:before { content: "\f7c6"; } .fa-yandex-international:before { content: "\f414"; } .fa-cc-amex:before { content: "\f1f3"; } .fa-uber:before { content: "\f402"; } .fa-github:before { content: "\f09b"; } .fa-php:before { content: "\f457"; } .fa-alipay:before { content: "\f642"; } .fa-youtube:before { content: "\f167"; } .fa-skyatlas:before { content: "\f216"; } .fa-firefox-browser:before { content: "\e007"; } .fa-replyd:before { content: "\f3e6"; } .fa-suse:before { content: "\f7d6"; } .fa-jenkins:before { content: "\f3b6"; } .fa-twitter:before { content: "\f099"; } .fa-rockrms:before { content: "\f3e9"; } .fa-pinterest:before { content: "\f0d2"; } .fa-buffer:before { content: "\f837"; } .fa-npm:before { content: "\f3d4"; } .fa-yammer:before { content: "\f840"; } .fa-btc:before { content: "\f15a"; } .fa-dribbble:before { content: "\f17d"; } .fa-stumbleupon-circle:before { content: "\f1a3"; } .fa-internet-explorer:before { content: "\f26b"; } .fa-stubber:before { content: "\e5c7"; } .fa-telegram:before { content: "\f2c6"; } .fa-telegram-plane:before { content: "\f2c6"; } .fa-old-republic:before { content: "\f510"; } .fa-odysee:before { content: "\e5c6"; } .fa-square-whatsapp:before { content: "\f40c"; } .fa-whatsapp-square:before { content: "\f40c"; } .fa-node-js:before { content: "\f3d3"; } .fa-edge-legacy:before { content: "\e078"; } .fa-slack:before { content: "\f198"; } .fa-slack-hash:before { content: "\f198"; } .fa-medrt:before { content: "\f3c8"; } .fa-usb:before { content: "\f287"; } .fa-tumblr:before { content: "\f173"; } .fa-vaadin:before { content: "\f408"; } .fa-quora:before { content: "\f2c4"; } .fa-square-x-twitter:before { content: "\e61a"; } .fa-reacteurope:before { content: "\f75d"; } .fa-medium:before { content: "\f23a"; } .fa-medium-m:before { content: "\f23a"; } .fa-amilia:before { content: "\f36d"; } .fa-mixcloud:before { content: "\f289"; } .fa-flipboard:before { content: "\f44d"; } .fa-viacoin:before { content: "\f237"; } .fa-critical-role:before { content: "\f6c9"; } .fa-sitrox:before { content: "\e44a"; } .fa-discourse:before { content: "\f393"; } .fa-joomla:before { content: "\f1aa"; } .fa-mastodon:before { content: "\f4f6"; } .fa-airbnb:before { content: "\f834"; } .fa-wolf-pack-battalion:before { content: "\f514"; } .fa-buy-n-large:before { content: "\f8a6"; } .fa-gulp:before { content: "\f3ae"; } .fa-creative-commons-sampling-plus:before { content: "\f4f1"; } .fa-strava:before { content: "\f428"; } .fa-ember:before { content: "\f423"; } .fa-canadian-maple-leaf:before { content: "\f785"; } .fa-teamspeak:before { content: "\f4f9"; } .fa-pushed:before { content: "\f3e1"; } .fa-wordpress-simple:before { content: "\f411"; } .fa-nutritionix:before { content: "\f3d6"; } .fa-wodu:before { content: "\e088"; } .fa-google-pay:before { content: "\e079"; } .fa-intercom:before { content: "\f7af"; } .fa-zhihu:before { content: "\f63f"; } .fa-korvue:before { content: "\f42f"; } .fa-pix:before { content: "\e43a"; } .fa-steam-symbol:before { content: "\f3f6"; } :root, :host { --fa-style-family-classic: 'Font Awesome 6 Free'; --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; } @font-face { font-family: 'Font Awesome 6 Free'; font-style: normal; font-weight: 400; font-display: block; src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } .far, .fa-regular { font-weight: 400; } :root, :host { --fa-style-family-classic: 'Font Awesome 6 Free'; --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; } @font-face { font-family: 'Font Awesome 6 Free'; font-style: normal; font-weight: 900; font-display: block; src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } .fas, .fa-solid { font-weight: 900; } @font-face { font-family: 'Font Awesome 5 Brands'; font-display: block; font-weight: 400; src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } @font-face { font-family: 'Font Awesome 5 Free'; font-display: block; font-weight: 900; src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } @font-face { font-family: 'Font Awesome 5 Free'; font-display: block; font-weight: 400; src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } @font-face { font-family: 'FontAwesome'; font-display: block; src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } @font-face { font-family: 'FontAwesome'; font-display: block; src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } @font-face { font-family: 'FontAwesome'; font-display: block; src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } @font-face { font-family: 'FontAwesome'; font-display: block; src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); } fontawesome/inst/fontawesome/webfonts/0000755000176200001440000000000014470000401017722 5ustar liggesusersfontawesome/inst/fontawesome/webfonts/fa-solid-900.woff20000644000176200001440000044500414470000401022702 0ustar liggesuserswOF2J 0I8$ `<ʔD˫@p ܒDpzaDfO=ixTUUUՔlgo~?oO´lx}~筚!@/*U >² {;mBw@^Q^Zf ܓt7`LrˁPBJxҫJ0)KT;SODg몮>@If3{7#?tn'M@F􀪨DSGz}0$X΀Dp5vwy O8F,iqX$+&4^*Px=ѶGb 1́dVսu+ ;WwMwLLwOMuM٩ͳZiw[y! I5Y! l6^"q`:c^8<ǿ6^yKsK}fy;f]V;rd[Mla/X6MqN]ԔfH%X t'?%H?<:}(#Jp2\*@*0)*ddjCMB!Kpa*"@(6 |굽ذ 1S;'22VjC{RFXʈ;8aGּZG_':<_6\dh 7Z2MAT4I$߲o~"sVh^&4)!Ġл!)<nNa%RhpKMh[z_CX zoFH`2(USv;mUvjATҴޔ.^  _ G29L=s{ A0w=s=3w@w YrElZeGXA,!9Dq`V6@$`l-KekZ= ԒbW,)-zm%Q5d:U`Ke4bch9?fJ"qЪVjÀeVd2՚I>Ʋb Wwou!:,2/ ROlj 0fVn ز,m]?bۋVN|cyk?rhN5`W?jCsK~0ZjW{wsFKzxf1¿̍+Iz :w@%O5PHXi (k MV[Bsx׹%5.噎N}Llj ,6ٶSca(wNۓ6Q|*IgERǿOdԺxJq̋Vܯi򕍣!EIltX6&e=WO1H+_TɅj67+"]]V}XW!|6g݃1-{̆wV7ˋe$#;35S/]ΗXH:o>T=ط88 b^"G߲{Xׯt~m{UrXNA= Em# 4wE&xǀb;Wy`]eO>iVY/2bS/ =&k5zyo(Ny&cYbSgϤ䢺+uŞ\wwj5|Zϐ'Jd `Cvp}Z\#7jhu55;w8ˡZ+^AVJ(<+a§d}metf V[|Ek3ȌC~z? Ti}^űƶ&w*vر9G&R-OW.zkWಚ'7\,$?JbԊp[;'{*wwMo_g3ʾ[#X@㟹uOr._su M:PcI'ވuWR:ډts.^Q)g)c+SRG ΂Ǧ>xfEM2=`Ċ6-X9{:t(5[G cHŒg};\W<NMd[|GO.)|Rpw!aɔ8x %5Wc|=/;;cQ_|9GQ-H&V26~ c"|8{8(5ƠW&?AslMIJ|kXΜj`}0ЭLZɞ+SGj sI߄S3a@;:3%w3v;p`ckzF/{<6"BQTF{tCw@OBoA_C @ ` P pHhXxlVn1#0YM>T6U4sĜ0gm. ".Kr{ʞcYb\KB+⊺{^w侸'6DǢ[O`ic",,J̚:lN.ɜiY\e\­<ijwE:BP= kp:\Wtq?4 Q٨e40IUO53<[]q:haeUxxv:>i紫ۍ({imM*"(ԺKTDŀ c`0|#3rr^.Ŗ*yqs`.3ǛCn\>|  ]*tЙB{ ,4>=OҖ'uIST*HR%Wo9>Ňxm*^xw↗^x^xx๞ xO< DOxXh<#P}wcwUwpZMsCDDDDD#4B#4B#4B#OmUu0c-,Hc!bff,>eni)6&,=yEc.eCGct3ySHb=00dتp6 ¾#L Œ0# l=gOBT&vNq; JRtH*YYeZCkgmlͲB*XPԾBaɼa5LBN[d}f?3wok~ﰛV,cg~c}]: 41n |a}gܦٯnZk}v Mqw5!%}g W4=c#@k|}(@Ya%m_=}J @y}x?:Ģo@@i!@IXm\&@.̕a{Hlo0Rt0OL7 pc t&8@_A|)DaPb%)Eiʐ I Ĕ@E*Q*Te+n6mn;λ =rGܣ1{=vϹ {ͽv7[U,RHH TjR[H]i(NK(]^Wl+ dJVY+dlO9-nOyCޖ#X>O3\/+ZU5ͮ94BZDjZj9-PimmvS{iot:Ug\ t.źR=o~'~_~3I_1ƿo_i[ea.9y$i@ @Ej@} UT1`*Q%$0NƫU$&0EETLSi`,0SflU*sU%` WUTN@V sg VehN6}ݐpہߡAې( Rni8 9U8Y 7 q7?Z)hHn{^W!uHvnhwH]*$ԆT~!U=D tT * Qy 4D @D= їpAC} 8D=яf U{?o]B@(o{Cz@{ Nͩ!dH!Vb/ .ˀ$ Nb#XNWJW!ÙĈ9b^4W!I,4D,Tőzb} $6D>ybcM 8bkݑn nw: ġ=qȕ8G"wQCHg#Oh!.Š'.C3 ω+ BH_ }J\qH7hn!' =WF|4%'~03y_-7ls#ܓvѸa@ڟvhGDHЎ<"hKӎf31lJ;Ҏqij$v 4O.&ָAZVm18na1+(Abn=1QtGc-s:t ֣֧666{6{C.lBIM|(` |iEYؖ:lGl;Pv)4؉r$WQN)̹r-Vؓ Ey< Pހ})o~w`ʷpg8DC觠$8~!888B888)8eOD$&Sq*C N.gPjL2equG9=t.uo>8?\@=UpLz՘.^K RoފwԻ/s穾LQ;gxkG?9iF 3G榌0ڔe؄(f {Seؗ 1LٜT){2p+p õcner wSN`xʉRN"Ѩs##RN%F"F#cQN'!ƧOL-ELr11Qz 111)b2GL!1ĔS(WKQ$Q,qbEIԲFLEyX|.[El6UCy؆x]P>'vӈn^/}(ǨE x$J' sSQ~&NeNg/ęY_ss)RM\$ɉQn#.iYG\A\E?q q퍊.N\OE: u|]tGWoP$#?*0EĠGsD?Q!~m S_[֛߈Q$#9 -51P#$:FLCK]] PFNآ>9P!jQ7!!nJNgrrf, YQ!g[󘳓sQ%!H.L.Fݝ\\j\\/2f=\\zhrCȍM'[ymgP##^DHrN~3P ?uh~ >I~C oԗ_@}Uߩb+1!o7.}G~L>S9O_"E }UOhQK_u}]7".hcL~&J?V解ML?CmYs&T02WBhSЯ@~3f?,鏢BLmV$hџҸghQN?K6;y栿L6'Eۛ9 ڢAh}X1ca:bF)tKRQG$N(Jԉ+SEBaЍy^wv.uAQ7ZkS7mP7nAK=LzxyGS!֧*Ćԫb#GNJMOy(b3s9%+$bkG"~*b[W"SM@WI_N;؅\Į"v#SsKsn:^|\؏\L" q DL,rUk8\CNnHntܛ&xQf0%%w"#w%w'N!GNCGA \8@FNKICOI%e9q-yn_t"#{ȇȇGlj['qGIDLE {ȷ{ɏO/Gɯ/p㴱h3f贙hf1h"~--JF[L*84o(+.]NYv%iQ6A5nڽmi@{e3({^L9*uAwHCirCr8c'#hIh_r4Q ʱ=qhR$QN/D?('ӏ!)r*$F?駤rtS΢~V9ȣ|y"q ɥD\D.+br%xĥje+ M5`\CnNnI\KnCnG@ 7;]ĭm>~ĝA0&!'!"! Ԁ0y6yy1y yDF>ND>-/x|x:7ȷDI3`E~@~HM~J~FK~)_ߓ??Ig? 9)<55<5"jtj"i E@M?RSS?QiZZX"ZLD'GEBFMwQRSRy$Avvv vv  KLrg::6"u$u4mdxM}hQ?y_h PHh SQG[ChӇp}8$G[>}dQіA}l}"}*3I :}Y֠//ښE[hk7mfKAl`[b(#Xt,+tDJzkb^(6@]Ql _EJ؂~?P(8, F >(T%jUF>qМ(!VB-B{R(t E:b ݂݉BRLBa"?(L!v SA(l ]Ba/񏣰^(N1 G* gw%  KNBRp-(\G(L| S&:Lj߅C RtGIbߡ4(Q(|Ft. _w _7MBGbHt Eшb9b/X(V!bSbQN; )ĝt?Aq6J(":?>@0bųHG]. +{kFzGxףx)xx/?B$":G' ŧ;ŧ[3{⧢>_&&WWŷGF#bߣ1Q_?%D?#j?'E{ Σ ǡqϢ;PDgwxUr;%@_$?rDWT**QD3(U&:DTRjR-TPCtJuR=.F5ѧ(% J}R'bԋ(6B* ߌDb4](M&JS}LPڨ嗤-hHvn>Fi/P:_&" 3Ji}M ?-C$^AlRFˡt$] PF'yn6!"Ρtw;Im8IC(=H](=9I$E$woC|!7J]D=7(@Qk_Z;e,@'6e#6 ryB (W&6jF.)(#6 Ħܐrcb#QnF*-E (w$NܙہrOb=PCl#(b Q>_P>?P>hO&O#Ӊ9݌ĎAiAENassZaX$N+ġʲh9v3 ]X1&SRfs.iYԶ jeSP!0t#+8}GwanK3dwpM8ba.8n/8򵲩S[aIlZU}*[XTS%OpJ L0l RTC/t 7 J cs0's{a ~{;qà5 ibpur VqPS+r+>dAFlx^':mj,ae¦NtR{gyY_?~}/>9h 6'Q*81TܺN` La *d#uF{}F8sG#m'/'p (lֵ``Iu(,?-NW x> !fT~1ALϵzœHN\}za_t@8rb:4v"DP'ڞB30&3^1϶۞o(b&S"mEby1`[1϶irΩeܬ'Ѥ{1Ʋo ̋} Ze71>o&cdvFrm&Wb\r9.nnujKv}z)ooȍv^V.#KxyTgg9=>;_=4W!˳J"Z*NtMz;g9!tR'ZdOpn!"ik=3Se%hjFޝ:΁9a_T|6aS9^dLoւ@"S{xh!= *Jy6UW ˼ao {Eg5Bd밇ݲ]v9)q[2J9ojZccr.>ڍpZ ~eߡC0J =,$/Ҳ~(됣{Փoh,ɸ\DgPLӬNEd }{68Z̻Y^V2 >2M>94-9MGsOrιiZ7 ݉e0B-8Jti*Tko2!\,66Ѩ?̙g].\tb,9~dwno.".6{Ҙţmw8M12`)COKj/>_ɵ%<>\ K~vGoʘ9dsBH&^>.|Y]]]Dvu˅Ux>)nm}cR1!\ ϛ;Ѝ6KTE]\+ʣ LՔxVUiDd&+R\@71!EYxJip{7BCЌs*`P}lKVIZC\Jflv'|nqIܞG\״Ajg5G1-Z*ؑ䋖BySADN;xKY%ZRkg%n/QS/ojw]X )b푇G]8EL0P98VH(V g++1kV;j7^>2m`y&6JV]Ǻ]=\ wv&~Ǻ<:~whdS 7)I.!jQ틤:ڷh?$)Qٜ*:)Z}2 rM#Y_?^ z ~Uɩi D煉V~sͻ[nU2een:iHx6s.]I4N:9<嗺pk=B&N'1=&BcJw"K3Gut4-RIޮ:eyE3EӰLѼ`1IaB8W,( |' 1 #վs- ^azpȵ6>@4"沚D\7GsemjG~9вFI2{*mIZ-Gʍ9p+9$!##I("kҭkY!'fے1S`kKPbrij*}PæYndUYEs/ɛ6aqL,˴qKXeqg11ܲ!Α2i{hxcqi79I4Zy~iYhZ.kD=̄elٷbXxQ N׿f,&ݰlۙĽO =aBx}{|,ٸZs]8:p92 #8Woιpb-S-T,"w~4bEП}F!H $"(AzV8gMDlz͛Q)\$[m+cFIljx&J-/a{"wOrb%^}2Z}|)Gȷ`#F~txJ26KYj>X"]wyAtzFm/lY7< YA)]':Qet谬tgiraYݤ|.C s3[@[E~K6B!٨0PBǹJ .)Dեa}NYW2:H <9@l̟mFՋ1>C!g`"^PMhdT+) 8C|"vx S<0SM<LCaYzQ>8Pڊ7E }OWB2_4B0s#W0.=fZowLD ˴l_fm(2|k2l!h`y)!^9b8{grR?ˬ)_nݰg.D% pxÝZ6 TFEquR@EL"<Ձ{IY;H;RvZK *uW!v"Ħ 9tڦǎmA ' $"viɔ8:2MG )f "L<  ߬3RhsYsW\=|nsڴصH"1c::2v :y'eEسĉL'Vaz-M'i1Zm(UȻcRE ./!5S,m )MRꤿ/,Oåy3R8͛8u18BN;l>2jݗyRPnY>oq2.ER4=:),=t p߿eUT~)Lv^}瞈dsS􊃫4!*{^/ ߼M!*Y#>:'o^[~ND|W'2+KaTU;~H$/𺊼jrQԝW*"8L_f 0KEKq"G`0!v pG^=!`ZMBa=t[RB?'f}͞fkF=BO߀OU8a6]QW U+Ia3[N-wUMMw ^k` G+h\GYVKN&08(N y1uu5E[bAjhivjأӹ֤H4!M~^_~;v3 S00 |)w}vTN-vrH̲'ǜ~]{FlFܭ6 VK<àJ~qW罞nR9ư 3j'8m ͫ2 }8U!Eyc~Pq\ o'ds'jD󺹅ƃo͹yߩyP C?PzՓZ|ߊBFH $*>>KG]"D8%b r_m9lp<鏭SV tm\4ӈd//>rmK?Dq&P]lOFiy"5:1E?_63ɏ|b0?(3ToIPLx@ ) &ۊTpnnIcLg3A 7_Vˊ $bM\ޓsW4IW0zj Id2HD2)D/!ޫ_ֈkwWn"rrіF-"4vMף{=9<ͽ{gwSX~`x4@WI-,6 9fU{Pu/ڒbq.wkZ f_}*o[֯g6y1jH«WyGe>QDgu CT |B 5ڏ.F"{G³>pP =.!IjӤ_u)^6WqXVWt=윻0,?XJ37zBT/sK!#NT"=sZo{3׾c;M%pjb_Јh!3Oe$Ury-xƩ,D].ʳc$8$A2gLN($qzBTy 㘠=9^JzGO{<<]qz!^TrrǦ?H~ K _Xg,o- aԜc Cz۹IyNo S$u؆mj`bЎ# cI:p4P4"RҸ?LRڣ4 ;se2C'4GC!l3EߑliΝ\k'0 oa?f>Zyq 0ku Bn;=*j)pWzFB W_mjt};I[VHl)QSDRI3XCvuHZY/ xuv:0PWO̦{^suQ࡮$/:n܊m "{%qi0@~yK_v,)L0z 4Mܙ0(S^!?ZCTlw7 C EvWls,Z`2 &9jSϷLtPu\שLq`'\LXZ`$Y4~{oarZjDd\-үƝAhj!\0WvhsfX:tERuKQ{˷J,lT  .5 79qѮu9q"q DS]ugs6ì|@沊g[PB>a @B9fc).Pv^4 r~1ƶ_*SB4ZEy0Ba:lePhQ݂Hz1GUr(I]\Fr{ :?ZZ쎊^  W%EO)'|ɬe[V 1_.Cw[8J_Wp ЫY#QӀvI$÷cB&xJfݔk9lٷ[ЎK on^!,]nj+* @mKx𢍱؋EЀjkk67OU59GJSsNՑ h ,ڸvEc6`QWj5P7/@7fq$vǥ(G<h.4\KW0PFj≉/~o?{*nWVu>SMEN&tMG.mzq"X˼4 xKIԌ;'7V8'DfyU.v yBLېϙrv?"ZVo9LH & ?CYR[> 7K%*ЃGEl.'0mgìAh -g!W<܆]binKۅ˜|/B)ΛkagLV CZENsttĸ4{˿z5i*icv7xl< lC4׈Dю&=Bc ~;A8fqBZQ`Ֆ ry~e߮n_;^gۀpƢ/w@|r.7b4_. BJw}Zߔb #7\ g/r! ; ^= B'#zC6#:uhϵ !LYL.zszeE1EV Ȱ*+(ʇbZ=F†!&  ~sYR2$u4xg˥qкsV8c4j/։w̮2='X8ktRw wѭQ+Ū?ʫ<$L`+_3k-L;*dq՟46~yc?d_VXE1 SlQѶ#e1y[A7( r:MO<y.T(us)Lyt/z BY, øi->M#C5/n "3ULV2xƲa c/Jvk^tRr_T jŢaP cCSEg/~}UU=&P984Ͱ Byvrڎf|t3ye5~z DXeaX"'?80/VA?V.puo㴓hZ4h4l洩>YSEU3$YQ>5I8YJYiʲaȲ Sf&L6 &_#}}R|MMηe9йL؜fYo.RCoW@y:Bjy/Oj>7Yن +9ZWt]yn4}F̟pg{g+lf?nkZpZhTZzFQ"799):nՆ*$:PLx(-6q{Kj#iϜyA"_>[0x{[TT=mooo_;n˶ > Mixz1< Ost&ɁLaޘ=cD$l c"rh%=ˉWBw[͆ɰ& 㕌jxfN8x7 Ϟ_)Y0ƀiK%$ ld!0`[*l  gP.U*:oׇɁ&K.\i; l8]Rt/z! ف}\ `.vԙX!/{Nkp. /92.JcQ*ↄ&5kq|]OB(Ot'LxMca4j4*9$qer95)[s*HX H:\fQHO8MsaTUO-Ta(4Wzb6B_B 9lˍn r w4?!ݰv[3i/ōɇl˭Ӣ."\*V-\/Ǎ8nަj27-Ya+uNlͦ|vytl[_?wlݾ lol =z.1/4ָifki$ h%Z4TCHX U p:S V\Kht0у/ƊE\&q6o沸21ޥ{;;hCٹ`g0OChn&ç(A[0J6`~(08HB Z ⓋKs,x-* 㡩)MiEהy5⌽R0'w4"P#A_ ^~߄Col>XBJ,$~%]f޽zdL-]t8'庮Ǫaa>a?`̏y<=91t bec|3&$ߔ.~[ּ%yh]DDE@3H0M%( k1 th r,,Z^ĦBc:1}{^k0Ϲe؝[֝ث9W?Z-x&Y!FRN*D:݂篣 _u[sA~X!طo^,[A܎$<W(MThدu$8cNI}d }g AuCݚ ߍח  ݏ9wo3K4͈5PmtBE0W?/i"yQ'~ ɔ'(;!\:Ou;9W11 `]wqq:װck<ڄx zG0K(C54׾STf>glj Z9_կB8jo|dF .8ˮۂܯ6쏣3taWcxc^M|ϥQY]Db{n^D i|9x![*(z.˲dS׃8P?Y {7ffGR⫝؆tx_ȟSYPpoNG_ìuYnx[/Rwwn1wz :/Yk@.ۃLƘ` =UQ4]S+c9{#}@ԚհG2ƹ2~v 35D$g*`j'I36 ]"LqBW;#lj ѽk(x nFwɒU!3\wh5iV S]k[k-- {/}.l] +؂C31ŽC?9 Ťd%x}X>N#-h7c+ %,0 up_6M66-|@B 2g R?pgg'aN,g%b~PPD+g6}Va2⌽FTQ Dss"(LïN uM~ T֙ LIڝjhSnT:^Ovz$_kbg-54{y-0H|wfn|$%,!i4:țW~+ @*n,].x ý QqtߠI8 y0V-Im% ]y]ǀ?^ f,y, :w^ј-{-Ip#^o8.8.<\hޞ,yWѝ[SУp&s@myJ=h= #mJߜ[օ{VJ]V*JM UUS+Ъq26zW5ƴboH9Ͱ[ֲDUeq~ہ3UvU-4TZ;?U* 1*U>Hɲeq~Fc6,-)Н*{`&x"{TP&DRba'zr־W2ypwm${ Bᤞg KK-#[XJ\V/iAUe O՚)hK1'ԠC4(i0F̆`T{qE ˺\ʘ\O7򼏎Xf VE M B0H=RB#):vAr:v8+j4)23qސiyN3] H:"Q- #E=T3vv*YC\CgPIUc$QS{}[fcqFS* l6e ځ,(컖 XBP,.#tu1hY03rw&b7. qv%ޟJ$u+VQg4te:>)%{*4eQlaޑAnj(]s.TIQ"ŵ<.801,Ũ# FD uUAf{C :P-*S TH"7(I@$B0j׽vT,MDTHQ", BW R:<=I1I P;=B%+A X+j<aٛ`'mvnױ0TsOrS>"hBs(a+uFY?9fʹ5a6&dx/iZ:sFfѴWލN.Ybayz!^f&yB%lo`ИJ%\K4b/=s˖DԓuR%ܹE B.wbA? پoKk'9?q~\}Ueعl`X$2&":P+mx o3ƦyBȱ&.W8i:x(8R |hc7|ŋ` ~4 `i@MJjW͐n%.qN|6Y`]ܦg8 so>E:y+6VLSTDm^4ʛ6(A2pGd4b@Pi<XS@'76͹}z\שH%ɌAGI@fL=]-ZcVc(abds" :'nq{94:l@(JD҉i8+HK* TkEM"!"Rј|-xkA/p"PQT5bIcA#ozuGP1XHF=}zLfc~MU +瞃_Ӵ߇| =21uUCV _Z~<)֮@>!AE)JcĉZY{ c|66%1qͼCJcXl./^j ӄq>̅KQvd#Z=u!^FcNB3UlzM$* *q;"[ܱzu)n^CTńs^6?ؙpDE<.u(QzI[8yj &cߏ7|tcΘa] %4AYp*9 &#BVlCLg:;:dqQo VEH2 $q?ͰY7{Q!k[ZgHT eqi0l謹UG DܷlJM1):ruBf֗%\Wv|ѩX"jbhR1V?H{YÊ 8JYG𓖴/ŰDqn#ZT֟?bl"e A*>Jxy@R09X uiVvY#iUo, Ic Qy"牼T"ӂ+KKww58T)ʎvNn*80w+jq}yBU쵐@F%FĮ(JgrHQRfy't;7ˢ 4yQ]0 -c_VYugv4`*}t.{Y 0>-K۪~! ҨU9Go꡷[@<:5.YRey_,Sk3[ \WV'ۨ-G!`(2~N~#F 7x]\fBbs Ra||rkN/?lW^"+4=֖!=ݽzt'z=Peg4]͢8OV2{6~lH|$jH=#V~ǹd`R>~Asejo1uU}l 78-Bu?9{ƃiZ(0 -2OlmL P BйѧԚ? \Z2.c9*2ӢWJ7,=H:DsN^3{k>% +^Q,{Ao@ @\U~bMɁTum\g9~J Y tͰB9~ETTUo{+:+Kn[WuCxBZ9ZԟתYcO,}3v6hh|-ELQES꺪 ZCQt~Y’nWຄ/#hFLluˠ>7ʔRƓl}3ҶC$C)elQdU} b&ST ^#M98]{]>PZ~$mVdB5`E =~!I u -6wAr}!)Z;A+1D|.{V#Ȉ# 7uꭟf?.K /Iǐ۵]IHyvׁ}B m2>&7lCD4jÙ=s꿽aĵdpSj=,St]k7N`\jc}=98HoQ:dWJQ zK#2lk91?m ߚ`ǁeq[Vιe>]%˘}øs1Ֆ \5+E',7Z. DZ8p ƜAWTo)OmOuu;u/'S,&pj"t7p HF64 ]#hF$ߏ.ud^[4]$.oW&(@=t  KzЎ&YӶ:I;fR>w ı~ $RAR Pܺ4 u 0cOL1>"@ Zc%WpD|ͅ[BMeYyA&UU Ԝ)qAI~y ]?8ٿ22a5,6T_X@rޑ;RSqp !ZNPCƓ򫞶Ka]NN!uϰ;o =| JDS':03Q75xɷz#쥰#/m(T"?fE@ .|B+WѱSH !=57pCf)ҤP|rDj E bL.+!c" #$cstk2JN@r?5ng,[=gmp~ ?/ 4/RT uV΄0dYJb H%aʠ 1ߟs$ndǍXvcem4`9V,ZAU*꒤/9A#+U0,.?.}T4+UdYjv1&y,})’Ns\Dud =Y53"|zg9oWqC qn rOcK=k{y`O2Nfxn;+=d]G$>_*'Ml$q ߏ&r\p "<+ڍE<12[60bo1ЛB1 ㇫_ RYiɷ:$j)Y4 @75E(x1i#GFyFlΑW1{;pM㎫;>shA7"'xQ:pRo[D@xf/Įؿ~tns̢Y@G&}ú12o~Q``N5UUkPC_|5 tm;ax9tq?͔Wfy|vyKj8N8b5#lDX߹4MsT vܾԟ,:΢[ ,,)(J.jY*KJV0A,Y?3䪚2a@KU;`@g П_.T9N^#atl*O^IxrNQ>;_w!sy"f@#G'kzo HkH5$/J7Ύo^AƈEN܀vwy:Ĉ6ZV aRqtz+ϩOjU`ƂHﴻ>vZy˛g%x'K֝]Ѧ;-:|SY'-Ιpt>6dOdkt4Vidս5,;+S^,+|]e.i,HPv&%%/I#F^{IIBd@$PBbrl!Fu~=U盲=]xB-&hB Wg,/fؾ`_u-TNPn0F =_4LjRBA mVHZ`*7ɘ=[RaÙa6 P>%ZqU-2$тK?ۢ7эlǴ4Yǩ^u!cW}}q@Ԣ% JJK a\OY8@>.Y>TkZU.97,;K1.݅#Xc9S=??w!xFGȱe1?҉ԂSP`?f=HnCcQ;l50'$uӁ]a2{_lPSK%shӤH}OE'l /nmG|dh$c'EM権rgx(;A%gdVDE;lֹAO%- AO{*u66zUwl\%:RALQ D<[Xjk]ʮ$7UUEm6U.y=8]S붩X!ƒ[|=^~)yq.]=dlB>xmaX}WbNYNx *]chZlƚ~ٴHnߜw+JV((kjSrQ4͊E#5\z3-iab_* ;U0 5֔zt A 5  T?0Kvs꾄`hklY5q=E:^ טׅiJ)fi^Zf>/\+e#VJטہa!<|)^]=p?tj: /l:SMiCcZ)% #Y~qO=M%-`R`K?j܎Qd޲i\j_\FZ]vuc|B؀=s=>5]rK(Dp W0Krq.[3uo7tsq͘L`A<KZvB.gu?BxV4!:h^j1uL,JWUQ`OZMN EJ1BO.ōNH#b~ 0(L^hgL*2)$ӌ=4Z26UU ?qo'-0‚ Kkkbѥ!FS05/'fc~D1h&Zya÷um-R\!)V'rNjPR3 'V.%5>Bȉ0!9{{A̒V|:#J|pb[U4}ޮm(P*R!et*Ust _Zm(bar)Ckm#ЯoG-#ݛΔDBP޵ &jOy6}>k:# ~1Zeq%5F/I.D=--mct6{TgfɍNKb|q.8gipAىzQ bf}Y_ILkl>|(n< EJӇL󑒨TX ?_c>h"޷8lp;)AC__':)PǍmKuĊ"t[O@MӁqBP׽Ut.;zbV=uK?Sr=٪(7^oY~29,[vJ*^g:!03ﴌ 0x;tKpz#}J]Ck:nD7yp@#X{.㢵c_B=iެ5h ep~mpAf4:U'8^%$N+ lkbfc`&)to 11?-,lA]5khS#fY.n >?w"EQq 8VqPT8J7h 2dˁ ^@Wju iUc("ohL0Y8XRk&`mg̓|UʚݰxJ$߽1Y9!c|362wWD&X^W#{=2<$qn,0 36}WTD~@2Os)He%&;oǖ%+ @hml66wtZǢ$jk/3Vz\>b)?M0kw Az2򵪦Wϴ bUj{I?ZxX 2`H( nͤa%4R,ݹ/Mx6/:_ nfG|A"-FMyUI5.j>cUw(IC,m;qasknDFl%5MR"`k7GvF3 ?mZ(TRplm NTڢ |`s0)lsT/ZUslc_$2v WApPl߆)jEqC~)y G__I-i+|ٚU=A͚_G<c_wm;6S6[U>@=gj2_A0o6΃ZCwtoYO%{3EG'RkV27F|7XYT-`W%>8i[sF*s?n Vmk]ww⢣K4A !t-{viw<c<mSM޻f^ -S:<:Ɔ [z)vіtaׅln@ ]:l i(Xv,up>:n kORҩݝ24,2}xO]@ iJIMMoT:5zDW\wCo:W&<>a)Αˆ(ȧW[mbhH@U^@ݎiY"=0eђX}[ˮ],]ΰh;D{u3=W?GZFkic'5`NuXeQz^N%$jXJp֠WRdkZWa^ xO,PhWK(@%_KD$tM I:`s|Ms̹·= ؝Nc>{&]V M.sKǃ } ++ˢ8U*AG,;r=K& F){aAmt!4n0'}hqXbp,Y5;=P˱멲zn܌}1 g >7da{m(c[|i) i:B,^UɈW[@kQ1Yt9V.0JCfaXfs@cKG zQ`(|X|;5MXeu{Yz_kfhYz_mha[4'b|JJ4Rq`YEbW э_뫙y/`YMk wqHD8n WDMڎ7B(K:M3j0[@$~{xVپ| .S-ѣM^`i@/%ꍊ )L$AD! mZ]|l,*̵̦j8*wbJc~ETGW}! Xfdl`!łVLiO|Y{K4ck]~p˯=Ó+rv7ʠ}%,>yЍ3ɜyf|f\݃ހ2NWIr] Me{<nIRǗ'm*yt(qXW/4,;QJ$} U7L袥W̋=b\Q 7||ߺO{syM܃;42PVax]]UkjdTc0 =jWByupiQȯZ;ˆ=|Mh"P r #56 p7 *{h^/(8nkvbξjpK`FWPbhrc%2hA~tlFm,,! M@xh7!.[}ɋ"$VK7m3(6u~M:h*᥊\s%~0_ 1kq~t^(LU)X8VKz# B],-DժmYv==4a߂ejffYwebrP*+̞첅EeOu͵eLSӴ %a*_}@póea)oמWuZQ3jV-ʘkB mCSB(ɾæ4/ 0܀ߡ'A r+y4~o"[ ڼ@HsyQl4^=x.;035G Tv'_cS3b9jp]?Wi[x2EoE_ ѧuj\{U.C";-3|qBB!,;ήxV𣺃Љ:fRF5l٥X5WT-u.癦m䋅 o10:Kn 쯱Ro.>SzѲG18)/ 5oX]8??U+_1Th@NHƂJ)؁ma,ج:;]7gt}>f|IDU]j -"P*!CHӡL0UVq[nY`g~t't >GyT [$:`1 ѪNb1vQ,uWfk[Ț d E!M01pz?ߞ9c;ًЗyy Ur6̦O8c>i>0)б,aFCf ҂H%{6%4xpisPi(i*]oH$jmäR҈J!,qetNa@_bN& 8Ozӟ 䁇/=_PùZñ#"vD.lk ˻9H'?qF~3ɣF|T;%jQ, Q$a0i]=7:u&W`fո^vp"zw~F/J'W ! +&ړa^1`͡pPCś>7Ro'Ux8=$zߔ hPP+E!sauvE3nGz.ƺkFcm턙XoX_)&X׶#FmtAVt chVp:utw9hsNLP0bP%tY%B-=h<6is {vS{Cz2H.ln_,.)| BTc[77/ʹeձeqcY;羄Z6_6'Hzݕt/[ɈH"H>6$K5O?¡! ]o-uֱB?([7I& (Y$]u=]Wuot])iaYak]% *AڅoVt~Bo#BE&;l1$DV&&v{3*ӰPv [6@k.vsn*VQ):Gk%PIm: )Tp(țiMZҵg\m㑹ӭtm\lu-ԝ}nAw?"xˇͽ!IX<"4KcAoxmCOXEd%)t'Qs> k=aAkzzPeBB.yrN֎fXWuP mö?B~<$. dwutzc~{y)Sa&lg/0$ 2{|_)ߎ=ϻf}y;XT}^0Gvo=P/坑AZH#ӼZyɞjC\~tm言"/괭a@ϠO_ÌEI  >1{Blk+QChb*'uiPK m| roiQlwCŒFOUt3'`VDXU^Ιt?SFcŅ}a."$[`fBe 7@6h w$Π&0*0^-x 2F d~epcoE7?䠭g}|ˬo8.GP*Gs% >)0 f7 d XZhJ$BF.u @iz(.S RkTP}/*|Ca uT|Dt|kz@*F^Ø3Uu~|Ee[mcҋTێoiB`NO0 C3N}mɲjAu] 9l5h2Kj|J8YF ~ *yILKӀ]VJ[J} xAYDdJ)Qe8Bg%{DZ壥<\_4U7)/̾o7)ǎƑRi~ tgg?y.ATʕ^>ȮA4d%nFUWU1?Tf՘`w) $O쌁7LW X$ov`ʕJ, .c9cUˆ[+uVjU۪JWg L *m4'Ej+Z/inE릕1 FX9͋W.8!M5%^><􉛬bjJѺ*.mYhK[ zKN=sLӺu$"k42侏 +,vOp6]d${Hr]'bS5އ.S!J߰^ Aڱ`YWA6܆~QRQmA=%Jqs '=2p]V$n1߄BP5X!'[5ɋ @%Q+`)_k!@@W\FͲi\nFuRɕWf# 1gLVoM9(!!(KytrƆGSRR^U.ZCAT7lnI5S܋->v1*׶CP"Lų 54^D_1}aL-nIxUthRS@l1EP8P @k++%h x~`VYYR wM(|$`3ht"?WFrWV%,]u(yS! *4 P&ƄgaL%|4 /{y,jZ ̟*\DQmMF*{Z.vtMӽ{{?BJA3~QGK͸uUceY"X.h%(Դt+bkWYhФB1Q3A3j$7H?Fvr]l;CZ_mBb,Q,)[箉ju/ʫ}`:cM3LC5KHvlB.HDV52)IRKOwͫ[mFG7$AZtDZ|Őr<'() X"TzIm=U9 ۥ(BpFc8wCfÓhY@~*˽$<80QWS@ ߓzڧ*Uٿ0 a}&ZosIH/JQ w"x -seXG%u-K| fH?]&E_nr̛w&C4q!d]˜/IM+΅Dhe;T|Ϩ;tJWs3H>65L$zZez-'ۧ Xd~X$ݕ7? rfCʘ8|i+HDU4I%if[epW7TwuBjDT3?.e}ˉ~!ur2z6څ` ~N5$"i/ y/TkDoJi2~| F HޫLgJt:Zj QQV_w" FEeW]e_7q2T(B7d Eԁ~iVc145]հ@6 󂋼pj: `o9:EeZ0'iYԂtmhXM"^ A+ ](d7KBtx59Z_N6#X vKo Zu=<_$񗚅b٨Xi;9R]`"pU^znr:ET{VEɪVLhVd$eGNR4ͲbZL9j_$\s^3M?ݰ9c~ 5בDsJ>##jrsGJ٢ *Q:eN~:[Y!:rA=JGHqjn<[LjM8G?0>b6+?3s~~nCfEUMaME/` mj@Y=M,UP˷Șa7VTdHEEtDR7DN p{ H" OLa m cl;(>{9|/ ?W5"s5UQsae#5D|?p.=R*5"2t57r`LUK)u`~ewVUzzm "ꉞHbB5i]ɚf,0^<9{ê66,cw/3/{kC'c jDz2r6ܶ3k\ X t;[$17 nGޙ_9c/]ȓ\҄^KC1u|6Äsu u q2LW{g8!/IkX߿@DDsF=?nJ(..l:# Hő2s++#̀ ?VY;ԠzA {`_;p͉ h4ǰH&ZV'L4RQP_&7,ȜL MJ+s d, ?<1X/B~ky9_ɌV'g z%v_f4nolpG1 t2+b#]zvKOi1;-]:`c8^F6Ƀ!6> c/.e`0OzTĜ4:_bb>MSΩ$l}I~|? 26:CCP"R'ZxTQ*Z =ʴ=YO?q;VÔj-R b+V(A=5pG<|?Q7Dqh&ڥ2uh\jϱV73b%1] X/-$jCFfVƔ:15Hgrƫ& r9(:9nvZÎim-/YW 3Q"No]6tz82[^4$["'.V1Z ]zi˙(cR&Z_UҹmZ"(gi<:1UpoiA La4ZEg,aYDZRtPS ̑bZwחIJ*Xj3$QIbmIt^*]&͌;e TjTbAEڒ̖ ]UH/Q5kH;񴍢,*Xy4نȀs 4@33䶅3gm cg £O݌Wһ/~&/LD7k3ȶ˳PnG#,{{y>Ml+jN%) ]9P3!.ji??)g[&s`ÅZ3"44fn-tme =tJljx2̆#sv[9&ZR2Xi/Sru;e?jQH`WfݲyNdei~ZG&Jt`]g!\ݥ{Kg [?wRϡr:"m 9L @YCZR&071z\(6kkP.֩iz%Ӏ1L&~B-TVWiEO8|l-e2P]KԧvI*4M7Ia{uuT"8۳ *|~2MnjY@&ThY-gݰDX]ؒ6 a* /= 0DO … @pɠ{ 1 Ń͹XC=Yحuӄ| VKt| {(* -̇!B[p~Q8^ϲ8_N1P EnF ߈ֲiGӻm/tѓ1k #Qcnl 3CD!ynCUX$~`<{i@@BX([bM&ӹ3F '5.tUELw[mؘWbUBp.ߜ4` hOa17wwzNuM@x})h~LNS~ƏJwǐzjdÞoJ^4PfI/\*Ir !^zj(Sf$|6esƵ*:'}wO:r4]zOq3.vJ3&Y!ʀ *8 毂w!z1Q3c/G,td LH07ׁX.\9ʳ+ o땕RPZYʘ9p LzI UvVGC.e<fƫ;xaqq/EOU^ Gcdnh r단UMwvl |nt">$O*6&( {@06WEU?p(yAaBט40-|Lg wIHr_:$^Fze i# !!CݬoGksHJr]nz6<0ɻ9>FL-wA}*6c Xp,,^ iX{TH=Ʉ+\=jZ?K ktDf7IT?HvOR;>M7( NQW];k]=TCWJ &VXl `]xJѣTP5rvAAƃ/U8 FeF"n`1fybp`O\M쿣uHsifһv*e'2͇t{0'!/=Xqlpp/82.lsnAsȗ2b7cq,ܐ*[8 ^Ǔ;uXP;MQrw`% ƺ#kcz%:~.642 nJ6y~Cqhꠟ*}܁G:U!NE{I0b8=}?Ò*REotxIbC-n.f sۀn+H*.3&;i-tz. X%DJ4hOLS&``Tpݧ"oA p7Bх-5'4CvxU?xRp[՝Ր3`YEc((WZ穳x [{~ϟk4v t9PqLU!V+6WԃU1 Pe׏Q2f?g7A68In殡6eqa6_8ϩ032.`99صM1mC{jN7TLO&:~oXat42Vmjm(&9m:1qUx3Ѹ"QqȂ<౗]̹h6{_MvчuE^'i6D7 ^59(51J vm,HS?8psWJ#6"?#uH V+8cWǂ/?%Y?q,X{zxgUQҨA\Ad.I`5:x4-/^aMniQ aw*K&,J{W'[ 861VEV2Ypp1ҹ]'E݆B/Cc1DIG1Gҧ)kO$nla~[Qqe0nUx ;}uM+Ѷ\C%FSTЧIv誤~Sjd^EɮdTn\\wmJ:YO5 u^߭p8_;ó]֒U5<ƭp_Ӆ0̩`MM'&goK Rs)(>xy#0E1SLw_ŧHPLh)=5Iȋӎ 4x*4x@OJ9Q:IcTB *Ҧ͌WeqKĹs)9aFtimJΉs#9{Gܲb8?.Bx]`uMA1iE,M<Н;/S _Fï8d x?^&^&MK[0HosJIy@-WU^S˶ g!nvJ:#p Ͻ"!,1ک@ xDIGv2=ew`l8[Cq?~lHJ( +Т1N^*3*Х+@jϯڭ[fW.Iv5)홝=^Fz*TƳNBp>i,{LU+[l 6? TC:DY↾U0LxF&T~ !T6\0 pMYMD o–{]Ÿ<0 )}0j%˒[7tD9%Iըܰ {J*tк]yGZC8 !0K9&J9WkLWkaܻVWQq9~`Lj|aaCpO/x:w:KW\G3ߓ=Ɇ %d8c,f/<\2F؟Q`G8δ1ZJsfsҙ,&Ji.Wi.†P\C=?zը(( =/bP) {B5ݒ`Ս(g^ixaT 'ŲP׭p{thd)H?;yd'\h?Oy3V=6`p|jcJvh2!5t=^W5p,Xܦa Qim`- DV T4i pΝ'I'fgqw읏[O/M9޵֋fx->&:O"&d+s]岡FO^a'Z,>nGI9ly!B>Ѯ mG2<8 E0(SRG*ŧ-R͛Q_|T;hwq*|_Ħyxa:qTF7 u+r13;pǔG'4[AȃZ'aŸyf//o۽{DU).s9P/zn9eR6/AcCjH8Q_aٗE}<7՘?=͕z6fc70[|+xivLܩ6;cz3<8Ͳ-@ZTԃHUJ8 $dgpyF%q&أnؗF3n[[(&G)z ze>)!ɜaz~Z;ѩ݆&!H/\Vxi`Y-ܚ<Fbb~\_t^(oʟeʻ=!NS# e:\>HHB@ݷ{X~` +6|hnS6U i匩"lY@A7w,4VS')u u<Cߢe(JIJY7ď5kRXB1DᙕCmHHXFeNfl`R+gRF~X2d#^v s- 7')-zna/@}y:ֈMt;eb($tl"XDqKD>|hk= 0V'fи* 'p NCqO/w?,6@Mg:<#8S}vgSvk4{38P(2r+ 3S7:+Iwg$PpKmNd-/C$&Itv*͡_U%ZCSOlC!QG}[![ֻ܅@6Fa6@ &Ѵ50 }@`{jS| N9ΦH"WK\5-ʒ~ q6i,#P !z׀" 5H1ޛmjzy셲u!GG%e HڳyyT@0P:ijmi}b^娷ayh5( =De)tR(LCu d5AܠAzaޚ/8e,??Sp?Mǁ?E _H~ oJp @gH&x˸ >_Q̝O9/ |י>#Ъ/@)IPzt %': #| mYT:}׈u˭4* z(CXĆihPKs_MeǏ3UswlK}OM||Ker^֯A0zwd3Y2+;,v|6YYlfzz$ɐAbIvki^O&NŰk`0T2FIM!224&K[C't"b{*DiGiċR|0L&d2aLSCfc8S P"*:Cؘ=5ҡ/xQ(M(Md ty 슮t~XՔ _rޛ5^*=Xs&Ku!Ugli+wdk;do}S*OǴH]X -upQRuA=v-+u7mۉA~Z,r%{ 6ib̅1>jQV-.#{xȆ,y:w^ch`Ǚ;;?P*i<i\}1w{xl2!A}LW!Mh8C?\*Je1_( f8[ qmjfqbj}(S]C>Y8~|c}^3mﯯ 6v˚ 'O.-/(g. UqϠp {%/Y:i`..tx$[|VjiiЎhB'_y\Nй27D\6RFe/0TaG~l3ϯ,/EH^?&<at"eWjQ)$]e<#|$`dv;mZyj9 dW=hxϲ8+ǜ[Ӡs%織lzOŁo\^ιeE7Z/~8|S%kviuzSua5n7BT5JT@2-PGF9W8DWƖ3ݨ<]h} $F'}{%3Bp\tz$5FeN }OHSkGUcToƺWB1srk?G5r{|Nc-\B7\MAsSAiwcȰM5>jm8c<G|m"4 'ydOe7q1̋Fc Is-|>pzYVԴbmon6mT[iEWܸʵJ$=td}-eRSWh,}Y}ڽ5˲gĚV=ws״FmhC=|Ʋjl߷ \UĚȞ_h ?1d;3o g1qo$7 q,1T+ΚzX>a+%ɂ/ C7\#1 "5~:XcL'a6!y' :ݭP(?dtI`ޞE(c2XmXaWY{.*<^Mfev9T!p[7D|U~ զc޻[G0hDoFrBP( 9rWf %^.Lb`FdŚelPNXZQJ*D磔 Mu,d<<~;`9TUt3L [;N6j혟=u7>k:|׌q$8&z}Ih1P2'm0Ξ|x٤UdE`bN~Ԙu5ϒq3x"O1}3p= S(kj1;B @gi&?} $ yIf[ Fm)Oל0Um%?H<)Fv#HWcY 4ܥM XrFyں_ok˞ec;^|p2×!G[VeKW7&- ~$٧p]*g )xnS=tDǶ0S($G$+w -@1IP\K7T ;ll|ZGDo+sFTQmkr#CX R8i|#dHkee133hJmr*%; vRb롢 hpqv6ɣ^jSVl|@6fo/7'h.FZWj.?f4ϗ]e\})Q2QV(JrȇD33fדz8 a:h)4[|6w? Qᱏ:I$u<'htgҦ砈MY0?QӘ‘3Ć [((hc`<cxepvr c[)׃ĸm¹4]U,xٹ'WQA!h}1YpKn܎-ܸɌ9yix;1ʢɍn<ŚzA.' J7',i^!8k_E(D3)NmL4K9z& /sUWz G,Tjzρ}ؼ楮y54rb 3J²}dE ~)l=kFn-bv[pAZYH]R,(P,pR. 6ϮZ;il,)vSʩL0o8RM4Vg:h$mtS$9_Bz\RnCi0--a͝b7KEE7j./ca=I0J"J*k˽u~lcn H&IeӬ3/x#MF {4K:$-TkvRvOkuڊ^5ݶ4p_UrjZ^ j| NcݚZU 45 R_sBcN YLE}q;}Tq[WRk P%I hߚi%0`e)XN8u@4QTѴJ5a5v5`0-BcjVqP<[4$oIJ4몢M :[lź| zۇw5y .v!D'PŴh2:Ӯjs| v;[rfy.j! J~1&8ۘɜa=yc @}=ѿ@SqLvkV^&v d"l)U#gW=,]zh,"=sŶ:0.._KP'!%ޤ̂8TF,~&"2Iiή"S|lC&CB([oLRoú+EzӀ0 ֞Ѿ[i=F ) Ībh* zsSJ,dQ{!Z |fw}-]hA.אpjT6utݣC ͏ٺ>./Fװw" @eKaZFW)- + "e-Pzy~)9LP]B%J%r9 \E@>Uֈ $IHz˘/}aY硥ThQZ]0n?W]m~\'Kлm~8uz@Chs^=o(up%5_A~MeGe,i#ь۱F_n𳮦qIr wzeǕV,)W[7HaE0(g;}^qyTBV5̖>MLqB&6XC \(I41H|dYn[-͌x4ѫq ! ̈-`/ŭhKo9T:ʂ`aךɒ '+bcwƯzRۜRmxNR©(rJMJND3[խZ# y ,F$f*uq>J V,~ᎏ; m*zѪlT_ڐHK W?/]W8BiGq[ ?2#e7z߆(YV:qbg PASBȦ#e}`}JIUIIRxtUQ fP$IEI15I(Ft55sw(L tjQu&i**L%d)?_{kÔAk̾(NԗG+C=BD(DE*f\=~Ԏ۱]f)F W{W÷9鍞+MU@(#1Fx">$ JHnY[c@@ @7O TS5~"rVB`g LyYQލ8z>YS5b&HɂyʶM'- &A:=Ut^{OTWkCB_C4,'@Uu)lj*L]VC1-`= !\P𮍚} J8iQj&y/F o'2Z3sy|P,K"poTHg9[A y^j뗠8 r}d+}MN[FxN쾣eч-0-~ AVv1a,0PIN, !c8]GVn$]\9@TUUV{Go[`["|2j[ӛD*6m ?2h-Kn*T5I1X9cY&8FE4ZwlEAb .%$d#s,Z(̲k}}m:\",?/u]\0Z. |7 qkc[Ly]]JeK}AvKƲa~ܸPpBQ Ł:iT_._0N:ҎS!zcUÕb& Mmt=KkݤKC>4_TfwX**KE!jiKH&^^YZUu9B4]D +Cy:6i3'}Rr:F^C: DLn RR~:g}yk)BBI5IA.Uƥ.2-}`IqȮuA1ʮ z2'=r$nnQv XUgz=-lOBvt/9Lq0MW;J<-=o2r<l.)hbLIJ_(䄽oFݤr''4V'AP Ż|?(м?g춖{ ,cEIo5k1YʲCʲ%x9)D3\gnS}&7#{)ND ҈^̳]R.Ey+LuQ`D}ו%E碱ϱp—-u Է1bm5 Qݐ&twם'sJm(e:VS|o@T `F`i;Rm ĩ2D6 ܁FvMbG{j+.̓1Oa&8RչL4jj_#|ϥP/ŁIjXWV: t U\u-朙n~ⴚ8YɲUA1?+ %dN_aݝuwҤ lqlllAt P3Έ7 &OOWi >m6F!~Nۀ`{8?Ec8=ȹe¾Oqڲt׎_"oC%I'җV::`n%}*'N3ƢfǙa]:sl)d+l?y(A5&vҨfeg9ڑ.^ Āb8$h8Qt%0"_ ޫΡCmZZi?zUtc>ZAx,fxU`6,5;6C+ekubkxoֆl Mh5G j5 >@S{^0 BςGǗ0dJItXKKXgKKO@X9Be॥܊=GI6j6Qe.gBofg|GRUTܲL_k^;! snFo |̴weڱ,-Cܖd{ĥ "$!q&"45K`YfPӎ"~ouNF:h]mҊAlUS7nAm{aH > 0¾ =?5tUP;jM9=#xin ]f"{5>AnđpY&q ۚ󖰅s?WAi]Yz(>< q;$?(j})vOyB$;sÇ1 Y-#h̾XĖYJ?-xMUU"$uds,."_ EzY_ v LcGP -2@&ް°B,b_.V~Ec hKB]KK{?v%P1]~~/$!M ^1l^~RjtL*^\Mⅅf?S]&YmtDx&%ݰM7#ܙ߂=T [:t">l9߳0Q4e}uPtS Zd/i|L6L!d^Vac)1"E(w6j|)Ud1Z;o}\}m>ǗI9Ѿ"ՎdWWc H;P|-=b zwuzJWjW՟pnX.6C.mCY=ytiw& QrR#@:-MJ|#@:vs .S~%-6ί"$^m|)Zy$ &o̺쥌1Xt^Fx*g#G~V׊KAx~_Q4c/4F>+LUٳ~rHBz% `+ir)}Ӕ7X4 ]!n9"RѺ "anX `ݓ: jcMq]%t%T|O=mpS^c$$A5ָ: `" N6$_/\Ƣ0)'JAU.f؊";d^Y2`J`T42> KWp^TZ@~fN(c2&zKooxuAGa]pH'Lnh4ċRgEi "*S*ٷh:h4F-kE|R;fb8!`@tg>\x`-<zPj}l56RBvlJ&SnHI"y+e9f{ɹLLsڌ %lCsX䜣 < `Ysia^يF"9/fl䅎fd;sxN6__2gӞk57t2pO9 d"N0^=zMcNwuZ=>t1Ac!Gf8gnd)LF`x$4;cQ>+6f d5>*ĊXdɄW^%x6ɷPSa@gՑW!;NQ8>0eq MP@<h|?A}ѳZ ,XY 18?paߨ `Xp ,]NO7}皱e<8ɯL*~ z5od)eWT^8P-i ۊ+O0f*S Ut]cOo.m2Y&c#]f)i& qJ BϦZwKw2s"2os<IeeS7 ׅO #J/8$?XOD JْbE.$y!J͕-leW {~o vnoOyBg1;@ׯLv0Wn u< . Yӌ@4RM8z(6~: ުNLam;5#""V0D=-XRMН]xm#MdM`(_ 5YQk6glvY{e3@1m^ž; : guobFYj+\ADYXr ۠&ˡ5 4w]AU(]UeT./S֨<υ_qǰhy6r@`LrDbٯ/6׈WkMG[_6Ya:X{62xL{R/Am\Xae|ݮ!di*Dl͙8H*bϟle[,j9d|&'=fd_4w-kU]wq!)y)j#B 'Sh=hӹ9h8pclUYfBUm7Y*ߛKw8l'Ĵ+ ,!ptml#X>PPнU@˝ʔN 8,"yy([7jDsT/ashH'J&v tvI`G5J\\kHoN:Eg9'XDș %n eEN*]'%׽Yr;lFe|W&$`V.o#OsJq4.U'߫ qG.{{PP,GN1]s;v?[|[4qПM= w҅HxGc}w2D5p]!"4.nz [5,0~c @m!>=L}2)#2AVkgY׺^?}Azr>Lo&i#'&֡#Ch_rbыatǷgh,cZO* -η/aжlƖS>_2`U 'հ>3>ISK4rOEuO&uud=thM-98|B Y`(?&ÔW%RC| (*K: &R(>qQM0KOr|0WIB1 @y!UǶ ϡ:wV |^A3-oU ֈҿ ȻAه;F;YY0|J.kT_FAch =OIxKBћc,˓[3jx:%Gf{+ ><rw78XݽgIͫ"O} 7֜Fl&cc\0Ro)L0i6y!%Yy}~uP0L&eVX!VrJ ("Gm9 VE_I.Q@f T80iiWK%ס\r]J+7nLJ2ukhg2qG|*"I X0/_vG&HpZ,KE"0mjto'0͈lH?wܘ,dž?|A3эY?*?YË6i[džZ4BuH{$̟r 1Gz= uXx9"yp9p*?곽`mi/`4{sŞs3%Ƽut$"X 5DJ8/_o8,S>[DJ8QvҷЖp>M?Xtk+Tk۳c`kQ6j|w BWEi,6{~1ֈÝ6pMcpٽt66| Sܦ}/ k3K\wє:Ӽ.a5~mKϕrbZab3FMk*c>Hzϥ^9jݫ&tbKHt'jQ4%Q]E/(zC(B:2`Wt! ?S~ŵ׽ٶ锊.a䔊s\NӶg};՞iB x4QExeO2XҠ ;jf)huj[5~6q&r=G>'s˺E^B uA~ejg.P[P+O;d ܼUdpC0B&%/!َ8c_T"=Ö|3t8\@5XW ޯ8D 1!∾{i)O7L{zCl`rLSNyO=6s^iJ&6ɇ\؎#nBֻιeóG2=L(iBܷtVZH<#j&vWQ5b8`0ZSlbQP wЕwjڻ&rf>2AX%? BhZok EaSMS}z,|Dl*@Җ [\Z> 3C%UM/Ng(&sNQ[cWDE1ާK_H[8TrC7 9in7vB%EY h< TC uO>4e83[4uCH-o{1j4CZ0\ݧPyLC }oV2Vo"0_snj'??6@rW~*(rp7͙7QpXY6/)w\)<csS*\`}gqƠ 7ULG#O1vÅ鞠+*& ѯw\K^\W< jY(bVBkn(Rb^j/xt19G#?I .'DT#(ѠrH\#w\ ao 膡,s0d cMDItAJu(A) !˂E1Q5EbLU%ث3`Af"湅mPQ <9=ر)bTnZCD) zSGsP.)=&xޯ 8f|A=(?l~Ʋ1tlg /Z`ɞES1hر o5WL0:N&^j' @q(|#W 6Q0Ai 4ew | t!_/ʦ x>|%v+?+s3W*2 è,cK6gMERi*YOA4S|< Ct݅^{>D`W}=%÷򁃥e6SU}v۽zԻ̸$%[S,lM9z.;;eKPڄ鋱j !RŏK0)f̳3i\?F#OT~_m  (!]cEU1d0W橎LevޜkH^?L5V;Z}[X`^[74~}Vd(.K`HW8Y`Ȫ[o驪 Oo5QxB$?Vހ 3c%C])1_"y?,ә~@ؚUCgV0V?>4cp= ,a %+v0]Uh/ZuGqO^輊Etg O'EtN:w *ojrR5iUHTWUO phft@vrb$Th[ =)iA|絊x7W#ٺr_c;Z[j:? R|5@Jw_+?q#`RH{0ERB'H}j³ w:xJ hYJS* M)ۥ]u\q8`啕EnxǢ*믔 &ׄn#'L;RU1]Gd9Gg R ^ =B|!fCRF-{}LaI\Led*/#2]WL}XW&rb\l(^@͎WZuPUw%I晕.; 4Do1E ήt: ^eucU*؅ Yn0:4l"3vd{ѧ\Ox D80|--Zv*7-ȌP,vA]Y;y\)o3` q+1kf`>=l0 H[۫(B TI+]Q}7# ?Hc{ݿ%p+ C7% ~XE2M 98;%OXJ,)Px"]G"dPWUSbaQ& &gf[.El N9*]n<渚Q*6x@~yxu.m]4'Y-` qWGY$U՘S6MJE?X {4"ir8/@O䡟G}BriH6\Jl֑Pŗ<+Q*Lޯ0XmzAP .`e"/qQI)9JƸKaXɮm8͔D-X͢y?MルjXO~R|aTr:;e()a>Q!}M}R5(zuY|q𪢡(QQ={*; f jr?ߕ>1 ,}LMI$E߮W/a\o[ ! qC*ĚtD(根kс/닊Dtic0%5s/ kBah< ꈐf5dYj<.Ԏ_\߄ \ w>@tN#w4C(6`lAp]9DŠ&1(;s*wOjqP|l|jԋŖcSYLDztwsvX9ݒv왊գ%$C/:1*!n&hհV&=<Qo(%935o+_sr@W{$]rbZa2In;mB/66z mȪPbڢň)2i熣F;6*!q zW}uM¬nElXiȪ(i2bX$-bƢy6h%KN*@-1~a@;tw8Q6jn=͵텺jHǩj5j\+. *o;Pz;(RnLIgu_ͱ8op\l~͕%u!.Xs q w,TP(hBk+VǞxX4Ea/۷Om0v|0չ\w4ׂB?NV)7EkIӿ|")a:Z 5oC@,vzSG4ՙS/ҝz>N&Y>.ie8Ç޻ٚa(id:= FTH=8df"qbM3nT4 Y@s)D^#?x+`n0͑뎚 7ڿnn \{>x [ *D悢 `̽m^ۘ9xN^hjz3%PE}~Tm3c:MR`;ŃvT(3喟… W߳+7^݆_V2U!zXbVWUME{G큙8cR 6@U8ˁiHK0_.XXZ\ &ޮr o~[S[XEP{ ::ns0QZ?i=8.ERmn |T*_92{& #JVi_JJbAMF>0zw%єScj:֩*{m R;RAc]dlԴH,'E jZ/ u7Ϯz۷mOL00',q;o91^Oc:Y]T9z1TEy<GC񒣮N|/fz.wn |@|ʞ0NN$m`0LEj%Bwl:,1Уn*dġbYUQ} 0EQ\0sTI40TMa̔{:,LRtk>XT"Ţ0Uui>3oѣX*z,N!kmƷ jץ%ATTQxZ@c+Z^à^T* h=>͂Pݤ7=TGNMТt^z=ws[V󛾥_Ȗ.#ޥmjڎ3? 2( n!PQ:0b`:2w's-WvP6n_xU7]]S_x[vX|#h.oZ?ڈ W5;{1ƁwO Z`Al{D*D,+P ,0' ׯ`1xez>'`@ ;2pznNO#ؒu[-L6*!B(/f0 ?L :O7]dh߹` SۄldȔ y7K/,2Q1PZ|;Ҝ% G '~WMy٦[^jIDs m ! 7&@[[cjpJ$>ε:4d,(_ҳujؑ||ENo1\x23_5|'  +e'#=|pҥ8VOGF.K3T[QA %Ŕ {r#Z(CѧRfGoehv! \Ж'.\+\@9RVǨr`l|\5\Xt\s?WaUnɶk>";,8bcEw}wI_<.XcjI]Ir\DnY%4./P:G*fs|k;rM!Bz%DG&r&Vt=z4/rzӸui5 u᳚ʅBRv`|UXgnٶz2Vq_F]neQXr8Β .vq8oMZ{@Õ^V I9{cST)]* 2 oQt]͖ݼMACoS",Qd 2% @v+eL [ aSZ[vqqtBXK¦-(sP(\ÐnC&PƆ$0Gϟ)vP*6&T>U(rψ,-X+%缯1I哄EIOۢL壱,IN|T?BN2 `jb]=1<C}(qbf /mT6WbOlܩoC[up΁w}vWKLfeKo)saF8;)~V.g\&ݍ̨۱$E_G L2:ÐTmvX_`IDlYV7e\Dh]Ø3V$Y*w%B%tc0ϱ0&6D%7ӥsqP'ZJ7  dlj5T,5A;a=ը12ӟ)uiEsgSSݸn8l{T $:C>$c{%!9dh@博V"H\t2~S 8DeN;ik~T:* 6AG͑ ^X,4W#jU^Kj*c!}z?:୆([]w]r~uJd٠5ꚺu~@B6JZvef)ACNqpt*ϦW׵^*6, Zy5(Y9 (A{;X;LےIDpR\& ==6DAHU8^.c]a ~kW4:IM~lG=he9濤IciHkF]޳)|sc3vtOBjh9;X!\^3c1WRk]ݒ8N BMArZ$4qpy;݀h#j=sla;:sy4G򬁇%`FOg}l;65|$;(9n/ђ@$ꌊ&*Ø x0UbR֝?F >sciR$,1LKuCyĴ%2DAn1>echţ$ "uD/u5f'j0bF!t!Kh 1h*5?TəEl|;+QD|?׹9BuX('p]dϾr8Ni%\ T6ix $JxGFRqߋa_{ou^Ӱ5 &̮l:LsZ s^i78<aVw3c7B0nR }Je+ϻ`ō#B%>xhL燖,V"HkR 7_n ZM!$> |ݸ*ݽ݅Le%<$2!'gXhCvSGV׏Uҩں@9#kПgIKOE."oܭ 2*V ="XDCd;-e @ƀǛ ѼH✆Sc~8?QF*E\?Q6I&b)Ռ-#>^*]:MSEuw̥F vbK@'[]Ʊa6V[ycS\EHzi\>GLt"^ pEYv:ʹzTYLX%sWy<|N81 AyOPA#BJ9ux*CK9"DhF_:$cJup@=BQ?O"6cB Nd =\(=ׂLisJY}e٩֚0)QwE()1͙&9D&ރ1jɅDX].âr|N_X)mv8v98wtfF]F G{yZ5ײvk'2#q1D{sケnD&ZSAtYިI.o Bӟ:TA!_X^^ <Cj(F[#>/:YT!kIil czixr0mFrh%qH;[Zi[ɢQ]G9E8Y|2JGu;gJl)uZ*Ð2Oڎ|_Xv܎n4>߈4|r>)=t*[ QAftC󅜱oP͡9 ZŽ{pi`'F8F5Q-Ybjp7-nsS~-K}=T_o˫(Կ??U*ȲKI2<1>b,^1ع_fË[|;:.Bv͌Dz${ 4Ȩg0O|$ kheߏ25F JVO{gw1&0P~˜9J9k4W,G^F@w{,qH,yGDGnrBy88PЬI A5qjO acx_Y{toy1{ݯ *GD|L)'zٌ%Xl`9z)뵽ud( id]fFcU OǶ] >*ڶ n]j>WTxu-\x FA9I {VG7@j,R $@K+LeBT4 (>3pzfΝȴ)3ˆ!=z Ӧ3C~l)ƫgoXsQUUFO 6`,6^[0NK  BمgS0-y].B(MKͱ4 jl ?| N.0 b`;?W!&:J5pGev8ILN!{FHA8 ڢILg"Wʓc{w8wvvQ ݲiw+kFӧ߷sf5XǚeE#U- p>;xFMS}o{ݻgN7gR^&F[D$VhDEi/Ӱ|rAwВݯǏzwxg[UNjLGg(rAx.ک}zщ|sʧ4%z8&'UjP}GǏSziهS#{qGцɚ2G ChJ#+Iۄv]*= ֥\?jl<%lSa)l+E+4`l*-4 `>ҊxFX7Nrjbe٩7IFX5]A99F)>7, 6mg.Z\`xi|#馩ˏU@'}q:|v v_GY:"R-T|<m璄 %uL>RJp)/{ݹvV$ܐ$*Wxt:.zKs˷#LMQt$TmJ b/P>6̆1Mx{ns.'L2)MgzP4 g뽏_"!ߙpYMG-G̢X<ЖbSÅm,IRv,PFSApaNT*%!ޫ*: -3G(8ṵ@?]\"ѕ;Evlt$ 4҅AӮ_2Hw\?z|/5QqSrYO UG{.HD%$հPђ$q9F3A`lEv+"qO-:;r]{s,냈#̷la4ܲ>3+"ֱy*ה黕pk\a@pdᩮ0'  j cJ1m,'ܴ=}!0QD3]^Mh#BZ͸:.Xh a҉`o?wH:)AT҆DNˉҚiDGT#]HMԪi4 cVGiD sI*KǨP(0ꏮOrƦoZjKg-s9$zWb1b+2+eq2g0Nçu^ٯ@%7f޼"Q~͠R3(K+)ԗi!JI>6ؐD\(E~7#/3ִ9v-n2E;5aJdX{3;랰P?0g? @{Y50DAP,(*' y^5[ I/J]XUXA JU\)iUTQ*Q(iJI"qd z1bӸAq`ޠXD6{F1a\˥Pwȥ7 h6Bߥc*J!r!ןZBQH-HȾ&[i_هL nfvQ}_M߇(T+{j7KPQI )((2!J&KUBe!+3ZqZmyZmR.WjLgǟ1-;XՖ| Ug$I%)`10X,[_$%*I(^ E"i;Fi Q-e{^Qj2T F:OWd &۩v* 8x)e\Yl%N1 ]ǂrjǯ[ r9&y<#_2cn8 `t%OJީrb" {h5UBfK' ៜ:w1*]O {Y}^J\ ڈkSEFpZI.%R'5IGͰ@6/ \8w^K_li{:jX$W78W0WZVۚ+^&6мZ%䣮㦯V$Cv|?w^}R&^G476 &A0VP cd,ꎞFը7-&F0H|Ǎi?`o+=\|ao=^0|@Gw"+4cQ7C&D!vuW+/-&zbWƇP #n=)vamns/pv|sr+9+f_So0lmk3zmɬ': aE#4`Γ$^ɋ0!:@6NiDbntn؂~4?WP, pnYR 56߭Tj,AMGW_oQ|bY'`Ӳ(c;]x_kWj'Уd J|^=M5b0K#ЈheMJqï 3/lC uJ DC7kQ&@|S[_Ŋoy| ʢ=AWrOlP6^ꂚ\L]Q͘crމn>g-,mZNVkKKLuIx3w,T44R%yg)zqPAy|7̆eیrܲlPp=oV*$/ϗK +'A ?2˩>G P[Ћ#"GZX+ n$ x'O= 5M+HրsRеꋠo*;TUsy+ȾÉAsyw;sח Hc/ V^{sG?_XdKgU<8nC`nnYJc~n.  2  u^Tn#|]#Gdz<HT֎`R&J^`0>̜5pZWdaαe}=]挙?ÔPaoT,"=  m "X;nePM'مߴs4`ں:ov>W 1_sI5MRDƹ #.oEk PX}&da{2n W냳C Hh۱W; }ZB1S^0YJ+ 4BD,)qW?1>$5g K>yڑfLJ]*[}QU 7`@6g1\!cM  q"yߏGP;BGRn 2~̠#/f\\X$S ͖yzV\Q9¹<blw嵪iU抢(̎. 8$'K$4Y8GT~*?agjؤq!*3e9D>!_D[:tܗ .q<$kFJG+D>㸬 tF$!tȞy%diB`KܹO)nԁsL |P TRYQd [$-sZvɛ.5YR\ ((e**!`8$5fMB[ WX*?}(oˈ%,UU֨?8 =h gS@L3G5M]voRUz@nt?Pߔ.vPh犹#c:'?A}>575LŸ#@03'uE{sk)a!zl?wKE7v}ƂZ+񢡡B%m0̆ip SxogӛWo8۱SdOpE#jӛ#"rSxɀT<,YK26;^sd:eq_52:cXNrrnYz nO{fL/>xgU;2C] UJ'\aǠ/>6>;^^zj<x@~T$-Id<'y~am_<؋sRnz< Yo\*Z>F> $`s W8OtސkAlQ 0kZTU7LxrO03 ;KTUӾSo nrmC02lıg !Zq;~n7ֹ{CйJ#e}c³D `hH8 3q2e0W'X;P2nYNmoJ5-5 A0XTOd ۽ ւdEگe9 ٳOfV%pP",ЦԉD&^\Dɣ6wԲ#~I*h(xvz)i$_O#+r{gJ][d(YN<u!<;LggNh!*x4BfN}֫EZ)Fjc,[uAj>aV5 +=?/x1[iǜ7X3 awJ\z:+xN`>D:@;=DiL{K z .9fBqc#qKBt"[̇F(7L8eB_5o֣Q[ݶ_"$uI8l5A,oO/-a/F~xix -2} Oi6ib2 QQsȩqv x;h^ն@^~TxV :4(4t馎IH um-T,uݟ6|\=yVxˊzO {ϼHCH)O7UxY:sI5c GY(V)^[6>H`JH&JFUs YVTݔlNgS^hcl 6lui㞨j mn^cqEScضqc;_#O7"6q"b)@.wi;DBK35f8_(ucL5:i/;Ny4RdͪAHCΝ^U>8N|=3,|g/ K!^Z>3Ƙ~|yɮse>]^>EW)dR\bK8(<)& dY!2T'&hSȗ9-| ُ -J>pq ^Z403g<`0w |TE#ܔ[?njU*8ܹPY- =ޙܲ`?n:V2Ӛq8|v ~:ŰhPZMDMTXK+IUKd`NWlͨ 67֎WӢX;H?3} WM7n` 0 %lw2cyyL矖"1ϕ4BRPqx#ۄKAF^Rs4 ߂&EP(uEjŀ)T5b!k!̮a }g-U j=f_!؛}ÔP+ܽLe*[&J&glK]j SM FhCzB:vfMF]^W +*<.U7UPǻyP+1(d3}3:Ͼw;y-c _eSϢPޞ>-ڥ89 O4( B{LTc՜Q-Ju pD}Mm/'f2~fxڝa1AqrGa\n0U&(:gL!3gƼ):% |ҬLe:b+ c7wܟ|a,ag ]!Aytm.-:Ծ/n*gXZgU*S[',Ԣ8!J \!jgu_16mRUMsKϹ>-XLT MypُF;i2?V0mNǏ  } (jHI},˒BBLg*<]nm4N2 ] Oã,6OYkχvfALTX߱%BRT]W6J@9́/[e:?ξɱcExU-œ; lCuSY{N(MND&M+:,+gCDT`PɵD(0̓rex}EV<{Í;s[β(kѣ[o{=B}dUh͹Y^bΑgw/p{j[$ͅى%cBrmngm6n<1Oo^|kIS HkCAwтS`i颫j9'E8In ^3qr*.^R͔oXT&-vPumcpR#KA"CЧ28(.1 FhP4 c"#&'^eMj,{[^+sKԝaʸ/ j<|IrU , [CJ0;2(m+hC'G@?)jǎH`{MI~ȶ :w;PJNmفpiK`ɲ躠^ٳJUbƽggsӞ&/b<˶lx/:E.@ W`lblwk ۦh(ݠH<( #vU䩬'EuW"Dx٪3NrCpaYB@{qߺ۬A9xp"ږ[-΢A'*+{m2R9 +WhdMI FT韃`qL+Λ0 e:~lo}PbY.W:3Jȷ"]WWwo/Do{AIѼW)ם3.#\H#oYaxR'BTe4B_8&ߙ ǯ`3TxQw9lOQQIތrQπXtc` 3_#IXQb5[ \8 b~fp"QAUb_o ;pOױwf"V8?%L'%.'mFM%804tНȫaqS© ʛ 'Gl2EqA^ ڇט3{А %l&pc8SjwJKcÝhg)nٶq Sn7[r6 Y|bܟ%tarLˆV'FDcCh]?nC@<7T G73z1| e5gxקj(D9\(EH% Zjۧa`ԥ*cdCq(UhGi=4(5 ʫ{7C*@&+ qש-FUYQ{&dBtFd!R<6AqnoJ0Vf'҄G{ٳ#=J+#a(=cBwg`uP=M]ol5Ck*4?ETeK.(RK:sQuv)4ZQ3:-,˟]' ZX~q}+Vy6R0@k -v7Ӈ84))Jbw<żQq8EpCj: 2K>p4 zeH,4V=2 f:뺴,9z#-KovGܧM]QLD]7?=Gdٹ!$"$sX)$;rrnԼF}o]$|7 ? DScz%S$e95_{y+Ɔ"-ӰWYSv{*vׄz:a%24*oa`G'yZY+wc[p$`&ՠQOeʩiIB]P]kPl4loq$VpL<jv㯅s& ªC(#@Pp2@,@+YV.g4n9ֵ| t!]xADr.)A|}ȸrk ߖI3jaF8UwY`׭vnQ:e?͵â4[oB< @vbHJrBBrxuլ;g{nޠ4r~'Ơ?;cy?jWuG4;?@/$IhA6iD9|)|0R&I$IlT_o;yn#-%63LSs;AVzqJ:zq=18ɍ'9V^M%b߱,CFe-Lo!BaqYnu̓PfF]tP IDA@>|^(t]$HAk 77"Bk|Ϝ-,\_|@ >Qޟ$y_ByD~4uu5Ҫ[`+@s./y𠣛ئ^\Sx{ZpTա9_=QEk=/w7% 4LDO8fjV4<pO ttL'Qvn $rElM(!]j +}G'tpIy_{ңėeMln^ _kL$1Q׍K^qr?, `h_ o=;CudM:5clJ<,k? t@6}cC'|(TO%& Ɲ>*#.\⠜QYm) U3T^cYSPu M)YTj̺}]2`6ڒu+;%! {`V˦?7-3(52O&A,~] eeHҁwhFQ\A}h˫Ve,nhF_>1HoΪNST3Ϙ_u@ddueM.XB6_O..[(^}">-E ~o 8@734"vIqǭY^x1ZLMӠxhM1Ǎx 旙JN7k/ VMhϑ;7$K6^_7jkf*QSnLman}`@ }joi# E}ۯ ?DAí'\6jm=|pGNxThOG*xuw m[Rl_#W&uPTGI䅄(1u'6v&'MpyF::% L`埬l_ Ɯx,#X?ަَCC JZa(kJGE39r {=QZߺF>oK!%ŗB/?:toYmDR D㰀Rhv]1/2.]&룿ceWw:[if=b;54ႴGfbư$;?PQq@ L9 Rg{mXaQRKpqUlEvO(MΎMyB0GHh6F.F)_T*e=#%,,4aiA47ʖ#hᢁwr벵by i9@S)z1S_b&(OQ;ژ?* uv-(K2M{*5RK:8鋣K; z4{c0EWjj&qQ߇a2FrI P{ lUVRKA*BjR ]Ŵ\Nr9׀p`i1M*\*l4scp-acBݠPݿ7qfsyj1n* 7i[jƬfr D/ӡإvopEYg>A~7_,w؄y9f |種p礟.Aoї.DaV5R{d}KiuejJp\0DkG c|lD 4ӽ')nLwHJD)i~̷Oi6 3#%4C&@!u>-uVcIoUUC)qG..z!j{Q(` KcgLtТ*d߱M&8xso Vx2NL$+f@+T? tIH4KK Q shsG'•eՕ p\WTKv]ҔU,lK~qNpЁs pGP*iJ5To0#D3 oںs@eȼWݱj]gUCBݏ]=jݏ<8MNOcT㘨Ky $iL7-QM$\oqnglxTJcK'5>gFZS^~|?GH9qs8Pu%O‚-?gO8-U.2| Ƽ,A }A8mJ2cnp}Yh#=~GVG2d@x]xc7azf?݀*HRBu&6H鼕?H ġ B|d FnA`M[%CB#iJS-6P$4xM҈ЄM\ǃ&NvXVmNBԡw.9)!=vz'q/O.PG6_?f zT'=rih쳂ŽjPӾ\+\*Hʷm$7Q&tRJJR&*D(**>f<ۖ55Y}q Mm*!ΟB!GH Jyƈ++h{¶aWR&Yl#3[1Bs%Bη1T\nmeQ7Uc/Q ,xɉOvO<$}R'ͧX/#e/ZӔ~=6 V_aK3g|ϛU,ח-;Ik.Z*k%n{/E^ \|-\ ,jGC2;Ͼ(NQ6viG4'>˵O&y%ϫp~V﷿65LwGO-ITYDL1ke0$,??<ov-yw5ۑт+=l-A>8888AE~⧜y\eF6e BuLVWWm`&G&ǯep~}fRxӼ`"J yE;wqlpa) /|U'Eο_Fn2C墌 l zW'f ;LQFgYw(uO叭>2C<1(EN4 H^&]{M*t]\[T*U>ЪnML[~1Ū$KVڳ^m)fr2zuU|Գ41Mx.b$(MFp@4@BY"(,CRq `K\>R?H!INc؂svXwT!XV umFV8Ggt֖==ŢIDK!(55Q$tBǀSѶ!?aR'wNDǃ?X]cZcgf3ϟjZHYA_U/w,7EfO d$I;~im<4 {I]]}MJɎl )ڹ,n\]ƗIV xյ)T#AoW'Eg~)>?P6<>N[ovõ4;q_|5;|~lwJo&pg9ͽ 3OS0|ƝT升J<5#,gvcE睋h9(TCQUI:(Y$|$1IEfFɖk-8H>oZ%kɺFW?6nh0g=fGٌs8?tv<īq9t)+8(I}=glYpS%j0NX$uRCE^wvW`N9!:.s [V/-7{CǼQ TH9mDl\ZX_MYJ#=YA0n~~WM%16UPSw% +64\ <=s+%gqkq1QImHYR.F=[ݓ'ogI(FQVa;.~0/UZ-i6Ni[Ӕ\No;~eEw1|r"t)Yf a&$uRDˇ;9 Fc$ hl# 9ٔ|$*u@86B Gr疿'%_[$kU[^w]:*2ZN1X o8qk]P~k{.%=:NR!ƿ}x$?&@s X PM>"r* cYEEŬס*;;1Yoc. ҽw 5ׇC~pY.IQPT׻=!Xf5;)R5Vr'g92bt:p2& q<$RCn.:Jʧ77C0:vdљ3rӱ Mҙ{T]}̙nX$TvOxgΔ δVGqlh#9 ( @#pKruVқ7riejp\1KT> I~ZjdzRF #W_O]σFRs+ûM?( \V_iqT2'h/&:"[*t;1X$`tBNhAiOZL52%JhM3d_,~\@⚙J0}?qQ2DTR^"p{]2Cp:DG ,kc2ȿǷre `Iv|_M{f~?eUZM7ޱ،ݨaqgU{J&+V6 NT*7Z7r'?.@k |Y*{D nVN|)\de%R6zTg gQ-t77bmbe/K`On.5ץ`vlZcקy/RǪ"=@r:@'ڂ >P Cu3}q{6zFi= H)h%g+t xKu)ME.FR`H3u~$}Y L[OߤZq$`2 H0Jy6>u}=G02D`TR[z A>&@ 7OFpdS@ŜPJ(]l= |&.zzVb8r=R0_U顙E!g? mRB?WI$}eSt8w-`2f2|v7#҆.;ỒgQz0|0\Sbz#S3 o26@PcȄ24oOhK3-02y69cVP0wD1EC27pKo9ǩPŊvk>[&q{v\3_!-'m(q.yT*ŗ{66k}+7B~5{{k׌"`;tzFz&~v׭} Kx$yKt5a^4fZ҈!sLvʚ10tG㖬w+t,k :oX$% dco%B :M7 iۜ/ɤlz~Q:iY.)9&Q(sشö;@:C Z:(yRͷSnd !TUĈ2]*tB3jj@v퍮X 9AƇR{mPfIAh߮ ǡX$ܰUb\;dP[^Hr y,Zqd^`sISRsi7R+v9IJf =nO1)9yw{󿿬Ĭ˥f,.i2"2QNA9wܰ$:?O8lu: RKycqD6Qx|PK(*sT:֦7GpRَT\QWyn.uzzł^icV<5}?-䎆 iNҼhYJVE)1.GI-dʸ޼$/7zmTfZSVٙzԹDCammh4P傢ʨ(Z}(F [k(Z~)ib[[[q<&U WXm VR8cpxo $.\hzռ&@Z Âa5U?YO0e Li'uyez|=׏*L/]pʂ׳Ru$9OѨ5RW=|踌r+zQC,(ƌ1\cy6Q{xcmDBD$4|t?eWs+|829 ㌎q 48/H02]$`ä8'Ca[+5F:VU*]e#{ :l jX 8HRãRw =X:Q٨'1 Z&X. Q^mBCI)h7WBkM1PG<۽GJ\čzVJRW Rt0ZXhJINJY Nh(g׮.JAkBWr (8K8lǥ8/HIĪyN^ë1He7j3̌ƹZhaԑw.(XB'hԩ`a&)X?֮3=zzz}̅d G `R{mٓ߆m?9<Zkݚj~^x>gYgvv]ۄjV>~j[;G-8qmH 59ǎ0~?y%:`<18|e0jS4XO,Fʥi mb& (" 61h-8~Li_DkEIC8#j1w=S_rp|VsaL(&ڞwVU0gf r.<@R61< ݲC&ۼ1,طler&g(@P(Hĩ 3KPzSjzxqf a~U=-gқGҀ녹*~aNٴ|{ղ|lbqDPGrM,qxPJt'o~~n|~YA8 :ৎOazdWY$ضRU8q>:vU\٨C7{>Nh6wF1"ae-ќA?Ø)Ew`<9GI,p_*:`j|(BA#Hl\|! J!Tah:B!op}k0eDP(UZw8]7 ݇R)@fY nsZUuk K]2f-;IpGϔ}h;lmv5nw$qYnWˡ^Sۮ׍k,Ӷk" @r5I|uѦQsVc7nf)rß'R9N "9cQX;*Rw@*cFŀtE]\JޓMmBĞܘzhx:3 \moAp1&j]8yxkɮWwzun8HR'n4=3JBWwFx]^O>b 6|0#- ~¾gœYMzaZ_!4fɴY-?> G5R>3.}Aq,]*u${}|7Ћ)Qex+/H8_o0J,,߈Jx֧aQ cG06ý&tG)yp:NҺ: Y@}5;GźN>ncxcmx8CB`xCB*qnTACq@ĘR$W>A) oo(l,J0pV8,T+DkeSc[7 zbDya bxdCK f{<:'-xǎ#*J BI;D{dyh=[Ĵ%JI_Qiy{gDh؍tu㟫E_zkuKg=qJVe^Ѱ`UJqZVqO5(xO[{N2 X.A)[Pz0T02穅9B*Jlp4J{ȝ7?;ړԲ1?I>@.\J!UITc\βrvזv:L͓4TYuFQ]Tޏ[V2:Gg{ٗt(#u_}p6{ouozJ6*0hP\s -tLtI`F/+[a)N(ނZl8)c!cv#͜j8ܰpȈҾsBˌO%& FJ6G"-Z Livi oLڎvȚc4@ rH_QQAj:&(/@$R0D˾戺L.zFaJO1|R1xK/@9C55bDD'1%h[{q^o'˜Kfm 5m!hl.#>*K~GX)ЪZ>)6 3̹c[ Bߦ^k6"v5GCd ֯Wqg`˟˛>l2""6.ȸD<9{5l% !zQQH ]Wa 0F)Xa߲MtW&#d3'sĸ0"xhk9MkǺ޺ٺzuJNs)L57r qǻxaȢTb'Zh_LS8>=f{XďO´P}/|[ozmz{{YyZ~H}նMARA[?]Vzf\>s91cjU@,m+(UC&s?{'jb:7[nt]uz#"| ڑl)`4~ЅS?&Ecoe๥ep32/ 8 1Bq\cRohk;.w+?aY5Ӎq.:Ц"x",Y#PA a2Duˠ u^t 6 RB7$h F[?"҂1۸oAi81_ì]Oƌ/}R[0|{AƉ9_4v`;@>Gǧ|`OΦs{JmhHN=7ˆ33s0G'gM0_cƍca8/[0g+xpfr^u_g]`2E$QÍjʼne) Q3_!a>1ƜeL9XwO&fruʺz'Ɖ.hbcB8SϜޑmz?Rw) R@i !JѮџOTL-rY@(˜vRm^ԽA,+rzzqOhyqEq =- jpd2L1mP-IGPrUeNgoqfS#yןzS{o"ff|~ qA`axGx{x3 y->#qcAh!a8auAߧbNH)& ]wу`mN9K7DQd\#yw^IhRoʉ;hA 03$踷%3ֻ+y4@erGNҥT]Փ')eϭRʫUu OZعoކU vؙ ]>mQgS6[xy1YQ̿sEr?AMX/P(e3x7( ;tJyÆ;/+ic 552r;7N<\"X9ZBȑ{7|UptRޥ@*uދsmG> uv4 C{,ıQ?IhG}-[@MB{zZi<ÉqQ(2b=^t#|t[}= vklDGoܹ/AQQ\{wD[`af)N6X6/kc[d/{r >*I'R:"l/h^R8n- F{},OmB.=A \FŬ ~[-D+YIN!U5;\ea⼼hL5v[2; f2Kw|A/1{/sFi[mTӐ ƌWTи2Rc37ŋ~r?eEC:.!n{k9~q8N,uȃiimkY^5εK8lve=NL&hd|>LY-&V:bwFD,)h%~^"tdz.\W\8J~7  0 _K kPmጐիWfN9Y}oRb- h$tct)|I˜cXK0hG! %I^>P:D WR?Muw:{:scᜮ yqaM(\7am?sF+x !<:]O $YOv!L"[V냏HNj#ʚ_A ^u(Ù!SFYUkVzǎ$RF3o<?R OU^{0f&-M:G^`/jNuz=9g}瑷|Z[f7T/|Zu8>Ɯ3y-_u:wr NA6ZInHZuex҆;V)/nGz>ewA+y×?tx2xENh_"Eth, a: ,p{HQ g餫t2g].^q-BH %l=Qדr5V*U C-\0[&pB4Y["IE CFzLT2/EB5Mɢ&Zq^Q&%]0k9JPyq2XHXSYY$VȞnRJ?WՑv:&TnWv><.+g~[Tȫ_'EbEg_(j見i&d+UJ]}'?=s jf ,bz>/.v&ӧ6=o-H`O^iq @4 z3S I5ϻ1 q;ݼ"lvHnN~P^gj?Nyڃy#J0X lr4?k%$nۘ[0t#uoVW'hM𓥰R^<i`%wabL3 h3rѷ/\}PyMkN n YEB8ܮS(8zoHi"ogܫzq"KԾS:u{rǣ!TE,TSۆ3o=RMx;3Nv?]Z[[`oPNB+{ʽKwn\x'.ʍpDKOW< n@6='KeRSF\7y0QE~b^T738WQ$m gcYmŸh% Q0%3'쯎Fp,oL`͏§p'|Ƃ+,?27ǎαco%[@K[Ȅ..[]uֺNLz#X k[SjHg2U~]*[c7*{Tnp{l) !{.ZҚʼnRFf;…M~Csiǣ|ǣM@Ӹ"g]ڳs>xBC5?|u#|5䪐G+ ? 8& %OG6 0h`nXȷC(B&$&l.о*2xȣdxR!3h/Y T^MfѝsLzB͝^`ϐAl3MeYpQ,.Vd:ӈ#|z5!UxtMdOZʾKT$Ah'Q*k}Y/ LP?I M')]6!x/.a grN,[}+G=868X GU4|:ra67h'S? 4 z(qm?og :yj%GPՇGKf GMiha~PB!tu-7?נwE~0ŌaefWFWH@A8Ae Ep(Ed<Ҭ},\4._EgG}0"p6kΰ]ܶ%Ŗ8R@[1dt5"wbHm.m0bTaf`pq6b:,z >j -Qyk< FkWxG7j֠=؆0(mhҹh ͖U iǶiEN+}J_Rs45,}>o!TbHWliZɄ,⦠7j\ β ƐlLӬtgggWi"SP +sX`^ھ)U.2 l f \!6YB<+A7cXX8rVSWcXQC/I@;C}YEוOH@/2%tHG3&G䬢ܦ:[Vӈ#{0ʇ}A*e YO]h4~fF:j)k;1TkV94M]EƇEwLMs wn};/YG(3#4^PDr1aj(xD3RbJqb7kZ֪X>U=ZrPR#{?Y 5{2.#E,9U HS~p ?2ōF3\'Bimjoqv@^0wK,+jh,Yfި}:.\/qD"] f!Ti) ;L)0ŪKx_rs,۶eIdÐIm۶xh$/KAoZ+l=I>_Gyj@9v\Uɱ9*T*VEtUY -72_{6ƥ,8yaR`*;oE_E>j-t-BRsFЀ_**<֎˪Xfglz%<{8'fQ+A;RI G w  1ڷ,[&H`\ڑ4Z)0ђ(Qsv8i/x,B;s?%,RxZvշ(1Le⯠1;zWT,lTG:I}gUIі mXM!\Gn,On@(7_H,%\mvu7Q qalU)\~-1^k7C <~z 7BS"{8DUrs"ߣʺvj^)~o[\5spa` !TU)!BpÇq$(">|^C1^"[5УIxp?$FBOPCVɐ&Aw9ܣpcKØI%ˠˉf2*ҙ" -EJ &˧k4(-b1e+Ab[RaŊ+ aM`D{QRBhTRQJќ6]IUUgTA%ol,ݺNq}"?[L8>̈́= :YPN[?&)>ER* !cO:*C))o|u%Dͣ1=VMduJ6Xo+?n?Feݻ[@!v?;Idc;efV[Fw֧ 9FuƨVpIeMDSMCp^K%5sc{aiα94 0}~0, r sRq+,,LsιOL+`2 )\)*RsUe)#xG'po (94_]&K UiY/~Ge"[U…e"˃OaU=~ykOǑ N2\j`FࣲPtw[/ ֮kgfiv2#FrԒlJ" B0r甈+S FI\X[ BUױ~vM4#*Oɉ%zi$!]CK )9J00vN 1"q6 bJ aM@Ȏ"PԂʍ]Ο.sLV r*ӷ };~f6*l(X ]UEf*rb,>S rwuEY<.nD2?Td!8|lNPׇ=&N}(87Q&o7&\F.{ɫ6\_$^ WB%g Wd"X.[6l=p@WX+ڼfB{4h47W*7M\z}p'+10׶kF#&x}Y(VK1+QDDD/̇M|m0E7a{]R ~:ZaHc2 U3<| `z̊eTɑ٦Q1[n}$({LL̾ZiNvr ;Эf0²& [ŢMHzVQ%T= L#J=my-?WHأ{= 9v>5yȼ+ U] or4 FWe" tWUwckA9AϾy`T԰R7-}eb:K!gbJ,SZzb ,Ck!>b&$=|&kn&>B!كdGVÊeKmO=dqc faƬ|b=aR Qj(}8V^ 9O(BC˘aV+~>}zg_Ua | 'M搿%^G7 ,EP6WIX;6=LY\VwAM1uUOZfn\ IKؐu"Vڦ̫˹U(Z n 12C_sD|~%/bܣWzuvE1un]L@) +R2PR=Ê D2F+UqY,2[1`*8nu TMBd !yK-\/8 4P

(`MNfHRf?l$ LA*ZYd]5'G2={FqlS[٨>Y'ݷTmr:&&-94'15I_?ޒ(S+:f2+h/?i:5 hO= 1iO ow"V4M'OR]*(SgjrC7Гud"M 2Sل"#)jp߉(8%^,\Ӥ1ێ aR6 ͚~vxc@sG)lT L͆Q9ʩyV]i<'KbKͦE9T꼿9ԫ:c.͑xj!:OO$zXܔ?Z"5EJd\LJ(2 wx1E4d$sgW_Zwqܹ^ kFEd11[ZYp@m.I`ׂ_F1-iF/EO +|pAcp/`k=mJ3e x1gI+ "~:~V(.E4`婿0'NVCf T+p潌Iyt[m7saAף_sL(})/gFYī+2l*B-! {b}R/c([/spiq1$ $d;%Qt1_\8fP33f0hqiq)\ o\\*.{5 ML`gDY3 @5TV0lEIJH$ "lkx:IɶExKk"誦`i/lUL],`X/Vb5EC *W_XY f`) nȒ)K%LaA,-rM0CX B"B6yjqC1@aq"x@gp}7K D I{-qX x;[EsK-!M*F{j.!T&I j=@ /2@f {aPrFHlIp}ݺbt ?2esw:4]QUMCU"8;Qu0UUtMWTk,E]yOGM=y~5-*圱^ſR7^Oձܣǘ sOD' n $(sL!n)'E YP1px5}FF;胣A o sk\4}nOCWrfj[Vi!uekdr`#F]SH"~,vh7&Y5B =~?FTae 'ʭ&UaH{-޾YXŊr 3}S+-`"iAi߶*cDT,WIB!;pe\[L{kV7\]T,3Ta5FĐ,yn֜-`G'":-ǁq o̺"h%)Q-9DVI/!,{޳3i6hBVtBmbeMSC|a$wgGPͽ`)yӉ\y9z>(r+8Qz3FT9ӨfY(Rm}cr*nb @ڵҐs{ϢoB(|R5!D5v%#Ǎdvx6+ZK7y~*Ч֠5Ѥ#S\] ,+\ZVI8>?,2~fvlv^>xݟM؃m3+S?6I+C'xGNʣS6#%4׎ ,(r'0]!W$? &us^A;uLv{Wb cd<1K+kD:hV)?#~gon^ Lmq8V?=:~!M)`-0 DMGm*Z5[!ܲe[&!Єa/lmb@*\15UA$A$DӖ$XÚ. (IeS̯sK@Dfa$3ة/;.})#>$xF"ípq,08Iw2!ԙ6ǧ}& Cwpsc)޷Nq J\gzmˢwTU;x;h. 9?:g`2g);?ќm?ɯLv'˙>8B?0kVVL7+o?YGz+n|P398 K Q2q -,|0 /8m614too RƥH R@c+oG(aRBZXv)czk0֝)nv !t\TR1B  À`EDUKR`B`YZo|(&sug֙|L"f2yUW7&SJKH蠂9hLĀjiHB^"qD`*J&^ ϮG*)w`cv5fHtrS9Dޟ=tJߑj!~@bRVPzbƵLO5_usbcj>R\FeRnK6vj]5.ç/0jBP4#(]NoaW  @Ӯ 햅D 45+<.e2D( tp JTxRSy]q?YJt6 }Y\LUNz$qc7I@ܓ:;ygib!0:[%J<׸ !H;8=؎8a=)pRG^K8-dGt$yxlebFqpХ; )|2w]@p߳JpWP|. ,KV>Y3EL4ICe'C+4ioG}\`hQhEgdxco>hȱ!N?@MvAu;݈O@iJcpƌRZqRj)qnQEr҆ F!`Awm:UB$1׉dRh_R#0ƔRV'% \ 1!uW 6d=k-Ѩ*e47XV\[xSVtsvFtp-4w^ %a_RP:B0v0u!~Ry+ebg 1_5 ;3bg̮¸])()ӧO?OKwuT!'ҷ;qv;.ҨA]GupRRl˲0B#Y̧uEY.["U< ^SQK3KO')L'| mC4JFV6Go!h| F$ȂMb2:k8nɮp0m zG0Gib=d1L7 tUtjb+՗Tyn0* `ƅc?PF^V.lqP(up{4vd5;^#܍B8rZ=M@<(5[j/=+J|]BJ9lji]{D)A¬Y.Ae6^])4!isd!'Z]u"k5[B,Sn+"ܔyk4]0RJH_i.+qO<[.NH'6;U@_^PGV9{>F~ekS*e-#VZ>j=B-[1ICoDgDvJ`~H*Ϗ"x|H 1 A68m6R:j;G]b%bxՌëͤ4k^)z /yWiY/Omk.YOY7ֿR$.$cnht;9~,4'+5/Pm J(5ڑ9kQ`T%Jdp,c>hSkvѼ|DVq~ ;|"6NLk|zY?%d 7۬_!z[ʦ[" 2AZ yT'` d%ǶR Zi !d>d`B[ vkbgIϔʮ94n;u@L٢>#֮cܜ&FW˕6[MKN%O98le̎j ^O=ǀ! Ӷs4 APGׁvynoW5Ƹ=ނ.gЏfȭ6 kj9i7nxD~Aʼnp&XG>6qK4 6t2ƣ-/EqGKT?A{TtQl*r Dҋxnl\Pǀ1z~'ӢVq*מ,IJrWJg!ku0/]wŒǵS`%1qn#«*5RFk☃Ps^Fv|V lAĔ0WkIlYyUyZqJ:nDAԪF* B1k( R*9 6iaa0Pr~W?h4IT[gR"Q[xRJ&5gd4TU6AI}Mu >tǩiE_/(]IKV.Z( y8t^x%67=TݟЫ*Fn3ILeizSV, XT{nh@9ƫ>c3]9'Q]8(h jA\hyN”90W+႒} .BX/*w;);nv].WuU['4FԺ~_reG]ہVR٨|&U{RUZ iKˏʹM|D[zGW[m{H'J gdzNL$@=mc. FU\/]Hq1+-bq 9S42P Ȟ|L% &md+ؘmM0SrsʢT #,&FǛ & 6V+0JXt "j׫Vc8*wźߊ?EJrmmBI%A5R{m{`:&*BR 5݋ɱwݢhAࣨM%ƮN1FhE`.Ly Wa?pBym*]٣EHs kݢ+WX_V!S^ ^ϡg3&yOwBGC]VX|s0b,.ޔ캇Gp9Pex뗆“w2'pkb;2g?h^'glGCw?)$^,9 )39jyxmYZE#a #2Ě|Ì& 26Pv eG;MQr27f;4tFAed)F0n!˜S [a̲I?[ʚZ֮uu:1ut4#;ҁMZ%.4_>y:uaT Rܚ<9<9f̴v_J+]xݲޞt2W/q/OTwۓϟ[jO!@xQkW˻ k>++yv ԨXK1 a9uX>ILK@F4+HV(K^D'jC^o(twl1[b({&GtM/ R5+PtJ/MtEAP}:0)͞TPmlYr4Rk).z"Ae֫,+y_m@ovX0cM| pKI "M|TLt`ӂa|8؛h[Mf۬!T R|q8|KZߊS38}FQ2SꡉRQ9odaFV;[_X8^]ծӹ #SȉD2(]ZOd۠V7۟B~ 6Fzs>o۴D @\wL]75h i>[-阥#׸zGۭY,GC2g@?5"򢯕5+t5/s]lNfi 6xa P.#D)G;)F3[G`0! "[ %=)Rd9y^ X !az7\.ma"~hLJTz?c_8B+)T_pMn vί|$ O1%D ,0j{k{Xv#ܲ{B=i?çd49wyzmJw{fzP$ !^<tuC!6Y kĨ-OA;w4C5-L>y,k™\O9>Hk;W`erqK)u":OK'PՔ:T{w487n~xzS/4ٙZ8dmmڀcnbu|l%AmOq>MsxBvrQ5sy7 =.y˃[0R =?O4 \A0Lbzj ؕu.̰`Ma:h.6IݧƁ0z} 6+RE8abD'M8:t%.(*Ѫoٺ/d'wknu`J"MJxZۏ@;u| Jp"|#,]5*HxQKQw8<>Qn<.ee GS<ځ>8XK<0(2w]/GI>L{C|g&dPݪcH'7(Lx 1(xq4#bgfcr}HKD$&i$U<ՠ95[EbA6oN|z\jƎS>,Neƶuz9v0&)b;SP`8-}tW d.m0e.z!Dei.*=DxnonaԇKؔKO1w+GQ&bY)8.ML5-1(߼'zՋ2t&SVzu:"/P,Ժ`nG rp 73Rfbɔ!%:Yn 4*kF+(JxU* ׽Zb*=̆ލ@+Oo7<$lNV.GG۔Z)m!Q'; ۴NYwZ/^cd$gOTۜ,ç:rVB(g""t2K.qRnGO[wڿ~oO !!O!L pE!3ZS)%B.Q)>")!wگJJ!TjM"UPKӈ`8xRM,C dQ* $`3)ݬۭ̋VVj3^jxewNh^(Ua(3R=2dP@u^rշ㢂, zJd1mӨU\Qlp0qFE U Z\˙7Dɠp1lg˔ 5 Е58ulz步iӔ7µQ:7;^dHJz @ e - 5[ca# p;6\(-^eYL_,k*@+CY(KȘDwZ|(1 .> RIYok9}.GU%`tf/snT7d3TJ\$zRցngYmH!59Ы0MvW5nĊ+G43Fi'*k%,j@D(9:^'Gg!:3%%iRWJT^)JHCF1_8 ym 5*+1%@<ސפR#1Q?DU&`u6tWRXѫS}$[8Y ko4A(Y\P5e4kAm(:PO2==k,.[u2o,P |N |#GF̉`P@aR4aΎ^(v4v ,:-EPrPn/=t gm 8NX!rVE.x @R!(moѕ@l! wO\z4TM ]7cT79]\#Kq( 'B%Cgm̐n|;4H,v1 ^QgጙߟaD&:GFJ@|@7@IE `^<-v#u9%¢-~;SM.Rpw z2 =Fm٤BPsܿU*mJ֏+1&y`_xHrZ7pI%95N(Qm# R/ :(0V LռHZ#ZZ]P(oϟkʻR}']ߊouKB ݥƔ|a9J7`AMC[^!I]֧l}U?\I"Ed\: {FhT#Tv]?FYXL*2c3ϔqAss'VyB}|_Y{nei.7{瞡|,\͗p]qVf<S;^cz}OrǥfM?ಥ`bo-ue1GG$8Q`?YDy+p!=>@8/=T5C,4f?Kl{}3nއ| !ͷD[="sh*4 ڵnΓ 4ӬO&T`ӵx2ʌb;: /ycc|Nz\ay1%FFBoFPj[bJgm۲xbu<77#_UHC2+m^-8ҁqdԆv ('hh `ⓓ`?P8 (C 3ax/"qu@$m_Jcaw2|i}7nBιme *h&#=,֡+ÍXw:%?p6)۔phQy/=Sَ6܂+֖eMH}ha1gdtK-3N_t: UNoΜm~ނR}%/9Ӧ="9;t[ǭ"Tu#{M N_v6[-o."6 G|XZP[#U8܅+1l*C~ƞvg0jNK)~^\Js?S eU/"g|a0h{bvx 4; ] n:kU0G^fZUL;c蘨Ƒe>ќXURN# .dѝZcs+^8u<6A:Z]XP܃vn ¼bc}ҿݖ|;]TSR8|r#^gC,\`3BIg6)}~+$iۃ@eG. Ad;N54}Z+B3>A"f®<s g5ڬ}&rQ˳U{4_5.I>@Dzj8oA;dG<{8\L0c16rcl0az!^eJ^8c@j^Dy܀n6-vj똲γ;Me:d 2ftKr*py54UWYk@bDɸ[A;g{?:ӿmW0)[q-S7X%2~Dt <2QOj7&2jS/LJeJʥ(}.arٌ܁rghQrf0<VJBp :oSH߬~-']S'@iUyU⊳Fn1x[>Ք)M~-9hy4>AgN#0c{^qlGW !RVJ%،YԨS@4HFXN~,uE;+u#ST`(ժkT&JE[7tduZfDYydYy(TuV# 7@;7u}dIl_TM乨z>& Rn K5eFm66*'& D VdM!pƺS.gZ!r["i&F3v^9xX‚A?4SgNڮr (cOCN'Z|Bo˓ 7?v\{*vo#(E93X~8o)+%Ǎ}}piVV䌄ae#βfw犚MB>7?֗q{wc`7/6‰1&Ҕ3>%|lħz2_8  m @yY8Ķ͸SR&DPwT:#;d^U){gom^s;qwdJXΠ "TgXV>5^uL˵Sު:q{oRnk5ȇ-$w~Yp9IuH=ƌHˣ-Y?8"07h;Ъ[6v 667;s70K$/A Y949p(Pey۞A3M}<{5K$0ru(硛/xָVAzOn}K^7ino~T7)/Y6,z3RW bLe1"5w N^~zDYF%P{el0a l!!&HcFڟafMa#A9}ࠕE]]"K=B[V` W.gƿ`9χüa{zFgw ̝orh掖Uކ%@D4)䫯61A3>B }k:mzňħ#{}/ x0`@Ty~D>@.鉎@خ=a_QZzC#Y"<>:}hp#̲.uE]4@p& 6){υv~?p i=x-uW \ ΏF;1oG~3LVr)MEʹDK(s r?Bl*l؝F`Dphe%\]7x\nޤ‚;Ĺ5+\BF!XfTuc2SCDː2r}CiJ~ϯFgd'^ILԶ/q֗v\7_J\·O[G>qw-$S{]GFQ7J\DBNMd&g|jE@I(n˜g WGITFS6 #p,׍yzdqe.XC֧\﬈ 'w V#Dl“vH?Ʈ1rҜ=g@Ljpmk^2[tM਷ԟrri'}T<8-.S #Gi`V2} o ωJ[aUi4*~ OU]ܪAoK1"+ek:AR~\\\]YZlfp>39rRV͵CXhV=.ժq]S AB:26fpd zb1O5.+M>hф5W|u?[M'!Ÿ-Ea{:?'1ZC~"|is۪զ !9iDQsbZ\fA4n}D`P y-R J)S1,ۊ?LEQDbN@v0!ӽ1҅c;9Y *&q;ǠK zȅnZT wֳ//, 5c:Զ^- lU^XX`4rf[)I5v;_,װ~B4-ݥ+Һb|$ dCd- Mu`O~UO1yW=:C V/$`54&yHCDI58ɏ5[#eNx׳{ ws_"67*tf;e j>`:#Pէ "ˍ$b'Sn$y (32K%3#<[TfI&'$:w|NcNc +[.RH"-/.odqb5oGn d'세0?(iPL\f8]H?H`JdӢuKT8pu;J-I'B-.qig~pQOiVd(6( |bs_҆n`BnB%|NOTurw\K3|C!y`<Y*˵"l]y:6*x"ۋ<"n,Y9_pk ʽE7dOU^BSAt)Ŕ)_р>!s AgC賟!S<(ƺu2k9_]jK5FaB'ܿ][/Y@piM qƥ '5G V]f̋Aھ/3>]}fJ5VVd"iW)cW7'&SIjm²|} "!_£/!ōJ n'cEF#2)Gh@&bMA?QbhNa)vdBT{=W=yf I04ŧ(<@>l#3or/HK@ă[]ꔧbiIS~ꩲ5ֺ\Bӧ[Sʨ\[h CvN^fG֕=MPNO>\=JִRÕɓk >Rm;Rڌ\uyecqvZ=֏#֨i(4IH:DJl3G3p;Fav>:8N6>h}aXՠ9Hs=쏨,^!㴠8]Iclwnt q}NcTIJy)TK&x P#iW N Ԏm@~pc-(eK0^ڜTHؾA)j B dy<G_Ûϔ+TC($X1(C!;f8,( >?29^}16m[ib'v%y|dY>Af 7m]r Uw810c`tmٔOEXmDA)0Wzh$-:8 }BɧX)]Z*)/%7/R77,񞃯't'hHYV8Ja= }3dŰ{z8FioND6Dlj[h "|RC ]!+Çd0!=p݊z+>T5P Ѫ.}K =I a9\h/ iLS|ѽH[g&v!h$~ "cjQS! N Z6A aJćm{3jsNK醵CD Qgh۞>#f i?[An;ΞЕ [})eWm:Jcnci+ 16XHA^Dk GVw( fvˏnS;AiPbGJRJfa3P<w|67>4kcYɐfWw p2dtOO(^b%rN ϯnSTɰu2?jjkKk90ZC"U}ʻjЏC4Hl(Dޢ#^|`97As'r??}p+PB7D6I=~"Y=GuR쑼݈740؅d4xi#_Oxӎ 'YL zupѽJF 4YҌWVclfQl~J'Opc%k=' hMn -ut[Ɍ~Cn] HC˙eČّbFҒY %HRru]ەn`lJ%"TR2Ur.Z;/na4^hM}Z;|;MP#ߋ{*Pm;gaFk UPS)?,;i^q[yXC [ za1M{Wo=^g3>gޅJ!dB>sę_:s 1 be^5Mr+w%^v/A]sUnGw-cNI|P&;;Twpg5tY `z ~>TŘG671kjƨ -17}buo^C9xs|1V_Pg7Q=6"| ꮋIT%"9ar/9l& غxwbLsNi]R;T ЧJA:shE Um6큫]UOKq $z?|J/^aP0Ѯ|l<M  F*yo[ڪx@΅0 Ti|,&kj&I% @Md/uljp搪ߗg9cTn0|81He0[ُeY< t!$Ls-rpRUT.e(+BL fxqWBiԉ%ΗNZÂT$eQ35BVFs")}etxRADK,Q ~ S$S81G 8Mv$K᪊0F^i#N3ODZ9ه4i;z~0ălpt{>ϧ@D?3٨1O8)!rBpm@ A !`5IT7Ϲ. $ SBq@݂a'pQo993\$^3(nROvm"*̷*p6Qb@sp2Ym9Q$O$Pe%J7/-0T{˷FU -KKU_x`P8&J5Q+ɽՅE/Bo0Y4~' J>X]Vm 0a"ŸCjC{tcKqqm*m (:th0`R1:hm7jfvys ƁIbgϬj8^nz:_qzk]6CܼolNsʠedMY|3ҏ[w].m}0B=ό kf }NWiSi3&5uIn0u16O }IBCO5 ZdaxWzOrJ}D9>cݩ?YL7:7n̳`Fd5]R>BW}aե1sJ9v0|cmQ\ Ntx1bcqBy_.hX@$\/B !m{5K*7.y>$H7¬bz`W-[s+5MYhMh`b+:*e%V]sJ&ւVÛhYբ] EK U"P*`ZbÈ=%ؕz`pԲ~fۯF7..ete!DbYx%$=y0D54:`~9YtnM~./\#*,VjF44'2>')O7ψ_k6#h2lZ L o~ > tS%MGVnݏ5.0ċEA(DMh'PmKMد&>NtR.h Wc8>'й!j$: ݘ 1p0`d:#F//Q!A<~zbeq0W]ط}1 V!/lp* 9˖B sc?lR BBUv1(?- hMsTt4ιдYe~nbف ð8]ढ"4\KҜ/cpU] 7@hZ=2?7e?dհ/)@e"Q$874e6pz i&}*PcDb+Y_ }fC mRWܒ;%9OD3m[iSDĸMMKO"0 r s5"@y`晆~&7CZ*vCȥ7,Em@p*Љ5듰@j*&/<]Iܶ2djtKN|*.f)Ҭ}4B6jtAHS,=&,HW%IΫC'bN3^"U$Ƥ"bekZ9t͗ BѡDt~)zU9-ER|h#B1px_xr:z?Ό.pd)'aH|ЮP$QqhцXVDz1/<'3-0 @'ܥ L2brj|b~5koju/KNxPG|ԧǛú(?`9vQ7)A ;RՑ\\ )7 ͉6D1bGDDaϺhm(l[;:w?猲|H3. Mc=d?OAIe,/ Џel4s6˱ngcwðWrG֔]tުi6CKSNl^v϶_w߇^=fݏ,']i^q,VdQSC**~#z-۩nKf=p~MGbJ_Ǚ 8dƲ$kq䚗]sJ\uM2ut,]E- %޸G\2-}5^#.]o=\w$ ~F v2wmopy]q3c|!*+V^I0m6UQ} x:P~5C=^SEE'ٯh=@+Eq%?FePFlpèHBeJ' r6E{2ՉkTZշ0v25_~CRi81 31>ɷĄ py Y]'jPM l=)e&ML_jW1\[6 9I- n-Eɇ'^Ɇ=|RJϲ 3#9uRzfؙU& Ӽ3`FuY9#sJg>ٕ* ,JnKwJkOAYM>IMWo,c"f~qR w]FDq+"mW=㠟,s4_2tf!ZT~u9Սb­',XÚ'jBłm[W;'pak˱p |}U%Uơ$jk7{Iq,N`GǣGI卵afk,o%q#;xH~_3|]ٷ cqmbXĴPi W%?8ǚrϓ\pwcO)/DLiʽ߹5u|E8S) h Xg: @? 77g "1avi;7}*?eʽNO|?q;v*L*OUttALQH}8]?Ub@Rks/؆=O>K#_/Fsڎz.\*HN괡O$}|X0)8P)iCiā~& s)RjL~ļgg|qiJ>MD&QL734?Zem.Hz1prc%KD5n0A-o;eEx$jW60әdX?U)cfquNÅnvBu)Q'VӨrAuw><aXN⊢(t:HTS՘botjj5^\UtDU[Ce}DJ*RNaDG]3$'=]%# ֖: }hJT_ށ2yyoՖ|i^qTq5}<)4#V&hgxڪmOda0(3q[3t:W3hFoRŸ .4ŏh7ut\py \8Wv mpMລp}`` ntM#htAcn[mw &B pJ($V;i"!x AIK3<G`Y-ꁇH4<郧]Lt.Tts|(MBzx1&bKAW\1l`x Fx5.'t []ГGq'i%`;!U5n`7"z#E7|yP{!tp8w-|o=Tȸ{/? )y=)LG7Dԣ[QZ`G :Qs;=pzttzȍ $Atw3ѽ|(TB~7= =A!-ehV8Qk#zxzG#q ==5=݅Vg*l ="9م#hU@k\hmC!HB+z!^ #NmsԂ6R@/'P̋6;4BToDFkkQC]n/zczuסhKeGoaNzgzׇPX}F&D}tm~lE/DO2imv;ھmϠ~c9 TJg=hW^-ho}hD?z^HE}D`:E=nB_k:r>::ڌաcO:G'it*Ato2Ώ2{ 0X~L9'Oh~.C?g01Z1im"fP38``-l 3ąҋqXkarӘ|' )81E cmd Sއb*R=ځ`[1 LSSsS;Sۉq6b0Z1HbFF0|NfLfl3N7f̤ 1S0S0&b>3fRˉq03mb:N);=>ed'¨^K' P~T%j05GO&9i:j% C,)U=KGODFY5WPue2ZeVQ/Q(D6ږGxEb1>u:.DbSCP('QS{.1(F=sQB;Q8 WР48/DKѐ>hh hA4"\F~FChL)A2\4&CД4MKEhFYFhvFм,4?Ђ"0A Z.ZEAъhj$Z܉uՙhD>߁6ACh:%mMG[$G#J@hۗi( Jfюs)n @{о@zc"z :T)tAobNz7E/DDh]@AdOЧY6:B.D _SK:Fg0:@ctqtT.E+Qttu!Gf#t+ng/B StT݄?~h~A1TzR~SXov;3#]1| L/8)"ǃO w{K}0 ~ ~`$~~0JOG#)B\&ep(. qR+p8\7?ďcK_U*7pՕZWۄgF؏kq5׮#_2'0Nلuy^? gVWp4\77wč pt.OS/~v,~.cAA"[\-UKܪN62Xbp|%nnw_;ŝTܥ %:w߇p+{Gqlܷ#WߏW!^+SxU.^k~%kKxH!77.śJRy)Z 3 6_p2x{o/;yxg>ޕwcB/o7$~G>V~~/w ??(Gh'YtY a| > S|z> \\?/ b_j//5ķX"7_o%)]~c9K/l̇Ga--F_AYYcw80n{1&&zan4+b &kbV zan&ib_1}"Œ1S3/,1̶ Ww1I̹ s ܛ0o^|bEX`\bXd͊~?`^XraX.a( +vJ9rY Vêy/,~9 z_Oob_&X>a -6`06zMCجaUj6]"l ;Žo^Ş;C8pC~8r:#8& qp|-P'Ipr'©{qA%qYg9p8.nEpA\2 q \W'uUq}IP7qMܺ EqgY'JNpOQăa<4 #0 RUZxT<.'Dx:Yg|/<ċ7rE NkzJ~oFmx{-}~ćqE|VgW"/ŗuA|ߤ7m;|cNOw(-N¿J)jo'oAѣ1~ ! v $^$ >$8JpA0AjI2$H4BF, EY' $rr9u9 9s9;cHnD!8RHe;Ry5"(RUT"5WWH1!@ MHsiđioE:z#_pp8]*(L ɑ9U4*iGj^vP?MdI[Nt;Py#DڝltiGP󑝸yrώe:YuZ`c-Q^*V%Ƭz7U]YuUFk5cּte[V-י3jhvUMu5UudeoskVn[]lm6bo_)o|{֕:zLp!--[U*UO i|"&I1!u QX 5V,,ף'~l5si*ǥ74:KYH7@5.@~QCԡ(j~sKqij߿e,fbĘ8cI|W ֟qgKi@jVUx /fontawesome/inst/fontawesome/webfonts/fa-brands-400.woff20000644000176200001440000032636014470000401023037 0ustar liggesuserswOF2 l8$ `$ʊ|ː(  fq" ~:!!T5?e`e;}N'~*FQV7E(a$9u%|jȝ vn vlzt͞}~͛Ђ1ĨXJ-[ K,_QwG89E'\:of4#Y@iWJ@}d3QMC\v)r)\ ;k6;>ϾIk~80 AX>?hRB۴%iWUWߝQ Y(! I(BEFB2mad6Jȑ0Yo;5!c9$3W@XkJ{,~ 35ɓ}Yڻdv6r^fEeu/"n,0rpDE3?™nFljR&&e7 92/rH12cdWNZ)ΗK-V +-v1hB1| L/a˒ѐi{}˂iiJʿ/ോM<&}cQMY?Ž-t&$)>o?c֝ZqRqWwg'WE8oIRn l{g%LWKM3z]8\YGN @ 9m({\U [B;^κ^V=_-kB7YI5uh//ʏ2Di1xK'mi,qoIn׻?"/ߕMˏxsu/ĐG錁fS Q;Gww$O YB#Xw`J&CGCN噌ZrJP.W%ď!mGgBNVx.-.WS(J5)f~^Ø2vSc5#|ң|]S=NϟbA6ļ)pc~~mot60~:)*tWCN8UՓVLOt~x,ʁAeo.OS7gl1+yg,Yĺ$ o=:s]Wvӭ mIp*qqx/hrsp[e@/╼Ng:{#~ƯhNTNc__)|*ʩVꢺ*FŪ_vF]ήl׳;!}޾a?/meһ껶rz^7v(w-w}@>(š,ԴM's0l#X̃ؐجttEp8g<\Lۂ;pk_aɛIPrTS M}i"MY4ZZOh+t)D=}'{P3y./⥼7v#~¯ d'r*1 PT6U@RU+/ZŪ8;ceu/=\7SG+|K1=?=_==Xy͔')OTg;ynnkJ9嬓3SNr\q6Gُf_]Fi|4ό R{UF#6@1?,QZ2NFO| ;<#Or\%W92\:9Ze?@v]dK@6Me#Y]e1qB.Cl[fIl:V+ \,"@\1Sx!…@Dכ}Nsk qILA\4@}1 s z-O"ޭ[ٻu[ǷnQaX6~\ÂGH8Y:""<˅*Qsp]ø)4m?%m,FQcXc'JC1QII@!ERAͦU6SVewybRRcOGYkYE|#El+%rԅ9RIꅹJ6qO11y !D6&hU)F&Od2Hyvt4NYRc]%nmcF 6NnVêTR2fcB)]=fL`a;.Kl˱+Wc1]{W͘ݞ?:yTNw\?<9!a+DB Y> '*Q0^?˳Э+WXoVk}I}!ZHUb d03t hQ&uǶΧ2Qh\wlۢLv-s8n rpT#M!OYeyAeƹ k_ĆtRJ pXB} 6O K]Bi5.BV:^=>ֲg>X׃Qţha}<+ɱQ\f^U$0-65n91?;N 8Nx؆߾ zcǥ-n&=V%cݺ \-J$ LT!fn۶͘_|yd3&c۸0\xu9!qbq?42 eUƣ͂hq:Zg@YòWWXr ׭8[PI+wkj*YjVgGZ_`V;_4Ȍ0RdSGsRJ~YE_萝ō3xwc>1BڼOyuM0lǺݗN6Szo|ǧ 'aA 2_;yhjyĝ)!=d{_se#GcY|4|={~|4GPϾpVmeA,Z;ǔXŏW>az@D<4ѦY uʒҲOxk^ `oZz~Z4yFOwd{kZA#ZWv4{08Sap_Yc?‚H4d*,P$U6XVύ8ߴqͱm[tٶh;]W@<9m[p9wh ۶[w|!DdJH׆)ǚṮWٱQ9\E>}xxxh&u%yjbaa`TWq|dΪG>l,C2%7Ҍrҹ[ssƦy塇lzm^y+i8x>oovwww7/]2m4 :BL5٠HĩIv194kj-̗v_ IG,D-谫d$ZfZOI,H I5I ]~;1 fwF …qGΛaڎyXti=* 8 ky#,:!C8OѦr:qO'5@{Ħ:{Ɠ)S۵@L.*D9 H^BYtc͋ޘqESUYӪ,s #N2%@Sj4HS(<A Nʣ#*TFb*Tiڎ}ʹ%XeW|)^:śbF&e-Fuv_v(lOl_Yuk-@7o:o6=jdio<^m쳧;m2ث a2Ӷ-dT`ێSf؏R<"hO@vb*絗Ǒۈ?4~6dz0\B(O#p N(6i:B Hɾ6$_"_k1SC"9I@2 qh8q;Ær4ECQ8xfzsM߫mJ}u~bB,u zKPpr/yR78[QPgz&IJx0@le25M:)t¦G0,|ϓWyd:Az'4ǂ'mRK|bBlR,ƨ!R"."QBqQVl"NwTU~Пs`B )P\+Q6FkwAhB~I Du]/ݪ uJoh?2ZYe{O=-rb|qw}۾nluTN?7+7E6E/(0MB%?Y! *3&(TSoϥJ^MWYU(INT"gA.ܸq҃ 73'"b09g(Vi`ͮ?GCQ<9Eۭ*gSMqz+ko ⑂JeUVd%ajfɑ3{z_YϺ|y\ WXF ˎzkAPk6|\/d0ݟLEq<&͕N7=Z`ƣB@1qS bf2feIbRUVY=!]TAsׯ]h74zׯg9ߡtO>)՞Ұ}o< )P6^X# 9K0Kе A?`,ib!9a98N;p|}Ķeq]~8Q⸮ۖ%y9-IJGl"Naqbr|#!l y"4cKEqDjRL 5l:+,3XW")^%H~`g)HE:H fl:VӪ,bRLhR8#yjz䦑F$4M-AmFkz]^)@:Q9zQd&xQqv`u>] RԿ[s]N D;E(~Dd\%/!_ RLnrY:HG(̇:ԂA:dQ OJ_f1ȳh\%**YħT:*sﻕb=²CMK<+v-3)R ئݱ]i'i(=dY{ZwF >>[,FLB/}GHE$G5 ⨋$B%]Dg+d(ST Q2 F&jس&j4VI19@YͪiQV&FYI}ZTf&(g\fL`A<27aG8QiY$*/m"N*Ve1NYJh )RE捏r/^ DIE"Ap|.A^GAyI)MJ JWj11rN]9 ҘqQ8㠴QJM NA=9B$%PkB)zS䣈9ZC㢧bl #n1Knݐp]u4>2ќָtA]~404.u mi:aBkƭ'\?gpιϻ}=-oXm3\QvbOρX'x. T0idH9iz`l.#)ueм7Us7V9 0i0ڎ)۶7}fxBK0֥.o(WԵ8"Ix(IvA!p|jƣQZUԓs]O%u序PkoL|2>eUJ]ð'-hG P -E0ϊ84.p7~7?}ߌ7 szCR 擽OUV ,ބx4̳ƒ)&*ߖHEq p{R0܅z-ÚԵV÷q0aK0i&0hX]1J)gupym4/:0Jh&%V:xh7v0J)gؠ 2]dD%JTh:â;_'误w:V3Շqܨ7q9];;yzjfN7٨g]IᄜPIm~-2Ms2}L,60Ee+>&d:PQpeG=xȁKCw>;D_K+W ? guW^tO@JI]L ,T(bu1;mVI[/N~Kg\?X,0K$| }HTQi&tdw&Uѕ}P2cY>S \.^[[k2^j]@=* hL}CsSs36΁:[[~fQ)w1uaPc:70Z.3 !k48}}i/GP#}R#eUTi>i^qU*D98tL'ոG5J 5@gϊ8ͅ/ ܖ\!oլEBq=v;ZNAiAkBJQ4 "z:۪;^ǗХ)Ec=xi@00uoxf-tZ-tڋm--߳mal5.| aپg۶bUwŇS \F8wEPLj,\ҠRAq~}o{뽧/^=z.?ַ%"#z6ɄKG^A!@Θ֌8CBk2ge(!-tތͅ?!ӂؕ%ljv(.A5HT Ʋ:efyf2KEۚ,Oqz7L?Pjm XQVSV Zn` c+)}hf#ϛ F}J}xH &+C- (dvaIJH2b0F=( a1ʌ( WQr6hO/5-4Զh ^Eq;D1}Y}|U|]*M Oru¦aPj6(|LBW(e(S|]cHBM:Fv9r/y1y|ꩠF5doB%j†#^Xih ,tq:lGj4.*Y*< 54^,eշxZUoƒTF1L!xK6ǩ -e64Xt]CRd- '~t]s]=Ce-?i _9 :(Wu(b{-ȵׂoB[׽#"uuXeCÎo9y_{=6(EP 2˳"̟i .I7;d\_Unؠh6֖?hZa)7k.]0Ls4iEa0]#W͍[ 4u UWoqgka?a.ud^z9y<etJ(,XUaد)h,xV(1HsYpFPŤM700޴&3SLCӄ4{Unj [~ a1 eig젷.z#r6̍|6O³g*zZuu묦`BC$odyωo,/Wjy|Nq ! J<UH.d}řFqy8|CEzEZ No~WhQN+ }E9RMDqeٝ<ϊl({ۦUYe;CAU,GR3Jm˂,ӅZm~q|wkZѰ, S ش?^w"nB8k6rMt4A0Nud}5+ ō`ѯsA}a:I|b42d8K.Hv *UZT IUvÂ@'JsW7z-~rH|cTb/:IJgwS f?ivg2J{)L"E!!!:^~ 4X3R$DLPm`2 3M5PxL|W{F~\yakBLA8^dQ8NԵNVV|y}ew+4"*t\$UYeQ سĹ[oow_1h#J%BH㊴um"!T< a$(@1%b> f3 ~hz·ӘM^_t6?@$!#"In&mn_It9b t( 2qL$%@N?hRGqOsMAYze"z%AJmGX.EWv~?ڑUMȆ.h6'*Ɯ뿪;~,Ȇ|h6&WIp 2躢(sⶕuU%??ƝBKK1uM!:eq2 N]~ 2 bMQV2MRQWF(UQPe勒E(8[ҁkɢ4gTo{(X Kpj}ߋhay>y╕x_ `8n6XX7 7zYVTE2̘lMwo;Ȥ߇19V]YYqzn~îDqU2%5oAisk(vtӍ"ay9$)fm<(AUgɃ$ɝؙ[4yqo^; k^kzf,? G>PR t81bRӌ ! Ckg-uݖ$olElM4RU+,aYzCKѰiX&+ -Khb3>١om0fKJ%NɇMC br1! kq;=eUV!D44gf"Yj@FCb5ɞ[B!c輲=b~a eP~E$B<\+ ~)䮻ȊЧl8< h6UnݓUt ݈BFoDo?@|6%KPM)UER8yQenvuQ:$ηw,{8g\H-r,;O^Y0BZN q(b4&nBJaIAyXq*+E)I$'E>*ྰN`]'AD]ۢ1Tf m0uNsC',K0 ܵ]AhȚy:-$I-0C'3NA6t!7RB 4C!cX3PLŠS)!&@%!="wD$L%LR!H1` 1h P aƚh1&˖j $ <8 @=0nΞ7_Z}[Pt)߹ m1]#q =j2uF#\XLaiꎭL(&`B^1%d!kzM膦zǒT,=QJ%@.jCUBT_^??-0B4LzgnNz=X[8?,Z#˚iۃzQ[;B!| 997I|ߊO*3,i2,e4[sxYyķg%Ҋ8aI3 PġqVPDi(x(I3*_L֩lq(5؍ҤJ2*+Ǭ*+s0DU6bjʜ5`,Ti(-,T`e:Ngv&a4eia9a1Φ"5H5Hx(X>~˜$iLE}>X6q]bi6%48܉%b1,BV3vXde:0AUƧYEq,Hp4I0(I6Kӫ܇e5 8xEŴb_(+Y$+ N$݁]HTT;08piɢlOqT>g$ȘP P4kC(&cdEekRfB$c2HB%ND2c2lȘ3jT"ܰdϐZ SV!D@Q4%0\1`[Qe2TIXaQ dq.̯Bcb&(F KKiYt7 TǬ+Ī Xdcj˘Wå˗StiY  Z]rE5 ejqg#`;:_g k鰀 XM%@9zuR|Bc C!(p%fז p\Q;ˊb0;p[!K&J\)4UX仧5}=7]=o%?d;KCw&¨yON#!7&$S۟Sw=T}wGgos.@gdJ~NIIVIlVfW*b:쐟dtp~asmIGQh;̴B2SAѼy+<9];_^XlZ-C1\2(VuI _҄eߤԾ]17@'E3%w*z닁cCW( 2L)?xZ1-]F?"q{>Etboҵ8E%HvXYA\kyײyh{nUT{z]氿 ̶mcPE5P׿f;ii:l;|mCՠ^z1B)]?%/wO";K"ѫ^QO(k]Bm6fA8?면JQ:'SGiYMDz23IBvJ@m nB۶c°͉l:Wd(Ų$(r8$3PW20 CM(»7vML.yq;1d Şǃ瓌x2.1AaNN<:<=OȞØL9&d#7Rso~#sNE~)JӔTom&xwy};56esԧ Bpx2abWɻrw "ˆ`׫ɣ~ks; J9G_8>'"׋4*lmc<>=t3g.^[ /@PDrG; Cvb|sqYMI)CjU8 d$$ ndkV5s%VO{ˏ"ކ\jYfw~'B7xPd#bǽ$6 ƣEgG@r0^1"Fe `81vYa #Atoxk-KIW,e静{2I:,1Z*I~6/ ɭ}_\;f4wmޒn!*fM( @S.kϵBIm'}P:q(U8ћN5zbzsM<\<@>>VkUΤBU7:gÁ))q8u]΅FZP~Aw1H?w]?c(5n\wAgncZpf(:j8bqԍ:~ߋ,]9{ /=9҉xٳ\gOY7lލ%nL 0L/ThƋTqdJ~sE>INࣕIƵ4{j1ovFGa\[zݞIWsf0: j0S*(Ul,&,ϣ܄KzZK=Fuj֫͊]6U^`AglNwNo3E?^`5mOs:f7Q#+;>h2Yq0*rQ?t(:bόsy%8z<ůV| ㉪*Ein>,"Y -#TN^i+ʹک^", l6,K[bYbMw1y,ѵM ˂'ݬ1y/,{8EW΅=z)BϳS 3VjLC FO2 mOr8 Pb9X}Oee`a>!dqq8^/-ϧz)`\oBL EyBD``~xIYYkSxAfLbYulʹ؁~up}?韗z7{ֆ|y-/-w8A^hM`D/2şF18ȋI>늒IyTիATS˔2ղCi0 V@]f[ɐϋ?N%Vs=ϫH,h@v _\| 0B q>ƪV*p>kzkC, !ZGA'!pS<6$U'AIR!8Nam2Y\$dqq2 u`Ly3w/{ `QtP{9m( jݎwzotdYiR.T<!lBݸ4eAO,I1/;c:Ub;ӱ3:6~$ѱ"]&Akc\g.K2Ɵ'#[QH֥,X=dilB# =:( (|/U@yxwNe }6\C22Pp*Ow < 7E̥/]x.]x[.^,ӗǷ]WkPaBu-zrP7yEB:L_>VE#*&M1P}̡\KvݜssȯRJҠ}Z(yf!X <)' >Q|*w3ye<"ʴ*7Q6miWqGڍ[IEhGQnQ0GЅ3JR=f+ z?P^䷷`Gq ;1Nऎ6yM8_m}C//Wv~kM~G?w5|.x b 5&ꏕ%;7|GAT;g,/ $sFLJtڥ_Պzv+(_B}BdlIN[dU̫|dr!x($=wUiy ,woRNwڶypA>ٌ*ŧYcLݙw&~&}9wtEѯPOnYMTz= ^4j릻]ǽxrUyŋ `4QN3i j{Rp(:8L0lWR dz<ފsv{+s jؖ|-7Ͷʆ&V*5(j#fU(vz )V_cxm4a]<1gvk++8H4~a?*I}h485{%~JB*S2bٝ E|O::H Wk[l@%ܘ)@ԙ;j?j(>)Zy>)F-Fwx(?TZkZy]~/nBf,8!zT Y^Le26ZhII4Kj_u(O ? %Eay6u0ڶ6,Ue[!he:okl侃ъ5/Le{Y7*{}g>Zn_ goׇkYuK!nr:Gq):B/@BOxHKD]sFdSby\ %~f3M8hfiBnGU2y)O!v*j*7MrXfY |yYK8v/I[ۏ'hر9yzv05b۲ ӛn4l=0.@4}QYaT3 XXTg&cYc =ױ%Z~q^>ZP`fc/.:ajjkD uJ %ѳHG+ȸA 'O p:bvb^w9cm U޽ot9hҹx.mޱᄎ tKp_DWP5w؉'Pja·|1iV˝RAvhC׳f;a9bqEXވXtU`[ΊE>jimS*=4C+WL`۲k{eCx' `s*Jᜯǯa\(H?ag$V27VΥڢlVK3Jǻ!p qBOcsO0΀4+WV}<=F+qj{W ;w7(n5 ;9οyt>W܁Ox0q;WxýCGK/.:$Q^69@%lۻ@F1ԃY]n%UP%@9ps3A~Q`,+VƤ],%ΝU ŷ$b5$0WW!ơ'nצR?}J)`NvBðc򫲙B w߾J*qclm*_,&ARɎD5wnq{1=hIm5y筭-I8(f3~J+QJMҲqe5q]2W^>6EC5`ZuKVmv{QZ_ϡDűh~(oV<-^ _hIml;u v"X86@>z}eH0 U lx!0;ԑ `0/ B)/܂< S.9m^o4 8ǽha\$dk\Iop7:iۧj^vVqĚ暐%Fh!H 0aPQQ8 ^t1n1A-GܶϘ+u3$]>{yUwʐ.1ɘ.c,Hdl^ ?kJH#1GJђL^fI9k/qAqA\y?w0OvλWN)3ozi^ogxg>$3MBG#yTQ !'|:Z`8oTEi% UY皡(Ƙf(foy\gy]IbFؙV/5qi>=NASmGվ~ _Us@v%Pюz]-G9ssGΟ9u>8QSfV-f*RHtn MLTX32^*ߘm͘PUR!7X?UӡTqdTm8Gff;EkYnj9AC]JBQ$ In sG.aT,"$7?ĥVUJk ky&}A b1"Z*% RTg,hd8a6qODY؃bth F%> % %eiΔIkRy`? NnBTI~.9^H1cŹPJ7ͼ^jx&𥐤TmJk] ^zs2CIZ_}>3| 匝kΣ;Yc=Fg-8QNb~&75f1?׀]89]r"Lbu uFq܄a@l4KFktimijvL J!.1b75@z$D}aU>1츞+˲칞+Mds WVuF=B C\C N0ιze;:c '0Vk0W;`Zbڶocѧm,uu(CgÖ%њ%-Cg[5x)pRr9~] 3!&`}{kT`1.>xVN[n> UbQ⋭#gM`ZؤR&h)-1J㲋q[kwpy8IdqQqДNcHp*QsHp?Is7HiUp &C&.x|q]!R/]U: `DENS/L_dVt<;vcl/REYTi2p>#RdR( ŁHEE,I$a` 0 cpNfs/S;eJi3^ !@d;F ^f,MA( 0+ 1X; JO#dYz'jKI8&$Ixm5 9Gq?Iyi^Ow?/a K׿[‚$VP1oCFP&[8޵P>`p#h0`1cRp&F4< EXAIV׏ܛn7Y'AldaA8@pXm,.j^'v$&~q!+fSG2BG'p B1҉F(G,@qӊ ^ALaQ ^U77:5Og鞳O'GeL?*GuvߋG_ƿxQ3too%:1;琓\TYA™c-,ґJ^Z)!JFE3zZK-fhwSm+;e@̼l2a x%M4MkqiQt]sXv65ΥsdeJۤ<%J`n2EUk.ynفm[z]y$R.1 (%5z&jcBBI/M™y-цZDE?@M~X ^>`"υ EIM [jXcYJPB Q|.38na5qcJ$I%ҏ ϡ4K,ʪ$`q&V㬼$Nuk1I)1cg9BB9}dANU.NR42(۞*,-ft w|߲*e {_(^[;9`0'7m?Ozi\'󰫩SL `P$i!'!qnhm3:t# tZ~A(*>4SQZQVi:EYAʸ`@: YZ'{ P0`\9pfSCJX/x(* R9xܱۖ͝V( & -ks؝xqsf/(ݹmiuu`Gn( 3OjL|n箲KȮv0L0Uv UܩU~[GZbQou-j)-Ɗmʨ"l6kٿ+E/B{ƛ7VK|yt(RF%woM/>!8}y2nU&6:MdL4:)^Ƒ0&XNi1a O M"/qƊi3L?C"d[mV5;h6*o0faE/@7q[\V\2dqɐc 1j$::2B=}oMCN+LIK!J7G-%ƶb'I>#&la8kC.7WX: s.:8/w^qJ*ʉ+ xHo\Z)dFIUn4EsU.We^jY^Lm-L®̚U^ŝaEp*Ac$ƂVfpx 'D*;6&mLmѝU#ƘJ<]vv;Q!ʮ؅3b?D%qMLn>% 0|#)= c(8W"nAߣ_SU;ېzâp\z9g{us>[14Y3r47/JMW;8ʕrpZ'Ç28cWk׼NJm) \ T 㕞T X%%9pE#Ii )bVL[7 GezRvp{]zpjguڭY N=]^CM"Dak枻h:=m_h0x|_Yx~$ ܓAI)_ɴN覥ùD*#Zc| N쌆'q|cUTr/k&JF=}BID1u[}/[,Z{ 3meYnWᣴ^z6A*\((J _BкJpٮȺk\ϴ&h<4D #ו@i0ǜ1Ƹ-o@p&S-7Ehl:>ե 4qp Rx%ڭ/_%he?nI'8n6u>p"Z* -U|Kp]"Worq(Wn7͖߂jMѼrUϪIwHo2'RCYG.h鋺Ro8߭;Mb3fqjG&ZQ\=%1WG.;?B^Ž];;*msFk/] :L[G^i9|UWV*oVMR*g7x l['y;{]Cq c<8 3DKY(7ڏeQ6RT fJX[OY<^G^>: Dot&pc΁5 ~ݫ@/Ik$Gƨ'cmhhsÐY0&=ܳ4I>+2Mz5M녟WLy|Q<qh ?KN ǗU.ocU[T$B,y<=zW^}eg1dB,]Ͻ- A*Z4]8WGbvLkJ` ,;6$oGN@|dpU}YULLb4kvP*) ):ޅ'P]DoCBA?~9P XpCʱy61^I?E++l%4f|MqMq68ϖqeqS7NK碞$2b߫/fl7 R7E߀.z`W5V{]|tlދ@IfКy.i0ߒ>\@%_RJ] 4dufl};xI+c Ju]s WJuUzBB0紫k\Wj $9 piŬ&aAa;x2G%wkn?)Au}M׮]v@h%T7l۶2 }R {ܾE= )wہPףqt<_U/grz3d#x߈79s~n~>?/\Mٿ]x+.zam/nKzO^W;ǻ_84੕S7FO_Xʕwy4No۹r[^<PCR3% 1OP lzzx,2G}MOAZ\HzXTbs tCsێ*%N}X?¯[slY^[(Cv6-e0ȍ. Y;p3Y{״$49& #S>%E^cXlYD9Jlt{ºO]`6ˈFA hz5L]B-{u5aH57!p` ܁ͭs;,!aaƽxmJn*k_ 1'fw|~Lu!.{40Ģë: CGn8D0z%C!|<"$,㔖UnmĂJdv!>hC Wc!Qs%ן;i|2͢ ѓ^3"DZp'Ӵt ׫sӔ%$0MҖ"=F֦AѽOuc\W`2^!MeҵF0.$A8 .1JYm$\BSxa!b,v`̋{NǷҸ\q?pgAjwƓ/z4"a9:(Ɂ8JO/2pӶo-FÐ _vYIG~/0e-!KғJe?Nb Xi( ʲ0|?ӄy~M 38S5t:tF0XqQsZqҲ8uQUS>zG;oߥr83O9x#;{GW;oqT3wjw:| _s;8z $fDRT!b ,ŤiW 󲚦IR)̓"NqVbMjRHbxHUE\\Tǩ$ei/@pjê=1Bggiʌ71p;4'z |σXwcDM4 g~Y^?ԫU(LRK3Ơݙ'bxK|᭷F^#:EVmG(MCGϜ6ۓ68qkz[_ ^tBr?6y7Wwu񹳏i^ẉ]@z$^YMDY9(^Y3y)Idpc.}͟:;Nwy0a: aaZ^X4n7YVn7[-]X\gC͆nC4eRv[Q,u b4F[FtBòHACC /nQ<XZj݁(kqQ_}]ck+`vMcG߆6oީCZV31@O}{ 'M' 7 6606ibl~CQDG8qӋ^Uh}t EA?>E_F?~4yK-ywo"TUZ)>̣#Vc >Z #`tI96eiyC4v8ȥqGTӯC9Xȓ-ÐZgΫ|>إݸK;?@wwΫk+:vڥhE̜=ۣhqM;E'E`bPt m.20USd\wm؍@YN]E1zeM'Ixٻ5M^S45M^Q2Tl悡cP&-~?M~ ίÓ. !Da@8*Kѧ>:{W_ _`qcu}j6mѧ4Mi(I)Bpjhm"'Rql㖔<' xa~j5^MLYXo~nawi Žq ƙmeh5ט^v=M*V׃dCntDŠ2Τ̥Oz=L~a$0EQ'.*@Yi8n!<W< /UL&?8e((~2g#[6SʘִPdߏ<Ě D(*qMQLiJ$"+Ţ=LZMuj2wF-l/,Ae d\6]WQ^^YZBp8XAOqW/jWa©jJA7qCT GfGvp/;'Nݗdkۓ},_'=\Lϝ)+LCiJ\#TE$Π3 $Ɣܬ^K+Ny hw&E幹쇠N|87-,Ϝ+3,qs$4QS@UY pi@i6=`9WC`@Y ,bbvW8ӗmGwFw}!tkx> yO?=a^ok9Y7,^ K%OiOəxģ4˪>S㍻B0~T8Ƶ`"B' <"̃'q0όêhNGP Z2$gG* yq  ur Lb. t3iʚ(y!< qxYeyXUU!ܚG067TJr9IEGJ,Bm` r-3:HRUA_q5]@*:x3'd M'mo)Ĩ$K,K"D׈-jG8e) X"!]4 e'noܸ$E)\Oq&s(- BFa?<C$BJB.EhjZ{7Z-^"0R fbƘղrƥ`O1̥"Qy19wHY@H[(2 @c+@ICґ|sAI9KP(fPK^fc_u0mL]c I0xas9NKN&ra{Ƹin1X߸.RT!,:(=FTڕHikvug (B#+%Z XkLbL&q0|_ 4cluy#!jh4c<3}y +piб<TJYR<Es8 IaaZq8f&@[|4 ǣ I*HF1cG2d9_~i#tCVJf.@dbzaUR5\☉0JgęDp45)q$ m6pHPu2.I0<[ Ts(#8cZk%8tR mֵZkƸ0>$΄Қ8/ }ӉʹqZjR6FI*> Ymcvly6]fY ,{aO<\B|'fAPM;ӻIjs~$b_`e t&lxq<$፝sR=W*(sgv&WL(u.09úYCHUԑK^C؍YWVu-zӗ/3vE^nooׅN4h0 wc}<2?n87_hRlmZ[]z8ksG/_f{2t{{] O E_.q+* >?wu$Ek|GdzY {z0L&'Y5ﴯ|Jy9b~@9* kNAOi/X, {u-E{ [}M\~u]Lj#85*WJݷ\-ݻ\-s>zh8sÏ_EMC4?Km֝޷\?N}#^&*9ۇ\oM{bq^,d mQtL~M  MW Tq5M$weE}ҡ EcC-7j?szuGVW[]=uy} ay_;&!KC` زEDžc_ 6޺_(Z]?A[xraE/ xmeuO"1d`/юJ֬7d$>ȳ.7y~vzp5}ygA~ixg+)G_Ƹ=w,EsxFK&ۨhm85kٳ͢vnٛ^j 5ԴgEM#v׼Ďa=WMީх58ºD#DE6 Z^3ceuWXŸnA]QU2}חu2*ǃaU xp{pw4'{X͘]9ȶ)Zc 0\J6tu[]ð~ê 麮$0ĚN7[ťx!P]K/FGZHOiVkm:94q嶢@(+˛㧉jY(1fָ͘Y ݲ 1֡~t$)c?~deMUR}Kk㖯5ցRYe x ů !bRKUrMgrtڝ\AלRu]s cMvvb VTpΛ6.j_e9U[;nP4m8(n ʷzōNҿó͢MIUŴ4fK oyKA~}2[>jNh,*%UZwP0,.l֨xVv!+hVy( huv^Rd!j30-+B,y3Y؅l\wum8ZgWǾ Sw 69_EX~?'aF8s~!8`"Q0eL$&键9Lgno@&nN8' S`qaKS8yQ*yοDFEٻBH{Ք_ک,N(%&IcsfL0@ol&hU\d{xOQ699⳵h TJeygtL%Dn̽[;:'QLۧף/BKGi:r~j}= Z姗 (^?2z}ȯ|W)EVdI:8g")ٸHq1i1E}nYRLI fxqt\i:.b&I6N0KH8b<g |1.ZQ|ID|8dlObaZU>'=VAhBٴ,&Pei24Ynju@{х6 Fs~~֨7oXo 1 q6xe0PSYt=g{WL([z^"ɧmssmsYh@\bRGn/㛞Xh40zV4B#G41ēq#xJW s =yοeb୪:-M9]{D$[\TՄW'&4Z[nhew*O"|@DFU,b|%&j PH{SOY0BN$8ܩ$/-%"$y `dPda`/z &M")2#Bpugxx8,8\f`b.-$dvutcc ɰ,'.PʋVS\\Jd5Xv/^8E? $ 1%1I%Q1QQ?J!FjhYmRC0놦D_He$ + dLQI0 .nܟSU!6REcI̖T%  Hϗ0H2Ω( I.#:F"vt"ZC K`t@Hp 32RHg *X3L V@e#ǃŅ:-e&Z}w/n4=7$!}ff|XXlwt<'49]Q e20P,aeJc ڲRO PbY*XV&My,ضݖ꺪6bMn$5a31@- aڸƹ=_a(%a$C78d:Gp )  $'}pإLv'a*khXL4\s'mqZ+u6T]7iaa ɱvtB4V`̛ZRߎFȎH6 i\tջvw=fb~ʕ._~N'(МCђ 2#9>P,.IZD)yEQM`kUjHOi DyYkY[~\[@ [pzscY߂%;TxǕ,nܨbLzOapYK3:Ę:8rZ*;+.8b2@,_7iDpWşg!uQ-sªηnM]t'%ZIi͍+wllbR'4[_P;~EgVX3 Wih:!oۓ?w>$Iv)ݝb?kv{@Bu_󛣬⬇ʚ bUC&S…^c kM0Q빺jCs[,itCB1gŲ蘚jTTW(J \c&4ݚmtQԥM eA,K,傚QJ~r!2YF2X՚qX/G'5>yVϫy^3^lrrXß۪vU95k_7B6g=\G_~Q9!=Wy0Ebu Ei\ol% t.K_z?~Kԗv4}o|a2\DM <HT$AY#)<]-`<:uri) x4WfxlדMw߲ۏ,+^RU&9?$)c8]K?<M/ĸypQѝ%姞|'rw>O;ViLn!m7n{PQ{btŋymgm+p s!Z,ՕU]IhWU =WQ [u O!' @ {ݾ|c޵}U;Ͽ:9_7ܷ\qo:w6{i ;|v+\yYyeD8SEbPe=M?C;woZ]YaFD΢bP>\M;~.&vPVo&`yS|gg JsPT֒TCrP NJCl LAҿgx'BKnv1 [ (B hO[mÉxwB3%(8;(@ۻN%KƦJHJ8aH83~0!g{aucd'|vԁPH%oٚ >1)|,KW.z ,K;7iy@ZNe,w/ց&eQtxZCA |"Ǯ0_G ѶUb4<:> v `nm`GqqFV$D>{\FeٞLj-,n9ʹqEY QRIlu]Zն_zOicKKDS{8Nb6v1 %vg@vmu2?W{Ji MVnvDunQt[_ޭ?B$'.M7Ȗ ڬl{?=6G{ M5qM7/’ڙkǹFA!D[YysNz$T[91 Em3H0Zyd>u* YY"M(I's]rqZ%T蹜wzYljeY^hx~y ѷUx4&t\?]wyvmLv9niTo2%&")03`Pp_m 3ճjVꙞ aa:1QLfK*Oj~upꝩhϤo~fZ"XjFA*Zhi?뙝Bo_K+bFU"&YH 76_Bߥ /I"!4K 3 $ $¯}}%K|%EA}'{HGvDݒ1u(dn1]cg~AZq`)go^?/p8|yyit4Uge_jYתŪ2Vu/epO6,Uz8u-+tp3W^tV~r4H󂻮HGսܼ MwӻOy˟-k~B!C=;r:NR5 D+ o7^ի2-j۬YꙟV?:3d١7$뿻7MS G;aY]Y>w,$ Y:n#E3Yӷ"σVʠ|߄r0).9un[|:S· qu(n晚mD*(B԰3`Y ny{@#UV@|tndk2䠞m Gzfi%Aާ#kXjl7hscl:Z{1QdtJGN83ub)%g´jט] p)+ȋ8YÐs0fD޸s% Q҂(MhCq,>[sp9H>lGIlux2XXg"Z)aJ("ۈ3k~PBݳ~H] /D(e=O^^l^_>:L煽Y}4Api?7 &e< V.Lʫ_0w8^R[]N+ٗ-޹j ?0Iv{!GQ}X\vV%$ 4' O Z"/&Y3k,jS(qѥ/z%FaQLwLH/ۉ"7L[3k-hҩӛ >ubea'N4- {PHR Sq0ǡ3tzЩ88=>Ij-"Y꺣jΣ]6ݹa62pHf$4@`98~9B~ px)# ߟUZFu R)aX&[mcvq)`<|D>hgCLf媮;s_}%WpXqӬg`{64wF Z)F)c\W^U_swuZf8OęuƼ<),)#sv*,G4 !%nr{^2Fi#%M)5߼LR!a''1h*# :s[N\*Ƹ)?U*eo_FFUߥY:'s)p;D}dh0uU9¯+ml;Sz,R0:8UMԚ\41rd!v)Bآ{H)+8s):ݡQ(4JIux 4@$n칞\s  687Bm7*g r]O  mm' WYYk5JfB!R΅"p4Mv(=TZi%x;NOǧ Oꃀ3-$td $aqEI%n-[̴Z`LxH?!b$ELLnZ(ͬl^$~eJFNmnrNEFWvSJY ϻ7VY\,欞zR%L&jşxhv-@t&{o) ʵ/H`-t\ Y!5*^׳z s2 rxLFߗ J^}~q…TJRi%@/ Sh=*ڜw9矚0H9)Ii?SE/}3|6RU|#ɵ扒`c}!'F3NI&g2ĈK!1M);aj)S4JNOvi)TOETX ܮ,^Wr7fg6|[xv( bQ0J< |lj[ŅgB7L ˤb #V)@I*C} 1R@&ɨyiaIҵRA2N8Ϻ<؏@1qLV7$_6~/f4>vё֝_x=g弎wv ے,8ԓŪxYخ^q~%? B;fY, #-@*66sܩuB0IyĦ\ZSll_A]τϣ]Vv8ԺYunHyREQ~#FટB~qtjf<9ת:תuNup0q7n]zʝ'ǒpĕWXxHjgg6Z]Gf3g3 ~1g\tts[+@-7oTu3)U !TݐŻLQz^Y-`0X|a'o9 `Ue1PS6eqK_6'O|^7`wnqP6eĠ ~B8sȲ'!SrqKf1kXwmiN~鼓EؒaJ-➕ӺCg/=*G e_@"XKFdRw/ָʊ`9IpneP/v;UJn#Iciw: F''u,t zwQt ._::o`0se>SHO e=8SGlkxn06Mƅz[f8қ#=bR-йfY^(Y/RJ)L?R;pjq5WZř˄"͙BhrmޟF`ȹ`tNҍ9g+ 90BVrAh"{]p lvB ]/4yk i2R矼%Dʟ jÎy G bɮ4> oa4;sZeݾZQx~CcrpTRDԎ6lH>ß=c:LPRt[헹֏{qgWvvm04g~r\x\Ttʕ|/o*l>ߌ0`-'~ɉ8f4)8.\&4_x x'>.%۝vQwPwbMOݳ녔00\p/V ._z^'d n@5SuNvwF lQ|;7G'T+q ڲ$52Yrm=S pc'ٸ=khۍKM쏤(J 9񫗣x<~!HYW* dd&FUU0yx^ܖ `{g)ο đ%@rugA7829'8GgRR Q7U!TRz)a\E8IU!Цm( FO4'*ʻZ/2[]ŶΫ UzJ!r> ٥->dU 杌ZC=_Sc& Nxv]VuC;4)5>ֲîCcJEec֔K{]h mw&\AyV@ED4==R\$W Ry%hwz,evz={]A{$FӋ k4"Xel`qC2mhj`匝 cbͶ,BZytk!d$SUҠVۖNrpRRt}#an}&%J cŞDžMw9%\9o5pWj7~@IJo߉]F2 ;*BiBx2ȋ,գ\_odI%_TEtN#@ܨɖob0 &`*DK=n&d;!<97u w~YRƹTR&gwy#Q "~0CA//s;S1 ERLcVEԪ)M9(y՛̋^rzt^(_Jy0:_}5Ť*`=wO/t[p ~tm`f|'w߽b(~mkvwn;]iJ Gw`pe\MBqr:|t l2MmaCK_>AْD pt.^E.i~Gj^+,L\y7Tj Kq[B6Q2xu_|"dޭqMtν9| Ϛ0B Ynf`ć~z>z, G[N:;I-7y&-7Y|El_WESotz4˽sO}̠sd-ٕ1ֿc}c̫Be"Ã_L>ŻEWjPا_,vj O;(:W.Zk޽<r^;;;>hφŏyW_>{ȿ'>޵2 w@orvsٹyqR$9tUq-uWkٰkw"oz>:;s?v{zW7iۓ;oJB$ |} a~ A'+7۷qf8sq~j7 %)ŝ&Io87Cj wi|r3r\QsK$2qz@Ogrg%U6lL""!DJm-$ixpnR5;;=ZUi+חK1-x1Iɠdt6`:Ir9 Goc&XhrLjYSHimvvĬy]Ӛ4a'fGwHQh?)Rys8P/:tc~J.=KwKrBI_Fd" F"nK# j[<ih1}+|`1EW!3 |b1Rro0R5,=".i{v[$wS[McyM/ 49 6ASN|~+_3ϼX7v;'s3dD '~?WLFۭo6-ϹY+*I@ fzD45t@+1gv'%ZVkr=0ћ~Jv&3UUoU)fRZۼ9{{o^pQ$h8}]=ۿ8vvF oտ:p9q˝o1D",դT媔^RM\9Ͷ6i> ͑RgM*~ |w/nlt;(K,fpݙ~ #Nnwr1lu:n!gfBx+lcp3z097~{rv]Ia GäO&IFv;IVe1OLɬgR@bgI^{k>.twSkp `樯W|iAjy&ѪY${JrUlEf~C) Įb[|f?sMܕC|{xx;<ҩ˪:/H LzA 1qܝ2 ;Vn냌8]VR0Cܟjډ|wyޅN3+Yҩ&#ðJ MrVmbəIZutoSׅ,g`Kdys˽NY*v#>( :.&s _PRA_RfWA;i{!R/p]vY?z9\XBPRO_*`-NV)qʇN_; 3# ?\#m3r#{Gɠ ]ܠ8tIy4''۲a0lE~qSp eK(qYۆ4PϪu߆`A!{|ղ"m˦WsX!r3_ke4J/j&JT̫9h1 NX7Rf[#GL(pg`LMMg[<7jRrHKЄk\l/9}m#m9_tLgܞ,g6FHbpJݺ L\bi0U(դZQCIql%s*Xjҭlsa<2/*d'4Qr3L/2>ddAY7 X FJ2Às͉ n'򄋈 n yw$8^p I=U}Q #8| QkN4u}%IPrR,MzKn#wr]mMWpFtvHqAr0ƙ}%`Ѓe.[vB `uVȵPř| BGp릌V+9 Ʊ]%G2 ,}WXťVQ 2EKeb4cUQ<Ʈ53ebSve k.(K +CHܴM@镣O埣8'97+1ċ8x;B&=!${K3ƈ$nw0.P*'Y;g1jyΌDPYF.#5PZG @i1bL"[ Ha xDR1r?N~_C$ylCI"C,Ib[Pz^\DiBF7x1c~DsDAjHKEŘzoL22pvA:r]"Uj`>c nJk+GfwpIi|λǚhu㰱QY(wcY7~zy\7s"亙 eijn>ލ7#SEO?'D*[ij(~ݷT}:Ɋ!I/8xM-|T=Q%"Ij+g0; JRHٝ,h欔Vf尞~k&]8#ҼsҭLak8v(yc|A@JsHݻ==ksػ6SQQpbܕ4EZ mt04 `^pms1Rrlm7Fz@pG˝QΑrՆ=([*I5+T9$a;uĽ^'{{1Er M°׏^/{vv{I۹zu]a`{r2Y{;|_(#Ia(0YН >:"e^s\_2[mfc@٨_+@nSrYqC@U "%swC%?=wEaQa.VaAOFEnŏ=hccdh/AqQƏz"G/R.\$lMjC{__Yu\zƋKEdm;-G\p ڔ*/rrYnJ9C/^$}/gcO rMYծu{ڬr|kaY+@ͪWXMqj,]|sTW nܸq7QIȽ7O,ry]Γ8!scP ㇞HF0Z}Ho0Sm$$+,)SE!XkHb?f1)FaQEȲ"G9;VjVoRTY= T,˲(fZO< knEQÂοٴlg0;7(,`RG/6Dq/n9-Ǚ6flfRϪ*Uڠ .׌GxW?YEFgwq늋hZ}uQgćsNn(2IMwIy6Ɔ6SRfFBN*~#Ǫ* <ҩT&#": _'>3G(fqGg&s=8MA㮈3;bɝĺ:7ji3i' 5f-LlQ_؈Zۿ_xbUv}amH` Gl1U}g)s[0xTmD#8Ark0WpX׍ce$IԿ}s{BE^n xݣK,:^Ψ+Uqz?JK$Ibzu`4/o56͊0![`g_g]~Źa~n;s̔,}i5kȀT';=Re_jb{f=#b]YwO(p Wya2`%7Tzv$e9A\cAY +å0V]UׯQ̌+L\}ze }ɓs{xwJukOqz:ƊjyiĴ3;ν0͢Cf6Cڬm^nw][>:=kq)wvyh9׮5 +x]_v( "~Iq(]rΩ> WE9Z7ngNW?se8\.w޵nݞެ*f.f^I9E}S.9S;1\MQ6fTğN/醡sW |Q^68ڔq]%Q*MW!Z$WPi6@(o5u!b2vGa.pT_!OO"  vRvpe>RR !Zk Ws3j%>ͪ}e6QaY"+s3ҌvW;w>xt`q([i3{q_ Gly]'2ˊ$]tx$Kg(twa{q[0q[$h|qqlV!Exۿ۾ ߘ{w/RDRu\Ӹ,΢i-F@ԪߍZ?C΁8sAxh]?o-\^io~㿆kbPf5BvV<\U@!j6X̔8!:M*PFMf,k]bfyH KV HID <7b~?427axBҐ 094}e*Ngi3!F~3=*<-9oY1aZ4aJp)R:0̲8 CYF4LjwIz笝g79xhMAz1=G/ig*Թ‚ۜZ`[P}L" (ʹ<]tqL(b\r| 0*"ET̫9M;J h绳zYok.Q,UFП8`Y~ G_]`tq CNJ[\I^Qze*Y٨gu&ZRupO|es8 1ŢX4&PZ%Bw'*5`H[PNj7 j| hPնmfu Suvvܞ`OVC r' I!9[4_ӤKS,흿Q80$l%t6.J苬~HIFB9AҪu([*[jřf bREk*}ۿ[N+ SKfAR|h4^W(F~W^o^[5>Nŭ{VZ_+[Qno;o8C}n}W&qʒmY׍1 ZZ$* ­Y*E炖cLyنiZeϢ"c?O/zO%岃鲪pg YQ$Ja1Po6`g b%QBͨ~ bYo7d.Β- Qo7N+ gG~=sbN4_"'Ay%H0Ҽ('1]\ =qܳz'=l#x+z;ybN˸IjjCS/9<\KL%gLpMdnT'bsj6&"_C*Ԧ6xlᬭ6c f]g]y(St 0A&q1c̛HT$?6:řeöK-<1{(#W(z2~0Fk |dR#)E;i20>ɧ~` sJ.!?9.:a{08mAz^G䳄4LSe,G[r۲[al0LH $,׆ ϡ3%˩$ =U"O?Pbfn[(R ZriAaiIAe"%G\ITXDyW% +:7Jl]BE yޒGLP<&M|R ym %*m’r;󉒒 iAHhW;=!Ii87mt׎ %?!c b:(McIa]Ij_Md,Ahc z%4FI}<)8 ^F^}ǧ$Tv~c, 4tIRãX@l)sA)F3F<$z2Ij25Rÿ=%AJtqBJ;Ij/ 0R Gs8Ei֑ 1 &:e8TWe{âi%4 drvS9R)}p}~'ns7Z&zC,T!e3"݀1&JWlq|0AGou[%cJJz@$ŹQO"Kȵ\Ϗ^LW2)[_ 81PfY \^GT&{ 5$eR|,PZ)YZi ι&J#@^ 0-V2l~  +CyAQ[B b \»ޭ8#pƤa R=FǷ. ŭc{q1|+kH92p.8)Q$98qJpWkhÔ.#mtz><\< 6((=@sr|d,'Ogp&KAvSJ#i9UUeFeabJݮl5s_Vfᓯ~tg .]~z8_l= ivC#Q< vMI,壏>x1bPRe.$(K-1#+D1e+ᅕrFqsNp=OyI|Y%iwߟe;.\me6XdUD-#>Ý9tUMdLYS4X59 oV <˿ {(Td :eQ6NtgoG!g)}5RWH)L}*O8 N? cfywopƝ]ڳλFއsyy78NF>3u|6rZ;#CοʹHEq|EhCij ʹDUE9|ǻ,.Xk t2?@>\K٪MW\]>p/.XQdrUIsttrUI[^нr,+B}:CK>1e"N??cMK1gqp /Ί.M00G`i_N(!V: |٥Mj&zOq}faqbܡ9s ]UZm$CҹQ؜\7ά6]m.bW#E8 \ O!}-wyA^ɵDpko덅O;] S{/y>I4`΀|Pڏ,CYNnZȲ(ʼI̽֍uc-r|n78;|Az1L6j%,bţDj+M`'?lά|ۍMq6|BԬ z(U]!6MZC|/ żJUUlN>\Eg!xW_˿_qz{NǓP"7KCK}'cCs2&c >ǿɆh–O>7xI׻~ NߐupOz%uzi3`&E M{>&'!CHIԎKXa]+B8%W>媳ڬgX`٭uXH06l7hOr10||·;n cvv?n}ӁԸsټE5 #p sZ9af7n3p?~~v/@tޞeZD^qY RK܂^GM bB@Di¶f[oV@I6zKC?||M;mݲ,Vt~Nuʒ?lu=׳ݝ,n4V,)TJ=Pv:DITKcWL)z~s*UZMTl:__ϏFW_3 f߼yIgiIYq.<|gQdMFa(e=̍WQ}JYRϹZO5mv5yF\iϤ߼ 'B(9q)%MRqk 1A`]9|K}A}A+''iԐw@ף{vv۝x^.@FiXYZ7+W 0!]7ߢ@q>R[Q?OoܘڜBeu;a, ۝nV#Fab]CN9qpހo@) 9՘VaWڽ3U)6/WL*Hz*m|ah}7ΐwzm77n;oGAKK*0RJMv\:@zzdGE7nmx;ʵƒ9YHu+/bMһS']jM;KG:O[SI㛾'8Cy$<@eY<1{~ 7Ͽg51ZcͺM5nG0\Su3$A<4yn{oQV˙9;O:|VcVB .r"ʗX5QT0D7or07)a ACa&Uwg&jypXڵłju۫kז-G}лt{/];CJ<ֱR\>4#]+!GB)ؽٯu<ȷ`pHʲs0_ _rtt|40c 52zﻂ  k4>))_EtIcxtS%X#>DA}jֽ pOܻѴUO^pr\Q3Bb'1!ƖBQ$44Hgea9D@G(/f \=o .=MT|&@ Do  ;sJD疿_onF;}Bk)'Ł1vW85)8i>ƙ`Bw1 ۀGo>OΟym4zkum4v|~t>M:snÜ9p^|%η;?|%iVjuY=SR-VmS9˽Ň8CPs9#6%XMC4,G!N"8f f#TBTꍮJ p.T]ETt6H,A\/vfv;`\ͱL:߄h<ƑCxye; tnֆɴ4(F+d_M];EJEq~]=31l֗;;Br -49SR9,ac|D Cq5J x.0(rԗɆkSJi%ejγ)%I\b<:<Gcxn|gŮwZ{CݳHf|Ղg>zf9pe/88rq ~DSY-at<Ε{=//;Oz'yo2xcU:B?g w봆lsqnznup8wczϢȟU~*mS5l&SU1`(Ͷe:MiL JX_` F3zs.yfwAwtQ;P" {i& wpyyw;tmfkm,Du*Tf;_N۲0+YN&qÓ_z1:{| R f i["XV ?f`ckgן9"QuqY&ket4FK͓d{#:q^;w^|/: !xwf, .4& oIMǡd1Y*- ꙫ MS(lԨU'=ʥ+i C%Us$f>Y 8t x㥒 A LFŬqNTGXXꙐl^7͡)lf@Ȩ~UzjZdgMz]Epp0G3L0Hl6y>Yߓs=zluWvÓjgʘ4$w_$%uy<T?V(J( %^GK4 9-}UWQgT\Yd-7|Ѱ}jW˚. NFQpR FZr&xhgھnG&JEQ罢agu5Du Ƹ/{|@VgieȷJͷ9 EvG88s&Ήq0nE;**o|mUTv=_@5e5 u)^/VIY0^͟(٣V 7(8.;$ko!B 9vI(.7L:w~`,ҧR`hO~llcBBuQ2~Gx@wI/w7"Z͏,KQOňw!cLr4(Im!4C/H~Ao"sEre{~tְ^9ȚmcUNSb 6WHAx|~SAZ>xj}w+eRz,m?].RDr% 6]9~rĨqG\-u-[Y+̵Jr,$ܲ<38! o$Pk87 ɠtԠoDR1iZ 猥ZZ')E-5Dg"7dĜ(c < ͞3k:9/vs8R_BhBWi>]Ah: ئUƮe#vkDugj-{;UC%ZQZ[kGIF(WTɇJJeϕ˖nOk!u3cb$ci2઼K6u!VZJiBZ+~8"vfMI>lp-%C ;l1VA8ޯ~#N$kz;/3;?#50^cmPG\xW^@@c4to+%݉?}hr?K#pmm785/gjln}"V bR0U ,Uքo$0CkFk`muj^d|qK"U-{NZ9:̣0VĮxիn\gWAhAha`N2[Di%^oqc=b43D0Aw/\Gp>kt]aڴM+BuNVEy!{cMO7?UnSN'K>'NRzի~*MRq"yq MU_Vݔ!&ɦlǘr\ q)*JUͽǓ}}OI2UR9+G[̆kZ{ qPv~omn!&N諸W*y,i%{a/7>33dN5/fo 6r&\u ~;89O9N6::v\Rc ϝԣVb+mo?p&@QN/ͦ@=Ԋ"Hs8 ))NEv0wֵbU;~ٿ,xn=WRܮI2V#%~[+R!o)q}J/BDoHoPB UBL0v)?*wQK)!xw !vt;|n:s6S%ᗫzHVN)09R~( ;turgl| I0$ͼle)/E|1!N:qIV&I2If$G; FqI/X칹w⧺qW'Ijc|DHOb8[t-g3L'D%*=Bj)?ޤ@2d0G!Y[VXͮ=Ķ`WF#\c- {D<&M;bD6ϵZֹGDVq" Zd ͈:pEA`Y.WMȮJ| OPPeX[Fp?ѸUiixqo~eݝ+dk?%yg},yO_aY+n8wp[NF~ms\ ՛e 6xp^%CB5"r9V嫼-[||,TUJkFxhhIu1S5#hT]MvMf=H3ܕ)QJPR?'GcmeK _&gv:|2 {u|2-Є̷@Z ~5U)ڦ̥}?ys5O_O ͛p/Z4' _ prVg9D}\unsrs^<7~V瓝OwrTEYo$ 8ҏxRi8 KGЧϙ;5i;+~'_v~K"Etc ,e\{)§o4ge7k#uÚ%,̭?ؼ7Y.(KM+ cuHu& )X,W ͺ WT#~х W^H@.\vt4y^oxq"&4g 1Jx ~X0f:6ZX0ND\H HhbDdTiU\I%L =E zbx4h4ׯ7 \ jy[U)Wa" d ù,iƤYZ-=x1l FYQ)K&x6$ˎg>^fos`GVdE߭9tU$TxQ6 -!'AV\fDWP翌:ݡ0] d`XqG: [y)Η:p~q00RV gz»);`^PS(qFKZ)J$f|yMְ3)-Q̕d`>{v_[-c$%C1ȳ4C8Og};i Lixms/vad3:߄tRr%S`p4HP,d&Ia7˴9txvNsW^}{=mSGQnEQQ~Y͢p]V2YYD묖cI2<$^>P; q;#p'΁FCnRdzB[]Vi *:6bf=QjӻfI y9uy0_o0/ǃnzX4K4 'GJ6e8ń!D÷'98AX?m6!@ڮ7[]\/j{?v|2+?錝۝ORnZij/):/sIe2L@` ͺ]vtIMiJ6x8 zeӾʔ*[v["og,rT.Hr[S`Dv:J Mvvb1.|S PK[mhqʸ(*F$Ǿn1wҬN~4'r<=ϝ3qV+W/Wp.8EQz鷻a&g r 8 sr"8YgU%զ"<1|מ>N'߉& ;NY V-cܰUX^}'4lIk߉Gqߎ'yn6G;Y9|?VVL&U9iw>J']}Ս˂Ho@jSզܦA4zIEjXƖ ȐrN/|{Zm~K(]#)i]bgI2GsXϕ$N =`A^vah0 &&Fg6 ;Bb~4H$ۃAj Ρ-Rc)ln N$F)>WyYK|^4!r}ckkr8v[D9v^ ;^v^òOǻtG'LJ] nⳝKs'8q?r *29`҇!-UZ6m?Tb7bU2$2.eWsdп + ^涔2a,6|=yRy#^a{,$ej'3Խotۥg(b, 몞W!6K~ʋf.3!.~/QQM$qQʋR^$~9cIDvIôm*#9kꌌpٕЬ3ND;EDeHm{/!_T2R)cWR vS` n/ 7 cO@$&"f>w+ Hnhw?*}s 'Y);.Ki-k=/˲]ZV]F-jʼ6 0| e6^KI?JaKqB0 Џ>B,{Ji5&(paj@Yξ:}tx y4{})9 0dyYyHd`탁 ٵFC@A< _2FnB^[?=E$~ߑYJYiY|?/}(OS ϔb@Ǵv[ͼ$ #h8R6z.Q 6-!}A~OS)hn⃎M sʽ.UY4Dʷ<~Oݣ7/~ G?g}0`O9şRhK7qshuGl3LMrX l%4n̓ 4\w];uZ)זKulɯhoNmy{(傖@lKOjbTJ{5o x]ЛVn>§c@sq aFF6]S1b m#DvȘ>/ \=ƕ⢕$Ju{[];ժE\cdM^ثw;g>@G{I c+ZZ 3O)ƀ8DKRtm I%%Г&Ƴ9}bR2 y<<4Bcˌ1|PJH@qD,I) F= ?l qϷ Vf?ä{"J) H0p-tÕ҄sCGIvltڃV-EJ ͸TZK(;82(Gvdwiʴu^D%^F瓨TDvS\Kyڶ)N=JRZـq\ 0&<R$3Xa_e&2V*/ JJ"Vm#('Yk8}w7o7z&n~WcacifqUMʪRUf>у[g{Dv/7n`3$nrtjTsv4IYk/Z6fʫm0ŗ lWB W"kΓc1Fll7ZwgVE*WZ5+G'w:狺ʬ2,̮MuWzMne3 rouDu_uW⣣aޫ~Hcdະ})3% H)gR )3y~gz&?s^upy7o7}5vkۭq]cli eٟi"i- Jn)OO12`5Lpn26 9حiV^|!(Yu5fAHY@l0r`;{&U9u#3y! ؂5(8Q$xS8Oe`A}56rۜ&6Q+K+n&ɫXżntbӖrRZ9"u]CT3b$"|A7!8q-0H)FRPG}'z.< wBȴR C6nNKG0JHr=vS]?@>)/+}c35/2DDZ+hF:RBH6KR$5e7@dȈ0 C0'kR\ BH"k R 48ԏi#㖒/j@ AȲ` 1!}ȍ4ϝ!4D0 y>GF`y]AIP%QVc aTF*~li]AV /iZehiW!:y@)NKY+a-k4F)|*\WI/$E/.<ʜN n;: _X-WUar5իOm?Ǐ]ԏ޻"X`gp~ӔUZ^%ZmB!z*(ƌRf:qp ےVghVŨWJ+)T^9j~ESO7U7,#|g4u; Z{xqGɆ';jbR1:.{_ 'Rkv0u}tYOoY( $.o^i-R=|'{=f\<.6 4sۭ޾Tq8,_;x/ ]ȷQ,[M^40NQr:NJyнY*o\yO:w'Mt;Tw9p^|Η:N36զ*mi5٨rYAK'&¼,9_-J# 5V˲"1Rl R*jS}ǁ兑OSlvhsK7,F1 vݢ02Gh4J,[$2)@P}](/l(BOi8<ĉyooiҫ3Zfjop5Bx.]VZ!"4;62T&_gʰ4ݯSohM0$n᝸cqFvxsgK&BJE-:Ϧzr]aaߛ͖;{vc26.IE,}hV? ׍cB5܌H܂@ Qe\mRqF̚xTҚ(,˶&A@{ ޖh-T쌁WLUQW;}WrB y #Ape@UC0f:L 0+,fج \*"]e  fr'K:|=q^3e>PO^OLJޜ;ŬCU%_ KlT#NPMI~X%_Oϼ{EJSe*ӂߞb unF'Nq*.N6YC): |3cVGr dcDvi% a?-Ddlrȗqjci[9@5\i 'e,-)ZPݻc4SL%9iS\S@J M;|IC>ErbR̎ p6=88S0#tH(vk}BH8!Ȍ PJ x+YBz^Q(m2 B\!7(p@oXфF!"?Sy$ki+YHqB)ۍ`{B !4O=XfK:jδkY8+nΟ}i֛Z͉ћӷ(disfi+eͶYϯ&j<3'Sg$ZoZ&s?z8۪,|YsӤ(͛ԓĀ&t3%0K@Z. J|oh,tNXXgĪmh?gBͧ!3-A8hyz8k]F4veD=Xnt)cY+X%$&}ƍ֚ 0NeJq 0|OH"ζF!AiI_Do0y$H.J!i4Ŝ߸wwӕ1 moUy.8`ehxX &͒6qdRJ*CH!ȃ: %ΕHA헐1f_ l"VZΥ@ܜ+8WR^=F_)1@s8.1X 2W;yJY&i%@ HH4:;B'#]y4ʖe6pRƦjy md3qPu(~K_ q>%/v&)ʽS)ߗnq >i8iM8qg;_8X&ݐJ FĘ 5NYr+F-I[!V PJ-eRjjդYZ#'n}oE=u==w?-s2J.!ھ/>ijl'iq?=5RQd 9 &A\J'Oݭ&lvr2ooH DM´NCQ8"Z$=o}YpJ9 9'¹ˢ-QLOR@Œ幤\0 Q.`gy>9H807w4x珿;JrƒVs(~ߋ~cL Uesschq MS crBJNm[yb!8t=kO,T{v\)'.@q]?D.'6œm͢) PhV %I},U>'[ ug*I3*#h] .d97}Aߺ LwOD/ rڼFXg Wqy]dcUOSG.qhp@_pj2NOG#޸t2ӻ>=]×/;=yNʻZUɧ`<ک='.\ =hx ǜqOڭ_H%`N<`Ϻ,tGwx< v'jR'jӔͦs*V]H3zkgelvɋ7G۟pkw;>=فhEA_*ydzN5]Ĩ{iugXWK #,D/({\ w @}J.fMu.oH$b- D*{MiZxGz8ϳnLYX/}4,h7}N ~볳U,=U2>)8+!{Wh?-ǻmg{<@wKyut;q݇v݋\Ra)_{WTy\~znAGφ-R$|TySMQP=l}B۟ۃۼozӎz=?Ozx O~7矟W{1+}3ƶΗ@RZ)0@˗eq@k>;VC6<:xuCvNڃ!1<\qrq|@UI6B >Lm\ՖxǾdjvu]=𺹟lJؖ qo*N5y'|<eo#^*D.18~YAU5oygYv* 9Vy/EQ 7g]΁ :}OFH|Գ n_TA.䘠BI,Nn?cMG#?Z[2BʔtanH Z ]"RI @7*SF6@sX`JGO 2!ܸAD@VU;A8Lt)}s_ad 䦓YK2bcǭ:e\O^pBQ CۺZJIKNE |^5A,Y+pJqv0 |8ė¶{^LQN<_Z9%TrJލ}+g |XCsY9{tsyz?RA p>EZjԳMOtlT%{D%+laDaa|zzz:~,g<b8t$ΎO2FáT}'0BOXGeayGă1O/!cJO0fG)[{u>mmm_ڷۆ t"lrl];vb݁tp(4D7cmr%NtÀRV~cVnWwz^:?bW쥗.Ι6–dDyQ *pQ$=CWK[?o/z{xpܳW΄mjg/8Mi4gRdA8 .()Y=-38uGN\[sIY6^I)yC*"CK۷ 57Fc9%gNۢRav=]Ƅ68k+sCL+ qyakt( +F#wz;Aa|sh 7c,ebPo?♴ d9cAp;Ʉ[t/n5p~E^֬n QLdl J9Wbx2"ZK; D+dw(ˋ!n`ukŗ,W}/o٥jsvnn4!&vO$LW,L '0"#B}e+Ȫµ/(kOpe\$RN ;` {v?N:|CwߘN=r>,˭dyh.c8KB͙efr@!+0<u@k?K.c\(&DG8m_!YIq3y=TuQMF~uS[Z֜晪Dunbg`Ϻ˗tO޳(ovvO~nѕ{#D>8k.NٽzQRT+5׃@n!mdӗ/ok/:ݬ+q&y@^mUtm-<e*B M,9RWqgwlvvWÃOwN>:_xWuGsfΧ8|>kwXOb3nrTeN S\lMRFe[6uJb 7U8>º_1-A%ƚJ|Muz?{] ΉyK?חK~8 Gy'j'zɾ|{-/Vd^8 t8v`l^|3NzzmV _898lNdV_יִ/rA'͵5Cf W)b,o,h纒%8s. x^1={f7 &K;|^pRL|Ӏ=8IAHsc㓻:؅ w5?n,~\N`4!IjV{VGzݝ^nogQ9p/·LumvmzכuQd󅬤+w] (s3W6}nq_o6 AŶ=Atr;ߧ֋U_b'^oFX]˦_nfkԗBj;Qr 46*:*VvUW ׈0p#ި'7/-ϷPIj%I9Q"4vefBxe(QO L"f*Lf}QC9ɪ)4w`="R|(b X?~ݗޔԀҝfAO\{AKEDK @K.O6e,) ]Xj03+M0gڅn&J0Hp+ \Rĸ@Dc+!)EݬIM4e%Hӈ+BʺU}?1fh= Z/Ks$݅͢h '|U"e8]{;AA?2!gvx)J\ =Y W#-00\a%a<%#4'cJ2e~JWҽLO=&Iwy RSLʆIx89R|TQȿe :Q[LfLjzUOiltB#Nyz,Ǖ>JAM@.PG(;"ȇ2{#ynlY-|^}ͺTB ,z!fV)yױԷ&o^2/- PV G ˩nh K5֛YJϬjN%KQPxX9"[e%WΏG+cLWV1#g!fF$U[]#7 :Ckj6KEBʼ1E_>d \N%nSRu4 !r6:qY~(IF ,'L B[`Zm3"uC0Y><Ɖ\Yw#_39+AC }&ll2V6 Y !0Jo1VQ6c\0A1EnoҼD`@;-jZoRVD~V?eKp{ƀ M#K眷:6ί;ۯ֖n*EfTel]5M &[,kC4]V7eSflm5TjUCdlu4*<4ڦdANZM\-m"M|#R5yԖUuMS6U&3dxv|^eMo;!N,ʚhQ&z\`Q;<+Σ X^jLum, $I+N^:n F>ߤè(0VodE?8uRF$A;bm:Idǹ,߶uEf=!HbE@K)4׮NJ(SYmJٙVGpHOfj**:JH J"% Ca^ 3='Օ{(޳3.RUtNJ, 0KieP^jf=.NGK뵋B]%C=2 l%cƓX3PUh<~e8w/sS X $k¤ף, v r]_H!" ©R{n㸎GxޱN9p6U5w;r~w͎3ݖۈj~H $Z,MLxUlu2[t꺚_[[lղDQͺ^V1t o$HvrYPV ݲ含C3F"ǕdOЛ",w9QIuܖ6VU HcG(#լxD1F7R6K+< 闩 12F*PJLHXhk,R@)K]+U K>1!DZsaC@;c>:.8mE׹s~:em"a/Ñ$kï8A(yQDվkH+@HcxBqdm@6'Rp c8 !4 E15XB8#4nFʚ흪zS|lMSe^8hP$l}y3|}tӹ|oL8Yv}̲`~Jo,L0փoMK_'q~S0|7nIq7ͺ/Wm'o7KrYrl}Jٞjn>6ەDN[f+.֛I.*f:p\-G52˓8W B l<)1r0ٔBoQx0)Q G@đ ,<+D|E[wghgǝuEN;1ېҥ筓'q=XYmB5DwqDmnIx}C kb̿KwH9zJ"m۟|\|ZJyXM|9cg7*%䯍!լڨ:l-cE۟~)d Wή\rv ^rv w]ywxw؛^zm}D\ʎ8sUͪ4qIWMԹZ1ت; x?Wvx螻w} /|/}9t^^z|:?}pϡ|#9xxIΧ:XzaY:wVm7fVWFĆM2Kt=u-XGmնՋJV:BoqU^Tu\lVjʫOJ-Bڞ1k0f}_|+z=5@:KYAaa[ J:A 2~6}3C)|OuTtcYvmvg<~4ž t:KI1E31><`ĔiX-9 qsAB ei\4a%J}^#p9Bj*xkqrQbZ)hrE|;MURNU8{0J%K|o ,CuttҚ뢀+ݾR?򒷼e7?im2wvz0H]ydGfU[aETIxV鐺|i?ㄨ(;8eCy-pd'_œ9z[;w?q:?'ܚqdf]O=)׮f*erd49JMV*RwNO5,u %7˼(b25SETy۲.i*3ZZ5۫PMȸ2 CmGmdH嶖"F#RrUJIFMZ!RJ brXܝK2,!'1׵ B.&Bhz `VpXqi01UQ65[qDSyʺVWF)fV7u{1ǏVf(6EYqYQ({NjԶh]Ŧ^M]6*_-Ktߤ^*Tx%9EzhBPfGF͚(bȿ;< }g K xœGLjӰuMNh  El9md*5rU+yX,0nx)ǕbsQ!%8UuC>ĀiC@=]J>c\*V>;+;<GH .ҍA U ZL6بΓ1]hX$A&rks0Jm|^#z٣^/SRzL~0E>A2T4)c<$p(<FNc5y:"ƥ .In2b>CIk #' ĵCR*oIDCHHQ򔱿F.sc4",@!`8sɵD N*<"<p{MR0M b\|o2]2Y"'."5 BK\ 23-q3w@e$E |%(l# |NeIfA JdXĆD"0 $OgtI +f9G1iK+Fo,D2ABDþu ϻ] sf\7fRr)#H*XE냴\eyJXs֞4 @j-KCDYdynk82]J<0bhVZQz;FH09Z3DYƸRa$Aq+q4y$ē!0D9Dc-)T 5H:N[rހo[cG5=+7c?8iQ._zۀ햔47fۨ]نj9j J8.Xg/Ur6Bp5_rՊ+ I+rYeQ.ϰ.&;ɳKŤA,rs֞z-[VA1N@XFEz1ܻ&FZͶY.&"_mͺ,de-nfhn5yV7rQkNIvo$N"f,Q^Vz*^yhӢQNfkج*u:\S|!3f*rj勬U|aZF5BY>6Zj(fZn1A3_0IB2/VEՌ`ΪJlem9"Egfe42SZ@m4SEM?Ү7ch82`oS,fy*ӡ&/Y3z&ȑf\j FS{wγue69V󭅔?fQY P4\6n֛YKlf|Q\`z]+D,rZh`4"d; ZND XWbh$$}s: 1ua gA3G J -aX(y.~zwPfyXh.v[ÈBy$xc|a< C3Z)O2[HV;IA>CiY!kyN LOc$8ke)NOGhI@@+(iHrF#yT~Ї1q?T.D"XcՖa5ZJ5`TgSWa:f N7 }"['p0;nx !R9HqXǷHxO8 ]ZtY;D<I dJjC8L z 1L0(Ƅ HOOxlhy\պ}A3)ꄀ}48Tv&wjMo*7 sMh %yQ H,Rc.~ֽK$ $3Q0&kc~-sLxrIGS Ţ8SR=%$ Bri_lY-+FAj}nWAeo ۄ(KBldb0wc-\fVmˉ*V eq]fRmKov#Qic?f3u#5{!N՜Y bΕ pd8P&Jg5[ ߗ3]=g8IJc:h"v wQ^>I䥬d)|1Wr3m^qޖ_ndq]f3m 0Ѡ?}ssktv-B|0`6R_}9&(;+w88Hrs듪2%ģMR*Ԛ(r]2^i5 OJW3 v8ߍ48 ;YQ~yqWIbe/u" Â1)<_HI> !zںIykeYfo{c>__%,s"c-m%y]\r0(Eq)6ZA&;_q<,^]tΑsBosƧ'x4-qz}94}:RuoV} CHVIb RDm'w$[P֧qo BADMQf!X竘S$V [MYg 6F(Wke*+y5SJ&v]uzK rfey3ʑ-V5JԳ xb,UMm` F3ĺ^mȗjYڮ*[<]&"+|Cc@$٩y:"MQ/K٢,2%99`Mf=g2ԲaCEVB7zgP&jV-ms{3˽ Ke8g3 S Lp4^ڳ36]w}26g9#r;(=!]a' / Oӎ'A?*^>g~ Ovg`8ڭA/al] ("y6mh. 9:tpHƑLX d+;L!ӾAѨGE l h*Y $ww1K%Maia5:r ƕ\uhI[WFlx鐁 En1,"F(Ƶ2E}z(}TIIĒI:ID?NAJ.K? [ g Iƥ# v q͹(î1S(~Cnl|`~&LYC4H2eU <\4Y6nl4"r q0"2&IpƄٙv"rՓ4HIdH^rg/͎OdT@$ՂY4_?Kx|/co35K٧BHY4eEu=uR(l1ؾ5V/ܢ|jYqL٪IW yߏ=qmx8p qR]W8wCo  oRCO+seThʺjUY rgebYzTY-ϰ>f<?omQ5Ξ zyvEOAיM* _.7Ջ ʚ`R2K0جy4DUΏ/=OR06+ЀɦWy.>QP[G!jU__H5cWKwVjj { *^ |'H`%itygGiI5_4f!eå/*NhW,܎Sl_n@;_txhfl L=-y=[NQ:0bZ3KV37LrJT1U?!56/eHb pZ<pr+  rAf~Qu g\<p8O#;w6~)ahcI{qֺ90puZ(%?@NgggWN)2?hNuinoW\NRA>M i''Y!D<'-_$-;eC!JrƌQm`MoΎԬ仄|PHrpҶO/Rh.M'u0y"aĈ!OΩѡŝ$!I j==9W\)n c;v1@^ L1\!cٽ_b,)ӌ.qS;x[-c$J[ł xW0SvAþC6(݁{/AB\&3 [a?ˬK]h7R7]̪zBi ﵅LK2/:ޯd +$ ĐLwL /FIӄ ILkdyQR4 ։B6K` JvR+!.[} z8qӔE96+q+C/wF'=.7o]u.ίѯ&9q&dž̑sVr*Ds4ι!{A|턾0?h8([djZ?$;w^uRNNKG?VFU`.8_Yg#aOMQj<6=-;z!hʖnu۽(Z&km5$tf3Be!ktMV[(ecv &n=+[ mbDE.K`K6,+ʼ ettˢ( .=B! Ƶ} DXZ4ME`6`p4g0ȕX XYDZQz'@u;Q Yz%.sΑq.:WAi畎RmTU^6Uj*VJ6jS7ո*UjW&Fnb{&P*fS:_a2]C=:7OOo/z7]g=O 1ΆτO|ón?d`-(yҶ\~bAthߏ"GQ{Eym{~]ű].O3;>tfG{ojE"Ӿk*Z=4B&en_3(D]Ip:pV`$^,L޵ f1UZtgWfSm~yjYוc:"谋l`-&@:Yqz=^YjZe5.K>N1EsܪX1^x?pu;K4=Osek*[@G$)lbN G"#kp˙9[^e(ukx=?WZLba4A0򫟡r`&<@{.hoѬ^oo|ۣoWl΍Qtu v6tcz7n~U{~\Aֽ$vn$i~69HU\GI3mP9#GZ2A7Eb,ϱV-}y7}wKgw6^l6ch+&9lHZ ? ?RlnC׵ȵVu_EyӓXYfI`qWgDcT5st~f_xٔלEz-KX{Z%RK"yq;G3;yU.eyck;xs7yH-B+? jILgF/R< >$V5 ơC=sr4UQO@6O 'f6jaE IGMYF<0M lfNOtw/ISӞZHT(DwIDSRB=?cq`~6m2uw4dZ `PM:> @$s%QD{_+ŋp[/JJ[QWq5eۈ`|`R]n/U7bjb=:RcwR?X[m#S Ŷ+A '\pK-R< %T1 ȀAD:+%=6!^Zc 0i&Ai,LUe -0`E%Ay\ƀdS %KF \2p#풂 1"ad$[Z4A(,>E&Y \R (E$C)ϒb| 0f@VŻsU 9YVVtCk7KSxqNJ,"K H+,$qq Qnq;QG6(.Ƽ#śkK"/CtoFiReݵAq``F"EJCӳ J@ 9.H MNd_%v)Z,ˢXODL4fJ%E+ObJ,3ˢ(++1O+aT Bay\E'S=֔"ak[|[l*١N8מ5t(|^W'4>NYȔna* #VO0v4NOyGcʋo5 #l|/hHC;.ai6e*Fe>B;# 7 ] D/$FkS+}!*kibgƵ?~-.]#?k\zPy۟m?xol_忑fx~_[RP3toFtL6ӗ.܊+[|5Y7ZlU/jZ|98)^/=ZQvuwbqgv_.GnA#lC! yu˯r"v.  x2#9]T}- =3!Qom0*gzEz7ᨗWc02]ym-n3 ȫ DH" lVU 5$UTv H s;(PqT.#&Yvd{b v\nT,*j礫ii T SrR!iդ4ub6Ax,ͅi:0835ΉsUd(9嵚BM \7TE0.ir(8IL0%$K$5G6*ɴ1tGY)g *8 ^UAGYv 4f?ʜ=Y'3)eLD4\]Xxf:݄[ -`:>IWw!(Ic%-+tok]M<f7L &E/bq0țbRn(O$ŢBdEiH\QMdɪpvЙ.'& iZBa(t=挹~J`eǺ.=zz\ ;+fYv^#֏` AY$&"L)"o@'$ AV0 dy![( DB+1ݦ6lXE^}tk(-0BjUUW5_Bn<-2f@NZ,d&ɝ?b5QZ}p^[ q-\}6Y'NtUyd V CQ첫uET݈n7EotX*-L'Q|Dc]). +Љ@"mie ݘkLFMv5G捝~M_Op]'nZȲGdΞ{WҠևm`Zi^&R=5h6,dDpl3فALuoӹ Toơݱ B<80ӛ WkF8ZH/ˠ ORL[նnn˅grz"*Kk~QHBrE ӄعS`ی۩vRjI~LȼDJ=҅lwTIu9ekeJȜ+a$,ȊcYe{%T-;XB#!,.B$ɪZȲ\qeDqļ5άwmI".W]Re}/i-ZٲDdL ,T0Xirą *1CśtcZ204^mIu٨~UZ1)BƅX.GEޏB͊LU 9Ia㭡^.ӥ'KtcVL' #=&J]6Ֆ*Km;Nyv=2m1 n{!F9< 5{\5A S]qv8FWzU ؠOō,$]UA3^/B8dY?З7Ϊ6qM:JlӸwjya E&9dD"N i?C\}t\zsN n( :Wwx 4QUU-+iZ$IWd5i\yֱu:ַ]0T|FUCWmyV2#1 beX0lk0$:ot,aҚffYF,,Rq%$ C[e8b>0,_FK%,Ju'Q|]$I'm ̪K,'Ur kN:9Q.[gDwǧl!mnb0z%U#LCCbuU(΃Ȳlq? LdLr {!\ E~ L$Q䩁.2$Az&3$Xv4q'](_p[1rm~| {͵ 0͠8q._j4DÜY_OupS=Pެ ;#z 0CzTQbы+|(!%ß2GxTS96Zw$$I ~96t] ~MQ(m"j^)saL'A͛vo]!W2͆&;+/_Ɂc KcΐFp E5fZ>P+Fi2zlޱ׫Ti\ԧsVjh&~+ WƸBvG\MGVh'j)^jVId%،LB[nhm Yi*sFA)%S7zzM,y $U+b&̉BR.-K$J.#YV|")1.iXvJ^TpIXVU DH9%E Trf^$$+24Ac~?qIE#ȽmP-&C [R)M\3!,9d&iZzj X!Z ($+{f?96vY69vVKb=:z{j%0<Ϩ`3e˖GZ<#T}ٲ?b=>nYw=]ZUFGG<%s0RB(B^V f!3A E)^6'̬ HZ#/ t%s+b\53d恱%Nј CgRHϘnLTZ, -*1V + Y)bDlIl~|Om#=F7G~=G8`m0l>l;AsϺ'-̖NLE&E؉Dt(5+"l$X 4bV{f%;[zj(Dk{8Ffm v6 Ї`)y5! vE-B4A;6TmL5sNTo+y7UJ2vLgNo(u( +jN+m؇Xma7r^gLXRv34k  q-(вu`!gg81ݐ"Yi NccFiW7fU25>^*U1ɰmF j}kDL h-%[YC ULID:r+{7[2Q!7 @R c<0gI"D@"3iFxL".L$%U(TbL%dI8cȲsoKҤ$$fo)FSDH\~X\TA3$KV0b<%8w&;Sd$OE [ymmhө ŌU':H$Y˜wB!RIfׁ(PjC]B4-3b$l>()B{ψ) ɆpL1E )[+q IYI%[i.`7#PB& A*q^pYPnĖ[iA*.8iesEpGQY?WY]1i\ E(U0%Q[(Lci#s{IܓgPNo_L۲$)>a$V=)S< jkTE!y$Ͳ4JX|S(GU?}{IL>f\(>O.oL"|m@dE{¸$]C5ʍi5,ALDmZ]j8?z } q2+BUKU$ٲ(r"a$$*#<]WmTaʼnfXV$UUǕ#(ҥK$9Y' nde'W2n eiI2:ԬTl A #˥-8lyfii1fq)r=.ql&pFZB-<ʹYz/&p9UdIKLNU;4׬\dL~ݍz޹7.`SL0>PY9N1JQ2u̶ܘ& HVod~Yfq57cs"aZjbi^88'ÔeEדdC'Gf_-FNHm0m846J45y'bXT*DCC+`\IRB,;_ʲ,˲,dqfyE嚜A1$G1-7f8¶C;9봤LG*NE&;+-h ^3os3%跧ǂdYJWƒw mq|P ueE ro?X=i^$m#SM*߾^U`_v "HG^ɐp 07n40Wnebe,Y;PHv}sm8':+[yG A ,& @ayG?6܉l[.ZD6۶nqs$I~TU>tێEžm&_{穯mtLC~V3 祲bq!"uQ߫yLlqt0/5ƊV7֭]CK$aؚ #YzvҴZ]idZ4JDA= b-M8HSw++.ۡz(x'=QƚKZ.t]e,1kK 3/ $VсJM1(ța IAa_^Iܙ>:m`o@(- # ӹ@2|9-q&8" E й%=I8Votą4YXQҵH4R*-LM2GsEEiu`LEa̰%vTUP҈%B jy>hՁ1lZ y}pnn1RIƖ _JnWTQN⨸ʅ8fVSg:q{Q,mت6o|,kҗB3qˑrI~b*s%^/Z~e$M3#ǁE$p jVE#A(+#QZI 1ۏcשYIct d We/ X.@0Ts&`/ *>x*@p < De >$t @@6 d K@q/Pz("PUA h`h:x?&NS!`6a{00sS{+/VU ,o6,ll :"Kq*pVYc}5kkYpo >5| ?,>\ v_<8YۀoloSKN/~t^'~_/< |_O~{,cC Un^B)-~RH@dه@6wσ}*xT^ \UA%Р@ ʿ> M^:jMouv7zUL4s4b=hŇA@ gAkWAAXmRAAm A͂.:X] %A[AŴ AWm }kN]w7Eg@w|/]@ws ` suם~M78-{@o=z뫠]ڻzd>c=QÍ'*hVS[AOWA]Ko=sVsA/@/V{MÃ]zq}Uqᓠ>:by?_4<蓛Aǎ>5>Ч>gA_xGA_NA_ @_낾co.}w7@=@/ ^'{A__>zy/c_.Nvݠ?,EЙc?+A :vcй0&O L3fuoy`u 6`#;6a֍` C``l:%%σ7 jl .<}3.[v`;`w`uv-l,؃=t5%=ׁ fS9CGJ`{(ؾ`p#ؓ&ؓGσػ=+=c`/{6 *K`u`/@L6dzVz0,h`g4] c@g $ʘoti1 za4Ʊ+9&VtWtlg Le`sy߽~z՞uӽ]]۪*ZQNNokyǎ[FSw?ovǃwtz嗞lࡐ" j.AwDi2 dUuٔ:z3^uw7vW%EAhPF ٲƉ;Nu~)0畆#Ysd͞O("M k.c2DFr ፂoz{W:zL^;Plt.Аu$ż t48e;6AzI>^fuX?|y!Yvfontawesome/inst/fontawesome/webfonts/fa-regular-400.ttf0000644000176200001440000017356414470000401023007 0ustar liggesusers  OS/2_W^Y(`cmapJglyf<hhead&'=6hheaB$hmtx PlocayJXmaxp% namen@Clpost9;t h_< # LfGLfAWSM!@9 @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@  @    @ @@@@@@ 7$4$ 4!%+9Zabcdefghijklmnopqrstuvwxyz#(##%%%%&&&&9&Z&[&\&]&^&_&e&&&'' ' ' '1'D'F'S'T'U'W'd'+++$+P"$.>DEFY\]ginpsu| #(*3DFGJNRU\e IJMPR[]txz{([%:?ACEG\},16AVgz!#*0<abcdefghijklmnopqrstuvwxyz#(##%%%%&&&&9&Z&[&\&]&^&_&e&&&'' ' ' '1'D'F'S'T'U'W'd'+++$+P"$.>DEFW\]ginpsu{ #(*3DFGJMPU[d GJMPRT]qxy{(X%:?ACEG\},16AVgy3.- qha]XF@?) s740/. z K  p l k j i h T  ] M < 8 / (     "* 6::.00`dbNLRjjD^FZ>B^fF,,(4d`( "Bjl..(  !"#$%&'()*+,-./23478;<=ABCEFHLPQTUVWY[]^_`efghijmxy{| LE!!#%*+09<Zaabbccddeeffgghhiijjkk ll!mm"nn#oo$pp%qq&rr'ss(tt)uu*vv+ww,xx-yy.zz/|#(#([####j%%P%%W%%P%%P&&i&&_&&L&9&9Y&Z&Z&[&[&\&\&]&]&^&^&_&_&e&e2&&W&&W&&y''_' ' Q' ' ' ' '1'1'D'D'F'F'S'S'T'T'U'U'W'W'd'd2''+++++$+$W+P+P301Q234e5]""6$$7..8>>9DD:EE`FF_WY;\\;]]<ggiinn>pp?ss@uuA{|BDEghF2GP8HITJNOQAERTfmUV WWBCX[7##F((**33\DD]FF^GG^JJ_MN`PRbUU[\edegikVmnwxxWyz{{| }GI~JJMMPPRRT[]]qtxxyz{{H=4((X[%%::??AACCEEGG\\}}U,,1166AAVVggyzjKKGmU7AA>MMgNNhdd42222SHOBCe\\zT{8l44W55WSS5Q2OIfrBCefAE      Z  ""&&++,,--..3366BBXDDWWWWW  22##))2aBrRBn,vVjp,Z4b 0 l B p  V  *~|8blvV(Pj Zhb X !""#F##$%$%x%& &b&'l(()F)* *+B+,,,-..n./z/0`11t123 4T445N56P77889:\:;L;<<~<===>?d?@T@AjABZBBCCDPDE6EFFGGDGH2HI<(', 'p$#+'(<=* ('@067!3#"'&/&7636767&'&'#&'&?#&' (8%&&%8[ ![$$d  &%88%& $$ 6'&;675367&'#5&'#7   ((}}  hh@.673#3#"'&/&7636767&'&'#"'&? 8%&&%8_  _$$  &%88%& $$  @)%&'1&'6767'63&'&'6?6 02  00 ~D----DD--) I0 #'0  0--DD----D@, Z@67!2'&7#&'   p l@<X&'1&'#367674'&'673#&'&'6767301013010150901#0101&'&'676730##5(5##)##5H5##)|  H  ((  (  $5####5:$"5####5"$:|  0  @)16?65&'&'#&'&'6767'&?0 02  00 ~D----DD--) I0 #'0  0--DD----D@, Z '%&'47%6~%   P s P0 !67&'!!67&'!(pp0 7%674'%&% P   s 0+=6716736754?676=&'&'#67271654'&#"3@" "4#5%$6 6%$`   ""&"* "6%$$%6   ER1&'&'&'676767&'&'&'6767673276=&'&'&'&767X;;;;XH9:"""":9HH9:""'1#63""""3,    ;;XH#$$##$$#;;XX;;"":9HH9:"""":9H'%%""33"" P X;;))))&'?376'#7 "" F\\p QQ @)91367674'&'67&'&'##5673;#&'585##$##5lltl  tt  ##5%#65##Ȑ 0 '"3276'&'&'&767676'X6EE6226EE6,8888,,,,8888,<446FF644++-9999,,,(36767&'&'#671673#&'&'8hK1221Kh8h?2332?hp21KK1232??23P@#1367&'#&'5367&'#567367&'#8@1675367&'#567367&'#8/16767#&'6732&'&'&'676767'&'K1221KD00   >>Z?2332?X= 0Ep21KK12+*B Y9:32??237 ,%67=&'!5&'675!P p@3#!67&'#367&'+pppp`@&'&'567676767(--DD-- 00 D----D((0  0@&'675776/76'&50P vP ڗ @3#&'67866&'#"/&'67  p@ 667'&'67 &  Np ^3"132767654'&'&#1#"'&'&'67676320((((00((((045;;5445;;54p)*..*))*..*)=3333==3333=@ #3#56736767&'&'#6758p,,xxA*++*App,,+*AA*+x47167'&7667&'&'&'&'&'676767/021K6+[ [*21KK1208H?2332??23:6 6K12k k0DK1221K'32??2332?Z>A @@+1675376/6767&'&'##5673#8nw e.'&:x%%  $$1:&'%%@Y201'1&'&'"1&'&767676'&'&'"'01&'&'&'&7'676'&'&'7&[$#; 96G >&$#: 96G    >&e!  $=   !  $=  367367&'+x6767567&'&'567()==)(66RR66=)(()=R6666R66&'&7 [ p @6676&' "'&7 wccw aaJK pC 6'&'&?76/7z   y    &67576'&'+    67!!!&'&7!&'P  /    i51;!567327!!&'57'&+!6767&'&'#"'`""++@ `""+p+ %?'3'77#7!67167!!&'&'0ssssssVss     *ЦLЦ  `  $T/&'567676676701016#"'0'101'0101&'&7675&'&'&0101001#"'/! 5>2 2>5 !/  # # -A6(' # # ((6A- C%,,%(3/'&?'&76?6776'&?'&/ D o o D5 vVj i Vv 5  n II n  Ol U x88x U l &1E&'&767#47167632#"'&'&5!&'&'#671673#!"'&50'((''(('""""/^#$2\2#$123K\K32  |  @----####11K3223K   3B%1#"'&'&54767632!13276767&'&'&#"776/5&'1177111177110!"<=CC=<"!!"<=CC=<"! ` U9////99////9F::$""$::FF::$""$::F @ 9{@ "4?JUgy!67&'!67167!!&'&'471632#"'&53673#&'673#&'673#&/"'1&547632#471632#"'&5@@@@`   hH     p@@@  ``@   @  #3&'67576?67&'&#"'&5767'&50P@;EI"  $&Ua)'*--+53KPE(1Xd"  N  $6716776!5!/'&'     0w\ \0 Hnn,9/&#"'&#"167!%1!6767&'&'!676'&' S PP  p l+ p@0@(R'76776??6?654/&#"1!67675&'#!"'&5476;67&'# ..:  d  %%%  pp .ņ.:d   '%%%pp  3L21#"'&'&547676367167654'&'&'?76/76'&'&9////99////9F::$""$::FF::$""$::FQ////////1177111177110!"<=CC=<"!!"<=CC=<"!Q////////3B21#"'&'&547676367167654'&'&'6'&'&?9////99////9F::$""$::FF::$""$::Fqo/@1177111177110!"<=CC=<"!!"<=CC=<"!/o/@3Vh%4'1&'&#"3276765!67167632#"'&'&'76716;&'54?65&'#"'&75471632#"'&51177111177110!"<=CC=<"!!"<=CC=<"!:  ,: 6   9////99////9F::$""$::FF::$""$::F[ $     @!Ge167676767&'&'&'&'67167&'&'&'&'&7676767167&'&'"10#"'10521#"'&'&5476763 1(( ((11(( ((1$00==00$#  #$00==00$#  #"""####p!""!## ##!""!## ##!"""""""6Dao&76/67676'&'&'&'&''67'65&'&'''654'23&'&'&'&'67'67/127'&/' P i  #$00=3+*!p6L1(( 6$%61#.R" &.1(( &" $#00=H6*$%68%8 0 R  ##!"Xv)* 6%$$@ " $.$ ##!"!6%$, !, &+05:?FKRW&'#!6767=&'&'#5&'#53#53#5;#5;#57#53#53##53##&'537#53(@(hPPPP``PPPPP@P``@P``(00(((88h@@@@@@088(8888(88O7636767&'&'676767&'676767"'0#0##01"1#"'&767670101|(0_8888__88$  g/"":9HH9:"""":9H80# 9/0>>0//0>1( )%4E:////:://  ,67167323!&'&'7!67&'#"/&++@ - `+@ -@136?6'&'!6732335&'&'#"/&+3!0 p p Dv!/u0uu( u  (3!!&'&'67673#&'3#&'67!!&'67`h`hH`9s76'&56767"'&6767'676736767&'&'27676'&'&'4'67&'&'&'&'&#&'&'X!++II++++IX- B9X;;;;XX;;9B -87UB'&!/##21>"+2&&&&22&& @. 21KK1221K  .@I11%%/+" -8'&?'&76?67% o D  vV]O n ; U x2 0Zl"'&327676767676'&767654'1'&#&'&'476'&7676767631'&767676p,..'&  ,..'&  "--;:; "-.::; y( &'3p &'..,  &'.., 0" ;:;--" ;::.- (3'&@'2=!567!!&'5!%1!6767&'&'!367&'#3367&'# @0@800ppp @ 09B63!25&'!!675&'!#56767!!&'&'567&'7&'67@0xp````0 4`lw#;67&'4'1e#&567&547&=6767='09013#+&'&'56767367&'+37;67&'##;67&'#  3""$ R"@G0//0G@0@  (0@ ""30(  ((((P(  /0G0G0/@ 4`lw3+&'67471630101365&'654'6=&'&'=70901#3;67675&'&'#&'67;#'+&'6733+&'673@  3""$ R"@G0//0G@0@  (0@ ""30(  ((((P(  /0G0G0/@ 4`lw6;=&'"1010136767#&'#"'+&'67367&'+09016756767636363#&'&'5%&'675'2=&'367=&'@ ""30(  ((((P(  /0G0G0/P@  3""$ R"@G0//0G@0@  (0 4`lw75;&'7"'1&50101567673&#&#"&+3+'09016767536736736767=&'&'#&'=6727&'537567&'5@ ""30(  ((((P(  /0G0G0/P@  3""$ R"@G0//0G@0@  (0 !?%#&'6733676754/&+1367675##&'6735#DD0 pD0D 0-2?!6754'7!&'&'676732'&1#&'5#735#676'&'0@"J"JP   `"@J"JdhPP$$$$ "!&'67!%1!6767&'&'!@@p@0@ 132?5&'!!675#"/67167!!&'&'@$$0P duuT+4E\;676;&'&+&'&#"#35#&'673767&'&'673;#6716754/&+3P = >))``@p 04`     0(h0 04p<N[%67&'&'1#&'&'9&'&'67679#6767967'1&'6767&'1&'53)$%66%$1 21KK12 1i """ )6%$$%6)    +9K1221K9+   y """$6A"1!676/&'5&'&'54'&#3!67567673+32765 8#$+ +$#8 ,(',@@@  )):!F7  7F!:))  `,!J==J!,%="1#93939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939!3136767&'&'#5&'&'#3#3#3#=!39#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9#9&'5367&'#5367&'#56?673#5&'&'##336753675&'#5&'#XhXX8888XhX8888@  @X (0hh0(8@  @ ";!67&'!67167!!&'&'5#&'6735673#&'@@@@@@@@p@@@@@@3%4'1&'&#"3276765!67167632#"'&'&'1177111177110!"<=CC=<"!!"<=CC=<"!9////99////9F::$""$::FF::$""$::F3M_q%4'1&'&#"3276765!67167632#"'&'&'167676&'&'&76'671632#"'&'721#"'&'67631177111177110!"<=CC=<"!!"<=CC=<"!   (( "      9////99////9F::$""$::FF::$""$::F>  n     3L^p%4'1&'&#"3276765!67167632#"'&'&''&767632'&'&''671632#"'&'721#"'&'67631177111177110!"<=CC=<"!!"<=CC=<"!  #",,"#       9////99////9F::$""$::FF::$""$::F %%        3EWb%1#"'&'&5476763216767654'&'&'271654'&#"374'1&#"32765367&'#117711117711F::$""$::FF::$""$::FP      9////99////9!"<=CC=<"!!"<=CC=<"!     x @ "/<IVcp}!67&'!67167!!&'&'3#&'567'673#&'573#&'567673#&'573#&'567673#&'573#&'567673#&'573#&'567673#&'573#&'567@@@@H@@@@PH`````````&/&'#!6767=&'&'#5&'#5!!&'(@(h`(00(((3C%4'1&'&#"3276765!67167632#"'&'&'76'&=471177111177110!"<=CC=<"!!"<=CC=<"! 9////99////9F::$""$::FF::$""$::FmX X "-!67&'!67167!!&'&'3#&'67@@@@p@@ "1!67&'!67167!!&'&'/&7676@@@@Q@/op@@q@/o0b%=&'+&56767;67='3;2?654/&#"+;67&'1410#&'05&'&1&'&'&56767;%1!67675&'!&'67367&'# .'  00 jj@    D--   P@@ $0  __0 }  | ---D-  @@P3DV%4'1&'&#"3276765!67167632#"'&'&''&?6?6'4'1&#"327651177111177110!"<=CC=<"!!"<=CC=<"!3 8  8    9////99////9F::$""$::FF::$""$::FE8  8  E   "2%67&'!!71!&'&'6767!'"/&7673#@@@ h  h @@@p    p "2!67&'!67167!!&'&'2#&'&?63@@@@ h  h p@@@p    p "2&'!!67'1!&'&'6767!'&'5676@@@p    p`@@@ h  h '67#"'&=#!6716732!&'&'@P Z PZ'2=&'673;!1!67674/&+367&'#367&'#@ PZ8P %Z`]s&1?6?6;#"/&;6767674'674'67&'&'#6?6'&'"1;276=4'&+D  4 3    a> ="a\ @ @9 8        ) )     ]s'1&/&/&7676/&'&767367&'&'&765&'&'&765&'&765&'#"'&?6;2#%"'1&=476;2+D  4 3    a> ="a\ @ @99        ) ) !  ]   0Qkx&'&'&?76?676/76'&/7'&'&/76/76?727167654'&'&#"3'676'&'x SR b 99 b SS b 99 bjAN- -NAAN- -NA@   99 b RS b 99 b SR bZ-NAAN- -NAAN- p$$$$R#&'&'676?167676767676'&"#"#01&'&'4767670367676'&'&#"#01"#01#!))CJ21,>Y::32?H8 K11  ]4AK8921K4*)B>>[?23( 21K)##  "27!67&'!&'1&'6767!!74?6/&50@@@p    p @@@ h  h 3M%4'1&'&#"3276765!67167632#"'&'&'%21#"'&'&54767631177111177110!"<=CC=<"!!"<=CC=<"!  9////99////9F::$""$::FF::$""$::F`   -:GTa356767367&'!67167!!&'&'673#&'573#&'567673#&'573#&'567@P  P@X00000000@  @(00000000!5=NWn3#&'&'676732#5#"'&=#73#&'=6767&'#373#&'567675&'#37673#3#&'=@ Z0P p  `     P0  0Z Pp 0PP0P @ @`p 0@@'D7673;!&'1!67674/&+&6?6?6'&'&''0 PZ700P %ZSSTTTT'@7673;!&'1!67674/&+&?76/76'&'0 PZ[ -- %% -- %%P %Z 99 00 99 00';G&'673;!1!67674/&+67536767&'&'##532#@ PZH,  DD,,  P %Zh8  h8 '9R&'673;!1!67674/&+4'1&#"32765&#"'&#";276/@ PZ`   E)  ( 0 (H HP %Z  /<@  h-8CWb&'6733673;!1!67674/&+367&'#367&'#67674/&'#3#&'67@0 0 PZ0      P %Zp@HXXX':K!67#"'&=#6716732!&'&'/#&'5673767'&7654'&76@P @Z $$ V    PZЀ #0# &&  'I67#"'&=#!6716732!&'&'4716;2763"/+"'&=@P ZP ` -  - `  PZ  h  `'6E&'673;!1!67674/&+6'&76/?&?6/@ PZa00`00P %Z00"00 3>ITa%&'7327367&'76'&&''&?6776/654'7&#"'67&'677676'&'6KK6PPD99  D__D  99  D__D  "P P,,"PP6KK6P,,P #,,P PD__D  99  D__D  99  "PP6KK6$P P,,P6KK6P1  "7132?7676'&%''7  >| @@4V{O0  :g J4 3E*.28<@Zj%'"#"/&'&#&'7676/6732?3#367&'"'3?'67167654'&'&'&36?6/YYL"*EE*"LKKF::$""$::FF::$""$::F0 < 0WWW&/0S"::"S0/&9  !"<=CC=<"!!"<=CC=<"!F # 88 # ,9DOZe!67&'!&'1&'67676767!!673#&'573#&'673#&'673#&'673#&'67,`h``    p 0p(0XPPPPP!1@K&76/6/&'5&'&'54'&#"'6716;''#67'!+32765' P X+$#8  D$ ,= /+@@ 0 E 7F!:))   9r,!2-02;% E7  3U21#"'&'&547676367167654'&'&''&514763276'&#"3276'&#"'9////99////9F::$""$::FF::$""$::F9 '33(%%(33' 1177111177110!"<=CC=<"!!"<=CC=<"! &&'33(%%@ "Ce!&'67!%1!6767&'&'!76'&'676'&&'&'67676716776'&'676'&&'&'@@@ ,)),     ,)),  p@0@ ))   0  ))    $1G^&'6767!67&'!&'&'677!67&'!4716;2+"'&=36767532+"'&=0 X   MF   @  L    @ ` ` `  FO\es4501016723&/127673367674'&'56765&'&'"#&'&#!67&'#&'5673&'67"#1&'4567%3#&'5#27673367674'&'56765&'&'"#7676'&7'&7676&'67101"#0  0    p+   ;  .  0   EY    -  }  j  j   j  j   ( j  %%  j        (35476;5&'!#&'&'6767!+@ P@ZpP p@Z)>36753#&'&'567673#73675&'#'567673#&'&'@0@@@@@0&.767!#3!&'67356?'&'5#&'3&/76=#3P+RQ,,QQ,oRQ?-QR,??,RQ-?RQ""&0:3#!67&'#5&/7675367&'!#56?5'&'53,QQ,P+RQ,RQQR?-QR,??,RQ-?Q++RDQ++Q q67763763763675676=&'&'"&'"&'"&''7675&'&'7'&'54?6767=       &&&   +    hv#h@  " &! m 6   B@5&#'&#";23236767454=&'&'"5&'&'"&'09015670101675010167010167501016700"+&/&76767567675( X$/.4F/0 ($$5V>W , "X$//F"`  8PH5$$35673!&'&'=67673567!!67/&7676((@Gp@/_(((00(ip@/_@"'/'&56?6767'?6    xx80xx @== P@>=e-.00-.:7176;67&'!31'&=1=+&'&'6767!# I `0 00eP 6  |  0 L3>I%4'1&'&#"3276765!67167632#"'&'&'7&'5673&'5671177111177110!"<=CC=<"!!"<=CC=<"!p9////99////9F::$""$::FF::$""$::FH3H%4'1&'&#"3276765!67167632#"'&'&'732+"'&=47631177111177110!"<=CC=<"!!"<=CC=<"!  9////99////9F::$""$::FF::$""$::F`   b&'677679676767101276701'&'#&'"763012767676?55"1'&'#&'#50 $1 #2$1 $2(pL        "    m+17676763276567676/#"'&'4?67;+&'#'''&/&'+"'&=67;2?67325#"/&#?6#3&'6767&'3 $   L$F+:8*'((   U# $   ((+: 0 %&'FHKK 3$     L!B'$   $ %!B  C K"8210301#"/54?32?!&'5"!67675&/&#ώ$$p   uu    "/?JU`!&'67!%1!6767&'&'!676'&'1367&'&'#%&'675675&'&'675  $$$$ ""@00   ""@@p@@@@@ "/?JU!&'67!%1!6767&'&'!676'&'1367&'&'#7367&'#367&'#@@@$$$$ ""@PPPPp@0@   ""`$>KX%&'1&'#&'6767&'6767367167654'&'&'&'&767'767&'& )@) 8;;XX;;7)0>>0@oF::$""$::FF::$""$::F  X*,,**,,*0$$:VX;;;;XV: P!"<=CC=<"!!"<=CC=<"!(2222.=J+"'&=#!67&'#67167!!&'&'3#&'6767'676'&' @ @@@""    ""`$$$$@(5@K#&'&'##&'!%1!6767&'&'!&'&76?367&'#367&'#"@" 0@  hPPPP ""@$$$$0`%!6767=&'&'!"#!!&'5 0f   7!67&'!0"+@#"#567673#53276=4'&#!675!!!&'&'6767 0"""  """0  p@x76?676/76///&'5'&?5'&?'&?'&767''&?'&76'&765'&765679B% % NBBN% %B99B% %NBBN% %B9.9M'M  &&  N&L9..9L&N  &&  N&L9.+8CNY3'&+"7;##&'&'#&'67;7673;2765!&'5673&'5673&'567^$0""0%^  PPP7""07g 0@@.CU!#'&#"'&#"#&'567!67675&'&'!&'!67&'!&'&'54'1&#"32765`g 4  E@`0'&:@%   p P ^:&'%  5>3!&'&'6767;67673!67&'#+&'5#767&'((  XX@0@3O"'1&'&54767632#16767654'&'&'65&'#54'&+"#32?9////99////9F::$""$::FF::$""$::Fy:   :kk117711117711!"<=CC=<"!!"<=CC=<"! ` ` cc3O747167632#"'&'&5!&'1&'&#"327676736753276=4'&+5&'"0117711117711!"<=CC=<"!!"<=CC=<"! ` ` cc9////99////9F::$""$::FF::$""$::Fy:   :kk3O%1#"'&'&54767632!13276767&'&'&#"%&##";2?654/1177111177110!"<=CC=<"!!"<=CC=<"!' ` ` cc9////99////9F::$""$::FF::$""$::Fy:   :kk3O21#"'&'&547676367167654'&'&'3;276=3674/&#"9////99////9F::$""$::FF::$""$::Fy:   :kk1177111177110!"<=CC=<"!!"<=CC=<"!' ` ` cc "7#3'+7%3'#"'&?6;2WXH92I8  p p x]]MM}0MM( @+E[1!67675&'&'!67167!!&'&'47167632#"'&'&57#;67&'#5&'#p`p@PP0@P ";!67&'!67167!!&'&'676/'&?'&7@@////////p@@O////////@JOd354'&'&'6767676767?356767&'&'&'67&'+73#7#;27654/&'h 0  B:  0 883      -.6!  *%% B:'-  !6.-  0 P4   427L&'#3#3'&567;3765&'&'#5367&'#53!7%&'!3!27654/  64> >46     .  ( }  } ( h 4   4:?T]#?6#67&/&'547#&5476;#765&'&'!'!%#!"'&54?67!&'67n  2 26 2  vP651'(<6<   )    [  $ $' "([ 56P <(' 4   4@ +0E&'&767##'+#7#&'67&'67673'#7+"'&54?673#$$##$$# 0 ## 0 ""33""    ())))xPPPP)3""""3) P4   4 ?DY676'&''#"'&3'676767376'&#"'&'&'&'&'3!7%&'!3!27654/  _  ^7S#::# S7^   **    . `  ** ## 4   4 27L\#7'&'54763!2#'&?6=#&'5#&'5#!'#%#!"'&54?67!'&'547632#P3  1 ) 0 ) 0  3@@@        pp']Ux xU]'p P4   4`0 0!!%#3!355#!``0000``00`000M_q7&676'&56767"'132327167230167673676767&'&'&'7271654'&#"374'1&#"32765271654'&#"3   $88__8888_0( #08H:9"""":9HH9:""/v     P  ? (1>0//0>>0/'  //::////:E4%        3M_p%4'1&'&#"3276765!67167632#"'&'&'167676&'&'&76'671632#"'&''&7632'&#"1177111177110!"<=CC=<"!!"<=CC=<"!   (( "       9////99////9F::$""$::FF::$""$::F>  n    3Hay21#"'&'&547676367167654'&'&'76'&'&'7677'271654576/&374'76'&?327679////99////9F::$""$::FF::$""$::FH     `   `   1177111177110!"<=CC=<"!!"<=CC=<"!v    z          3@Yr%4'1&'&#"3276765!67167632#"'&'&'&'&767'676/'&?'&73676/'&?'&71177111177110!"<=CC=<"!!"<=CC=<"!$$$$9////99////9F::$""$::FF::$""$::F    3<EP]jw%1#"'&'&5476763216767654'&'&'67&'7&'67367&'#'&'&767676'&'7676'&'3&'&767117711117711F::$""$::FF::$""$::F`   ----'((''(('9////99////9!"<=CC=<"!!"<=CC=<"!p'((''(('P  ----3I[m%4'1&'&#"3276765!67167632#"'&'&''1&767632'&#"'671632#"'&'721#"'&'67631177111177110!"<=CC=<"!!"<=CC=<"!     "(("&      9////99////9F::$""$::FF::$""$::F       3;@EM`r"132767654'&'&#1#"'&'&'676763235#35#35#;67&'#'3#&'&'6767'671632#"'&'721#"'&'67639////99////9!"<=CC=<"!!"<=CC=<"!( `       117711117711F::$""$::FF::$""$::F@0000000PP     3I[m%4'1&'&#"3276765!67167632#"'&'&'61#"'&'&76327'671632#"'&'721#"'&'67631177111177110!"<=CC=<"!!"<=CC=<"!^ && ,22,      9////99////9F::$""$::FF::$""$::F4   d     3I[m%4'1&'&#"3276765!67167632#"'&'&'61#"'&'&76327'1&'&54767&'1&547671177111177110!"<=CC=<"!!"<=CC=<"!^ && ,22,~   `  9////99////9F::$""$::FF::$""$::F4   t@3Iw%4'1&'&#"3276765!67167632#"'&'&'61#"'&'&76327'9#4101&'&'&'010#9'&56767'931#4101&'&'&'010#9'&56767'91177111177110!"<=CC=<"!!"<=CC=<"!^ && ,22,9////99////9F::$""$::FF::$""$::F4   O    Lb67165&'&'&01327'&'6767674'#"'&'&'6767&567676'1&#"'&32767'9765&'&'79341016767670103139765&'&'793410167676701039    R=NH9:"""":9HH9:""  ;;XX;;;;XJ7 ,22, &&B    U("":9HH9:"""":9H6/-7X;;;;XX;;,    l    3Iax%4'1&'&#"3276765!67167632#"'&'&'61#"'&'&76327'1/&'&7676767676/&76761177111177110!"<=CC=<"!!"<=CC=<"!^ && ,22,A  { A 9////99////9F::$""$::FF::$""$::F4    A  A 3I^s%4'1&'&#"3276765!67167632#"'&'&'61#"'&'&76327''&54?'&5476/&54?61177111177110!"<=CC=<"!!"<=CC=<"!^ && ,22,YY$$$$ZZ9////99////9F::$""$::FF::$""$::F4   0 0++ ++0 0-F\q6312"567676716&&76767'6767767676'676312'&5&7676776'&5/"'&76?2'&?676&514767672#"'   ASTK?HH75)) >) >ASTK?HG85)i  """ &#$a 88a       => ))67HH?KTSA;KTSA> )(67HH?] """  #$&& a89 bf   3Rq21#"'&'&547676367167654'&'&'&#"?765'76'&/3&#"?765'76'&/#"'&327676'&9////99////9F::$""$::FF::$""$::FI&""&&""&,22, && 1177111177110!"<=CC=<"!!"<=CC=<"!{"%&""%&"   6Pp%&'&'67676767671&6767&'&&'&''1&'&54767676721!#0105&'&'432/1#"'&'&763276'1#4101&'&'&'010#9'&56767'939#4101&'&'&'010#9'&56767'9 !<11 4     4 11>F::$""$::FF::$""$::FP     % %'AWm%&'1&'&=&'&766766767!67167632#"'&'&'74716'&54?'&5%61/&54?5&'##"'&'#6767;;XX;;5% 11 *  * 11>F::$""$::FF::$""$::Fc0 0++ ++0 0% %&@QZgt%6=676'&#"'&&'&'676767167654'&'&'276'&#"76767&'5&'&767676'&'1&'&'5673327673\  ,22,  5;;XX;;5\F::$""$::FF::$""$::F`      ----  4     4 11>X;;;;X>11F!"<=CC=<"!!"<=CC=<"!$   H'((''(('% %3I[l%4'1&'&#"3276765!67167632#"'&'&'61#"'&'&76327'671632#"'&''&7632'&#"1177111177110!"<=CC=<"!!"<=CC=<"!^ && ,22,       9////99////9F::$""$::FF::$""$::F4   d    3%4'1&'&#"3276765!67167632#"'&'&'"'&79030521676767654'&'&'&'0#'9&5479034121676767654'&'&'&'0'01"9&7632'671632#"'&'721#"'&'67631177111177110!"<=CC=<"!!"<=CC=<"!1          9////99////9F::$""$::FF::$""$::F    J     3%4'1&'&#"3276765!67167632#"'&'&'"'&79030521676767654'&'&'&'0#41"9&5479030521676767654'&'&'&'0#41"9&763'9#4101&'&'&'010#9'&56767'931#4101&'&'&'010#9'&56767'91177111177110!"<=CC=<"!!"<=CC=<"!1    W9////99////9F::$""$::FF::$""$::F*    E    -%#&'&'6767665&'&'&'27&/&'&'&'"9030210#1"99030210#1"93676767&'&'&'676767'271654'&#"37276'&#"767&'1&?676'&'&'S&-X;;;;XX;; "":9HH9:"""":9H5/+    x       b U ;;XX;;;;X"(,H9:"""":9HH9:""      L      Y 3FXj%4'1&'&#"3276765!67167632#"'&'&'&716;2&'&'7671632#"'&'721#"'&'67631177111177110!"<=CC=<"!!"<=CC=<"! ""..""       9////99////9F::$""$::FF::$""$::F:  **z     3Ft%4'1&'&#"3276765!67167632#"'&'&'&716;2&'&'79#4101&'&'&'010#9'&56767'931#4101&'&'&'010#9'&56767'91177111177110!"<=CC=<"!!"<=CC=<"! "".."" W9////99////9F::$""$::FF::$""$::F:  **U    3F[p%4'1&'&#"3276765!67167632#"'&'&'&716;2&'&'7'&54?'&5476/&54?61177111177110!"<=CC=<"!!"<=CC=<"! "".."" YY$$$$ZZ9////99////9F::$""$::FF::$""$::F:  **0 0++ ++0 03FXi%4'1&'&#"3276765!67167632#"'&'&'&716;2&'&'7671632#"'&''&7632'&#"1177111177110!"<=CC=<"!!"<=CC=<"! ""..""        9////99////9F::$""$::FF::$""$::F:  **z    3EW"132767654'&'&#1#"'&'&'6767632%671632#"'&'721#"'&'67639////99////9!"<=CC=<"!!"<=CC=<"!      117711117711F::$""$::FF::$""$::F0     3>\i21#"'&'&547676367167654'&'&''367&'#'&'1&'6701327654501676'&'7&'1&'67327654501676'&'9////99////9F::$""$::FF::$""$::FX    ----    ----1177111177110!"<=CC=<"!!"<=CC=<"!h    '((''(('     '((''((' :K\o%5&'#&'5&'&'&5676767167654'&'&'276'&#"76763276'&#"767675&'&',44,;;XX;;F::$""$::FF::$""$::F`        v    *vv&&-X;;;;X-&&j!"<=CC=<"!!"<=CC=<"!$    Z      /CPbt7"'1&'&'6767"/13276767&'&'&#"132767&'&'&776'&'7132767&'&#"27167&'&#"32;;XX;;;;X+%!"<=CC=<"!!"<=CC=<"!    /! .B0      8QX;;;;XX;;F::$""$::FF::$""$::Fq  A *`     3M{%4'1&'&#"3276765!67167632#"'&'&'167676&'&'&7679#4101&'&'&'010#9'&56767'931#4101&'&'&'010#9'&56767'91177111177110!"<=CC=<"!!"<=CC=<"!   (( (9////99////9F::$""$::FF::$""$::F>  Y    7H+&'?76/76'&/'&#VD o o D5 vVi   n II n 2l U x83EWd%4'1&'&#"3276765!67167632#"'&'&'721#"'&'6763671632#"'&'&'&7671177111177110!"<=CC=<"!!"<=CC=<"!      0$$$$9////99////9F::$""$::FF::$""$::FP     P  3J_t%4'1&'&#"3276765!67167632#"'&'&'67/&#"'&567''&54?'&5476/&54?61177111177110!"<=CC=<"!!"<=CC=<"!11"&&"*YY$$$$ZZ9////99////9F::$""$::FF::$""$::F@##0 0++ ++0 0!u2 ,2 ^ 4 6  B 6 d) 01 Xa . & Copyright (c) Font AwesomeFontAwesome6Free-RegularThe web's most popular icon set and toolkit.https://fontawesome.comFont Awesome 6 Free Regular-6.4.2Version 772.01953125 (Font Awesome version: 6.4.2)Font Awesome 6 FreeFont Awesome 6 Free RegularRegularCopyright (c) Font AwesomeFontAwesome6Free-RegularThe web's most popular icon set and toolkit.https://fontawesome.comFont Awesome 6 Free Regular-6.4.2Version 772.01953125 (Font Awesome version: 6.4.2)Font Awesome 6 FreeFont Awesome 6 Free RegularRegular      "# !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ exclamationhashtag dollar-sign0123456789 less-thanequals greater-thanabcdefghijklmnopqrstuvwxyz folder-closednotdefheartstaruserclockrectangle-listflagbookmarkimage pen-to-square circle-xmark circle-checkcircle-questioneye eye-slash calendar-dayscommentfolder folder-open chart-barcomments star-halflemon credit-card hard-drivehand-point-righthand-point-left hand-point-uphand-point-downcopy floppy-disksquareenvelopepaste lightbulbbellhospital square-pluscircle face-smile face-frownface-mehkeyboardcalendar circle-play square-minus square-checkshare-from-squarecompasssquare-caret-downsquare-caret-upsquare-caret-rightfile file-lines thumbs-up thumbs-downsunmoonsquare-caret-left circle-dotbuildingfile-pdf file-word file-excelfile-powerpoint file-image file-zipper file-audio file-video file-code life-ring paper-planefutbol newspaper bell-slash copyrightclosed-captioning object-groupobject-ungroup note-stickyclonehourglass-half hourglasshand-back-fisthand hand-scissors hand-lizard hand-spock hand-pointer hand-peace registered calendar-pluscalendar-minuscalendar-xmarkcalendar-checkmapmessage circle-pause circle-stop font-awesome handshake envelope-open address-book address-card circle-userid-badgeid-cardwindow-maximizewindow-minimizewindow-restore snowflake trash-canimages clipboard circle-down circle-left circle-right circle-upgem money-bill-1rectangle-xmark chess-bishop chess-king chess-knight chess-pawn chess-queen chess-rook square-full comment-dotsface-smile-wink face-angry face-dizzy face-flushedface-frown-open face-grimace face-grinface-grin-wideface-grin-beamface-grin-beam-sweatface-grin-heartsface-grin-squintface-grin-squint-tearsface-grin-starsface-grin-tearsface-grin-tongueface-grin-tongue-squintface-grin-tongue-winkface-grin-wink face-kissface-kiss-beamface-kiss-wink-heart face-laughface-laugh-beamface-laugh-squintface-laugh-winkface-meh-blankface-rolling-eyes face-sad-cry face-sad-tearface-smile-beamstar-half-stroke face-surprise face-tiredfontawesome/inst/fontawesome/webfonts/fa-solid-900.ttf0000644000176200001440000140265414470000401022461 0ustar liggesusers  OS/2aKbK(`cmap DHglyfspu?Dhead&'<6hhea;$hmtxNloca _maxp" nameT_6post@L~_< oo LfGLf AWSM!@9 @@@@@@@@@@@@@@@@@@ @@@@@@@ @ @@ @ @""@@@@@   @@@@@@@@@ @@@ @@@@@@@ @@ @ @    @@@@ @ @@@@@@@@ @ @@@@@@@@@@@@@ @@@@@@  @@@@@@@@@@@ @@$@@@@@@    @@@@@@@@@@ @@@@  @@ @@@@@@@@@@@@  @@@@ @@@@@@@@@@@@@   @  @ @@  @@@@'@@@@@@@'@'@@@'@'  @@@@@  @ @ @@@ @@@@` @ @@@@@@@ @     @ @@@ @@  @@@@@@@ @@@@ @@@@@@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@8@@ @@@@@ @@@@@@@@@  @@@@@@ @@@@@@@@@ @@ @@@@@@ @@ @@'@'@@@'@'@$~$ ~Z !%+9Zabcdefghijklmnopqrstuvwxyz    9 : !"!!!!!!!!!!""####(#)#*#+############$%%%%%%&&&&&&&& &"&#&%&*&,&.&/&8&9&?&@&B&Z&[&\&]&^&_&e&f&r&z&{&~&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&''''' ' ' ' '''''''''!'1'D'F'L'N'S'T'U'W'd''')4)5+ +++$+P Av1<@Rcim{ "-=@DEFN[\]^fghin~ "#'()*.5:>FGNTUY^ex -69IJNP]lwxz{ (28[]`c"$%46:JLPS^cmy}!#*0<abcdefghijklmnopqrstuvwxyz    9 : !"!!!!!!!!!!""####(#)#*#+############$%%%%%%&&&&&&&& &"&#&%&*&,&.&/&8&9&?&@&B&Z&[&\&]&^&_&e&f&r&z&{&~&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&''''' ' ' ' '''''''''!'1'D'F'L'N'S'T'U'W'd''')4)5+ +++$+P ?Y19@Rcim{ !-=JLPS^cmy{ + % !~2+(v_UFpWON+%#!  ~|zxwutsrqpnlkjihfcba`SRNMLIHEDCBA;:987654210/.-,   ~|qonmjfe^VUSQNLJFC@10'}qnh_NM@?=<:9876310.*'&%"! ~|wrqolic`\ZXVRQPNJGFDCB>=<;986*)%    { y x w u t n l j i h g d c b a ] T O M K J I G A ? : 9 8 6 5 1 ( $    ~ o<>\P6 $@^zz8r~t|nL"nnRn`Vxpxrrxj*.."$$8*.*""j,"<HFt:$*,2 ||JzJH42~8tl8:4  jr4@<jj2dRzHrz|xvBDfdb`t\|`fHpnf\4 !"#$%&'()*+,-./#-.0567;=CDEHIJKOPRTWouwz}    %'()*,8:;<>@FPQRSTUW\^_ioswyz{|}`a $&-247 0!!#%*+09<Zaabbccddeeffgghhiijjkk ll!mm"nn#oo$pp%qq&rr'ss(tt)uu*vv+ww,xx-yy.zz/D E    O  P 9 9H : :I       4 !"!" !!!!!!!!!!P!!Q!!W!!.!!!!5""""##J##K###(#(W#)#)#*#*#+#+##############@##########$$%%%%%%R%%%%%%&&&&&&2&&&&z&&$&&& & &"&"&&#&# &%&%&*&*&,&,&.&.&/&/&8&8&9&9T&?&?&@&@&B&B&Z&Zy&[&[|&\&\}&]&]w&^&^z&_&_{&e&e&f&f&r&r&z&z&{&{&~&~&&&&&&&&&&&&&&o&&&&&&&&&&0&&&&&&&&&&&&&&&&&&R&&R&&&&&&s&&2&&&&&&#&&&&&&-&&&&''''''''z' ' -' ' ' ' ' '  ''F''a''`'''''''''''!'!'1'1'D'D:'F'F:'L'L'N'N8'S'S'T'T'U'U'W'W'd'd'''''')4)4_)5)5^+ + Q+++++$+$R+P+P0 23?A4Yv7UWYZ[\]^7_`a11c9<d@@hRRiccjiikmml{{mnpqstuvwxyz{|}~ !"--==<<EEGHllssvwz{%'/2OQX9ZoAqtWv[mt~->RUu!>@@FADEE}FFzGNP[\\]]^^`fgghhiijnp~;"$-.08<=D\ L R OQiSX "Y##$'\(())`**+.a05e7:k=>o@FqGGwHNxPTUUVY[^`euxTSC;R !-3689@IJJMNPPQ]ll qwxxyz{{#%'(())**+,-5o9;<=>?ACDE IMN((O2278PX[R]]V``WbcX67Z\]^`abcfghijkmno""p$$q%%%24r66u9:v<<x??yAAzCC{EE|GG}KK~NNPPSSXX\]__abffhmprttwy}}=~% +,,-01125667@AABKVZ^fhkov{}!!$%)*.077;<AADDGGJJOOQQSUXX]^bbdfikmmoottvvxy{| ""()++./;=@@CCGGMMQSVVZ[^_iikloprs|}  !#%'(*+-/2348;<=?@ACD   GHJKMN'*O//S>>TJJULLVPPWSSX^^YccZmm[yy\{}]`bfghjkl mn    567 !!/&&''))**--H112266LKKNN~OO~hhIjjtt<wwxx4bvtX1Yty=L  1AAMMNNQQUU ddee{{]4DNLhhOMK)dkY?        ;%%''((,,44R55RGGIIJJKKLLMMNNSSkknnqquuww{{}}\-G`E\j659RA:;<>    j  =UNPOBDC  ""g&&3++w,,8--f..r33266ZBBSDD[h>#71U 523gdc(RRRRR  ##?))@AA"BBCCDD;NNsSS9UUZZBwwxd~i :Lyyzz984h  p `  h <  $ 0 hpHp@(h4L !#0&(|)P*0+-.0$1235<669;;<=`>?A BdC DDEGHKLDMNTNOPQ|RRSTUpVWXYZ\]P^p_P_`b<c$cd4deflghi`jkklLm|nloxp,pqrdsTstuxvwxyz|},~ 8lp|LTT40xhhx8@ d L(Ŵ4ʰP͸hҘט@dDݠޠߜxP<`4\PXLL0<PH`Lx    ll Xt4H`L "$H%'()p)*,.</1T34H5x6789:<8=T>@A`BDDF\G<HIJLLMNOQ<RTV WXY(Z$[]<^h_`bcTd`e$f@gdhikklmxo pr\su<uvwxxylzH{|~T8<t d|t(t 4$$d\| P t0d,`<P8ÄTPH(l(τЌtҐ|,Ըt`,׀ؘ@ڰt|T,߸$x8PLhTDl8@0`@0\<,pL|  4   `   px L<, d!4!"#$%T& &'(**+<+-$.t/h0H1,12\234 455X556p67l8H9$:X:;<=>|@AB`C4CD4DFGHGHIJ4KL@M MpNNOP(PQ8QRSTUVVWxXXXYLYZTZ[\]L]^L^_`tb bcd|defgi$jXkmmno$oophqLrs<stDuv vwxyzD{ {}<~p``Td0HX Dpx4h4@$H`h@hǸ`Dʐ0l͔8Ѩ0T՜t$ؔ0$(d$tL|DX@<@$8 4x@LT hL8xL <  X H  t<$x0hH0D \!l""##$ $%&$&'(@()*$*+8+,0,-X-./(0\1T2834$456d6789:t;< <==?@|A\ABCD,E EFHLI|JLKdL LMlN OOPtQPQRSUV|WHXXYYZ[x\]t^_(_abxcce`f0gDhTi\j(klmoopPqXr8st`tuvwxHyDz{|}~8<$\Htt8L$0$,00<0xD0LL|$(|TP xtt@,<ʌͰ $H4D$dp`ۜ8ߔTXP,  |LtX pT<T|<T h X   ll$,X`pl @!"#@#%&L&'()x*,,-./01<13x4$567p89:x;<>>?@lA(B<C\DLDEFpG<HIJK$LOPQT U(VVWX[\l^^`a|abde\fgiklo`oqsuwz{D{|}~t|\P84h8 L0xdD8T4<4DPǀTˤ̰@ӨԌ0ذ٬ڐ8L޼߸@tLd0d p(|8Lh0 (   `  (  L @<P<T !,!#@#')0* *,|,-/801,2T3467p89T:0:;0<$=4><?D %?'3'77#7%67167!!&'&'@ZZ'ZYYY3YZ     ::   `  H 4'1&#"32765676'&'@       `UZ13767632+32+'&'&?#'&'&?#"'&5476;7#"'&5476;767637# _   : E: E   _   : E: E  __ ;E ;   E ;E ;   E0r2123011/&21#"'&=0#01#1&'&'&'&76767676'&'&/101&'&'&'&767676754763 0  /0 1     1 1   $       ! #       #  -6514'&#"327&'&767&'&767w @    I @ $$$$$$$$=2176/#"'&='&'&76?'&'&767654763 p  rs  p  o  rr  p  C DE C B EE C )4'1&#"#";3276=327654'&+5      p      @'67167&'&'57167675&'&'--DD----DD--))))D----DD----D`))))$&'&?#";27654'&+`  .@ `` @ @    `@*"#"'&54?6732#!&'&?67&'&'" +<>())  "` *)(><+  ""@94716;3#"'&/&767636767&'&'#&'&?#"'&5  :&''&:O   Oh   x'&::&'  x /6'1&'&;3276=327654'&+54'&#"#7       kr  P P   @66732+3#"'&/&767636767&'&'#"'&?! r:&''&:S   S !  p'&::&'   @!;6'1&'&01016767&'&'71#"'&'&54767632  %--DD--*+@?   k  +9D----DB,-K  @47163!'&'&7#"'&5       P @<X&'1&'#367674'&'673#&'&'6767301013010150901#0101&'&'676730$%6 6%$#$%6@6%$#@   6%$$%65$ 6%$$%6 $5@@5132767654'&'&#"&'1&'6767'&'&?@   XA+*--DD--$ @  -,BD----D7*  K1 '%&'67%6}   @ n     @@'"13!27654'&#!"13!27654'&#!0 `  ` @     1 7%67&'%&   @ n     03@6716733276=4?676=&'&'#32765676'&'P +'  *$%6 6%$  P   "0  !6%$$%6 KX12#&'&'&'676767&'&'&'67676323276=&'&'&'&767R6666R H9:"""":9HH9:"")-$36%$$%6+    66R@  66RR66  "":9HH9:"""":9H )!!$%66%$ P   R66$$$$&'76?37676/#7 x(   (x*HH`  LL  ` @'41367674'&'67&'&'##53;#5@6%$$%6`````` $%6#"06%$@+"327632#"'&'&767632#"'I1<<1//1<<1 DVVD,,DVVD 1//1@@1// AA-9999,BB $671673#&'&'3#36767&'&'`?2332?```D----D`32??23@--DD--@+1327654'&+5327654'&+5327654'&+@       @%13276=327654'&+5327654'&+@        716767#"'&5476;2&'&'&'676767'&'D----D;++ }  >>Z?2332?X=  ,?`--DD--$#8  X9:32??237  ()%3276=4'&#"!54'&#"3276=!@         @*"1;#"3!27654'&+327654'&+  ``  ``     @  @%21&'&'54763267674763  --DD--  ))  D----D   )) @+6514'&#"54'&#"3276=77676/77 .   A j / x kC  ˍ @2132+"'&54763@       $676#"'&5#"/#"'&567      647632'#"'&567    ( = 3"132767654'&'&#1#"'&'&'6767632+%%%%++%%%%+45;;5445;;54`%&**&%%&**&%=3333==3333=@&671673##"'&=36767&'&'#`D----D`  @`))``--DD--` ))<7167'&767667&'&'&'&'&'676767'&/@--D,#H G--DD--5D?2332??2350 .D--V  U*7D----D"32??2332?V=9  8@$013276=37676/6767&'&'##53@  _g T(()=pppp""   x$#.=)(""?b013'9&'&'&'&#&'&767627676'&'&'01&#&'&'&'&7'676'&'&'7&c 8 :7E    9  8  :7E    9 W   $@     $@  "1;32765327654'&+        `  %216767547632&'&'54763  $%66%$  66RR66  6%$$%6 R6666R 61676&'&767     9   ?%6167676#&' "'&767 nUUn  QQ   $&   )6'1&'&'&'&76?7676/7y  k     &'1&3276=76'&'&':      ז   47163!32#!&'&7#"'&5 @         L "R'"3?;27654'&#54'&#""1;6732;2765&'&'#'&+5'#"#` `` `   d!;;!$ @ --D    ``      @ ..  D-- ,, #Sh2172#/+"'&54763547634716;76;57323+"'&54'&+&'#"'&=632#"'&=4? ` `` `  `    D-- @ $!;;!d           ,, --D  .. @+ +@,9%1#!&'&'5#&'&547%625476;2%3675&'#@    k   5 PP   ^% y. ?PP@%8J["3276753676/673#&'567&'&'&'271654'&#"3'67&'&'f B/0   F@@N4444A   %'&: 00Bp@@044NA44   %:&' ?Sn67167&'&'47675710016767&'&'01015&'&'67167&'5&'%#4'&#"#32?6'&'   "" 00 ()==)( 0  P   @ @P  ""p 0%3=)(()=3%0 ` ! 33 ! @  @ @  ?Sn67167&'&'47675710016767&'&'01015&'&'67167&'5&'3676/&#"332765   "" 00 ()==)( 0  0  @ @   P  ""p 0%3=)(()=3%0 ` !  ! @ @  %.9BMXew136767;27654'&+5&'&'!567"567&#567&'7&'567&'567676'&'521#"'&547630  ++p @ @ `Ppp----    **   @ qq '((''(('p   #*<&&'&'&'&'&01119"321'??232776/6776/6776/676776/6'76'&&'76''1233721#"'&54763767&'?76776/6776/6776/676776/01656745614541=92#"'14576'&&'76'&"#"'&'&'&'&?71&#&#1#"'&5476321            0   @             0                P   0               6'&&'&'&'&'&010111"31'??776/67567576/6776/676776/6'76'&&'71'7676'&'7&'67 !     '  %     #     44                 $  +  8E332!/&54763#3!367&'#73!567673!!&'&'5]s  U $/ 00   O `  [@@ @@ pp 0  0@KR#336753675&'#5&'#6716'&'&#&'67;27654'&+"#";2?%31"101880880P  wy@ @N-#-% ,$808808   X  $ @ ^Pi216754763267547632#&/&5476324545476326754763&#"32?654/#"/&54?632#"/&54?632@      /@]Cq  <   00000000  p   &?k  :  00000000  #0^iv271654'&#"3271654'&#"3&'&76745015476?6?6'&'&?6'&954'&#"%76'&;1376'&&'1&367&'#&'67367&'#&'67367&'#&'67367&'#9#7676'  `  .< .  N >  D+  ,   /   ? <''3\  ||    |].        0I'#"7..%O   k uK1 G*2 @/ (  %('.      2L&76/&/'76367675&'&'+/&#"'7&#"' 37676776767' P  M  *  LH!YR#~w  l\  0 j {<   /IBc_%  S '9IRaj&76/&/'765#/&#"'7&#"'%37676776767%'#;276=&'67%;276=&'#67&'' P  M  H!YR#~w\ 7   0   P  0 j {< /IBc_S ,  4FOXajs|7671671673+1##1#"'&=&'&'!271654'&#"367&'7&'6767&/&'6?67&'&'6732?I77 * mk P( .`  p(((>32--E5    I=M   xx+HQZc%2121#'&76673+1%67##1#"'&=&'&'&'67'&'6?67&', +'  39MI77 * @;>+ "P( .h@(z" "  (,--E5  f:1" I=M0  #BT747#"'&=&'&''67673#313#3#3+56701637271654'&#"3  .56DI77 * !8   0  ! I=MG:##--E5  @   P   ,mv7671671673+#+"'&=&'&'7'&766767676'&76767&'&'&76'&'&'&'&'6767&'32?I77 * @  .        (>32--E5  @  I=M        `P@,9I%671676/54'&+"'&#&3!6767'3%&'&767671673#&'  5   j  A $$$$p"@"  /y %^    """'E6312#5&'#3#&'&'5#&'&?35#'4716;23+&'&'6735 @@   І0   00   &@ pِ   V21&#"54763&'1&567672"/&'7'654'&5456301636767&'&'"'"'4547654''&&'&'&'&76'&'&'67676'&767676776#&'&'5456767676767&01#"227767&'&'67@  } # & H            H & #  qH | |  '&,,,&           E&,,,&'    j -:Zy676'&'671673#&'&'5&'&?%676'&'&'673#&'&'57654/35676'&'5#/&?6@  & ,+@0      *,     0@` @@ ` @@ $$$$ @/I  t2$$$$ 2t  I/@(  @@   @@ 51#'&76'&733%#&?#+&'4?'&567I  (8 et(AB 81g+*    ?r: nn "2K3532327654/&+4'&+"13676/&'&'#3#&'5#&'673567<" "!< @ c    ` " " x    "2H3532327654/&+4'&+"13676/&'&'#1#"'&'6767632<" "!< @   ` " " ]fo&#"767676'4'&/76'&&'&'&'&76'&'&'67676'&767676767&'&'67  /.VV./          HP3EEAB+ +BAEE3Pm         MZ47163232765&'&'#5&'&'#3#";27654'&+567367&'##55!!6767   ))@00P  P88@@))`  ))    )) +Vk676'&'676'&'74'1&#"32765#&'&'67673&'#!67675&'&'136767&'&'+  p$$$$`   )))X))@)) `    + )))&))))`0DOu"1;6767&'7654'&#"&'5327654'&+1&'&'56767675&''"'&?673#&'54?6=&' L11;;XX;;  +9 `p   t  %' ,@'   "88PX;;;;X@1 # "  ``4`  `  ",  , !+=&76/5#'5#'!27654/&'!'3'3#5#367675'' P 7@@+F Lt#Ue @  @ 0 +ʘd4"  r O  P  A3$+5I&76/=1#"''676727676/&#!"'327'5#"'1&'!27'#' P W  ())*:8Ij!0@ 0 Dd %%%[ $,S@ v#8J&76/6767&'&''65&767!'%327676?1&'&54767' P n&)); "&9H        0 V55MR6666RK5.&,243'0-L55  A+<IV&76/367&'&'#"'67&'&''67&'&''130101&/#1!67'#7676'&'' P .*)0)"+'D. I8&&J@---- 0 . ."#)$  "".+9&&8'((''(('q~4'1&#"/&#"#";32?63276=676327654/&767327654'&+&'&?654'&#"'&'5676'&'&'67     &   &        '   '   p  &        &   '        &   8@Jx&76/&767327654'&+&'&?654'&#"'&'54'&#"/&#"'63'%#";32?63276=6767' P    '       `  E   &      0 y     &   &  K 7      '   PYk?63#/&&'5&'&'&?6'&'#&'673676/&7676756767&''4'1&#"32765176'&&'&'&'&76'&'&'67676'&76767674'1&#"32765              00   @                         @  P        p  Wbm7'673676754/&=&'&'#0101"101&'&'&'01"10101#327&=4?/&7676'&78//F  0  0   0 0 0 0 ӧ   H J  J H   "x0 0 00 0 Wd}+&'&'54?6=67673010103016767670121010;#&'&'54?&'676'&''?76/76'&'&;67&'#5&'8   0  0 F//7        z"   H J  J H   ~      @`/%"1;276=4'&#"'&#"'&#"32?#   i iS`   S j j @`/"'1&5476;2#"'&=#"/#"'&54?6327#   i iS   S j j#K"32?3276=327654/4'1&#"!676754'&#"#!"'&= I  I  ))    J J  @))@ @ @EIN&'#";#";76?37676/327654'&+'327654'&+'#73#7 H[ @ 3     3 @ [G@ [v    4  LL  4   MM@ @27AFR"1#";3276=367674'&'67&'&'54'&##535#5353# J F  0  0  00@  @00@      z*v    0%0   ````  @````  @IUb4716323547632#"'&=##"'&=#"'&=476;536767&'&'##36767&'&'#0   # 0     p  ppp        '%0      v*z   `@`  "?673232+"'&54?#"'&5 .   /  {    -:671673?7675;2#2+!&'&'13!5!")` 66     )@  `) ++  @  )@ @ @@9V#!6767&'&'#'&'##&'4?&#"'&?6776367332?6&'#&'5 KK "z" M #21$ M #21$  "" M@ "" M `6@4'1&#"3276=67676'&'&57676'&'&'5&'&'6767  F,--,F  /$    $/@** # 34II43 # #  #d "!..!" /BVi21!2#!&'&'476321#"'&=47637#"'&=4763221#"'&=47637#"'&=47632   p"      @        "P @ @ @   ` ` `  /BU21!2#!&'&'47634716;2+"'&532+"'&5476332+"'&54763   p" ` ` ` `  @ @    "P `  @   `    -#3?"#54'3'#3?#13?#!!67675V\@hv\\F@h@1#/&+32?622?63676754/&747636;67654/&?654'&'#"'"'&5&?6=&'&'"/&#          ,5bk/&54?6367675&'&56767#&'67%676'&'5#&'&'4767567673567&'@  PP   "" $%6  PP   "" $%6( H H ( "" 6%$(8 H H ( "" 6%$(hS\e67&'71;276=&'&56767#&'&'47675#&'&'5&'&5676767&'&'67PP    "" )0 "" 0) ""xX ' ' "" ')G "" G)' "",5Xaj3&'&'47675&'&'#/&54?6&'67&'&'47675&'&56767&'6767&'2 6%$ ""   PP  ""  "" H($%6 "" ( H H NI "" ""  `LT[6'1&'&76?76?67676'&'&7676'&'0#&'76'&'&&'7&'47677&'   B)*      2'  6     \. =>   -33F,%&G  4  *   <  0g(% J7671677676'&'&'67676'&'&=6727676'&/&#"&#"&'&'`--D?,  =X?2332?X=  ,?    +D--(  732??237  (`   7 S&'2@+013#"3!27654'&+'36767&'&'!!!@ E  E @@    @ 0=Q"1#";&#27276=27654''&#676'&'"13!27654'&#!    #6%$$%6%     ` @    1$%66%$ `   $$$$    #0F\iw3276/&1!6767&'&'!&'&767671673+"'&=3671673+"'&=7676'&'7?6'&'#"@ @ E`  P @  `  @  ` 5 @ @@  @ {`         @  @@1J67!&/&='&721#"'&'&54767636'&'&?76/7  k=''@  '!!!!''!!!!'; %% $$ %% $$ //A)$0 O""&&""""&&""k $$ %% $$ %%9"1#";#";276?327654'&+767327654'&+; 7k P- % % 7k P- % %  l    l   !&'&'5!!567673;@   @@ @;"1#";3276=327654'&+5327654'&+5327654'&+P    P P   `  @ @  @  `  3=D"13276=67674'&+5327654'&'54'&#&'&'676753 F,--,F  F,- " *<  **@\ " # 34II43 # # 34I \  ) # "!..!" \" @3:E&'!";;6?3276?32?3276=4'&+5#73#'!!&'67@   ( `h C \i p   h K  P @; Phs&'567/&766767547632'&/&7676/&7676/&7676/&7676=67547632'&?6Pc   f|   %166)d5 ]] uu ]*%)%  %   @@0  0  `| ' +%$'d5 ]] uu ]**0b( +%$ 0  0 @ -=%1#!&'&'5#&'&547%62'&'&7671367&'&'#@       `""@     $$$$`""@H4716;2+32+/&76732767#"'&5476;&'&+"'&5 @ 8# $ !!.  P   @     ,g     =6716'&'&54'&#"#";3276=7676'&/327654'&+7U        h  z    z   _21632547632'&'&'#"'&=&#"#"'&=32+"'&5476;&'676754763   *   #    .$%6  /2  !! 1#$. -D __ D%?6%$   5K;..1 /4'1&#"?3!27654'&+57676'&'&5  )      w     ' "9"13276=6767327653276=&'&'54'&# F,-  *  *  -,F  # 34I .!"   "!. I43 # (5BMXc"+6?67675&'&'+"/&#'&'&=673%6753%673#&'3#&'67673#&'@*"% H)l5DD5l)H &"*(##(U* #" *UU0E55E0U0PQ6'1&'&&'"&'"3276=676776?276=76323276=&'&'7. "  0     N  $   +  _!  P   +  < d -6$+2?T!67675&'&'!1#57153#6767'3&'&'676'&/&'!67&'!&'&'5``@@@@`@@@'((''(('""3p`@@@@p----X3""6:>&#";3276=37675327654'&+54'&#"#'3/#5{    da    9w::      @VV %?'3'77#7%67167!!&'&'@ZZ'ZYYY3YZ     ::   `  +=V"1327676732767&'&#"&'&'&#471632#"'&5!2'&''&?632763.  EFllFE    EFllFE 2    | FccF  E W    d         W ! -5="1"33276=36767327654'&+&'&'##533#5@    `;++   ++;ۻ`   ` `  ` `$#8  8#$@@@DJRX"1"3"33276=36767327654'&+654'327654'&+&'&'##533#5#53@     P4))  ))4pP//P @   @` @+    +` @ ` 167167/"#'"#&'54?5'&=4?5: nn :bBw 99P+*   *+P99 wB$0JW4716;'&/##"'&=36767&'&'#%3##"'&=476367167&'&'#3 P=)('4 8*  @0""0P0  00  P  00 ()=-#"   ""` 00 `    `@74716;2++++"'&5476;5476;5476;5  ` ` `  ` ` `  ` ` `  ` ` `U^g&'6767165&'&'#"3!67674'&'5!27654'&+56765&'&'!5%67&'&'67  "" @  ""  @ "" Hxa "" 7  7 "" 7  7 "" 77I'0BT67167!+"'&=!+"'&=&'!'&'#4'1&#"32765271654'&#"3"`"            p"")0   0) HHH     O2176763676756763#"'&='&'&76?5'&'&76?54763` w  w  @4$$  66N`   )  )  #" '" '""5  N33     6 @*DW133733736767&'&'!676'&'521#"'&'&5476763&'5&'6767@@@@----+%%%%++%%%%+   `'((''(('%&**&%%&**&%ss !  !  .3Le32?654/&#"1327654/&#" '732?654/&#"32?654/&#"&&&&#}#ii#8998`8998&&&&#}#8ii"99889988 k6'&?'&&/&&/&32?32?6/&'732?6/&'732?6/&'76'&&6'76'&&/XX      E E '& ", &' ", &' .;  :. XX '& *! &' *! &' D E  !  !  .< !!:.  C]676'&'&'&'&76?63'&'&?#&'&'676727'27167654'&'&#"3@s )  )&,Z&b  F --DD----D7*-    I + + z"D----DD--6   O&1#";367675&'&'#";2#"'&=327654'&+5&'&/$     ) R66)  $%6    %    )66R )   6%$   &   :EP[fq|673#&'3#&'673#&'6747163!2#&/&'&'7673#&'#673#&/3#&'67673#&/3#&'67673#&/3#&'67'3#&'678  00`x`0Hk  6))))6S`````H ` I&'&767&'5'&'&?676;23+#"'&=+#"'&=  H :- " (    7  a'!$  ` `` a@X%671676/54'&+"'&#&301;23232;276=476;2;232;276=47'3  5   j    @ !    /y %^  Ep @ @ @/%671676/&#&33'&?'&7636767'3   f U< v Q&{     4 GS ] C@@ =%671676/&#&3!6767'3%6733##&'5#&'56735   A  00 00    P0 00 0 `=21'&'676#"'&=&'&'676754763 /$  !,6%$$%6,!  $/  F,--,F  # $%66%$ # # 34II43 # )=4'1&#"#";3276=327654'&+513!27654'&#!"  p p  p p @   p  p p  p@  : ,676+&'#"'&?6&7!!&'&/  ,    "!,,!"    @Q  **r6767676'&'&'&'&"30011'&'&'1&'&#&233137676'&'676'&'&'&'#&'&'&7&901#&'&'&7676A(  6,/  " ))   5,/   ) M) ( # `   6 *     4 &      !.5@KT1335+"'&54763!67&'!35'&67'7674'#327&'&'67&'@//E8 pH@ 7)Vy&}[ ++8D--  XH "#F@/@W$ ]0@Rw21/&+#"'&=&/&'&7676367675&/&'&56767547634716;'&/##"'&=36767&'&'#   !4"#     4"$ p P=)('4 8*  @0""0  #%'     #%(  @ ()=-#"   ""+@671673#&'&'671673#&'&'5%3#&'&'6767            p      p    `         &R1#3/&76735#&'&'56767!5#3676'3!&'&'5676733#332?3. FF .@S GG S @ FF @@@@@@@D%5!!!&'&'56767!1#&'&'56767;3/&76735&'#"& FF &P @@@@@@@" FF @D%5&'&'!!67675;#353#?6'&'#5&'&'+36767@P& FF &" @@@@@ FF "@IZep{67167654'&'&'/&'&/&76?6?67?632#"/&'7#"/&76?6673#&'7/&76'&?6F::$""$::FF::$""$::F/'  #       A  +  '  @!"<=CC=<"!!"<=CC=<"!         P ,A`e&76/65327654'&+&'6?654'&#"&+"'%1;276=&'&'#";32?5'67'' P @ @ @ @p ) )@ @@ ?%58'_ 0 x  @ @ )  )  % @ ?!m&Jv@!;T671673;#!&'&'#521#"'&'&5476763&'#3675367&'#5 8$#"0'!!!!''!!!!'0000 '.->-%%@`""&&""""&&""P0000,9W!6767654/&'!3##5#36767=21#54763";276=4'&'&'%// LtL [@@   @ P  ""  rr  P  P  00 0   0""x673#7'&76/3567&'5#76'&?'3#&'6735&'/&767&'#&'567367''&?6675#&'&'&76767&'P/# 8 "" 8 $.P/# 8 "" 8 $.0@" 8 $.P/# 8 "" 8 #/P/# 8 "  hAr&76/673675&'#&'776/&&'5367&'#3'76'&'#5&'6753'&76/7#367&'#567'' P "" 8 #/P/# !_n"" 8 $.P 0 |#P/# 8 "" !K P/# 8 ""Uo~1#"'&54763267&'&'#";#&'&'576/&?;27&'#=327654'&+4'1&'&#"3276765'/&7676@   ))))   0)88--DPP "   +""&&""""&&""M H ( = `  P4))4  )88D--%P  '!!!!''!!!!'+ H ( < Uox1#"'&54763267&'&'#";#&'&'576/&?;27&'#=327654'&+27167654'&'&#"35&'675&'567@   ))))   0)88--DPP "   '!!!!''!!!!'`  P4))4  )88D--%P  ""&&""""&&""`PPUo1#"'&54763267&'&'#";#&'&'576/&?;27&'#=327654'&+27167654'&'&#"37/'&?'&7676@   ))))   0)88--DPP "   '!!!!''!!!!';$$ %% $$ %% `  P4))4  )88D--%P  ""&&""""&&""%% $$ %% $$ Wd1#"'&54763267&'&'#";#&'&'576/&?;27&=+5327654'&+21#54763";276=4'&'&'@   ))))   0)88--DPP 0    @ P  ""`  P4))4  )88D-- !  @ 00 0   0""@KWc312?654'&#"5!27654'&+5327654/&#"32?+";'&#"354'&#"#3276= ` )` `) ` ` )@` `) ` @  @@  7 ` *s  s* ` ` *s  s* `7  EQ]j7654'&#"5!547#5327654/&#"32?+";'&#"32754'&#"33276=#721#54763";276=4'&'&'` ) K) ` ` )@@ @) `  @  @ @ P  ""7` *ss* ` ` *s  s* ` 7  P 00 0   0""#0=JWd67167335673+&'&'3675&'#3675&'#3675&'#73675&'#3675&'#%#"'&54?#"'&5476;'&547632  ` (  ` @          P P s s   HH     P  p    p  P P    @#Xj~%2716=327654/&#"32?3&'1&7676767677676'&'&'&1&'&'#676763635&'1&'#16765   P P  #+*#  &,21  12-&  #**#N    `  P P  F          0   @S1#6767636367632327626=&'&'#5327654/&#"32?#5&'&'#&&'1&7676767677676'&'&'&1&'p  ! 0 P P  #+*#  &,21  12-&  #**#  `       `  P P  Z        @#0=JWdq~"1;32?3276=4'&+&'&767&'&767676'&'&'&7673&'&767%676'&'&'&767676'&'%&'&767'676'&' 3  0  0  0  0    3  P    P    PP  0  P@6Z%!"3!27654'𒫢'&#"54'&#"'&#"32?%"54'&#"'&#"32?654'    )  ) ` ` )  ) ` `   * * ` `. * * ` ` o!.;'&?6'&5&'&'&767&'&767676'&'76/6?;276=?;276=76/&'&+"'&'&+"&+"?;276=?6'&5&''&@@8    $ 0 $   0   & "  " &   0 @@v@@v  `  (j1 D16 61D 1& &1 G ? ? G 1& &!@@vvGZ21#"'&5476313'&547632#"'&54?##"/&54?632%#"'&547632    ** ` ` ** ` `      @ I )) ` ` )) ` ` ) @  /G_36754'&&'"637675&'#"3&567#'&3276/674'&'76'&'#?275#;*  p "=V|! p "5A#ZA#! p "5;*  p "=V`#! p "5A;  p "=V;*E;*  p "=V#! p "5AM#1"'&54?632#"/32+&'&'&'&'##"/&54?632325 ` ` )@ @6%$s* ` ` *s#)) ` ` *  $%6) ` ` )*(5]63125476321+"'&5476;'&547676'&'#"'&5476;921#"'&=#"'&54?471632763232+"'1&'&595#"/#"'&=101014767630932+ i  ` j    `   i j-  i j ` mj i   `  j `  i $$$$`  ` j i j i  `i j `  6Qm213#"/&7673547637632##"'&=#&'&7'35676'&'5#"'&54763&514?632+/21#"'&54763  @ @ W@ @     @ @  ) @   @I    @ @  w@ @     @ @  7 @    @7   x3@Uj6567#&'673'&767167167&'&'&'&7676'&'63#&'5677&?#&'673&'5'!'&'5673#'?`&?w %%11%%  %%11%% $$$$?&`??&`?@?`&??&`?  L  1?`&??`&??&`?-[6312#"'&54?##"'&=67673'&5476312#"'&54?#"#"'&=67673'&547) ` ` *  $%6* ` ` ` *  )*  ` ` )   6%$) ` ` )    )) -Zgt63123#"'&=4'&+#"/&54?#"'&54?#"#"'&=67673'&547632676'&'%&'&767 )   P PP P   ) y  $$$$ )     P PP P     ) g$$$$  @6Z!27654'&#!"3132?3276=327654/&#"312?3276=327654/&#"    )  ) ` `@ )  ) ` ` `   * * ` `. * * ` ` @"16767&'4'&#1!6767&'&'#"&'&'54'&+      P )) P %%        ))   ,@3676754'&'&'56767&'#9#9#"'1&'67676#`p@   A !! A       =HS3#5676?6;2#&'&'67&'67&'67&'67&'367&'#367&'#xPXZ  @````((      Xp*D6716703036767267632632121!&547163!2#&/&'&'      00   [  6))))61>KV67167!#6=675&'&'#56/&?6757%67!!&'5#!"'&=!367&'#     p; @ @ %% ``  @``  `  !  P @ @ $yy$   P @@@EJO"1;#;276=6767;276=67675#5327654'&#!#53##53##53  (H)   ))   )H( PPPPPP  @)@ @))@ @)@  @@@@@@@ 5:?D^m"1;#;276=6767267675#5327654'&#!#53##53##534'1&'&#"3276765'/&7676@ (H)   ) ))5A/H( PPPPPP""&&""""&&""M H ( =   @)@ @),'H@  @@@@@@@'!!!!''!!!!'+ H ( <  5:?D^gr"1;#;276=6767267675#5327654'&#!#53##53##5327167654'&'&#"35&'675&'567@ (H)   ) ))5A/H( PPPPPP'!!!!''!!!!'  @)@ @),'H@  @@@@@@@`""&&""""&&""`PP 5:?D^w"1;#;276=6767267675#5327654'&#!#53##53##5327167654'&'&#"37/'&?'&7676@ (H)   ) ))5A/H( PPPPPP'!!!!''!!!!';$$ %% $$ %%   @)@ @),'H@  @@@@@@@`""&&""""&&""%% $$ %% $$  5:?DQp47163!2+#&'+"'&=&'&'535#"'&535#5#3'35#"1354'&#671672+"'&=47635  (0  ,)   )H( xPP0PPPPx @ P""    @ 0 )@ @)@  @@@@@@@@ 00 ""0   0@3h47163!2#"1=&'&'&'&'&'"'&=6716'&'&'&'&''&'&7676761676   )) 3#**#  &-21  12,&  #*+#` $ } )) } $       8#567673#5&'&'#47163!2++"'&/#"'&5`0+*A0A*+0,0,`     (A*++*A,,H    <>}76'&'&#'&3?6776/&/536?6'&#&'76'&74'"'76'&'&?7?6/7?6'&'6'!  " &&&& LB 4  % #  "     UI :: I ( 8((8 ( / %?P  '   - $ & 5    $1>KXer67167!#5&'&'#&'&'3675&'#3675&'#73675&'#'3675&'#73675&'#3675&'#47167632#"'&'&57#3?6/&   3`  ` P  P  p    p  P  `""&&""""&&"" YY 8 8   ##)L2P  P       p      '!!!!''!!!!'C  8 8 $1>KXer1356767367&'47675&'&'!673#&'573#&'567673#&'5'3#&'567673#&'573#&'5674'1&'&#"3276765'/&76760  `  `3   p  P    P  p  p""&&""""&&""M H ( =  ` P  P2L)##             '!!!!''!!!!'+ H ( < $1>KXer1356767367&'47675&'&'!673#&'573#&'567673#&'5'3#&'567673#&'573#&'56727167654'&'&#"35&'675&'5670  `  `3   p  P    P  p  '!!!!''!!!!' ` P  P2L)##             `""&&""""&&""`PP $1>KXer1356767367&'47675&'&'!673#&'573#&'567673#&'5'3#&'567673#&'573#&'56727167654'&'&#"37/'&?'&76760  `  `3   p  P    P  p  '!!!!''!!!!';$$ %% $$ %%  ` P  P2L)##             `""&&""""&&""%% $$ %% $$  -:GTan135676736767&'&'!673#&'573#&'567673#&'5'3#&'567673#&'573#&'56?"133675&'#4'�  `  `    p  P    P  p   @  ` P  P              `  @ @$1>KXer13567673&=675675&'&'!673#&'573#&'567673#&'5'3#&'567673#&'573#&'56721#54763";276=4'&'&'0  `  Y    p  P    P  p   @ P  "" ` P  P%/              00 0   0"" -:G^i}135676736767&'&'!673#&'573#&'567673#&'5'3#3567#&'567675&'67167&'&'5'567/&'56760  `  `    p  P  X0  0    # #  ` P  P        @X         )4+`  4+`  @.;HUbo67167!+0+5&'&'#&'&'3675&'#3675&'#'3675&'#73675&'#3675&'#6'&'&'&76?'6767   *& 7 `  ` P  P  `  p  P   x 6 6 xh_2   -88,P  P           r0!))&&&&))!0V&*)( -:G^w135676736767&'&'!673#&'573#&'567673#&'5'567/&'567667567&'&'5670  `  `    p  P  # # }   ` P  P        4+`  4+`  @@@  @ #0=JWdq~13567673&54767=&'&'!673#&'573#&'567673#&'5'3#&'567673#&'573#&'567&'&7671;2765&'&'#0  `  Z    p  P    P  p  0'((''(('  'f' ` P  P$`             ---- '' -:GTan{67167!#5&'&'#&'&'3675&'#3675&'#73675&'#'3675&'#73675&'#3675&'##5676731#5676731#567673#&'&'535#&'&'535#&'&'537&'567&'567'&'567    `  ` P  P  p    p  P  """"""""""""`  ` P  P       p      P""""p""@""`""""hh@    0&?6?76/767&/76'&'&''& pcg5 e!!e 5gj G"   !e 5gg5 e!"G jcp  >GP[f&'6753#767';276=!;276=&/&'&+"&'6767&'76/&!?6'&^  K       0000PP 55  O%(@     @(%OI0000/8AJS113&=6?676;2367675&'&'&'&=#3'3'&+"67&'7&'67H9:""+ t +"":9Hk ֬t"":9H p!@ @!p H9:"" (( **   ;p676'&'533276=7676/&'#76?32765+";36/3675&'#57675&'#5&'5&'$$$$   44 44    <,05 @     R,,R   d   `\ T8m to FS&'&7675#"'&?'&'&?67'&/+#"'&=##"'&5&'&767#"'&='&'&?673'&/#"'&=#$$$$H :%::%;     $$$$   44 44      P]%  N..N  %]P PP   `   R,,R   `(267167&'&'&'276767&'7657'"!"""""!%% ""!J"" ""+J J0Se1#!6767&'&'#&'&'21#"'&547636716;&'54?65&'#"'&75471632#"'&5  &%    V:  ,: 6   @@    $     ?!,7BM21673!&'&'67676767'&?6%'&?6'&?67'&?66716'&'&'&'&''&'&7676761676 ")S0  0  G 0  0 0  0  g 0  0 1#**#  &-21  12,&  #*+#)P P ! P P !P P ! P P        0FQ\n!5!%13#"3!27654'&+'367675&'&')136767&'&'#3#&'67673#&'21#"'&54763@u K  K u  @  @       `@      ` @P   *@Vk;276=4'&+"1?676/&'&7"1;276=4'&+"1;276=4'&+;276=4'&+"'"1;276=4'&+ @ @ m   7   7 @ @@ @ @ @ @  @ @@ @  7   7   @ @ @ @ @ @  @ @ )CR1?676?67&'&'!#1"/!&'47%4'1&'&#"3276765'/&76760 :'&3 `('Z""&&""""&&""M H ( =   +.   /A '!!!!''!!!!'+ H ( < @0GR676#&'&#"#'&7667'&7663237671!132#!"'&5476;&'567 a WG   PL a?f  L     7W4 h XK   00?<Av323!'&76734763!2#&'&#"#&'&'01'&=4763!5!6716'&'&'&'&''&'&7676761676 K  K  33  @#**#  &-21  12,&  #*+#    |H H| @``       @!;DO671673;#!&'&'#521#"'&'&547676367&'5675&' 8$#"0'!!!!''!!!!' '.->-%%@`""&&""""&&""PP@!;F671673;#!&'&'#547167632#"'&'&53&'#367 8$#"`""&&""""&&"" '.->-%%@'!!!!''!!!!'@!;Dg671673;#!&'&'#521#"'&'&547676367&''6756736757674'&'# 8$#"0'!!!!''!!!!'@ (   (  '.->-%%@`""&&""""&&""      @ 7>671673;#!&'&'#56'&'&'&76?'6767 ]!7 ' x 6 6 xh_2 /%%-::/@b0!))&&&&))!0V&*)(7k}676&'&'67676326716'&'&'&'&'&'3274716;2#!5"'&5476;22#!"'&=47635271654'&#"374'1&#"32765271654'&#"3&  % --DE-,3L $ #                 $-D----D*22.*%  @@  ` @ @ `        @2D&'&??676767676'&'&'&'&/471632#"'&5 ] .. ] N)#"  "#)Nm    17 PP 71 ;;  #HS7#&'&'"'&5476;2#35#%;2#!&'&'4?5"'&5476;3'&=#) @@@ 1O@@  v  v  01@;)   PF``@    @ OO  "367676'&#!'3'&/  !! )!! l   ]]   4"367676'&#!'3'&/7&'1&'&6767  !! 3   l   f  )S}6716'&'&&#76767236767456?&1237676'&'65&'&#"&'&'1&277676'&'&'45&'&'"#&'6'1&'&"#767367674'67%477675&'#"76'&'7'&3276/67&'&'&  !              !          <  !]! =  x   !   =    !   !          !H=  ,! ';'=  -! @.5dk7&716?6;2++"'&5476;67&'#'&'%13010#1+"'&=476;76;2+3761#0103  $- %-#-N@ @yw v  $- %-#-N@ @yw  ] @ $  X  0 ^ @ $  X  0#Ic471632#"'&521#"'&54763213&'&'6767&=673476327167654'&'&#"374'67&=673476323&'&'6534'1&'&#"327676521#"'&5476321#"'&54763   0    +--DD--,   5  +--D/%&     P       P ''2D----D2''   `'"3 ''2D--'"'  `   0    `[r4'1&#"#;67&'#76=4'&#"'&?6'&'&#=4/&'&/=35335367&'+3`  V @ V  E   /@/   E@@  @   @;$cc$;@ @1\  #   4&> >&4   #  \1@@  *^&'&767"/#'&?'&?632/%217676/&5476321#"/&'=4763!21+&'&'56?1?632?6=4763@  -   &&  3     Cd 0 dC    3 Y##Y  d (P(3   !.O d'f@8 8@f'd O.!   3(P( M21#"'&'&5476763217676/&5476321#"/&'=4763!21+&'&'56?1?632?6=4763@#### 3     Cd 0 dC    3 """"@ (P(3   !.O d'f@8 8@f'd O.!   3(P( @&@W732?&'676726=&'&'&'&'&27167654'&'&#"3732'&?#"'&?60  21K+$!!4#!   !#4!!/'!!!!''!!!!'0$`$` +8K12 6&'     '&6A,""&&""""&&"" 6H6H@&@O732?&'676726=&'&'&'&'&4'1&'&#"3276765'/&76760  21K+$!!4#!   !#4!!/""&&""""&&""M H ( = +8K12 6&'     '&6A,D'!!!!''!!!!'+ H ( < @&@IT732?&'676726=&'&'&'&'&27167654'&'&#"35&'675&'5670  21K+$!!4#!   !#4!!/'!!!!''!!!!' +8K12 6&'     '&6A,""&&""""&&""`PP@&@K732?&'676726=&'&'&'&'&4'1&'&#"3276765##&'6730  21K+$!!4#!   !#4!!/""&&""""&&""@ +8K12 6&'     '&6A,D'!!!!''!!!!'@&@Y732?&'676726=&'&'&'&'&27167654'&'&#"373#&'5#&'6735670  21K+$!!4#!   !#4!!/'!!!!''!!!!'0000 +8K12 6&'     '&6A,""&&""""&&""0000@&@Y732?&'676726=&'&'&'&'&27167654'&'&#"37/'&?'&76760  21K+$!!4#!   !#4!!/'!!!!''!!!!';$$ %% $$ %% +8K12 6&'     '&6A,""&&""""&&""%% $$ %% $$  !,V%3&'&'#6767!15&'&'#536767574'1&#"3276=33276=4'&#"#5A =Kj#"'&=4'&+"+"#"#"+"'&=4=#&'&547%627"1354'&#671672+"'&=47635  @     " @ P""    @ @ pE   %% 00 ""0   03M\%1!&'&'5#&'&547%62&#"#5&'##3367347167632#"'&'&57&'&?6'@#   )##( 00  ""&&""""&&"" = ( H P-%&  00 0'!!!!''!!!!'+ < ( H 3MVa%1!&'&'5#&'&547%62&#"#5&'##336?21#"'&'&547676367&'5675&'@#   )##( 00 '!!!!''!!!!'P-%&  00 0""&&""""&&""PP3Mf%1!&'&'5#&'&547%62&#"#5&'##336?21#"'&'&547676376'&'&?76/@#   )##( 00 '!!!!''!!!!'$ %% $$ %% $P-%&  00 0""&&""""&&""% $$ %% $$ %'D213##5476331!"'&=#&'&?6#336753675&'#5&'# pp@ ˋ 500 00  @ (w 0 00 0@_|6716727676'&'&#323232316767677676'&'&'&1&'&0101"'&'&5676727676'&'&#723276265'4/&&'&&'1&7676767677676'&'&'&1Q"!+  $X;<%%C1  12-&  #**##+%  #=*  ``3*##+*#  &,21  12-&  #*7!  88VF55     % ( y   H H       @)?4716;2+"'&5671673#&'&'"1;276=4'&+   `     @ ` ` @)?Up4716;2+"'&5671673#&'&'3#;6767&'#&'&'#;6767&+#367536767&+&'   p* *0* *0**   vJ  @&#"5&'6753356736754/5367=&''54/ ,:``;, g MT8 !3@@3! 8TM g(;6733#&'6735671673!&'&'5!3276=4'&#"`P`$%66%$   6%$$%6` `  ;HZg4'1&'&#"32767651&'&'67673673#&'#'&'&7673#&'67356753#&'&/;#+"'&=6767&'#33#&'67   , '&4=)(()=4&' Hh  hH$$$$``p  P    @ 0   1()==)(1  `  pp     P@ P ` )4?&'5674716;2!567!!&'&?6/&7%6'&?X  MD h Oh h  h h  [77 H H H HB3#32#!"'&5476;56733353353353301!&'&?212=PP ` @(@0@(@0@0@   p  151#35#5!35&'&'!#367675#"'&=33'-!@@p   ` ``!`     ```';6'1&'&7677&17676'&'3"1327654'&#  G @ @[  v   *     )6T6756756767&'&'327&'&76721#54763";276=4'&'&') 44IR66''  $$$$ @ P  ""3_%+G-,66R-;;78! s  p 00 0   0""@CGLV_3&+'&'&'&'&??3?376/3676701015&'&'&'##7#717#&'678L56@* ) O+( 4K 0P'   "!!88E3/X0!N&-.Ha  72   e7 F* FD ,"(E88!!((&)'a0/%#"/&'&'6767'&#3?6/' ~5FX;;;;XX;;vvHHF5~ ';;XX;;;;XYHH%0;%#"/&'&'6767675&'7675&'675&'' ~5FX;;;;XX;;PPF5~ ';;XX;;;;X@@`@``&'1919191919191999999999999#399999999999999999999999999999999963#67#396595959 59 59 595959595959595959595959595959595959595959595959595959367&'#1595959595159595959595959595151515951595951595159456767&'77675&'#21#"'&'&5476763'&#"'&?7&'4767' '+=D--&&;;&&' ph   L (B  N ;; )!< '%--D=,+  +,=0%' p   n J E-  P 663E.'&J BP\'&'&=6737#5&'4767676?67675&'&'#&'&'365&'354'&#"g)G#;  :$G)"#'("#(g @  D9U0U* /M)*M/ *U**0U9D  /#3!6767&'&'!4716;2+"'&=   @ @     @*3<ENW`k671673#&'&';276=4'&+"67&'&'6?67&'&'6?67&'&'67367&'#@   88@@`@ @ 88888h-V]e&76'&?#&'673'3#/&54?63332?#65&'&'#6'&#"56767#676713527167654'&'&#"3@@R@@ uu@@@  @ @@ @9  @@@   2HOV^fs9#"'&="/'&'&76?67#"'&5476;12167167!!&'&'53&'&'7#6767135'15#&'&767  i [[  pYU ` )   ` 00 00 p 00 0`  ` jNN  `LT      p0 p0 p 0p 0P$$$$ #.;IWdr1&'&'673#&'673#&'67673#&'767&'&'71&'&'671&'6767'&'67671&'676767167!!&'&'53&'&'7#6767135'15#&'&767""x00 pp00""""P""""`""   ` 00 00 p 00 0`  ""H`""""""""""    p0 p0 p 0p 0P$$$$h6/54/176767&'&/76/76'&5&'5&''76/&?1?6=7676=7 *C$#"( & 0 22 0 & )"#$B* 0  0:17 Wz*%)*3 @ '2&99&2' @ 3*(%*zW 71 8 8?  ?8 8 f&?54?5'&'&'676?'&?'&7656756327'&?6&'&'''&'&='%35673#3#3#&'5#&'5#&'5#&'6735#&'6735#&'673567356735#35#'35#35# ;u 1   --   1"#  ( +    W00000000P0000 =,<f%* *: @%'++&&@ :* * # +2  2 )@ 0000p00P0000P00  `671632!&'&?&&--&&l > l ''-:GTagw16;#367675&'&'#5&'#5&'&'#3#&'567673#&'5673#&'53#&'567%#'?&'!676'P G Iz  ( `        <=0J  {  \w z""  HH @  p  `  P  c@)z,: (676'&'!;67674/&#"'&'0----EK{  0~   '((''((' O@AF&'1&'&'5&'#"3!27654'&+'#7#5%?676/73# ! l  C>BK5)Q !* p   ['#'   NKX^  !}  -HU[hnt676'&'57+"'&=&'&567673567&'673+"'&5676'&'654'%&'&76757654'1+"'&=&'&567673H. @  0 %.% 0  @ x$$$$P@ @  0 0 h   T2*B4' "0 '4B* 0" H   T  T*T*"+ +"0  0 -:&'&767676'&'"13!27654'&#!%676'&'76/6?;276=?;276=76/&'&+"'&'&+"&+"?;276=h  p @     $ 0 $   0   & "  " &   0 x     j1 D16 61D 1& &1 G ? ? G 1& &@ r676'&'13277676/37676'230176767410176?03277676/&/77676'&/&'&#"'&+%676'&'32?6?'&'P      9t  G 2   "#&5  r< =(`   {  6 @!NX  \ 6A  %"< >; > $-/6CP~1&'&/&'&3276=3327656?6'&'&676'&'!676'&'13276=33276=;27654'&+'&'#     ;    ;    X        0 &+!#  #D  2D#  #% `    ;$#0='%'&'&767%6&'&767&'&767676'&''+"'&='&?676;27676;26;2/+"'&='&?&/+"'&='P   !    8 0   & "  " &   0   $ 0 $    `(  1& &1 G ? ? G 1& &1 D16 61D  Fi676'&'53+";!27654'&#!57676/&'&+"76?'&#"32?654'&#"54'&#"  @X xPx  :  : X P P   ```   /  a a  / P P   Fi676'&'53+";!27654'&#!57676/&'&+"76?'&#"32?3276=327654'  @X xPx  :  : P P    ```   /  a a  /GP P    LY&'&767'&'&7#&'54'&#"/"'01&'&'&74?676;2'&'&767----? <(  f  C $L#3 u'((''(('O  -% 03  P eG  3   ?g676'&'533276=7676/&'&+"76?32765&#"'&?76/?'76'&'     :  :    L (B  N ;; 27' L` /  a a  /  J E-  P 66 O)&E J  =V&'&7677676/&'#"76?3276=33276=67675&'&'675/ J-$ :     X  9  Y" a  0  pp  Y676'&'5332765;27654'&+53#5#367675&'&'#+"76?32765    8@ @    MB :   `   @ 0    P a  0 @ ;Ud676'&'#"'&='&'&?676;2&/#"'&=#47167632#"'&'&57&'&?6'p(   :  -   ""&&""""&&"" = ( H   Ѐ 0  a J#/ '!!!!''!!!!'+ < ( H @ ;U^i676'&'#"'&='&'&?676;2&/#"'&=#%21#"'&'&547676367&'5675&'p(   :  -   '!!!!''!!!!'  Ѐ 0  a J#/ ""&&""""&&""PP@ ;U`676'&'#"'&='&'&?676;2&/#"'&=#47167632#"'&'&53&'#367p(   :  -   ""&&""""&&""  Ѐ 0  a J#/ '!!!!''!!!!'@ ;Un676'&'#"'&='&'&?676;2&/#"'&=#%21#"'&'&5476763&'#3675367&'#5p(   :  -   '!!!!''!!!!'0000  Ѐ 0  a J#/ ""&&""""&&""P0000@ ;U^676'&'#"'&='&'&?676;2&/#"'&=#%21#"'&'&547676367&''6756736757674'&'#p(   :  -   '!!!!''!!!!'@ (   (   Ѐ 0  a J#/ ""&&""""&&""      @ ;Un676'&'#"'&='&'&?676;2&/#"'&=#%21#"'&'&54767636'&'&?76/7p(   :  -   '!!!!''!!!!'; %% $$ %% $$  Ѐ 0  a J#/ ""&&""""&&""k $$ %% $$ %% Ks&'&76733276=33276=3276/7676/&'&+"76?3&#"'&?76/?'76'&'    &" 5 5 "& L (B  N ;; 27' L  ` `` `s8  YY  8sn J E-  P 66 O)&E J?-:o4'1&#"6763276?676'&'&'&'&'5676'&'&&'1&7676767677676'&'&'&1&'   !i  i?=&$$$$ #+*#  &,21  12-&  #**#  )$# a   (          @>K213'&/+'&/#"'&=6767676=4763&'&767  !9W, &`\   .     )##P:  3  J J1((   |>Kz4'1&#"3276=477676/;7676/&'#'1676=&'&76776/7676/76'&'&#"'&011327  .   \P& ,G9!p; O A' L L (B $'   ('2J J  3  :P##) 0  6 O  -F J J E- 1$@ (J&'&767532'&/#"'&=1'671671#"'&=#"'&?'&'&?   ;   n  &" 5 a  0 ` `s9  Z@ =Jkv676'&'73276=33276=7676/&'#"767%&'&767'&76?367675&'&'367&'#&76/      / J-$ : ) 0 788  0 0`0  9  Y" a  A  h;* `  87f(2     +;H3675&'167674'#"1;7&+357676/&';276=#"" iZ6 M   b""p  Y.Z     AW`6?#&'3&'&'47'01'6;27&76'&'#"'&='&'&?67#'67&'""62_  8 $L  V 6  L 9""Zn  ` @ 4 nZ  %1>Tk3675&##67674';23'6=&'&'#"7676'&'1;276=&'&'#654/&#3?7675367&'#5&'&Goow{ @$$$$   @@  XX  @H@  XX  @ A   o+ j       8    8 8    8  ?JU`k676'&'#"'&='&'&?676;2'&/#"'&=#6/&7!6'&?&?6'!'&76'(   :  ;   PPPP0PPPP  Ѐ /  a a  / YPPPPPPPP !V2#5'&'&?676;'676'&'%756733##&'5#"'&=47635675&'67; ' 6  L%2i'((''(('  50,< ԮZ  p----Pt m8U \`   d+N&32765732765&/676'&'5367576/&'&+"?67       &  &    -nn @ XX1 G G 1 HZ676'&'431277676/&/77676'&/&'&#"76?6?32?6?'&'3127654/36767&'&'#";#7654'&#"  TG 2   "#3  < =([ D----D )) P P`i@!MX  \ 6A  %5   >; > $-w --DD--  )) P P HZ~676'&'431277676/&/77676'&/&'&#"76?6?32?6?'&'%"#";32?654/  TG 2   "#3  < =(   P P`i@!MX  \ 6A  %5   >; > $-    P P HZ~676'&'431277676/&/77676'&/&'&#"76?6?32?6?'&'%"#";32?654/675&'&'675675&'&'675  TG 2   "#3  < =(   P P`i@!MX  \ 6A  %5   >; > $-    P P00x00$  HZs676'&'431277676/&/77676'&/&'&#"76?6?32?6?'&/&'&76?6?6'  TG 1   "#3  < =(> 6 @ 7 @, `i@!MX  \ 6A  %5   >; > $-> 7 o   oL *DS1?2372367&'&54767'5&'&'4'1&'&#"3276765'/&7676: nn #M""&&""""&&""M H ( = Ti B1G+*  "#).&%,T'!!!!''!!!!'+ H ( < *DMX1?2372367&'&54767'5&'&'27167654'&'&#"35&'675&'567: nn #M'!!!!''!!!!'Ti B1G+*  "#).&%,T""&&""""&&""`PP*D]1?2372367&'&54767'5&'&'27167654'&'&#"37/'&?'&7676: nn #M'!!!!''!!!!';$$ %% $$ %% Ti B1G+*  "#).&%,T""&&""""&&""%% $$ %% $$ .;Z67167'"#'"#&'54?5'54?5"1354'&#671672+"'&=47635f@: nn :P @ P""  bT:"G+   *+G1B iT 00 ""0   0 %0?O^m|1&'&'5673#&'673#&'67673#&'767&'&'571&'&'567&'56767'&'56767&'56767&7163!2#!"'&=&'&'""x00 pp00""""P""""`""  %  %"" H`""""""""""  & &@ A[r"1354'"1354'&#"133276=67&56767654'&#!27167654'&'&#"3732'&?#"'&?6` @  @  $#8  ##8 '!!!!''!!!!'0$`$` `` ``  ;++ C C=.- ""&&""""&&"" 6H6H@ A[j"1354'"1354'&#"133276=67&56767654'&#!4'1&'&#"3276765'/&7676` @  @  $#8  ##8  ""&&""""&&""M H ( =  `` ``  ;++ C C=.- '!!!!''!!!!'+ H ( < @ A[do"1354'"1354'&#"133276=67&56767654'&#!27167654'&'&#"35&'675&'567` @  @  $#8  ##8 '!!!!''!!!!' `` ``  ;++ C C=.- ""&&""""&&""`PP@ A[f"1354'"1354'&#"133276=67&56767654'&#!4'1&'&#"3276765##&'673` @  @  $#8  ##8  ""&&""""&&""@ `` ``  ;++ C C=.- '!!!!''!!!!'@ A[t"1354'"1354'&#"133276=67&56767654'&#!27167654'&'&#"373#&'5#&'673567` @  @  $#8  ##8 '!!!!''!!!!'0000 `` ``  ;++ C C=.- ""&&""""&&""0000@ A[t"1354'"1354'&#"133276=67&56767654'&#!27167654'&'&#"37/'&?'&7676` @  @  $#8  ##8 '!!!!''!!!!';$$ %% $$ %%  `` ``  ;++ C C=.- ""&&""""&&""%% $$ %% $$ 4J_'&#"?765'76'&/"1;276=4'&+"1;276=4'&+;276=4'&+"b4& // &4b       00%54%   @   `@ @ $+A"13276=7#54'&##3?3?#'3?#3327654'&#"   UU uJZJZ*J[JZZJZJ U   U    @   6*5[`!2#!"'&54763675&'&'675675&'!#3+"'&=&'&'535#"'&54763#35`  @(()   )H( PP @  @@@@X@@8@@`)@ @)`@  @@@ =Wf33276=32&#"54'&#"327#"#&'&'47676347167632#"'&'&57&'&?6'K  K+-%&   v""&&""""&&"" = ( H @ @ x#+ @  @ L '!!!!''!!!!'+ < ( H  =W`k33276=32&#"54'&#"327#"#&'&'47676321#"'&'&547676367&'5675&'K  K+-%&   v'!!!!''!!!!'@ @ x#+ @  @ L ""&&""""&&""PP =Wp33276=32&#"54'&#"327#"#&'&'47676321#"'&'&547676376'&'&?76/K  K+-%&   v'!!!!''!!!!'$ %% $$ %% $@ @ x#+ @  @ L ""&&""""&&""% $$ %% $$ % 0CPn#"3547632356756767'&'&+#"'&=#"'&=4763221#54763";276=4'&'&' Kv  ,K  @    @ P  ""  @ @%-V @ @@ @  00 0   0""[$76716567656765676+5!2#!"'&54763@ c c c  D@@@@@ @  K        */Z;+&'6735#&'6735#&'6735#&'6735#&'673!!#3#3#3#3+=;  X`  XPPX(  ((  (XPPX /H376'&'##901!6767&'&'&'01&'&'/'&?'&7676/ /*) )@) )*////////`G  G "#78R))R87#"////////6CP_y&#!1#567671367#&'&'67676725&'&'#'3#&'5673#&'56?367&'#5&'4'1&'&#"3276765'6/&767Rv  @$%%%,;-%& v     @""&&""""&&""c H ( = [  `:) %%% #{ [@@@@ '!!!!''!!!!'+ H ( <6CP_y&#!1#567671367#&'&'67676725&'&'#'3#&'5673#&'56?367&'#5&'27167654'&'&#"35&'675&'567Rv  @$%%%,;-%& v     '!!!!''!!!!' [  `:) %%% #{ [@@@@ ""&&""""&&""`PP6CP_y&#!1#567671367#&'&'67676725&'&'#'3#&'5673#&'56?367&'#5&'27167654'&'&#"37/'&?'&7676Rv  @$%%%,;-%& v     '!!!!''!!!!'$ %% $$ %% $ [  `:) %%% #{ [@@@@ ""&&""""&&""% $$ %% $$ %@.;HUbo3#3#5&'&'#&'&'567673754763&'&767%3675&'#3675&'#3675&'#!3675&'# pOYf  fZ 0  p      @@p  p@@   @@@@p@@@@)6CP_l63&'&'#131!&'&'6767373675&'#3675&'#7676'&'73#&'567"1354'&#671672+"'&=47635.v  00 @@  v    2222  @ P""   [ 0  0%` @ [@@@@H*,,**,,*x ` 00 ""0   0"-17135476;&'&'!'&?6'&?6#7 ` ` ` u  u` ` 뀀8AJ&#"767676'4'&/6732;2?631&'&'567&'7&'67  /.VV./ m (0( ))8`P3EEAB+ +BAEE3P 66 v))v<LU&#"767676'4'&/36767533#"/&54?';#"'&=67&'67  /.VV./ l, @"0 c (  P3EEAB+ +BAEE3P@ "3 * ~  004&#"767676'4'&/671672763/&'  /.VV./ }S SP3EEAB+ +BAEE3PR R,CN67167!!&'&'6757675&''&675367&'#5367&'#3&'675@L B B 000@`@A fn  fn @`P "D1!6767&'&'!676'&'67167"/'&'&?6765@@`P7 1 )@p  hf78  ` *;Vhq1!6767&'&'!76'&&'&'&'&76'&'&'67676'&7676767271654'&#"3&'67@@   X@>   js3#5367&'+3#5367&'#&'5'#"'&5476;'#&'&'67673'+#&'&'6767;'54105676321167&'A))(((())+' $)# #Z ))P))Pd+  )$_     E0=O"'&?32?76/767&/76'&'&#&'&7674'1&#"3276547163276765&'5&'&'&#76765&'547632!"3!27654'&+= 9 7 7 9 9 7  7 9 $$$$   8     """     X @ h 7 9 9 7 7 9 9 7 `  @   5 !   ! 5""" !   !     `@-&'1&'!!5476;57#21#"'&54763@@`   @ @   @37I&'1&'67676'367673#"!&'&'676753271654'&#"3               @6+'!"'&76?          37/&765677662#!"'&5476;576?3' PP (({    MMPH H $zz$      ǀ@"9&!76'&76/!?654/&;53276/&/ "m! PP !! PP  ``    H H  H H   @ 76'&76/!675&'&'!7&;53276/&/x PP !q""3!  ``   H H ((3""}   8)@&5&''&?6'!&5&''&?6'&;53276/&/(( PP `(( PP   ``  P $zz$ H H $zz$ H H7   )3276/&/&&;53276/&/     ``  z )      @ *!54'&#!"#6753675#!&'567@    @p@@@ *7JU32!54763;&'5#&'5675&'732!54763;&'5#&'5675&'        `p@@   `p@@@3UZ^o&17676'&5476'&'!1767654'&'&65&'&'76?37676'#73'#7'6'&76'&547%&7654'?         Q&L&}   &    2::2  '--'  '--'  2::2   --  . SS #''#   #''#;?EIMX6#+32+"10+"101#"'&5476;7#"'&="'&76?'3'7'#7'''367&'#    E _` E    I;:uu??t .#n- "vP P   P PC1155SC&&C#0=JWd67167335673+&'&'3675&'#3675&'#3675&'#73675&'#3675&'#%##"'&=#&'&'67&56767  ` (  ` @           "  #))  HH     P  p    p   )# #) ))$%'&76767&54?632#"'XcB  P Ac _`  cA P  Bc  `_  6K`3673#&'#/&'6?64716;2+"'&=32+"'&=476;!2#!"'&=4763YX  XY/   ` `    H  H `  `  @ @ @ @ @ @ 4:GTi67167!322+&'&'#&'&'#&'&'35'#676'&'%&'&767&#3?6/ @ 3M  )))) M3  p''PP  0M @  )))) @M`0  A''PP4:GTh67167!322+&'&'#&'&'#&'&'35'#676'&'%&'&767%67167&'&'& @ 3M  )))) M3  p   0M @  )))) @M`0  !! !!BGTa671673332+&'&'#&'&'#"'&547635"'&=476353'#676'&'%&'&767 %4)5  ))))   `V++  p`$w  ))))  ` ``0  DIVcz1"3";676736767327654'&'&'#&505'&'#&'#3#5676'&'%&'&767'567/&'567667567&'&'567`   ))))  5)4% ++Vp  # # }   `  ))))  w$```  04+`  4+`  @@@  @*IR[d1??&=&'1=15&'&'367533675675&'&'!673#7&'6767&'{2[ZX  PkQ @%R( !"Ra! +((+ !  O11a "4F]jw67!!&'67!!&'676'&'6716732#"'&5&'1&'6;+'+"'&547676;27676'&/&'&767PPS  3`V ` Rg3  0 ` ,  q--..0H$$$$     >0 /$$$$@'((''((' /FS`t&'&7671;6767&+32765&'&'#"'&+";2767&'&'7&'&767676'&'"13!27654'&#!   V`R `g ` 0  3  --.. @ `$$$$    >/ 0$$$$`'((''(('     +8O\l{&76/!?6'&?6'&!76/&%676'&'3674'&'&'&+""'676'&'136767&+67&'&'#"3'676'&')HH.HHHHPHH$$$$l&P($  8 FpF 85  HHHHHHHH  P  # %p  P p+8GViv1!6767&'&'!47163!2#!"'&5&'&76736767&+367&'&'#"'&+"3674'&'7&'&767676'&'`))))@  @ 8 Fm8F YP))$$$$)))@)`  @P    / &  & q  P   -<O\iz367&'#"675676'&'136767&+67&'&'#"3#&'&+"3674'7676'&''&'&76?36754'&+5&';67&'#!3276=&'#0Xh   8 FpF 8Y)P)$  P  xX h8 hXh X hX  P &  &  p $$$$Xh `Xh  hX %?N4716;2#&'&'"'&535#47167632#"'&'&57&'&?6' @@@ 3) `@@""&&""""&&"" = ( H   ,9&!')  ``'!!!!''!!!!'+ < ( H 05w"13674741&'&'676705&54767527654'&+53#1766767676'&76767&'&'&76'&'&'&''&721#"'&5476367&'  ), @@@@@@xh  (  )r  ``X   ` g6'&?'&&/&&/&32?32?6/&'77414567&'767&'76'&&6'76'&&/27167654'&'&#"35&'675&'567XX      E E '& ", $. +F.;  :. '!!!!''!!!!'XX '& *! &' *! &' D E  ! "2(  5 .< !!:. ""&&""""&&""`PP ?H671673&'&'54'&#"&'&'567673276=#&'&'7&'67)&&'&::&'    '&::&'  )`)&V:&''&:P   :&''&:P )'@Yr"13!27654'&#!"13!27654'&#!'?76/76'&'&!&?76/76'&'3?76/76'&'&  @  @ 777777777777777777777777     777777777777777777777777@ F&'&7673276=33276=3276/7676/&'76?;       ;%::%: $$$$P PP P]%  N..N  %]o F&'&767&/&'&3276=3327656?6'&'&#"'"1"'  g% +   , $$$$i   ) `` +  @!;J671673;#!&'&'#547167632#"'&'&57&'&?6' 8$#"`""&&""""&&"" = ( H  '.->-%%@'!!!!''!!!!'+ < ( H @!;T671673;#!&'&'#521#"'&'&54767636'&'&?76/7 8$#"0'!!!!''!!!!'; %% $$ %% $$ '.->-%%@`""&&""""&&""k $$ %% $$ %%"FP]30101#!3#/&+'4#676=#36767&'&'!!7676/3+0101547&'&767@.@ DLG)"I.+    ! TJ(JEJ  ('2J@[?##) @ `   2  ~0Jg  Q671673276765&'5&'&'&#3276765&'567673276= ..""33""3""..  H 66 3""""3""3 66    ,1%+!"'&54763!5!"'&='&'&54?676325%! P@   $$$*)%F@   0 u  /! 9I<Rdv"'&?67!/&+3#"/#+&'&?&'5676735#"1;276=4'&+4'1&#"32765271654'&#"3W  **  q()#B( 77 (B#)(qI     `      0)/B 77 B/)0p          !%#";27654'&+576'&'!'!  @ `` @ @&ֳ   ӓ*&'&'676725&'&'67672=67%6 ))))))@  H"""M"""H` 4%#"/&'&'676727167654'&'&#"3' ~5FX;;;;XX;;'!!!!''!!!!'F5~ ';;XX;;;;X""&&""""&&""732?675&'&'&'&'&0  /!!4#!   !#4!!/ ,A6&'     '&6A,(&'?76/76'&/=  @hh @g DD g-727167654'&'&#"313!2765&'&'#####.K32    23K\""""023K   K32 "/<IVcx67167!!&'&'3675&'#%3675&'#%3675&'#%3675&'#%3675&'#%3675&'#;276=4'&+""1;276=4'&+0  p    p    p      `@    p    p     @ @  @ @  )#53#53'#533#51!6767&'&'!ࠠ`@@@ $).38=B1!6767&'&'!#5;#53#533#53#5;#5#5;#53#53@XXX8XXXXXXXX@XXXX8XXXX@@@@@@@@@@@@@@@@@@@@$).367167!!&'&'335#)!535#)!535#)!5@@@@@@@`@@@@@@@@@@@@@ `1#"/&5476327632 i W j  ``)6514'&#"'&#"32?327654/7W ii jj ii jj) jj ii jj ii3%#"/&'&'6767675367&'#5&'#3' ~5FX;;;;XX;;@@@@F5~ ';;XX;;;;XX@@@@%%#"/&'&'6767%367&'#' ~5FX;;;;XX;;F5~ ';;XX;;;;XI4'1&#"3276=6716'&'&6767674'&'&&'&'4767    ) 66CC66 (  21KK21  Y "/08C66  66C80/" ##)K1221K)## `':Na21#"'&5476321#"'&54763#"'&54763221#"'&=4763#"'&=47632@    `     `    @  `  `   @   @ @ P]/#"'&/&''&/&'&?&547'&76?6766?6763276676'&' ,,   8  8   ,,   8  8  ---- ( (   ::   ' (   99  '((''(('@J%1#+"#"+"'&=4'&+"+"#"#"+"'&=4=#&'&547%62@  ! @        @ @ pE   (1&'&'&547676776/5&'F::$""$::FF::$""$::F ` U!"<=CC=<"!!"<=CC=<"!x @ 9{@.A#"3547632367674'&'&+#"'&=#"'&=47632Kv  vK  @     @ @ L @ @@ @ #@I4'1&#"'&#"32?654'&#"51!67675&'&'##"/#&'67  I Ie.-fp J J  --8,"1!676754/&'&#!!##&/&'#7y9903  x  30 \\ @ @#";276=4'&#"'&'&767654'&#"#"'&5476322   ,9999,,,,9999, 1@@1//1@@1   3,,,9999,,, //1@@1//5p767632#";0109276=4'&#"'&'&7673276=1767676'&'&#"'1'327654'&+"##i 1@@12   ,9999,% B  ,9999,%  1@@12 "//   3,,%.  V 3,,%.  "//  @'9KVal67167!!&'&'271654'&#"374'1&#"32765271654'&#"37367&'#367&'#367&'#@       ``@        `` +35&'&'567673!&'&'567673""@()==)(000""00=)(()=0+4'1&#"3276=76?675&'&#"'&5@   @@;EI"  $&E  p "  9163&'&'=676767&'&'567672&'&'Q99   """:9HH9:"""   99Qp32O  "00H9:"""":9H00"  O23@&'&#3767@DD  x@x  '/#&'&'56767376'&767&'&76-DDp!!     x@x //  /@W1'&767654'&'&761'&767&'&76'&767&'&76'/#&'&'5676737611 )) =!! 33 I367&'#367&'3367&'#3367&'#367&'#'67&'XH`@p`ppp`'32?654/&+21#"'&54763 p  p    *<'&?654/&765676732#"/&574'1&#"32765Y''pp    *66*qq## V   ,7B1!327654'츝4'&+!!!"'&547637673#&'3#&'67`))      ))  @ @ @  02?367&'&'!  Hll  <E1353354/&+!=!3276=&'&'!;!67675'&'67@@@    ``CC @@ `` @@6#!6767&'&'#'&'#21#"'&'&5476763 KK "z" k     /3&'#";27654'&+73#";27654'&+#7   `  ` p88   00   k)6C4716;+"'&5476;=#"'&567167&'&'#336767&'&'+ 06%$$%60  ppp p $%60"#6%$  @)4716;2+32+"'&5476;#"'&5  ;@  ;@     @ @5Y53#";27654'&+33276=&'&'+32765%"3#32?6'&'#53676/@@    @   pp    @   @ @   @@   @  0  0 W @@ @@5Y53#";27654'&+533276=&'&'+32765176753?654/&#5&'&@ `       7 @@ @@@    0  0  @   @ @  @';O1+"'&5476;21+"'&5476;2%47163!2#!"'&51#!"'&54763!2                  ';O4'1&+";27654'1&#!"3!276513!27654'&#!"%4'1&+";2765`   `   @   `           ';O1+"'&5476;21+"'&5476;2%47163!2#!"'&51#!"'&54763!2     @              ';O4'1&#!"3!27654'1&#!"3!2765%13!27654'&#!"4'1&#!"3!2765     @               4HUb3675&'#"13!27654'&#!"13!27654'&#!"13!27654'&#!'3675&'#3675&'#(00         000000       0000':N\47163!2#!"'&54716;2+"'&532+"'&5476347163!2#!"'&=&?6/          f  f    `      O O':N\47163!2#!"'&54716;2+"'&532+"'&5476347163!2#!"'&57'&'5676          f  f     `     O O @&67167!!&'&'%/=?6/``@  @  @ -:67167!!&'&'&#"'&#";276/676'&'D W @` x  `@k ! P  11#"'&'&'&'6767''  ''66RR66-;;78! !87;;-R6666R $%&'1&'6767!67167632#"'&'&'66RR66@!"<=CC=<"!!"<=CC=<"!R6666RF::$""$::FF::$""$::F+&'1&'6767676;2'&'67&'&'&'R66!!''  ''!!66R` 0"@66R/??77 77??/R660 " M"7654/?6?''1!676754'&#"#!"'&5476;27654'&+b  Y bL)))   ` `b X  b)))` `   i"32?#7654'&#"327654/3'&#"32?654'&#"5332?654/&#"#5327654/ @ s @ @ s @ @ s @ @ s @ @ s @ @ s @ @ s @ @ s @@ %767&'&54'&#"3276=      @     *%//#"'&5476327676    v  v @ v  v    %767&'&'=&'&7675   @  **Y`     @&7%67&'%I   @+136767&'&'#3136767&'&'#0                      67167!!&'&'@ 7'&'6767=676'&'55   @  **Y`     @*7??327654'&#"'&'&    v  v @ v  v   @ 7'&'676547632#"'&=5     @     #2!&'&?6367167!!&'&'   `   p    71327654/7654'&#" @@%1#"'&54?'&5476327 267167654'&'&''5#&'6735673#&'F::$""$::FF::$""$::F@@@@@!"<=CC=<"!!"<=CC=<"!@@@@$67167654'&'&'3#&'67F::$""$::FF::$""$::FH@!"<=CC=<"!!"<=CC=<"!267167654'&'&'676/'&?'&7F::$""$::FF::$""$::FQ////////@!"<=CC=<"!!"<=CC=<"!Q////////(67167654'&'&'/&7676F::$""$::FF::$""$::Fq@/o@!"<=CC=<"!!"<=CC=<"!/@/o<N67167654'&'&'6716;&'54?65&'#"'&75471632#"'&5F::$""$::FF::$""$::FV:  ,: 6   @!"<=CC=<"!!"<=CC=<"![ $     /A67167654'&'&''35#&'6733#&'6?21#"'&54763F::$""$::FF::$""$::F(0P(  @!"<=CC=<"!!"<=CC=<"!@X   9s2132+#"'&=&'&'#"'&5476;67675476315476326767#"'&5476;&'&'#"'&=32+721#"'&54763 H11   12G  H11   11H  ,  ,   ,  ,      12G  H11   11H  H11  ,   ,  ,   ,  @    -%6?67&'&'%67167632#"'&'&'o#66R?0."66R?0 c!"<=CC=<"!!"<=CC=<"!# 0?R66".0?R66#oF::$""$::FF::$""$::F#71327654/!27654'&#!7654'&#" j3 j i  i #%6514/&#"!"3!32? j 3j i  i #"32?32765327654/ i  i  j 3j #312?654'&#"4'&#"'&#" i  i  j3 j *#367&'&'&'67673?654/&3pK12  )`  @21K8%%  )@   3Mg"13276=327654'&+4'1&#";27654'&+5"1;3276=4'&+4'1&#"#";276=   @ `  ` @ @  `  @ `  ` @   `  @@  @ `  @  `3Mg4'1&#"#";276="1;3276=4'&+4'1&#";27654'&+5"13276=327654'&+  @ `  @  `@  ` @   @ ` @  `  @ `  `  @ ` @  %1#!"'&54763!2  `   $667167654'&'&'&'567471632#"'&5F::$""$::FF::$""$::F   @!"<=CC=<"!!"<=CC=<"!pp  8HQZ+"'&5476;#"3!276=4'&+65&'&'#'&'#!1+7673235#367675#"H   *  * %33%P H#    {;   @ @ %**)+% ; Ȱ  :1673+0101"016756736767674'&#"+<--3=XH'!,4..>C66  h`"!7 ./9K0:$$''BAQA7 :6676&'&'&'676727676'&'&'&'&3)% 32??32++GC%      1 &.  @55  55@Z66I:/ "   '66S`21KK1221K;,   V88 9#$   ,;G11?23#  @hg D#K%6514/&#"#";32?%271654'&+327654'&+"'&5476; J J  @))@ @ @ I  I  ))   %147163!2+#!"'&?6?#"'&53#"'&=   9  9  @    @ @ ` `#O"1;32?3276=4'&+1!676754'&#"!&'67327654'&+@ S  ""@"  p p  S  """p p@  &J32+";6767&'&'#"36514/&#"#";32?`@ @ @))@  J J `   ))  I  I @FR^##+";27654'&+"'&5476767676767&'#654'&'3&'&'&'67673 j#!%%    %%""j T&##&T E21!       !12E pC//!##1!//C1##"@I#"'&=#"'&54?632#"/367673!&'&'5676767&'  I IpS J J  h1C&'1&'"'&27676767676'&767651'&767676 998,+ 998,+*  %%2 `+,899 +,899   * 2%%!&'1&6?6'&/&&'&'76/ X< ?  //  ? > -- > ?  ..  ? > --  ? > -- > ?  ..  ? > -- > ?  // 4Hw21+5321+"'&5476;71+"'&5476;221+"'&5476;'3#&'&'56?673#"'&=&' Р @ @@ 0 0 ` @ @X  D--. %5  `  @   @     `--D>B/ %X 88 4Hw"1;5#"1;27654'&+'1;27654'&+""1;27654'&+7#367675&/&'#3276=67  Р @ @@ 0 0 ` @ @X  D--. &5  `  @   @     `--D>B/ %X 88 4Hw471632#5471632#"'&='21#"'&=4763471632#"'&=5327327#&/&'5676732+36767  @   @     `--D>B/ %X 88 Р @ @@ 0 0 ` @ @X  D--. &5   4Hw13276=#713276=4'&#"2716=4'&#"3713276=4'&#"'632676325&'&'#327654'&+&'673  @   @     `--D>B/ %X 88  Р @ @@ 0 0 ` @ @X  D--. %5  .%&'1&'&#"3276767%63#/&?!"<=CC=<"!!"<=CC=<"!GGppF::$""$::FF::$""$::FGGpp.713276767&'&'&#"'&?#&'673'&76!"<=CC=<"!!"<=CC=<"!GGppF::$""$::FF::$""$::FGGpp.67167654'&'&'/&'5'&?6F::$""$::FF::$""$::FGGpp@!"<=CC=<"!!"<=CC=<"!GGpp.16767654'&'&'&7656776/F::$""$::FF::$""$::FGGpp!"<=CC=<"!!"<=CC=<"!GGpp  +3>LT]%#&547373#654'7#&'+676766+67673#&547&'3''&/&'&'3!1673`{{pt(<-,   t,-<({{  <(<-,tf,-;'t!!!!@!!!! b6'(87(##(78('6b !!!!(77(##_b6'(88('6b-6%671674'&'&+&'54?6'&'&#2?3&'67`D--M9MD-- --DL9M--D X!5I]j#"/&7676#"/&767674716;2+"'&54716;2+"'&547163!2#!"'&5'&'&767 H (7 H (7H     @    p  P(= P(= f      067!/&='&7  @    0 O#<3#567#;5&'&'#5&'&'##+"'&=#!676758@@ @ (((``(   I"3#5&'&76753#32?6'&'#53?654/&#53676/ @  `@ @`  @ @ `@ @`  @ @`  @ @ `@ @`  @ @ `@ -A[k&'&767!&'&76767167320101#&'0901674'6;#'47167632#"'&'&5671673!&'----p----.*))*.ֵ   `&&8v8&&'((''((''((''(('. ;%%; .`  8&&&&8n7o%6514'&'&?6#"'&'&?6'&'&32?%1?676'&'&'&'&54?63276?6'&'&#"D**'43,  q  &-9:-p**'43-  p  &-9:,q-:9-%  !q  ,43'**p-:9-%  !q  ,43'**p&71!6767&'&'65&'&'"&'&'01()=p6%$,)$$-D--+p=)($%6/"# )$--D$$0(3+"3!67674/&=27654'&+53#765   m 6 l   `@#"    Ņ$88$+5BO'65&'&'27&#67674'6'&#"3276/'676'&'&'&767' 00  0''0  00  v @0  '0  00 '( 00  0 v @  ,32#&'&'67673#353#&'&'6767|D   P@@   D    @ 0    E&1"32?632#"'&54?632#"'&54?632?654'l !++! 3AA300%//%##  l!++!  003AA3##%//% ,91!676754/&+4716;2+"'&=&'&767@@M   $$$$M` @ @  67167!!&'&'@`@';47163!2#!"'&547163!2#!"'&51#!"'&54763!2        `       4HUb676'&'7"13!27654'&#!"13!27654'&#!"13!27654'&#!676'&'7&'&767@             00P       P  4GZm6733#&'6735#&'&'&?6763#&'&?6'!2#!"'&54763!2#!"'&54763!2#!"'&54763 P?  #!X H      x`  &  N        >l6767676'&'&'&'&01#"3!27654'&+0101#&'&'&7'&'&'"1&'&'&2997676'#!8    E7: ]  7 !8  E7:L 0   @#        @ ;O4716;2+67675#"'&5476;2+&'&'5#"'&547163!2#!"'&5 ` )) ` --DD--      ))   D----D    )753#3#553#7#53%1!6767&'&'!@ࠠ``@```````@&5147632#"/7'}##Nii}##ii4:GT13676736767327654'&#=4/&+5&'&'!3#5676'&'%&'&7670  ))))  M3 p3Mp    ))))  @ M0 M`  0@#+3M1!6767&'&'!#5'5367167#7&'1&'3'21#"'&'&5476763@@@@@@@@@  @@@@   @@7312?6'&'!   I @@"!676/   7 `7&514?6/    @`76514/&?    67167!!&'&'3#!#3@`@@@ 6312!&'&?'&767!#"'       R @#1"/&767!    @"!676/    $1?67&'&'!!67675#"/0  `0   pУ @32+"'&=476327676'&'&547632327654'&#"~2   ,9999,,,,9999, 1@@1//1@@1   3,,,9999,,, //1@@1//-G"32?32?654/&#"'7654/"32?654/7''? x  j  x  j  p 0 p ;-; x  j  x  j  p 0 p ;-;6'&37%6'&'#7]  pM oL  @m671673#33#&'&'5676735&'#3#&'&'5676735#3#&'&'5676735676735#&'&'5 @    @    @    @   p  @ (  @  @  ( @  @ (  @  @  ( @>;X21'&'&#&'&'&'&'&'&'"'&56767547632"'&/&7676367563  eEF  FEe  "      @@`    `@@  s"    s 5>B#3676735&'&'#&'1367675#"'&=+'&'673'%9  "0 9%p   ` @0p``  "     `XX``p):%671496767&'&'93671675#&'6767 21KK12 P""P 0"@.' +9K1221K9+ '/""P0 "#G6514/&#"!"3!32?3127654/!27654'&#!7654'&#" ` * 3* ` *3 * ` `) ` )  ) ` )  ) ` `$9&'1&'676745676763!7?6'&5&''&=)(+--D-$$),$%6OPP'' ()=0$$D--$) #"/6%$PP''$9&'1&'676745676763!7?67576/&=)(+--D-$$),$%6O''PP ()=0$$D--$) #"/6%$''PPgp727167654'&'&#"313!2765&'&'#&'6754'&#"#&'547675&+"&'&'4767567&'####`9##    ##9     \   """"7.->   >-.3( (9A; 0Se167675'&'&767667675&'&56767&'&'&'&'5476?6271654'&#"3 ))   #$7,0  "" 21KG119#$  R    y))y  y;+* + 0G "" GK12-.F ++;y   &335&'#567673!5#3#&'&'6767#30@  ((((( ` $/"1!676/&'5&'&'54'&#65+327 8#$/    0$#8 -@@  ++;H7  6I;++  &947163!3##&'&'536767&'&'#!2#!"'&54763` @@6%$$%6 ))  @   $%66%$))   3Ol671673#5&'&'#3#&'&'5367&'#5367&'#56767!1#3#3#3%#336753675&'#5&'#  P  Ppp PPPP   PPPP pp  0P  P0` @0  0@  4:GTq67167!322+&'&'#&'&'#&'&'35'#676'&'%&'&767#336753675&'#5&'# @ 3M  )))) M3  p00 00   0M @  )))) @M`0  P0 00 0&3P3#567!=&'&'##336767&'&'#6733##&'5#&'567358  @   00 00((( ` ((0 00 0BM673#32+3#&'6735#+"'&="'&547635476;235#&'367&'#pht ff thp 7     7 P@@&&7 @  @ 7 !*5@K47163!23#&'&'76=&'#'&'6753&'6753&'675   3! R`8 3@@  !f %"`f /1!6767&'&'!&'5#&'5673567@@@xhhPPPP.1!6767&'&'!5#&'6735673#&'@@@@@@@@@@@ 271327654/7654'&#"%327654/7654'&#") ` @2%6514/&#"32?7654/&#"327  2"32?327654/'&#"32?327654'   2#1"/&5476327632#"/&5476327632  `  71327654/7654'&#") @ %1#"'&54?'&547632  `@6312#"/#"'&54? 7  `@7312?654'&#"'&#" i  13!3&'&'!!6767&'!@@m!!!!'1!6767&'&'!21#"'&54763@@  p   p'136767&'&'#21#"'&54763Pp  p    `&M76716732+3#&'&'=!6716732+3#&'&'=""3 @@""3 @@3""  @ H3""  @ H `&M%1#"'&5476;67675#&'&'567673!1#"'&5476;67675#&'&'567673""3 @@""3 @@3""  @ H3""  @ H &3@MZ&'&767&'&767%676'&'%&'&7676'&'&76'&'&77676'&0    `  0  &67167654'&'&'F::$""$::FF::$""$::F@!"<=CC=<"!!"<=CC=<"!3EW67167654'&'&''167676&'&'&76'671632#"'&'721#"'&'6763F::$""$::FF::$""$::F\!! ))       @!"<=CC=<"!!"<=CC=<"!    v     2DV67167654'&'&'''&76767'&'&''671632#"'&'721#"'&'6763F::$""$::FF::$""$::Fa  ""..""   ##       @!"<=CC=<"!!"<=CC=<"!{ ((      +=H67167654'&'&'21#"'&'6763671632#"'&'3#&'67F::$""$::FF::$""$::FP      @!"<=CC=<"!!"<=CC=<"!P      -F1!6767&'&'!&'&767676'&/673#&'5#&'6735R6666RR6666R0  h    66RR6666RR66h  h    @"/<IVcp}1!6767&'&'!3#&'567673#&'53#&'56?673#&'53#&'567673#&'573#&'567673#&'573#&'567673#&'573#&'567673#&'53#&'567@@      P    p    p    p      @  p  P    P  p    p  p  p  p  p  P  ,W`h217632?6'&#"'&=54763776757635'&'55&/5&'&'"5?5'75#?  E;7#&&$  "IE;@@   @@1' * ! ) @@!   "` PB  BA @ @C G F@ > HKI HNG E@,&5147632#"'&54?'!2#!"'&54763    i   -G&17676'&'132?654/&#"!"327654/7654'   P ZZ p p p p ZZ  @   x YY p p p p YY @;&76/76'&'&7675327676767&'&'#5  )  21K0    @)  %%8K12@6'&37 d `@7654'&#"#34'&#"#";35#73276=327654'&+7 6        S6 7@3   @   PYb67&'716;67675&'&56767#&'&'4767=&'&567673&'6767&'PP #` "" $%6` ""  ""X X "" 6%$ ""  ""09A_&76/7654'&'&?6'6'&'&'&'61''7%?676'&'&'&'&54?'' P [**'43,  `  )55,s-&&&9**'43-  =2 0 oZ-:9-%  !`)+,!'!s !*Z>0 8-:9-%  !>( 1676'&'4716;232+"'&5476;5#"'&500 @     p      Y4'&3";27654'"1;#";2?;27654'&+'7327654'&+"'&+     @ ZZ   VV   ZZ   VV    P     zz   zz9Y"1;#";2?;27654'&+'7327654'&+"'&+4'&3";27654'  ZZ   VV   ZZ   VV          zz   zz  P   ' %;27654'&+7654/&#"+'7#Pi  | iP|DP  P}Cp&'&'67671316767&'&'1#&'16767&'&'1#&'&'56716767&'&'1&'567673671  9      9  y      yW     9  y      y  9 p>167675&'&'&'#;67&'#567675&'&'&'5))))+*B0HH0B*+$%66%$))))(D00 "" 00D((6%$$%6( A&76/675&''5&'&''67'#&'&'5'#;67&'#5' P ))1+6%$/+*B0HH0 0 |(1(( ))6W"$%6 %(D00 ""2'&'&'&7476?63 /.VV./ P3EEAB+ +BAEE3P"/#!5&'&'#54'&#"#54'&#"!!6767`0  0   `@ `   00       3@I/&'##547675'&767675476;236?6#&'&'5367&' A8 ! *   A `p `  #""5 &    g  @-:7'&767#"'&?6736767676'&='7676'&' j5)R*2211%<"Y    ? Y"<%1122*R)5k (%&'1&'&#"3276767'6/&?!"<=CC=<"!!"<=CC=<"!WWhhF::$""$::FF::$""$::FyWWhh(713276767&'&'&#"'&?'&76!"<=CC=<"!!"<=CC=<"!WWhhF::$""$::FF::$""$::FyWWhh(67167654'&'&'7/'&?6F::$""$::FF::$""$::FyWWhh@!"<=CC=<"!!"<=CC=<"!WWhh(16767654'&'&'&7676/F::$""$::FF::$""$::FyWWhh!"<=CC=<"!!"<=CC=<"!WWhh@h1#"'&54763267&'&'#";#&'&'576/&?;6767576/&?#5327654'&+@   ))))   0)88--DPPD--88)0   `  P4))4  )88D----D88)  0D13!&'&'56767356767'&'&'&#271654'&+";"()=,""    @ @"00=)(%     3@Zl%4'1&'&#"3276765!67167632#"'&'&'676'&'521#"'&'&5476763471632#"'&5--33----33--@!"<=CC=<"!!"<=CC=<"!----'!!!!''!!!!'   4,,,,44,,,,4F::$""$::FF::$""$::FP'((''(('""&&""""&&""   &7676'&'3676'&'7&'&767       8x &7676'&'5676'&'7&'&767@     8Xh   (9K1!6767&'&'!67&'&'&'&'67&'&'&'&'471632#"'&5@@ E88!!98UA*+,   @h!!88EU89`+*A,x  )767167632#"'&'&'7?654/&!"<=CC=<"!!"<=CC=<"! F::$""$::FF::$""$::FmX X@'4J1!67675&'&'67675&'&'!!675&'!'47163!2#!"'&=@@@  @  @ "" @@ "" @p   1!6767&'&'!3#&'67@@X@`-7"1;6767327654/&#"32?+  `)I I `  )3J J `-"'1&5476;7632#"/&5476324'&+  `)I I `  )J J3 $1!6767&'&'!/&7676@@@/o@@/o"01!6767&'&'!'76327'&?67@@ G  iGi < @l  G iGi < *1!&'&'6767!3?675&'#@^@pf0.Y%##"'&'&'&'67673547632+"'&=%!67547632!&'&'676732+`.#  ()=P   @  """0 0#  /=)(= |  } @0 0""@"  *<67167654'&'&'7'&?6?6'4'1&#"32765F::$""$::FF::$""$::F3 8  8    @!"<=CC=<"!!"<=CC=<"!8  8  E  %67167&'&'!!'"/&7673#@ h  h @p    p%1!6767&'&'!2#&'&?63@@ h  h @p    p%&'1&'!!6767'&'5676@p    p`@ h  h @Y7101#";327654'&+&'&'327654'&+4=45327654'&+6767327654'&+#";0 66H ,##~  ~##, H66   @'(  $    $  ('@  @C6716727676'&/&##";!27654'&+56=327654'&+5p Q  Q6$%    p p  %$6@  -2  &,-  @$04716;'&/##"'&=36767&'&'#3'9&'&'&#&'&'&7676107676'&'&/&'&'&7676'&'&'& P=)('4 8*  @0""0   $"'     ##'      ()=-#"   ""   +    + ?I&'1&#";#";3276=327654'&+5327654'&+76'&'&'; _4 PP P  P PP 4_ ee    @ @    :F"1#";#";3276=327654'&+536767&'&'##53`       p=)(()=pp""       ()==)("">BFJ&'1&#";36?32?327654'&+76'&'&#'&'#'3'?#3'> 2 )9*.*9) 2 9@**@9N m`       ..@@..671673;!&'&'#5  @&1<1!6767#"'&=#33'3#&'673#&'673#&'67@  @@'"B^b#"/&767647632767674716;32+&'&?#"'&5'&/#'&'&?673'  X    X  J3  J3 ` @ X @ ( `  $. $  ` I  I      (('"B^b&#"76?327657676/1;327654'&+76'&'#"76?37676/&'7#  X    X 3J  3J  ` @ X @ ( `  $ .$  ` I  I      ((@"6J^r#"/&7676476327676"'1&5476;2+5"'1&5476;2+5"'1&5476;2+5"'1&5476;2+  X    X     ` `     `  $. $  `         @"5H[n&#"76?327657676/327654'&+"35327654'&+"35327654'&+"35327654'&+"3  X    X    ` `      `  $ .$  `K         '$GYr&?#";27654'&+54'2?6'&'&4'&#"'&'&3%61'&'&76776?65&'&'0   00   X    X     1%%  4   ` F `  $. $  `   q  B$%% '$GYs32+"'&5476;5'&'&76?6%2'&/#"'&5'&'&?636716'&'&7&'1&56767'&'&?  00   0 X    X    )%%1  `   4   `  $ .$  `   7 %%$B  2G13#"/&'=6?6?67632+"'&=47639    a&*#) @ @  (#   "  3&0.!3     2G6716/&'36767&'674'&'65&'65&'&'#"7%3276=4'&+"39    a&*#) @ @  (#   "  3&0.!3  _    `#312?654'&#"4'&#"'&#" I  I 7 Js J  `#"32?32765327654/ I  I  J sJ  `#71327654/!27654'&#!7654'&#" Js J I  I  `#%6514/&#"!"3!32? J sJ I  I ? K&'&767#"'&?'&'&?676;2'&/+#"'&=##"'&=  H&" 5 5 "&    s9  ZZ  9s` `` `@ ?676'&'#"'&='&'&?676;2'&/#"'&=#p(   :  ;     Ѐ 0  a a  0 0Jd/'&/&'&?'&76?6767647167632#"'&'&534'1&'&#"3276765jl>>lZZl>>lZZ   """"lZZl>>lZZl>>  ####$11676'&#&'&'47676'&'&#?2332?]> J21(  32??23= 21K2(( !,!2#!"'&=4763!!&'&'367&'#  @      Pw1+"'&=6767631206;24?63232+#"/5&'&'#"'&54?67&5#"'&5476;67&/&547) ) @p@ @ @ @@ ?%55%? @@ @ @ )  )i @ @ @  % @ ?!!? @ %  @ %71!6767&'&'!74?6/&5@p    p @ h  h 367167654'&'&'21#"'&'&5476763F::$""$::FF::$""$::F  @!"<=CC=<"!!"<=CC=<"!`    -b676'&'6'&67676'&#&'&'676?'&'&#32;2?676'&'&'&'&+'327654'&+  G /--D.%%  !0 !  ^ $ 0   E ? L` ((4D--'  0$ G  t a  D0  @W6716727676'&/&##";#";!27654'&+567327654'&+5327654'&+5p Q  Q6$%      q pp p  %$6   2  "    ;J2?#3'&+3!5#3"3#35367!27676'&'&#!&'##"=432>5kk5>   ) 5.." "..5)  @``@ `` 0  0 `,,t X !31!6767&'&'!'67!#&'7#!"'&=327@@  @ddY~ ~Y4F!675676/&##!676/"1"=##5##5##5721#"'&54763 s@00@(@0@(  `  `     6H"7676'&'5676?6327%67&'%&#16767'#"/@ : @     66RR66e'1,%B*.$ > =:ee33 26k67167;!!+&'&'!!!&'?376/#7%;#/&''&?67'&7667+&'67356700@ @ J @& ,     #H4@0    9++E$      '8J\n353354/&+;27654'&+"!3!27654'&#21#"'&54763471632#"'&521#"'&54763471632#"'&5@@      @   `        ``CC` @    @     `      -:GTan135676736767&'&'!673#&'573#&'567673#&'5'3#&'567673#&'573#&'5670  `  `    p  P    P  p   ` P  P              ? >676'&'#"'&='&'&?67632'&/#"'&=#`  0   ($$(   $$$$` !  ??  ! `#HZl1'&'&76761'&'&767667167166#"/&#"'&=47%&'1&7676/&'1&7676'   $#"!!"#$ XX ap  c! !! !j  F'&&'F  v   ] !! !!$6/&'&=476?7'75   DDDD<>>>>99@+07<CJ'76"??675&/&/&57'765776'757#NQQN`"!`qr` "`"``"RRNQQNRRNQQNfMR ,p$&w#* 11 *$w&$p&$$&vY Z(d `$"d ["Jq6776/&'&?'&''&'&?61#/&?6327654/&767%'&76?6/;2+&'&'4?44' W &    )` @@ `   W 3    )2,,> X <   ()  @@   ' W R   )P5GY!'&'#7676;2+"'&=!+"'&=47674'1&#"32765271654'&#"3&_#  #     X      KKKPee0 00 0[     ?HZl"10101;276=!;276=4'&/&'&'010154'&+3!76721#"'&54763471632#"'&5  #   @   #  E       e0 00 0e  KK     23333276=3674/3674/3674/&#"ӕI!K  K!I I Z     Z I %8&'&'5676767&'&'5676767&'&'5@?__?@@?__?@7 @?__?@ FccFw FccF @?__?@p0""0"" f""f   V""V19JSj671673;##&'&'#53#&'=6767&'#373#&'567675&'#37673#3#&'= 0  `     P0   @ 0PP0P @ @`p 0@@81!6767#"'&=#33'76776"/&/&76@ 0!!0 YZZY__41!6767#"'&=#33'76/'&?'&76@ d$$ // $$ //  44 BB 44 BB /<1!6767#"'&=#33'3#&'=67271654'&+3@ xD  ,D  ,,   8hh 8-F1!6767#"'&=#33'471632#"'&52+"'&?632763@   X X(00 0  0     PF&1<P[1!6767#"'&=#33'673#&'673#&'673#&'673&'&'4?367&'#@          0@@HXXX5HY1!6767#"'&=#33'1'&767654'&'&76/#&'5673766'&7654'&7@      \ $!!$ 3    ##   #0##   1>1!6767#"'&=#33'4716;2+"'&='5763"'@ ` ` --    ` `n@ h *91!6767#"'&=#33'/&?67'&?'&76@ g00p00 00"00 +6ALY%&'7327367&'6'&&'&76776/654'7&#"'67&'677676'&'o0??0::[44 B[[B 44B[[B .::#".::0??0:##:2#"": :B[[B 44B[[B 44.::0??0 ::##:0??0:5  516767&'&'&'&7676&'&'&'67676 <&&66RR66&%=  Q22"":9HH9:""22Q  12BR6666RB21 BAYH9:"""":9HYAB /'&'54?6'&'&'476@ xD X `1J T ,   4C'&3676/67&'&676767&'&'&'"76/5&'K" n 6RR6666R>0  ?SH9:"""":9H5/.#HAu" n 666RR66! -"":9HH9:""#5h HA^[4716;2+35#"'&5476;2+32+"'&5476;5#32+"'&5476;=#"'&5 00  00  00  00    pp        );2+#"'&5##"'&=#&'&'6767@    D----D   ` `--DD--%7Io71;32767327654'&+&'&#"#"3471632#"'&57471632#"'&57"1#";32767327654'&+&'&#'"'1&547632#7&'1&#"#";32767327654'&+ 7     7         7 7   I  W W              P       0   @      5%67167&'&'&'676767&'&''654'7`)))^())(^)))(^^()))/))/)))//G1!6767&'&'!1"'63&'&'45'&'&'67677456767@@@UUQQ@./--5K'&#"6?67&/"&#67674'7654/1&'567673#.... "%X;;;;XX;;  P,'&:----5  ;;XX;;;;X%! PW,:&'*DT%'"#"/&'&#&'7676/6732?67167654'&'&'&36?6/GG= 0770 =F::$""$::FF::$""$::F0 < 0XFF)5&B'..'B'4)!"<=CC=<"!!"<=CC=<"!F # 88 # )6CP]jw7'&76767/&'5&'673#&'5673#&'573#&'567673#&'573#&'567673#&'53#&'567673#&'5&=K7671632327654'&'&'3277676'4'&'&#"767&'&76764DDNNDD4 =OO[[OO=  W=  '017710&  =W@  22 ;!  !; 56  ""  6$$$$ *<Nbt1!6767&'&'!32+"'&=47631#"'&547632"'1&547632#4716;2+"'&57"'1&547632#1#"'&5476327"'1&547632#1#"'&547632"'1&547632#@         ` `      @       @          @     @  @   @     #.9&76/65&/&'5&'&'54'&#"'!'+32765' P X$#8  B$y!@@ 0 E+ -#;++  7t- +'#"3!27654'&+'&'#!;2767`  ` x      n S;67167654'&'&''31276#"'&547632'&#"F::$""$::FF::$""$::F9 '33(%%(33' @!"<=CC=<"!!"<=CC=<"!%%(33'&& 6'&#"327654/7654'&#"?32?'+54?'Vf f(( (*!x-y$x-yf f((!*( y-x$y-x @-%6?6'&'&'&'#";67674545S+  %st.  0 Q$  /hi .    0)>3276=4/&#"33276=4/&#"3276=4/&#"4'1&#"6767674305039010163290121676767296321012167676729632901306754'&'54'&#"#54'&#"#5#&'&'&'&'&'&'"'3!276=V    h        @  @@ #####"  *   **   **   ** 0G      G0 00 00U U;4'1&#"!27654'&#!&'!276=4/&'"'"/&#"3@  " p`  A   '  O  "  P D M  / [ T  > )%567#671672&'&'&'/30?23:9Z 6%$$%66%$; <@1 0eeSS  BO\n12##+"'&=#+"'&="'&="'&=476315156767;5#"3276=4'&+271654'&#"3!271654'&#"3&'#367 f<=         = < '!    !' < >$  8     +55+ X 0@0 @#  a%%,   ,%%a  #  ` BY}3'&+"33&547676767&'&'"'3276=4'&+"'&'#76/23&'&'471#&'&'676723&'&'6767#271654'&#"3:b-e `D--F-$%66%$$%67>  / ?  C ""06%$$%60"" C;  R-  --D(!!%>6%$$%66%$f   (4 5A  -$%66%$-    *c&'&7671;36?3276=&'&'#6'&67676767&'&'&'&&'&'&76767@  `  &  @\2   "EeeE"    2- =``> -$$$$`0 dd 0            E'&'36?2?3#"'%#"/&''&#+"&=676767676W$ 1*"h  )3 k !!4#!   !#4!! n  U /  SrL6&'     '&6pK47167632#"'&'&567167&'&'#";3276=327654'&+5P?((21KK12((?       0/BK1221KB/0 #     # $>673/&'&'67677'&7927167654'&'&#"3"p !521KK1221K8,4! np !4,8K1221KK125! !p=W61676763#&'5#&'6735&'&'4767&'&767132767654'&'&#"H //  #+*B    B*+$   ##   &&.D00  00D.&&  `673/19191919191919999999999993#9999999999999999999999999999999996+96595959 59 59 595959595959595959595959595959595959595959595959595959#&'673159595959515959595959595959515151595159595159515945&'&'67677'&793&'34'1&'&#"3276765Rp '&&;;&&--D=+' n`   p '%0=,+  +,=D--%' !H  Rl276677'&7673/3#&'5#&'6735&'&'67''&?''&'56734'1&'&#"3276765p )66)E ` E&&;;&& `    E ` E)6=,+  +,=6) `  pK727167654'&'&#"37132+#"'&=#"'&5476;5&'&'6767676767&'&'&'6732+#"'&=#"'&5476;5&'((?      ?((21KK12'0  0'-;K12((?      ( pB/0 #     # 0/BK1221K 00 !21KB/0 #     # $>m&'6767&'77675&'#947167632#"'&'&567167&'77675&'#90#0"'38 !4,8K1221KK125! pX0K125! p!(!$ 0" !521KK1221K8,4! p021K8,4! p !)$ 30  Kx727167654'&'&#"37132+#"'&=#"'&5476;5&'&'6767676767&'&'"&'637'&7673/&'((?      ?((21KK12P-0  0 8,! p !21KN2pB/0 #     # 0/BK1221K 00  ! p !,8K125 .2L'&&'6767&'776/77675&'#947167632#"'&'&5x !,8K1221KK12! pX !21KK1221K8,! p0@4N6#3#&'&'676741415#&'6735#"'&?4'1&'&#"3276765 @ (  ;&&--DD--&&;  ( @k    @  +,=D----D=,+  @   ppI727167654'&'&#"371&'&'6767356735676'&'5#&'5# 00DK1221KD00 "  PP  "PXB*+21KK12+*B888 PP 888p547167632#"'&'&567167&'&'3276=P?((21KK12((?   0/BK1221KB/0  pp321#"'&'&547676327167654'&'&#"30((((00((((00)*..*))*..*)'=FO1!67675&'&'!&'6767&'1!67675&'&'!&'6767&'@08@@H@@H-F47167632#"'&'&5671673#!"'&5%5#&'6735673#&'`""""`23K\K32  |  @@@@@####K3223K   @@@@-F47167632#"'&'&5671673#!"'&5676/'&?'&7`""""`23K\K32  |  ////////@####K3223K   S////////,92135476;#"'&=+!#"'&54763&'&767  )   ----  )    `'((''((''=J132?3;676/6767&'&'!47163!2#!"'&=&'&767`)#.( 77 (.#)     )%. 77 .%)` ` `'=Rdv132?3;676/6767&'&'!4716;2+"'&=732+"'&=4763471632#"'&5%21#"'&54763`)#.( 77 (.#) P P P P       )%. 77 .%) ` ` ` `       @` ,1!&'567!%1!67675276=4'&'&'!!!5""" "p` @""" @ "` @` ,1!&'567!%1!67675276=4'&'&'!!!5""" " @""" @ "` @` ,1!&'567!%1!67675276=4'&'&'!#35""" " @""" @ "` @` ,1!&'567!%1!67675276=4'&'&'!#35""" "p`` @""" @ "` @` ,!675&'!67167!2#!&'&'5PP"" "" "" @ ""@2?7676/3674'%&# R: 8v _t  r Y1#";#?677676'&'#&'&'5327654'&+5676?676'&'&&/&        4!!4         4!!4  `  `  &&   `  `   &&  @$1G^&'6767!67&'!&'&'67%!!67&'4716;2+"'&=36767532+"'&= %R%%%R   @  I%%%%@ ` ` `  $1\&'6767367&'#&'&'67573675&'#&'&'67533675&'#&'5367&'# %%%%W%@. I%%I%%r%%rrr%))r%r%!135676735&'&'!+?@ p-C @ p C- @ +%#535#367675#'367675&'&'# @@@@@@@`~26JNa32+32+"'&5476;&'#"'&5476;673'&'1&'&?63%3'&?63&'&' r %  % r ))8HHH0#"  __  "#0IH~ __  #"00#"   (   '(  ||`" "|| ""7A"13";!327654'&/767527654'&+!##56?  .DD.    .DD.  DD  B/DD/B   B/DD/B  K (DD'7@H"13";!327654'&/767527654'&+!#53#&56?#  .DD.    .DD.  @DD  B/DD/B   B/DD/B  K DD7A"13";!327654'&/767527654'&+!#53'&'  .DD.    .DD.  @DD  B/DD/B   B/DD/B  K (DD(7AK4716;!32#2+!#"'&5476356?'&'5"'&57675#35&/    .DD.   .DD. `DDDD  B/DD/B   B/DD/B  (DD' (DD'  <1&'5;276=6767=&'&'"&'&#"&'&#"&'&#  -2  $        03&;'*` i )P     H4'1&#"&'54'&#"'&#"3676754'&#"&'54'&#"&'5    <  qC]K12      :  k?21K p 67"1;;67675&'&'#/1'&#(     @6%$+$2." K C     $%6q?,# @B667167;+"'&='+&'&'6767;6767&'&'+&'&' pP/9#q ` N"P0  0P  Pp P /# 0 2       R&'1&&/&'&/&#";09010167676'&'&#&?6'&'&&/ 5 + ?7  qC] -!" R % $  &9    5  k?+     6ALW4716326367263+1#"'&'&/&7676&'6757675&'&'675  !    $%6@*$$H   8p0P     006%$"`  KC``````  4@q21#5476321#"'&=4763471632#"'&=%#'&76765;2+367675327327#&/&'56767 @ `  @   SFG F 88--D>B/ %  @ @ @ @ @      D--. &5 `$C&3276=32?32765&'&'1;3276=327654'&+"Z  V  V  vv @  @  S s s     1=67167654'&'&'673/#&'=327654'&+F::$""$::FF::$""$::F`X""" %=0@ @@!"<=CC=<"!!"<=CC=<"!h",K RH`pX  @-!!#67167!!&'&'!2#!"'&54763@@       "/H#!5&'&'#54'&#"#54'&#"!!67673#&'5#&'6735670  0   `@ ` 8888  00       88888 #0;2135476323!56767354763!!&'&'67&'#3  0 @ 0   8     00      #0I2135476323!56767354763!!&'&'6'&'&?76/7  0 @ 0   1////////     00     q////////#0?2135476323!56767354763!!&'&'6'&'&?  0 @ 0   I_/@p     00     q_/@p  $"1!6767=&'&5&'&54'&+@     @ 0P  T?T 0*947167632#"'&'&5767&'6767675327#"'&5""&&""""&&"")   0'!!!!''!!!!'@)p 5A#"3!2?6/&+4'&#"4'1&+5##"3!276=5#32765 y0 0   @0 0y @   @ 0 0  0 0 @`` @'7767'&'67  o 772 :|:}3 O13?36767&'&'!@` {P ] ,?67167654'&'&'#"'&=476323#"'&=47632F::$""$::FF::$""$::F     @!"<=CC=<"!!"<=CC=<"!@    .67167654'&'&'32+"'&=4763F::$""$::FF::$""$::F@  @!"<=CC=<"!!"<=CC=<"!`    ,5>67167#5#!67675&'&'#5&'&'&'6767&'0@ )) @ 00 P000 )) 00  000@*5@K6'&#"33!276?27654'&+'&#7&'5677&'567&'567  ]V 44 V]  QQ=`        ``````DQ767167632#"'&'&'7&?63276/&=6?6'&#"/7676'&'!"<=CC=<"!!"<=CC=<"!       (++( _  F::$""$::FF::$""$::FV  3V II V2     ;GR676'&'"176?3276=4/57676/&'#76?'76/   / #M  2F M/(  5C vv` ]  F+MS Y2^^  g%}  X5  @'+;G1!6767&'&'!/#'&?672'37673#&'536767&'&'#@@H R H*[8))80    @    k**`))`  &7Y11&'&'&'&'6721#"'&54763'67&'&'&'&/6176&'&'&'6?A4444N   :&'% ( 1)*5(` }ee<<X44AN44   H'&:%w`(5*)1 ( X<  D+     .   ? <'+*A\  ||    |].  I'#"7..%O   k uK1 G*2 @/ (  %('.A*+    5<M&76/67676'&'&'&'&''6716'6'&'&''67%12301%' P i  #$00=3+*!p&11+. '   Z Se $#00= 0 R  ##!"X"!442"  F ##!" F#&'&'567275#&'&'"#"'&547632676763276767 ------   --  @     APYhq?65#/&#"'&'&76?&#"376767767677676'&/%;276=#&'67%;276=&'#67&'C`  c  H!4TH\     P    P kO   N /}(C0S  {R   ?#"/57"!67675&/&#@0u u0     $1<GR1!6767&'&'!3#&'6767'676'&'%&'675675&'&'675` p@""   P""`$$$$p@@p@@@@@$1<GR1!6767&'&'!3#&'6767'676'&'%3#&'673#&'673#&'67@@P@""   @""`$$$$ @@,9%&'1&+"32767%67167632#"'&'&'676'&'$@$$%++%$q!"<=CC=<"!!"<=CC=<"!))))@F::$""$::FF::$""$::F#$$##$$#$1<1!6767&'&'!3#&'6767'676'&'73#&'67@`@""   ``""`$$$$@ '4?JU!&'&'!!6767!671673#&'7&'&767673#&'673#&'673#&'@@@v p$$$$`      @@0?S167674'&'5&'&'671670101&'&'6767010151&'&'67567 ""  p 00 ()==)(   "" 00  0%3=)(()=3%  !  !0?S167674'&'5&'&'671670101&'&'6767010151&'&'67567 ""  p 00 ()==)(   "" 00  0%3=)(()=3%  !  !0?S167674'&'5&'&'671670101&'&'6767010151&'&'67567 ""  p 00 ()==)(   "" 00  0%3=)(()=3%  ! ss !0?S167674'&'5&'&'671670101&'&'6767010151&'&'67567 ""  p 00 ()==)(   "" 00  0%3=)(()=3%  ! 33 !0?L67167&'&'476757101016767&'&'01015&'&'676'&'p   "" 00 ()==)( 0  P  ""p 0%3=)(()=3%0 `,>Pbt471632?6'&&'&'&'32765271654'&#"34'1&#"3276=271654'&#"34'1&#"3276=271654'&#"34'1&#"327657271654'&#"3@   !)+    @     @     @     <  !+ <   @     @     @     1N672?6'&&'"'&#"3!27654'&#!53276=!3276=675!`  h  !  @    @s  h !   ,(  (,+Lfs%67165&'&'&'&'676767567'&'&'67&'&'&'6767'61#"'&'&'&'67635&'&767?%21KK12%=%%32??23%%= )) 1()==)(1]     L&'/K1221K/'&67F?2332?F76& ,)), *D=)(()=D* )))) (1!6767&'&'!!2#!"'&54763@ @  @@    7"13!27654'&#!   @   2F##567673#53675&'67167!!&'&'1;27654'&+"@"""P@   """@   .1!6767&'&'!676/'&?'&7@@O////////@////////`uz&'#3#3#3675367536756767367&'#5367&'#5367&'#&'&'5&'#5&'#532+"'&=4763#35((((((88((((((88  (88((((((88(((((h   2176?676/76///#"'&='&?5'&?'&'&76?'&767''&?'&'&7676'&765'&7654763 1=  D<=D  =1  1F#C #$ C#F1 1F$B ## C#F1 7&5676767"'#"'&54?,+1)$$)" !)$$)1+, OT&1133276=4'&#&'"3276=67674/&#&/&'&'595    "  "     0&'Gp p   # #   57#&'5676676'&'&547632327654'&#"#1  *,9989,,,,9999, 1@@1//1?@1) w *,,,9999,,, //1@@1/.) '2=H67332#!"'&5476;7!!&'&'675&'3675&'3675&' x `  `g```   n@@*S6312301013675&'&&'&767671?767676'&'&#"'76'&'#1#1?@1) x *,9989,%   *,9989,%  1?@1) x1/.)  *,,%.  !x *,,%.  "/.) 1<"1;6767&'7654'&#"&'5327654'&+&'567 L11;;XX;;  +9 00H  "88PX;;;;X@1 # "  F#"'&=#"'&=476;547632'#";2+&'&'676732#z{ {     @ @ @))@ V{  { > @ >   ))  F#"'&=#"'&=476;547632327654'&+"'&5476;#"'&54763{ {     @ @ @))@ V{  { > @ >   ))   5%3675&'&&'&767654'&#"#"'&5476323 *,9989,,,,9999, 1@@1//1?@1) x *,,,9999,,, //1@@1/.) =Oas&##!6767&'&'67&'&'#67&'&'#65&'&'21#"'&54763471632#"'&5&'&'&5673 "p$M  `   @))  "$$%     l    @-?T1!67675&'&'!+&'&?6327632'471632#"'&5'&'!67&'!&'&'5``0P @ 8    '&:@%k  P T   :&'% 3>%7/?6?76?3?654/&#"'&?6 ">" # x O  ">" (0 ">" y $N } ">" '  7654/&#"?6?'k11(G# x11(Gx #11'1/7632&'&?632'&?6?'(4`4ff `Jf I (4`4`ff `I fI @732?6'&'#4'&+"#   H @ Hq     _7/&54?6!2#!      "   H @ H _%?654/&!"3!O    "   H @ H?6/&#"3;2765367>   H @ H      @*8671673;#&'&'#5'76327'&?67 W G  G <  ~WK @l  G G <  @#?'&3676/73675&'&'77675&'#'76'&'Ȑ (OO(  (OO(  (OO(  (OO(  (OO(  (OO(  (OO(  (OO( 0;1#!6767&'&'#&'&'21#"'&547633#&'67  &%    P@@   ?@"%654/&#5&'&76753?p    pp    p h 88 h h 88 h"&#"3#32?6'&'#53676/ h 88 h h 88 hp    pp    p516767654'&'&'#"/&56735476;23F::$""$::FF::$""$::Fykk:   :!"<=CC=<"!!"<=CC=<"!dd ` ` 5%&'1&'&#"3276767'&54?6332+"'!"<=CC=<"!!"<=CC=<"!cc ` ` F::$""$::FF::$""$::Fykk:   :5713276767&'&'&#"%#&'5#"'&=476;5672!"<=CC=<"!!"<=CC=<"!'dd ` ` F::$""$::FF::$""$::Fykk:   :567167654'&'&'7632#+"'&=#&'47F::$""$::FF::$""$::Fykk:   :@!"<=CC=<"!!"<=CC=<"!'dd ` ` F32?76754'&+1!676754'&#"!&'67327654'&+` * ) ""@"  p p) *  """p p@  /1!&'&'6767!5&'#32?367@@!B$B! @ !B$B!6!5676'&'5!"'&5476321#!/&54?6! @` `  ` `@`@ ` `@   @ ` `@#G713276567673?654/&#4'1&#"#5&'&767536767  )@ @D--  )@ @D-- )  @ @ --D@ )  @ @ --D ` 2%676'&'71&'&'#"'&5476;676732+@---- ++;;++   ++;;++  p'((''(('08#$$#8  8#$$#8  DMV&'6767165&'&'67674'&'5336767&'&'"#&'&'&'67%67&'P  ""  "" )7W "" W& a "" "" W "" &@+013#"3!27654'&+'36767&'&'!!5!@ E  E @@    @.6;2#"'&?2103767&/76'&'&u p   p&:9ZZ (`  `aa_%%#"/&767354'&+"'&=476;3^   X P P6%$Xq     $%6_%6/&#"3+";67675367^   X P P6%$X      $%6 @2671673276=&'&'#!67675&'&'#5`""  ()==)(@ 0""0 0=)(()=00'67167167&'&'327&'&767''66RR66''  $$$$3!87;;-R6666R-;;78! s  p%Q6767#&'6735#&'6735#&'673&'&'&'&'5&'#;67&'#567675&'`))PPPPPP))$%66%$+*B0HH0B*+`))  ))6%$$%6((D00 "" 00D(p',671673#&'&'4'1&#"32765#3   P  @p 136767&'&'#3#&'67PP@@Pp %671673#&'&'367&'##3@@@@#+3Mc1!6767&'&'!#5'5367167#7&'1&'347167632#"'&'&57#;67&'#5&'#@@@@@@@@@L@@@@@00D0&'1&76'&&'76/36?6'&/&&' X0 P 1 (a\:FGO `( QHH:z  '(`H-X ( 1 "6&'1&'!!6767676'&'671673+"'&5  0W $$$$  *3#&'676767&'&'#/&54?6pK12  )`  @21K8%%  )@   &2'&'&'&7476?63676765'1 /.VV./ D'&P3EEAB+ +BAEE3PC#669:.J',67167!!&'&'4'1&#"32765!!@   @  @ 1!6767&'&'!3#&'67@@p``P@'67167!!&'&'56767&'&'5@@@ "" @@ "" @-%27167654'&'&#"313!2765&'&'#'!!!!''!!!!'_D.-  -.D""&&""""&&"" -.D D.-.1!6767&'&'!676/'&?'&7@o////////@////////+6#&'567673//&?'&767 W'  'W 'W W'  W'  'W 'W W' +3//&?'&767#&'567676X 'W W'  'W W'  'W W'  'W W' %0"76?6?654/&#&'&767%76/& I %3&t)X'((''(('@@t%3% I )P----!@@P]j7#"'676727654'2323&#"3632&547&'""#"#&'&'&'4532765&'77676'&&7676'?::UH9:"" ::UH9:"" : E! ;E! ; U:: "":9HU:: "":9H !E ;K !E ;%08@K674'367'7"7&'"'7'65&'672&#6767/27&567WU#B1,;*U ,=Fc>=4H>=4H;*U,#B1U=Ed ,U*;,1B#UWH4=> cF=,& cF=, #U1B5*;,U=>H4+=O67167654'&'&'21#"'&54763471632#"'&5'21#"'&54763F::$""$::FF::$""$::F     @  @!"<=CC=<"!!"<=CC=<"!     @   /<Ijr&'#3##33'367&'#765&'#5367&'#53674/#!3674/#'3'76=&'##5&'##5&'#67#54!!4`++ ++ ~P  TT p::::4 HH 4` @'4"1356767&''&?&'674'&+!674/# $&&d j&$ @P)) !:;J#  #80c j:! P)  ):?DIN1!6767&'&'!353353#3#3#5##5##535#535#5335#5#;#35135#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2?2132+32!'&5476;5#"'&5476;547637!!&'47   MM   ) )   0  0   '))  %.;?6?6!76=&'&'#67&'!674/!`  2 @66R ar))   % W R66  D  ))0"/767165&'&'#"3'674'&+3674/# ,,     )),, pp   )) 8<I&'&7676767673276+'&7676327679!!&'4?   z,,  k((k  z ))%%   P)  )(8E567336756733675673!7'&536754'&#"7!!&'47 @ @ @ 33   )@)(((( && `0 0))  ,X]4716;2+"'&=#"'&="'&547635476;5!322#++"'&=476;2#53`                   @ @ @  @ @@ @  @ @ @ @@)4?676767'6'&'&'76/&76/&76/&7b- b- WD߽WD7 @ @ 0 @ @ 0 @ @ 'N-2'N-2WEݽWEK @ @ 0 @ @ 0 @ @ $5Gk1#&'&'67671#327674'&'327654'&#71#327654'&4716;2+#"'&=&'#"'&5''66RR66     4    q     @@    3)**)3R6666RA    2            $%&'1&'676767&'&'567mHHHHmmHHHHm&HHmmHH&OqqO))))))@0=1#'56727632#&'4?6'&'6?6&'&7677 "l " v/+<3 "1C---- " l" vC1* q 1#/u'((''(('!!@@9S%"1'37676&'%"+&/&#"/&56?674/&'54721#"'&'&5476763&<,9999,3 !,5% :   C  $o   <,,3CC? #$  C   : &5"    )6CP%6'&''&'677'&'1&'6323&/&56767&'6767&'677#()6Q32 KRSH$:=@A>.(.E$%B=I//%&>F:&&$..P0M= AKKH#--4PGF4BBY#0)$27$ 7E;;-.KJW ##;;I K<;!Z;E$55>+SED&w')%- !HQZclu~4'1&#"&'54'&#"'&#"3676754'&#"&'54'&#"&'567&'&'6?67&'&'6767&/&'67    <  qC]K12    0P0p0  :  k?21K p P0 ` (1:C%367675&'&'#!!!13#67&'7&'6767&'7&'67`` ``xxx @@@px 35#3'&'#!!6767533r3r@@eee @:W#367675&'&'##&'51367675&'&'##&'5#367675&'&'##&'5#"3(  (0(0( (0( pp PPPPPP)F3#567#!6767&'&'#5&'&'#6733##&'5#&'567358@@` 00 00((((0 00 01%'&/&#"67674'&'&'4?6?632u4oo4 76QQ67 [)))  *gg"P6666P"1((6)  )6? 2?H67167#5#676757676/&'&5&'&'&71676'#1017"@  `@ 00 ,,'',,(* 00 )  CPA0  pp0  0'--('!20  0@ b8_0?1#!6767&'&'#&'&'21#"'&54763/&7676  &%    q@/o@@   р@/o09DMX1#!6767&'&'#&'&'21#"'&5476367&'73#&'6767&'3673#&'  &%    xhhX@@   p@ CNW`ir676'&'67167357676'&'&'&'&'47&'00"'7!67&'!767&'&'67'&'6767&' 2222 $$  # ;G[E    7hp*,,**,,*  mm      [8`QX_e2193&'?6767#"'&5!#"'&5676767&'&'&'47632!4763#!&'367!67# ,6 v&    ,66,  @ M   8 v -$$)$  $$-  -$$)$$)$$-  0?'A4716;276&'&'67#"'&5&716?7'76'&/ I\.  ()#\I  .=. 1  1 #C D()0 g == 1 =_"1;367674'367674'327654'&#!&'&'&'#!67675&'&'#/'&=#  "    C 0" @  ` '' `   "       "P      81!6767#"'&=#33'6733##&'5#&'56735@ ` 00 00 0 00 0 2613276323#"/#"/#!6767#"'&=#33'`p 2 FP 2 f  #c 7 #c 7 @  =13#3!!67167&'&'#36733##&'5#&'56735@ @@  00 00@@@@00 00 0367167654'&'&'&'5#&'5673567F::$""$::FF::$""$::Fp@!"<=CC=<"!!"<=CC=<"!hhhPPPP@5DQ32+"'&=476333676753!&'&'6767367&'&'#7676'&'@ @  ` @p vp$$$$ @ @ @0  0@  U  2G76767!+&'&'7#336753675&'#5&'##&'&'5673`:00 00 :&'%`:0 00 0'&:%/497"1;#";27654'&+5327654'&+3#5;#5    @@   @@`ࠠ  @   @  @@@@@@ 3E135&'&'67167&'&'5#1/&74767&'&'67636p ` p 00  00 +  #,D--<#,D--  ` pp 00  00  0  --D,#<--D,#  747163!2#!"'&=!#&'&'5367&'#5367&'#5367&'#5 @  @pppppp    ` @@@"?47163!2#!"'&=!#&'&'#336753675&'#5&'# @  @00 00     `@p0 00 0Q^3#"/"/#&'67327676376?3#"'&=+!#"'&547632354763#&'&767)\h / ){ .    R)    ----6 d  = $a  )     '((''(('TZgt1#;+;+;#676736767327654'&#=4/&+5&'&'!#53&'&767676'&'p 0000))))  M3 3M   0))))  @ M0 `M0  =SXl#"'&=4/&'5476325&/&'547632#"'&567167!2#!&'&'5335#%21#"'&=476;21#"'&=4763)   <  )   <  ` ࠠ   `   ;+!.   =V   ;+!.   =V   `  @ ` ` ` ` A//&767'&7672102+'&?54?76/776/ &7HH7&=88Y99+9 9*9 9 &7HH7&=8899Y,9 9*9 9 )7%67&'&'76/&67!67676'56'&'&'!f--D1& / --D1& +*;;*+  +*;;*+ &1D-- / &1D--J7####7 8####8+754?76/776/776/767+'&?`9 9*9 9*9 9.+,YYYBY9 9*9 9*9 9.,+YY"'"367327654/7#W )' ` 3`f () ` 3`#BG4716;2#&'&'"'&5#3574716;2#&'&'"'&5#35 808 "" 00 808 "" 00  ""0    ""0  #,164767%6#&'4'&#!"#&'!&'5!%5!!=!!    0  0(=kk 88p@@`PP8M47167632#"'&'&5%&'1&#"#!6767&'&'#4'76'&32765""""##))##88` " !  ####p@ O N  %clu47163!2#2#!"'&54763"'&5#3#3'&+"36?654'&+"5367&'#5367&'#5&'&'6767&'   @  PPpp3 x 3ppPP0P    @   0G    G0 r46372//&'&??/&'&=76?3; *SS*7    7  T .. TV[$ 33 $[/ASe%67167167&'&'&'#09367673'21#"'&5476;21#"'&54763471632#"'&5H9:"""":9HH9:""/ ,&#08    `   //::////:E4%        6&76/67&'&'&''#0936767327' P v="":9HhGj/ ,&#0880 0 \9P://6SE4%  %*D67167!!5&'&'56763+"'&5!+"'&=676723!3=@$%66%$    @       6%$$%6"00"p!      !0 0p%#"'0141&'&'6767"'&'9"'"'&67567676'&'&'01#&'&505476376'&'5&'3#;5#673!&'&'56767G"%%".!8;;XX;;8 ,G         *HH+  `  , ":VX;;;;XV:!8     ' ' @  @  CL5&'&'&11&'&'&'&'"2?367675765&'#7&'67)%#  ,-((  )(>LJD-- d"P_.A@/ ""8 ""0:*) &=--D- "@.;%6716'&'&#&'67;27654'&+"#";2?%0"141050110  wy@ @N-#-% ,$8   X  $ @ ^@HO&51476327632#"/1+"'&=476;76;2+3761#0103e f  $- %-#-N@ @yw 7g g ^ @ $  X  0@S'&#""101013&'5&'"#&#&#&76327656516'&/&'&'67675671+"'&=476;76;2+3761#01038          $- %-#-N@ @yw   "    #   ^ @ $  X  0@CJ632&'&'54?1+"'&=476;76;2+3761#0103B))C$  $- %-#-N@ @yw `))` ^ @ $  X  03f4'1&#";67675&/1/&#"/&=!'&'&?654'&#"132?6=4'&#"P  dC    33    Cd  X 8@f'd O.!   3(P((P(3   !.O d'f@8  v/j%7654/&#"&+13276=01015;01013'&'&'532?230;27674'327674'67651&'&'0101# FN(p  "JN%    xEN)x H"88w9IN& #U?6367675&'&'+/&#"'&'&76?&#"#376767767677676'&/C`  c  *  LH!4THP  l\  kO   N   /}(C0  S  {E45&'&'3#"'3&5476733676754'736'&'&'3&+53&&22&&o xD#$  `  $#Dx pN2//2N0))--) `  ` )--))0 _kx676'&''&/&=67675476;2?67'&'&?6?5+"#"'&/&/7'&'&7&'&767'&/7P@3  O&/  0&O  3 <; 01%   N0 %1  A3 [ VOXGL LGXOV [ 3A  w1^  w  ^1@`i&+"454567672367332++"'&=#+"'&=&'#&'&'67673#367676;&'67))-         6  -@`)) !7 ` @   @)G-!! -8%1'1'676776=4/&'#11?676/'?M58U(*L(&8S\6 XS_ 7L}:  =]%<#!5$@`i  `X`h  R@\n11'#";!6767327654'&+&'&'67673&'&'67671'&'&'&'676774'1&#"32765%271654'&#"3] `))   `))( ))u ))       `  ))   ))))w ))     .1&'6767324716;#"'&=&'&'&'66T 633@   ?23  ?23W== Q:4 @ 32?  32?)>21!2#!#"'&5#"'&5476;54763!2#!"'&=4763` `     `      `     3EV67167654'&'&''167676&'&'&76'671632#"'&''&7632'&#"F::$""$::FF::$""$::F\!! ))     $$ @!"<=CC=<"!!"<=CC=<"!    v      @!;H%67165&'&'&'!27654'&+21#"'&'&5476763&'&767}32??2332?@   @   ))/?2332??23     `$$$$&D&'&''&'&767%67673&'&767%&716??6/76'&/ 0/   @@ .. )  *p0 .d W"p    M M  * 8?Qcu16767674';67674'3276=4/&'#5&'&'!#53221#"'&54763471632#"'&5'21#"'&54763@"))"""" ;1 i129     `  P"""" @  G0@=p        !-&76/767&'&'5&'&'#' !67' P W` Kp% 0 D   @ ;d'.*/6716;232+"'&5476;5&'&?3'#  40 PP 048  7)* d   d *)7c@@%&76/6767&'&''#'#3!3' P %()=5'& ;D.-  0 "",=)( 2n-.D #8Qt|&'1&'6767676=4'&'#&'&'567673'&#"32?654/1;5476;232765&'&'&'35&'67&'s''22''   ''22''  #) )  L3  b  b  30??0? ``++ @ ++ @ 0))  ,,9  @ @  9,,""00 x-<47167632#"'&'&5671673#!"'&5/&7676`""""`23K\K32  |  q@/o@####K3223K   1@/o,FU21#"'&'&547676332!"'&5676747167632#"'&'&57367&'#5&'####.\ #  23K""&&""""&&""0 """" -%&  K32@'!!!!''!!!!'P@0o721#"'&'&5476763327!"'&56767%6763276/#"'&'5&''&'&'&?&547'&7676766754'&765####.\     23K                 \""""   K32V             -;I727167654'&'&#"313!&?6?&'#%"7654/?6?'####.K32  % (1J\  G  < G""""023K  < (0D G   < G-CT47167632#"'&'&5671673#!"'&5#6=4'&'012;#&'674'67`""""`23K\K32  |  a !>D.- 0&0  0@####K3223K   .''-.D  )6)! 00 %?6&'&'5'+"'&?5&'6?6?6#!"'&56767M$%66%$0 k G G 2 ~ 2(96%$$%69 AOOG( L L ))7 7)),9W727167654'&'&#"313!&=45&'#%21#54763";276=4'&'&'####.K32  k 0B\^ @ P  """"""023K  )@ 00 0   0""-847167632#"'&'&5671673#!"'&53#&'67`""""`23K\K32  |  ؐ@####K3223K   -HS7&'1&'&5676767&'&'&'436763671676?6#!"'&5367&'#, !      &6%$$%6%$; > > ;$%  |  '      $%66%$?./S S/.?   -DL727167654'&'&#"313!23&'&'&+%767676'&/&15####.K32  9\5x 6 6 x h2_""""023K  ,78.N0!))&&&&))!0V()*&%&76'%6767&'&''13!27%' P *$%66$$H//   0  !"-6%$$#5x21I  y-DM727167654'&'&#"313!67'&=&+7"132?654/&+67&'####.K32   d\ kIkS""""023K   d!!P SkIkPG7"'1&'&54767632#'&767;76+"'#5+"'&5676767####  !$ 6!" p "!6 $!""""g| *+9  9+* | ,Ai676'&'!676'&'30101&'47&+67676765&'&'&'#!&=&''&'&'51'1#&'&76?4545'7#"675476763276&'&'6'&/&'&&'5&'&#"'&?3276756776?676/654'7676'&'----p----)*.@%)))Ah8&&,   *      -\               '((''((''((''(('%; .)))< &&8       ,                     ~15IMa6716'&'&&'?;27654'&+6?7#671676/&#%#7167676/&#  q."{    ! ~RHHH0#"  __  "#0IH~ #"00#"  `_  %%") -  '"*||`" #\||"" }15IMa&'1&767667/+"'&5476;&/'3&'1&'&?63%3'1&'&'&?63v  q."z    ! ~RHHH0#"  __  "#0IH~ #"00#"  __  %%") -  '"*||`" "\||"" */DV67167;!#3#3#3!'#&'&'5'#3!!&'&'56767271654'&#"3@ 6 |jb W FR        @@@`      `   @?71654'&'&'"767633671672765&'&'&#7 ,&!!  !L!  !!&,  y     r  @1Haz'&'&547676%'&'&7654'&7676#"'&5&'6767''&'&547676%'&'&7654'&7676P         %   '--'  2::2  2::2  '--'  l% )%3  $))$  $))$    @06514'&#"'&#3674/7'&?63676'7 " l"vC1" 3=+/ "l "v/#1 q *1C@013!3&'&'!#"3!27654'&+54'&+"`@@          %?N67167!#&'35476;23!21#"'&'&54767633!&'6767`#d @ @#  68&&&&8'    1 @   &&88&&(3?&'#33567673&/5367&'#535671675&/3X  q``q   Pg7 gP.D``D.\ 8 \8@Pq&'&'"'&'676763201010109101#&'&'&'676767&'67670145""'&'&'567676767433=6767456767&'&'5%.M=W %66RR66/'(&('0\8%##9+!+ %8\0'(%=WW=  7W=66RR66=Wp""Q  O! # ` #   # p #""# +EZ767167632#"'&'&'"'1&547632#'132767654'&'&#"'676767&'"67!"<=CC=<"!!"<=CC=<"!  `   @+,7" F::$""$::FF::$""$::F     7,+ "|2;1?376/3230376/6767=76'&'&+&'&'67%  J/ ')/ *>&'Q 2*% 9q _q f22C@ @@G674'&#"/654'&#"301213!276?030127654'&#"'&/5  9 Y  --  Y 9V   s  G      G  s '09BYb"32?654/67&/&'67&'677&'67'&'671367675&'&'#7&'67Kh`rtPt"x'9K]o1!6767&'&'!21#"'&54763471632#"'&5721#"'&547637471632#"'&521#"'&54763@@@       @     @`        @     '9K]67167!!&'&'4'1&#"32765271654'&#"374'1&#"32765271654'&#"3@          `@@          '1!6767&'&'!21#"'&54763@@  @   '9K]o67167!!&'&'4'1&#"32765271654'&#"34'1&#"327657271654'&#"34'1&#"32765271654'&#"3@               `@@     @     @     '9K1!6767&'&'!21#"'&54763471632#"'&521#"'&54763@@@  @     @`     @   '967167!!&'&'4'1&#"32765'271654'&#"3@`     `@      -&'&767&'&76?271654'&#!"3!  ``       @!367167!32+!#"'&5476;271654'&#"3`@ pp @         @*B4'&#";51#"'&54763273;27654'&+&'&'#@   @ @  `` @  ` -       @@5%?3676'&'&'4?6?6'&'#&'4?6765&/&'769DL? Q p,-@@-h$ 9( " %@-,,h$//37 @PY132+"/6'&'&#"?967632#!&'&'676767676767&'p U \3 @ n !)) J J%Z &&AAR "S\  oF G%  TEE,,hHU6716733675&'&='&76&'&'54'&+2#!"'&547633675&'# %  M   @% @  M      ``@~671011390173671&'&93070307676767'&'"'&?632#&'&/##&'&'=474?67632/&#3276?&'&'015&'&'0#36767w& /2!  (   2/ &  , 0,. & .,0 ,  7 , $%%$ , p         )0 .. 0)   +  .  *+  .  -&'1&7676'&'&76?'21#!"'&54763!4  @  l  b    bb   2;U47163!2+3+&/&/&/&73235#"'&535&'&'#1!"'&54763!2?632   D-- @ H &Р ) &5    @--D@ _7\ 3@  )i $    `/?767167767&/&'&'5'&'6?3367675&'&'")(><+HH+<>())(><+HH+<>()H""""HZH""""H>()*HH*)(>>())II))(>H""HH""H@3<%671673277675&'&'#&'&'&'6753276756?&'67#8U $%68,7R66,< z  6%$ 66R6+,B.)3 -6716'&'&7676'&/7"13!27654'&#!  @    b    bb   @H[n1!5&'&'67675&'&'!!;5673567356735673276=%#"'&=476323#"'&=476323#"'&=47632@  @  @ 0```0         GG  @     @@ @ @ @ @ @ 4U&76/675&''5#'6;5#&'6735#&'673&'&'''#&'&'5'#;67&'#567' P 9#PPPPP))j+6%$/+*B0HH0 0 |(1( -  ))6i"$%6 %(D00 ""@08@GN767676767&'&'&&'1&'6767#1#57153#6767'3&'&'ABAA<<<;AABA<<<; """"@@@@@@O   5   ))))@@@@@%,4<Nd767676767&'&'&#5'5367167#7&'1&'31&'&'6767'#;67&'#5&'#ABAA<<<;AABA<<<;@@@@@@))))O   5   @@@@`0  00  000D@ +81!6767&'&'!3#&'6767!!&'%3#&'567@@0`PPp00@ +v1!6767&'&'!3#&'67673#&/'&'"121&'5&'9&'&763327656'&/01&'&'6767567@@\        p    ?132+32+'&'&?#"'&5476;7#"'&5476;7676r *? i@ A *? j@ A  >  `  b  >  `  b .@Rdv%9+"#&'&'&'6767674'1&#"3276=271654'&#"374'1&#"32765271654'&#"3b  H9:"""":9HH9:""        `   "":9HH9:"""":9H   `   `  `   !;1!6767&'&'!327654'&+##"'&=476;@@0 000  H))@  @@  @x ))@?6716733567673#&'&'5#3#&'&'545'#&'&'5 `  `  ` P`  ` P` p    `  k `  `k `&1<G6767676///'&'67367&'#367&'#7367&'# ((((((    ((((((   R "" "" "" 0 "" "" "" p +6AN[hv213!&'&'6767354763367&'#3367&'#3367&'#'&'&767676'&'%3#&'&'56767!1#53@ xx p  `  `          @@   (H `  ` 1#1"/&54?76/776/776/776/7632\30 0*0 0*0 0*0 03\.\30 0*0 0*0 0*0 03\I1;!67675&'&'#&'5#&'5#&'5#&'6735#&'6735#&'6735&'&'#01 `@  0@@PPPPPP `   ` PPPPPP@@0  `@@871!67675&'&'#&'5#&'5#&'5#&'5#&'5#    @@@@@@ p   PPPPPPPPPP 1671673#3#3#3#3#&'&'  PPPPPPPP    0@@@0  &3@MZgv&#!6767&'&'#'67167#5'3#&'567673#&'53#&'567673#&'5%676'&'7367&'#5&'Rv     vR    p    *,,**,,*X  [   @ [e``@@@@p@@@@22220 '&732?6/32?654'&#"h V V6 P (p @ p P 6V  V h(p @ p*HU113276767&'&'&#135#27167167&'&'&##%135#!%%##))$#341 143#$))##%%!  ((``(( `6CP%67167&'&'&'011356735673676750501%676'&'%&'&767,"":9HH9:"", 0@0   $$$$1--6?2332?5.-@ 0000 @$$$$@   "<S\&'&'67'3#3675&'#'67'67167654'&'&'367&'&'#&'&''#3dO`\0?R66# S3 #|0?R66"0mF::$""$::FF::$""$::F    *`v/O`]"66R?0 @|#66R?0/!"<=CC=<"!!"<=CC=<"!  `@0>'&#!"367676727676'1#"'!5#"'1&'!6767=$::*))((()*0 @X[ [%%%%%%@@'3!27654/&'!336767=##5#!32765#%6 LtL   @@  @  rr  P  P ';47163!2#!"'&547163!2#!"'&51#!"'&54763!2   @      `      joty~767167632#"'&'&'%&'&'&'&???76/776/776/76'&'76'&'76'7'7'?'7'7!"<=CC=<"!!"<=CC=<"!9 "" !-8 9." "" ".9 8-! "" "-9 8-" "" "-8 9-" ----D----D--------F::$""$::FF::$""$::F "" ".9 8-" "" "-9 8-" "" "-8 9-" "" !-8 9." ----D----D----D----9\35&'#56767332#54'&#"#54'&#"#54?6;533276=33276=3!&'&'04   4   h(((((4L  L4P  P367676732/#&'&'5'&/&76?6;  !!  "  8 43 8  ~"   i  @ ++ @  i? HZ676'&'#1"'&'&?6?632/&/'&/&?7#"'&54?!  3#"   2  G9(= <     5%  A6 \  XN!@>-$ > ;#51!67675&'&'!&'67!27654'&#!21#"'&54763@p `      2Kc767167632#"'&'&'6'&'&'7676327'271654576/&374'76'&?32767!"<=CC=<"!!"<=CC=<"!S    `   `   F::$""$::FF::$""$::F     |          6"13!27654'&#!"1;56767;27654'&#!   @ @@))@@ @    ))    -;AGagm{67167!32#2+!&'&'13!5!"7''&'&'376735#&'4'1&'&#"32767653&'7#67766#6767)    )@   ? *  $$  N"""" $  $ 9 ? `)  @  )@ @  ##  &++&R####&+ +&L ## HUm6372#'"/&#"/&/&574/&?65'4?6?632?&'&76772370/'&7'6?412?43/#&'              b'((''(('+ )% !8 %) + 8!                ----g$ Y 1=YY=> !0BT&?6?6/&/&/21#"'&54763471632#"'&5721#"'&54763"J$<"S"J$<"S'  @     (L"R"; (L!S":      @   %7I[&'&?6?6'&'&'&'&'&'&'21#"'&54763471632#"'&5721#"'&54763 "J$<"S"J$'  *1  @      (L"R"; (L! & )t     @   ;4'1&#"#";35#13276=327654'&+&'&'#3           @`@   @ *5@IR[dm1!6767&'&'!32+"'&=476367!!&'!673#&'%&'6767&'7&'6767&'7&'67@    @0P0P@ @ @ P&?X67167654'&'&'5&'&767'676/'&?'&73676/'&?'&7F::$""$::FF::$""$::F$$$$ %% $$ %% $$ %% $$ %% $$ @!"<=CC=<"!!"<=CC=<"!   $$ %% $$ %% $$ %% $$ %% @Oa'932767676"''&=4?&'&76767&5676767/&/271654'&#"3` 5$44D $6-- (::E508 8< F ))1(,8 (u  `['Yv '  2b  7 h  x))!L 7  F   *K6'&&#"56756767567675&'7?&'&'&7&767632 i4>mHHE2>>2ELD@ o =ee= >?/:  K !  845& .==<* &1[1!6767#"'&=#33'3#&'673#&'67#&'6736?67633#"/&#"#&/@ @@@@6 #   6@      @@  2'     8!01!6767#"'&=#33'76/&76567@ (HH fHHf@04671673;#3!&'&'53'&76'&?#5#5 n'PP'n p0'PP'Ѐ(04671673;!&'&'53?6/&#5#&'673%#5 'PP'hh p'PP'0&1FKV1!6767#"'&=#33'3#&'673#&'6732+"'&=476335#3#&'67@ @@@@  @@ @@` @ @ @@&11!6767#"'&=#33'673#&'673#&''&#"901&'5&'1&'&7609227654'&/1&'&'6767567@ @@@@        P@H      GO1!6767#"'&=#33'376/'&?'&'01#&'=6767&'#3@ H +" "" !AH44 (  <,@PP(@JN\j1!67675"+"/&#"#&/#&'6736?67633&?6?5#"'&=#33'"7654/?6?'@<@     #     _ &  G  < G   8!  2'  < ^,  G   < G01!6767#"'&=#33'&'5'&?6/@ (HH hfHHf 6"32?654/&#"'327654/76!6?W R\u&&5QQ1 25*\ Q\&&u5R2 15*\@ 6L63127632#"/&54?'&547'!76/&#"'&'1&'6767632) Q5&&u\R 1\?*52 ' R5u&&\Q 2\*51   ,Kc767167276'&'&#675%&6754/"7633676=&'&'&'1"3676=676'13676=67673676=&'&'&'?6=0;;X0() #22;H9:""  6%$ 12Ki $   i)    )  $X;;" )"":9H((5(({  $%6&% )*K12E.>$$ ++)  )64 ;=66 :<)`[T ]c@p+=67167&'&'&''&?'&76674'1&#"32765''00''  ''00''Z .. Z   25 PP 5r  $1>GP767167632#"'&'&'367&'#'676'&'%&'&767!67&'367&'!"<=CC=<"!!"<=CC=<"!))))#$$##$$#F::$""$::FF::$""$::FX#$$##$$#H))))+=S67167654'&'&'21#"'&'6763671632#"'&''1&767632'&#"F::$""$::FF::$""$::FP      z     "(("@!"<=CC=<"!!"<=CC=<"!P       !&#";27654'&+576'&'!'!#  @ `` @ @@&@ֳ   @@Nh?632?6/&#"332?6=4?674/&7676&'&'"67167632#"'&'&'     $  '     !   66I*$!"<=CC=<"!!"<=CC=<"! )      0 "  ! C**F::$""$::FF::$""$::F;Ic776?6?6754/&+"/&'&?676/&?6/"#&'65!67167632#"'&'&': : +"  G55 0!"<=CC=<"!!"<=CC=<"! ('      ((@?8-  2F::$""$::FF::$""$::F+Lfq|7?6676/&76;6?6/&76?6?&#&1"/&#"?667%67167632#"'&'&'76/&7?6'&7&?6'4         !$X;;   $95!"<=CC=<"!!"<=CC=<"!  \j         ) ;;X    .I,F::$""$::FF::$""$::F\     !).38=EM_q67167654'&'&'7#53#7#532+53#53'#53#53'#676;#"'&'3'671632#"'&'721#"'&'6763F::$""$::FF::$""$::F`7 /7 G@@@@P@@@@P7  7      @!"<=CC=<"!!"<=CC=<"!p( 8( ((8((`((8(( (8 (     /AS67167654'&'&'761&'&'&7667'671632#"'&'721#"'&'6763F::$""$::FF::$""$::F ((43(( =GH<      @!"<=CC=<"!!"<=CC=<"! -- i     /AS67167654'&'&'761&'&'&7667'1&'&54767&'1&54767F::$""$::FF::$""$::F ((43(( =GH<     @!"<=CC=<"!!"<=CC=<"! -- y@/]67167654'&'&'761&'&'&7667'9#4101&'&'&'010#9'&56767'931#4101&'&'&'010#9'&56767'9F::$""$::FF::$""$::F ((43(( =GH<@!"<=CC=<"!!"<=CC=<"! -- T    ;P~#"'&'47450367676'27&'&'&'676767#"'&67676'&'9765&'&'79341016767670103939765&'&'793410167676701031    N=! "":9HH9:"""":9H;EE; ''22'' B    ~( "/6H9:"""":9HH9:"" ++ Y    /G^67167654'&'&'761&'&'&7667'1/&'&7676767676/&7676F::$""$::FF::$""$::F ((43(( =GH<A   A @!"<=CC=<"!!"<=CC=<"! --  A  A /DY67167654'&'&'761&'&'&7667''&54?'&5476/&54?6F::$""$::FF::$""$::F ((43(( =GHASTK ) >ASTK   m 026 ,..$# 9 b a8   KTSA> ) KTSA> )    621  #$..,L8a a 8/Nm767167632#"'&'&'6'1&&'&6767'"?765'76'&/"?765'76'&/&#!"<=CC=<"!!"<=CC=<"! P67167654'&'&''&7163!2&'&'7671632#"'&'721#"'&'6763F::$""$::FF::$""$::F  ++::++/      @!"<=CC=<"!!"<=CC=<"!  4!  !4z     ,Z67167654'&'&''&7163!2&'&'79#4101&'&'&'010#9'&56767'931#4101&'&'&'010#9'&56767'9F::$""$::FF::$""$::F  ++::++y@!"<=CC=<"!!"<=CC=<"!  4!  !4e    ,AV67167654'&'&''&7163!2&'&'7'&54?'&5476/&54?6F::$""$::FF::$""$::F  ++::++%YY$$$$ZZ@!"<=CC=<"!!"<=CC=<"!  4!  !40 0++ ++0 /,>O67167654'&'&''&7163!2&'&'7671632#"'&''&7632'&#"F::$""$::FF::$""$::F  ++::++/    $$ @!"<=CC=<"!!"<=CC=<"!  4!  !4z      =FUbo4716;!2+&'&'47#&'&'47#&'&'&'#"'&55&'#3#567673#553#%3#&'&'56767 " C    " P`P     "      "  @((((    @+:F%67167167&'&'327767&'&?5&'&'#"'&'5/""33"" q to {q!!"#%%3""""3%%#": . <3 1D117@+:FS11#"'&'&'&'676767456576%'&'6?67'5327'676'&' ""33""t  {!!(  H%%#""#%%3""""3P . :/> 31171)"'&#"?67654''?6?%% VV t@J fJ@ VV t%%ÂAIf IA 1R&5673'!&'767347167632#"'&'&57&?67'&?6/&/m EJ2ff2JE mT)*..*))*..*)2 $ --  $ 2r 44 r0((((00((((0_ . #11# .+=767167632#"'&'&'74'1&#"32765271654'&#"3!"<=CC=<"!!"<=CC=<"!       F::$""$::FF::$""$::F0     $>X67167654'&'&''3#&'6?1&'&'67327654'&'1&'67327654'F::$""$::FF::$""$::F@ $  $$  $@!"<=CC=<"!!"<=CC=<"!)   )@)   ) )6!6?367&'#!2#!"'&54763 P((PPPx@   PBP    4&'1&37674'"13;276'&'676527654'&#! ёj(  =  =  @ i  >.. ..>  C67167!!&'&'547163567673276=#2+"'&=  " ) @ @@ "  Z  )   '-3?E_j67167!!&'&'&'39&'&'376737&'#'9#6767#674'1&'&#"3276765367&'#@, ' ) 0 ) ' , , '8 / ) ' ,""""1-  ++  -1g-1P ++  -1W#### +67/77327654'&#"76?v$" @ @ `  _2S"$ @ @ S2_  ` .7654/&#"7&56767"'7%6?'p7}8.P  X      ,8}7.M,      X   6R'76327'&?6?'&54?6320#0?2105"10?2141#"/79r9Xr h  ̒WN@ @--@ @NW9r9r  h WN@ @--@ @NW2DV56'&73'%&/&5!2#!"'&547637471632#"'&5721#"'&54763#)( mk#@A R @  `     c0&  M T   P     !5'&'&;27%676'&'#"13!27654'&#!"}.c: ! I G 9h @  MI  _2 U %K5  :F"13276=332?327654/7654'&#"'6767&'&'##53   3j ii jj iV& 0pp   ` @i jj ii jV (0 `  $5GZ#"'5&'&'&'6767675&'76'&#"76323631276'&#"767675&'&'`-33-:#""":9HH9:"""#: $$ z $$ m    -"::HH9:"""":9HH::"        f      &:L^713276767&'&'&#"67'&'&'"'1&'67676#71#"'&547632'21#"'&54763!"<=CC=<"!!"<=CC=<"!E/ '5P          F::$""$::FF::$""$::FP3 *P        :GT35#'#3#5#3#&'&'#&'&'#&'&'56767;#&'&767676'&'@`XQQ``)))) xqo @  XX`X````)))) l   0FR\e4716326?6?;27654'&+76'&6=&'&'3276=7#&'56734=#67&'!!  T) )^   T {))  1((P L@ )) !H#GO&  6 %))   3/H?(03a67167654'&'&''167676&'&'&7679#4101&'&'&'010#9'&56767'931#4101&'&'&'010#9'&56767'9F::$""$::FF::$""$::F\!! )) 6@!"<=CC=<"!!"<=CC=<"!    a    y+05:?DK"13#";27654'&+53676'&'&#!3#7#733#7;#7;#'7#'37z4@  @3tv ;e[ nj t it `e [@   @@hhhhh0hhhhhh0hh@ 276767673+&'&'&'67371&'67676323# #3DU $#=?^@ @)!  #**#  &-21  12,&  #*+#w ]=>  $$$$       @Dy67167'&/&'"356767'&/&'""#15#&'&'56716'&'&'&'&''&'&7676761676)%   )%   #**#  &-21  12,&  #*+#@)%   ``)%   `a        &867%765&'&'&'&+"'&76/%1&'&'67@R666R!!''   P ~"0 @79+R66/??77 !!* 0 b#" 0:Od67167654'&'&''671632/&+"'&56767''&54?'&5476/&54?6F::$""$::FF::$""$::F[ )++) YY$$$$ZZ@!"<=CC=<"!!"<=CC=<"! 0 0++ ++0 0 0&#6?676?6?6=&'&'"/ ) $$ +%  %)/zz/* @&=N%'#"3!27654'&#!737676'&''&'1&'&#"1&76'5176?67Z00P""<10 01>>>b  6CP^ky%7767&'71'#"'&''&767&'&76676326276765&''674'&'&'&'1&&6767"6713&'&'7&'&767'21#"'&54763  "R R""R R"B  S     '((''(('P  1"!!5 (( 5!!""!!5 (( 5!!"C    0Y  t  1----    @`C1;27676763"'&'&'&+"#&'&'67654'&'67672  "(("   "((" /  "00"   "00" )947167632#"'&'&5'&/&'5476;6732   P0 #` bP Pb `# 0`    77  .]1"'&'#&'&'47&'&54767&54767&54767676;21"'#&'&'6767    p      9FQ\3!767#;276=!;276=6754'&/&'&+"3#&'567673#&'%3#&'67Z#        #  ``  h  `KKeP%9 00 9%Pe  )BM4716;23476;23!&'&'567673&'#3675367&'#5367&'#P @ ` @ 0    ```  `    0^$-Xal"'&?6?67&5&'&#'76'76?76?6/&'&/&'&76676'&7 L (B  N $ ,) M   F0#          J E-  P !#'.< J $ 96/ E#&>  B  >'$T$ S  <IV3#767532#'&'#";6767367673276=&'&'676'&7%&'&7675qeQ Cd. ) !$$$$! 1]     ``L`` T}#hp #### 02## @Ul1"3!27654'Ȕ67675676=&'#5&'#5&'#&'5&'&'#5&'&'#32'&?#&'&?6`     %y : p : p     | 0000 | %S K ` K `26312#"/&54?&#675673?6/   W @@ P P   ؉ 8008 P PQ30101/1"#&'&'6767231?1#1&'#&'&'675&'6767367`   %%%%  )88%%8  8 />67167!#!#67!!&'&'%/&?67'&?'&76@@@@Z!!00p00`!!00"00  #66/&'6?/&'6??7/&'6?7     5    5%%5    5%% ee eee eFFFe eF9S`2132+#"'&=&'&'#"'&5476;676754763132767654'&'&#"7&'&767 =+* # # *+=  =+* # # *+= """"---- # *+=  =+* # # *+=  =+* # ####P'((''(('c21567672"/&'&'576/1'&'01?#&'&'545676767676376754763@  # & H![  l, ,_  [!H & #   .'&,,,& "I: E < :I" &,,,&'. %IT4716;22#+"'&5"'&=4763!6767&'&'532+!"'&5476373#&'67         6%$$%6R66/  P      `$%66%$@66RK5   @ ~38271654'&+";+!2?6'&'&+53'53@   P00 C 2Q 00@    A  $ PVA=633!&'&'6767&'67673&'6767367674'&7 $"%$$" $>&'3676/;276=4'&+"27167654'&'&#"3;  `    `   ####ؐ  """"C4716;276/+"'&='&/&76?'&'&?6765   z  zz  z   z  zz  z G  FF  G G  FF  G1CUgy767167632#"'&'&'4'1&'5&'6767'271654'&#"34'1&#"32765271654'&#"3'4'1&#"32765!"<=CC=<"!!"<=CC=<"!@             F::$""$::FF::$""$::F`   P       +EWi{767167632#"'&'&'%4'1&#"3276567167&'76'&"1"14'1&#"32765271654'&#"3%4'1&#"32765!"<=CC=<"!!"<=CC=<"!   @ @P   P  `   F::$""$::FF::$""$::F          1767167632#"'&'&'4'1&'5&'6767!"<=CC=<"!!"<=CC=<"!@  F::$""$::FF::$""$::F`0767167632#"'&'&'&'76'&"#6767!"<=CC=<"!!"<=CC=<"!@L  MF::$""$::FF::$""$::F`  @%6FWhy67167!!&'&'3675&'&'713675&'&'3675&'&'671675&'#7167675&'#671675&'#73675&'&'671675&'#))))0   0 0  0 0 P  0 0 P0  0 0 @))))088  0 88 P    0  0       @&7HYn1!67675&'&'!1#&'5676767167#&'5'1#&'5676767167#&'5!67675&'&'!5&'1&'567375673&'&'&'1&'567375673&'&'`)) 0 P  0 0 P  0)@) 0 P0   0 P0  )@@)@ 88 0  88  0  )  )@  0  0  0  /Hd}71767&'&7'&7676763767676701&'&'&7600'&'01&1676717676?6'&'&'&7&'&'050167611''&'&'0505676101'&'&'47676K -,-    ',,SS'' *W     d$#,-,- * &'SS,,            &&%23,K6<   :'   %%% ':   :2      c"& @!.;16767&'&'#&'&7677'&'676'&'&767@--DD--`  00  D----D `  P;t3'#7322#&'&#"#&'&#""'&547635476;56767336'#&'&'/&7&'&'56767&?66767676'&'%6736'#&'&'/&7&'&'56767&?667&'&767 0PMP  !!((!!@!!((!!   `                    P@@&f @    @ P                 k  ER_#53'#"";67674'367674'327654'6'&+'&'#'&'676!'&'676qLQ  ! 00 B 00 !  1la  ```p @  0  00  0  @      @'+4L1!6767&'&'!/#'&?6323'67&'7567"'#&'&'67672@@H Z  H*  @    A**,`0@E67167&'&'&571#";3276=327654'&+6767&'&'`    @6%$ / `  ` / $%6@  $%6' !     ! '6%$ ,I1!327654'츝4'&+!!!"'&547636733##&'5#&'56735`))     p 00 00))  @ @ @  00 pp 0)<Ve3#567#;676325&'&'#5&'&'##"'&=#!&'47#4'1&'&#"3276765'3#&'5678@##)@` ('@""&&""""&&"" 0(((`!(  /A'!!!!''!!!!'P0@ 3@MZgt&'1&'##5&'#5&'#!;67675&'&'#5#&'5673#&'5673'#&'5673%#&'5673%#&'5673'#&'5673#&'5673#&'5673%#&'5673'#&'5673#&'5673 ` @@   `  p`    p            0        0HHHH `     0      P        0    p  /z%67167167&'&'&'#09367673'&'"121&'5&'9&'&763327656'&/01&'&'6767567H9:"""":9HH9:""/ ,&#08        //::////:E4% 8    &M1&'&'&790521676767&'6767671674'139#&'&'&'&'&'#&'&'&96756767&'&/&'&7&763276'&'5;;X:/ "  ';;XX;;Z>=S66'  " /:I66        K12   ,;K1221K 88V11G;,   $#97    -1#3367675367675&'&'#5&'&'# P  P   P  P   P        P  gnu|%7&'&'5656'&#"#&'54'&#"#&#&#";32?3276=673376'4/67327654'&+%67'67'&'7&'77'677'67'&'721#"'&54763R0A "  -;  ;- "   "  -;  ;-  "  $ +A0AA0h%+ w% +A1@A+ %]  +$ ;- "   "  -;  ;- "   "  -;  cA0g%+ x$ +A0AA0g%+ 0Ab   )=HS+'6?56767376323=+532?1!&'&'13#&'673#&'67G$ ` M21M ` $GR` '(YF, % % ,FY(' Ρ  @%!&'&'67673;%367&'#   @ 4%1!&'&'67673;%675367&'#5&'#3  @@@@ @ (@@@@@1}67!&/&='&747167632#"'&'&576763276'&'5&'#&'&'&21396756767&'&'1&'&7147  k=''@  ""&&""""&&""y        //A)$0 O'!!!!''!!!!'!       iv356735673567222+5#5#5#33#5&'&'#53535####"'&=47635476354763=67"1354'&#'354'&#"x(0(   @ P  P @    @  @   @ @ ` ` ``0  0`` ` ` @ @  00 P  B\n7367547632675476326754763232#"'&/&5476;16767654'&'&'21#"'&54763#-      - V )*..*) V            _""_         $6m76//'&?'&?'&76?'&76767/76767'&76'&76?'&'&?'&/ L '\TB Z55Z AT\' L       Y5 T 'A\ LL \A' T 5Y        07'&76767?6/&6767&'&767654'&7632013&'&'&736/&5&5456;6/&7676767&'&?6/&54?6'  &&.'  )  . #@@QQ@@# .  )  '.&&   > "#09% # ))2/D))))D . 2)) # %90#" =  -67167!32#2+!&'&'13!5!"7'00#"/6767#"'&54?41414''&?&'&'3276/7654/76'"#'4#"'&0132?&'&76'&74')    )@  Z% )) %           `)  @  )@ @  && $#  po!$@3>IZ7'761'%=67%%?'%&'576/57'&76/6'&?&?6'&/< 5 + + 5 @ @` @ @ '&''HGGGGvPYYPU.  PP  .U           690019?67654/&766769;33011#92'&'/63&/#"'&5675&'6727''779#'05"'&'&'&'&'6767676727217394'65'&796747674705&'&547674'&'&'9&?67&'67&' 0  *$)    L -(  (- L    *"*  0  H  (   $""'0(   (("" +     + #"((   (0'""$   (w##j##66!&'&?5?3353353353301!&'&?212=0@0@(@0@(@0@0b  b   `+8K]"1356767354'&#!"133276=4'&#!3#&'567"16?54'&#!&/3!276= `  `   P      `    @    ss  Uee  )>Sh} 632#"'&=4?3632#"'&=4?7632#"'&=4?632#"'&=4?7632#"'&=4?632#"'&=4?7632#"'&=4721;5476323276=47632#32+"'&5476;5#&'&'5476;21#=476;21#=476;21#=476;21#=4763  `  N  r  N  r  N       )  ) ` @ ` @  @ ` @ + ++ ++++ ++ ++++ ++ ++++ N     )@   @) ` ` ` ` ` ` ` ` %Qar209!&'6767679016767635&'#"'&=4763!2+5&'#5&/#6#5476?3+&'&'5!!)--)!!p0  0@@ F @ "7,+7"HH   HH::    %    &?6/63#;&'&'&'&'45"59&7"90267674'36?6;2#&'&'&'4141#10101&#&#&910110367675&'&'#+65&'&'?&739067676763015390'&'654'&#"""#&'&'0#&'&1"9{       "  &   56%$'  &   ())( 1  0&    /  !             $%6# `    )`) 0  g      &'6736327&'6767"#017276756767"&'3276763#0#"'&'&'7&'&'&'#"'&'6776767&'1#&'09&'&'&'672327676767476747&'&'&'5&'&#&'67376?676767'"#&'&'67673&'670%%       #  &  &  #!                            575'75'6?65&'&'%67167632#"'&'&'^(6F,-%^6()-,FY!"<=CC=<"!!"<=CC=<"!yM# ^n 34I5*2My #2*5I43 n_F::$""$::FF::$""$::F)535676735&/54/&35671675&/3)``) L L  Pg7 gPSm``m L L \ 8 \8)=Q1!6767&'&'!21#"'&=47637471632#"'&=21#"'&=4763@@@  @     @ ` ` @       )=Q&'1&'!!67671+"'&5476;221+"'&5476;1+"'&5476;2@ ` ` @       `@@  @       9&'&767?676'&'&'&'"#";676/7`  w  X   8* 06W  t-$$$$  H   -$! ]'  VZ1c676/&'&'5476326754/&'&767#67547632'&=6?6754?676_ x  O +  W > W  + O  x  I ` - "!-v PU    UP v-!" - ` I  ,Ac1!#"'&547635"'&5476;!!!27654'&#'?5'76/&1276'&#&'&'6767276'&'`))      N      $%6' )) '6%$))  @ @ @     *6%$(($%6_%#"/&'&'6767'&'#&'&'&96756767&'&/&'&7&763276'&'5' ~5FX;;;;XX;;        F5~ ';;XX;;;;Xh    .@%#"/&'&'6767'&'1&'76767#471632#"'&5' ~5FX;;;;XX;;"" p   F5~ ';;XX;;;;X ""&'( ('&  #5B&56?6=#2?3547&+2?675#75&'&'#32@ @%) / ` @%) s2 ` !?'0  0/)  0/)W'?   @#M6716;2+/#"'&5476;63127632#"/#"'&54?'&547 i f. .$AUn )) ** )) ** r    p" ** )) ** )) &P7671671672#&#232#&'&'&'%6312/&'&?4/&76?6?"":9H2,  X;;;;X  ,2H9:""wG3 ?? 3GH9:"" ;;XX;; "":9Hw@ 2F!!F2 @ 7;?CGK%3/#373+&/#"'&54?'&5476;76732'7#/3#73'7#*!6z66z6B5 n8  8n 55 n9  8n 66*d6**y6""6XXXXW  \\  WW  [[  WX##8,,8##""Z,,*:S6+54'&#"+=6?7632##&'&'54?6327&#3?36/76'#'6 yp  py@ @@ @    e%r` `r%e G G y     +PT[_cgko&'&#"32767!!7"132767&'&#4?'&567376323##"/#&'7#'37'#3'7#7'3'7#'3`    P    t9 99 9|*AFF!!`*`!!!  @ @ @  106 6016 66$$p4444L<$$<h'P1335335335367675&'"#!"/&#3276=!3276=327654'&#!"; @`@`@  11 @     @  p @@@@@@ C   C     7676322+"+##"'&=##"'&=##"'&=#&'67675#"#&'&'&'4567676?6?=#"'&'&'&76763767+;5;5+1+3=  &' -(    (- '& =3``H0H$ 8 B#         #B 0 $j@@@@@//#&'&'5676737676/'&?'&76-DD|77777777   x@x 777777773EW1&'&'676767167654'&'&'4'1&#"32765471632#"'&5))))R6666RF::$""$::FF::$""$::F   @   ))))66RR66@!"<=CC=<"!!"<=CC=<"!`    6!6Hc7&767!#3#3#3!!!&'&'56767271654'&#"3/76'&'&7676! |jb       !!, 11 ,`, @@@       `    :AA:  6EEEE6  -BKTm67167!32#2+!&'&'13!5!"&'1&'367567'&'6767&'&?76/76'&')    )@  ""@p0z MM jj MM jj`)  @  )@ @ 0   !a !! .. !! ..@',6'1&'&'&'&;676754'7#7#y '' 0    0Ywwxx  11  <  % 5P#-66R0")#) " !")?)) 4#-Q76P")%) " ;Hl"#"5&'&'27'&/&'&?'&76?67676676'&'1!&'&'676756767263&U&#))) U22UGG  ")#) "U7)))  TGGU22$$$$")%) " }_hx7;276=67532767567;276=276?6/5&''&'&+6767=6767&'%&5673&/`      *  5#@03"" w"00"  X  X  2 ? fRJ""36  (&@p  !!  )8FTdr?6'"?6/&%?654/&#&'1&767523765&#675&/"23'276/&#"%'&#"7676'76'&+7'3276/&+"315N !< .&N 5 - <1    VO NV O OZ P  P B  b .{\    b  \{4@ ^4 @xx     !26/&'6?/&'5476!6'&=4? ` hh `` W  W `@DM7672323+'+"'&=#"'+"'&=&/&7676;7&'676 48" pj   $,,$   -  p0! "@a ss 1  @ALTj'&'&?'&76;#"/#+!"'&'&5476763%674/&'=709010109'676716#&'&?'&?`4  ), p /9   !j /"@p,./  E ~C    %M   'B/$-/B-95 %  W2+ < o@7#'&#67674'&74?6;27676'&56767276'&'&'      Y   0  /0BK12     0  ?()21KY -CTfs01?676'&'&'6'1&'&#"7632?1743676/&'&367&'&'&%&1367676/#3675&'!3675&'#3675&'#!3675&'#'&'67&'6753&'675QD       C :P E PE2PP0PPPPPP@# -  L x  LL0 .  L )$ . L $) .00000000 Hk671673;##&'&'#532&'5&'#367567+"'&=476;#+&'673674/&'476;6=67#"/&=67 0   ## % ++ % c @ P P        ##  5,,5   -Az21#54763471632#53471632#"'&=471632#"'&=5327327+"'&=&/&'5676732+36767 @   @   `   `   %X 88 pp @ PP ` `@ @ @X  (!!` N  &5  ,>P#&'6767"/&#"/&#"#"/&'&4'1&#"32765271654'&#"3( 66RR66    x   `   R6666R  # #      @#3%/&='&56?6;76/&?'7&'&'67-#'P /9*-$ X}& $ !& ,  &*%1X&  $#4FWiz#167&'&'&#"167&'&'&#"67&'&'&#"7167&'&'&#"67&'&'&#"7167&'&'&#"67&'&'&#"7167&'&'&#"67&'&'&#"3=&'33=&'33=&'33=&'33=&'33=&/4'1&#"#"'&=4'&#"3#";27654'&+53676754'&#"+5:>R..R>( @ @  @ @     )  )  055555558````````````  ` `)@   @)` ` '@S?6?63#?67&/&'#&#"32?654/!2#!"'&54763@i1<] (  ( (  (  @  5^# (  ( #    ?M`676'&'#"'&='&?676356701010101&'5#&/7'&'&7/&'&?676;232  J'$* 8$0    L2Y SJ#T +8*d  Z [ nw62;276#&'5##&'5&'&'&'&';+"'&=#"'+"'&='&?6567671;267'&7&'6767&''&'6767&'    @   @ "" @  66R IXX0  )  %"  @ L L w) 1R88 p@QZ%537675&'367&'++675673676/&?6545;276=67157&'67  P 6%$`60!  "  T   0N#L$%6'"88 *,24 ?   .@;%1##'76/&#&'&'5#&'&547%625476;2@ {&Q u 23"@" 8  Mp  2   0%   0d%  33F?2332>'  & v97676'4'&'&'67&'%6716767&'&'&'5@GhhG 7YY7 G43HH34G"HeeH""HeeH" %%    ((%##%`%##%` J\&'&767632376?6'&/7;27654'&+&/&/&#32?#";6?'&'@W 9   900" #; F    ^ 5Y  e$R   6!   )@(:;5&'&'767675676735&'&'!67167&'#; 0  p)`0 )`p0 P  0)@ 0).@j1+"'&=&'&56767271654'&#"374'1&#"32765671676/'&'&76?'&'&7p ` ()==)(         @" "6%$$%60      YY CC YY CC  6'&7P   0 6'&'&/&?6?76/&?6767?6/76/&/76?6'&76/&54'&'&&'54'&'&? ! 9P  <<  P9 !   ((   ! 9P  =<  P9 !  0  0  U"99 8  8 99"U T (( T U"99 8  8 99"U T0    0T`/AJS\e1+&'&76767656767!&'1&'67675671654'&'%&'673&'6767&'7&'67"     )D))))  @0P&442vFE  55LR6666RR6666RR660pv6716732354?67632&##+#"/+"'&=&'#"/&54?&'#"'&=476;67'&54?6=3#;'676'&'67&'&'1&'676323`j0j  8 +=#P          j q'Z----`%#"% x"%"  " - .            ```'((''(('@%.#% #8DP3&'7&#37671674'#3/7332765&'&'#"1;5%&'1&'#6765g C&) R[66%$$%6d >:!/D"R  23K\  "@ 09 p2D $D$%66%$8h`O"  K32  #$) _ ,9!36?6736767&'&'676'&'%&'&767@x'  &y   $$$$"@@"$$$$@  ";Tm6#"#"/&54?6=67327%2#"/&54?63%#"/&54?63272#"/&54?63 V  * p# 33443344x ` *  c43344334F%Kp1;2#!"3!6767&'&'#"1;6767&'&'!"3!2+"36767&'&'#";2+"3    @))  @  ))    ))       ))  ))   ))    -:6312#'#"/&54?676?&547?6/& @ 1  X1  B b B b  @  1X 1 B b B b 97136763236723236767&'&'0#0#65&'&'&'&#4'1&#"&'&#"01"#"321230"3276701327654503327654'&'012327654'&#"1"#0365654'&#"0145676'&'!676'&')--))"&!0               )  ))" 0  `          ?#GR]hs13676'&#&'&'47676'&'"#67167&'&'65&'&'"&'&#!&?6'3&?6'3&?6'3&?6'1###6$ &   q"" )#)  `  `  `  /  ## &  " " )$)$ 0 0 0 0 0 0 0 0(=Rg7&'1&'6767&567672672121!632&'&'54?3632&'&'54?7632&'&'547`) 0!&"))# ## #}## )  0 "))4A    AA    AAAA    (3>IT7&'1&'6767&567672672121!'&?63'&?6'&?6''&?6`) 0!&"))0 0 y0 0 0 0 0 0 )  0 "))" p p p pp p  p p,;FQ\g&#'&/&'&?'&76?676762&'6767'&?63'&?63'&?63'&?671!&'&'676756767263& #) 8U22UGGV E  `  `  `  K")#) "?!) 1"'UGGU22  0 0 0 0 0 0 0 0 t")%) " 9Vu676327632;'&/&'!'&+&'&'4?&'&'3+"'&=#+"'&=;'&#""?765'76'&#/7""?765'76'&#/&#&#""?765'76'&#/@.. L ?'  ( * L`     `  k  u   ,,  H 2   W^ ^ @@ @@ @@   _hqz217632?6/&'?/&76?/&76?'&#"'&= 4763&'67367&'&'67367&'  E;7#&&$  -BA!LO"-BA>C?F85LO"-BA>C?F85LO""IE;@@  P     $  ! > ! ! > ! ! " "P @F!?!?!9  `05G7671676"'5&'&'&'4'1&'&#"3276765'21#"'&5476301LM1101LM11   `  O98 ? 98PP88@  98P0     "C332#!"'&5476;676756733533533533!&'&?212==+*    *+=@(@0@(@0@0 *+=   =+*    :LU74'&276?6'&#765&'"21#"'&'&54767634'1&#"3276567&' /9:V7./f K ####   K f/.7V:9/  """"`  `@ -S`4'1&#"35!4'1&#"327652716=#3"76?32765327654'&+&'&7675;27654'&+'&'3276=3276=4/  @@    @ `      I C)   &  @    ڛ     P  H  )7 `+5 ; 4@W&+&?632336767&'&'65&'&'#65&'&'&3?6'&'#76' %  !  % $-  F4  F4  !! :%! % i  i .T}11#"'&=676767#"'&=&'&'&'1#"'&=6767#"'&=&'&'#"'&=676767#"'&=&'&'@H9:""  +*IHYYHI*+  "":9H  $%66%$    32??23  --DD--`"":9H` `YHI*++*IHY` `H9:""` `6%$$%6` `@` `?2332?` `D----D ,Kj671673!5%"?76/76'&/&#&#"?76/76'&/"?76/76'&/&#;67547632&'&'5#+"'&=#+"'&=3--DD--      ` @   "" @ @ D----D@@@    P0 0""0 @ @@ @`!,7BM136736767&'&'"&'&#&'!!67&'#367&'#!!67&/&'#367 ()={#22#0  0%2#&5=)(HP@ppPhh0=)( 00 ()=`H+Gk21#"'&5476327167654'&'&#"3%67167&'&'476757101016767&'&'01015&'&'67167&'5&'       ""00 ()==)( 0       P  ""p 0%3=)(()=3%0 ` !  ! +Gk4'1&#"32765#47167632#"'&'&5'167674'&'5&'&'671670101&'&'6767010151&'&'67567      ""  p 00 ()==)(  `      "" 00  0%3=)(()=3%  ! 33 !4K7137632;6767&'&'0#0#65&'&'&'&#&3?6'&'#76')/ @))"&!0 J  F4  F4 )u :))" 0   i  i $2!6?65&'!"!!'&'3654'!32?67#a& `(T/ u  N  &  `6*?E #v!$$ N#7L&'1&'676726763"'#"/#763232?'&+"?673#!&'&'4?$$  0  ;*<+*+ h 0 0 0  BC`@ 667167!!&'&?6'671673!53!&'&'5`   9o/@g     p  0/o/@  `  `?4i66716'&'&'&'&''&'&7676761676716'&'&'&'&''&'&767676167656716'&'&'&'&''&'&7676761676#**#  &-21  12,&  #*+#%#**#  &-21  12,&  #*+##**#  &-21  12,&  #*+#z                       -?Q676'&'671632?6#5&/&'&7#"/&'&?7#"'&54?'#$$##$$#p $)33)$  %$ Z<  0 2=2 0  h))))9     $$  5&  0  H55H  0  % .;H!6767676716732+#"'&'&'&5;5&'&767676'&', u    ))-,*)   8..   @&$##$&@0  @LYhy"7627677676'&'&763676'&'&'65&'&#&'&'&76'676'&'6'&'&#&67"6326767&#6767&"."4*89&!786587!&98+5".  11  C:   " j,%  &+   " /G(!4&:=00  00=:&4!(G/ $&&&&$   ( +$$ b    ( $$+ 7^1332765&'&'&'"1332765&'&'"&'1&'6767&'&'#3&'&'5 ?23  &'AAP 6%$  66R `  ()==)(()=    32? PAA'& ` $%6 R66   =)(()==)(`   #0=2135476323!56767354763!!&'&'3675&'#  0 @ 0   P``     00     @``#0=2135476323!56767354763!!&'&'!675&'!  0 @ 0   P      00     @@@&.5<AFK637%676=&'&'"?'67'7&''67'7'7'7] T#*+@+%3  Y. .=> V<=l==g==< "#)@+*Q =>5/ .;R&&C&&A%%+J10136767654'&'&'1765&'&'&#"/1?'&7676765&'&'[      f?'< 7| 4 =d#%&7      .= 7 ?4 <. '7&% 3>IR[dmv"1;#"!676754/&'&+53276=4'&+3#&'6767!!&'7&'677&'67&'677&'67&'677&'67&'67@ P9P   `0xHHH @ FF @ 0hhhhh3Mg%#&'56767632#"/'&'5673!/#"/&54?'&7673'&'&?'&54?63276#Ȑ (I$I(  (I$I(  (I$I(  (I$I(  (I$I( @ (I%I(  (I$I( @ (I$I( @ J37#5#;'#;674/&'##";32765!327657327654'&+7!2^[c| }c^ZS    @    TT       /Nk37#5#;676761'#76312&501'&'#6767!#";327653&'476?&#"67674'&'&'&&'#"'&'476772^[c| :cZ      0 3,-ED-- &  M# $ TH T@ K   6LO.13*D----D-$%*H7;5673567356735673276=4'&+54'&+54'&+"#"#" @@@@@       pppppppp      /8\fox6'&'&'&#3&=476767&'#76'&7#&'672#35335&'&'#65&'&''&'135#367675##763       $ 1 \   ##0  `1      0 &   P``P  (( P0 P8& FKP67676'&'&76?''&/'/&'&76767&'&?7'37'}}O %)  GG  ).$%  $%.)  GG  )% O,Z KLY..+,+V  V.AA.V  V+,+75 :: 5"367676'&#!'!!  22 @8v W Xz2?6;36?63236/&?67673#"32;65&'&'&#"/&#"/&+";6767%67167632#"'&'&'7&?6' !  *           87U    6++J!"<=CC=<"!!"<=CC=<"!             "V::  ! -dF::$""$::FF::$""$::F ` '7"13!27654'&#!5"13!27654'&#!          '4'1&#"3276534'1&#"32765@         /<&&#"767676767654'?6?6/&'&7670M#$$ '"*+33# M)0(  0)M #33,)"' $$#M0((676/76/6#"/&'56767w$!2Lp>L 7--B`@@@   B`~;""~y . F: P  P :F/%!'&56767376;47163!2#!"'&=`;'(;2&& O    @;('1~V@    5A\67&'&/&'&5&'"13676736767&'&'#!3#5'&'67&'&/&'&5X    8 ))0  00`             )) 00 @  `      #4A#"'&76767627#"'&'&?37#&'7676#'&'&767& ( H(H .55. H&H (   / 5,, } }  } P/} ,,5 03BUdv21#"'&'&547676367167654'&'&'67'&'&;327676/#"'73276'&'&271654'&#"34,,,,44,,,,4F::$""$::FF::$""$::F8$ '  H$  $  TH  ' $8  --33----33--@!"<=CC=<"!!"<=CC=<"! ? #5 1>  >1 5# >!    9DQ676'&'#"'&='&'&?676;2'#"'&=#&'67676'&'5#"'&?"'&'&?67632#+#"'&=##"'&5P(             ""         Ѐ  dd  `00  P` _  _ ` `` ;@E&&#"&#"327654'77654'7?6/7654/&#"''7/7`Z%,0( l  l Y`Y7 0 7YH>H>H>H>`Y l  l (0,%Y`Y7 0 7YH>H>H>H>B\47163#"'&5&'&'&'"'&57&547632#"'#&'&'4767671#"'&5&'&'"'&54763 PAA'&  32? h  h #)X;; R66  $%6  &'AAP ?23 h  h ;;X)# }66R 6%$   +6#"!6767&'&'&'5673&'5673&'567@MPPMX000000(27AFP32!&'&'6767"135#;5+%4'1&+35'35#2716=#3'35#1;5#@M  @ P`PP`P  @@@ @ @@`  @M  @@@ @ @@  @@@@  @  0>Qd676'&'4716;#"'&='&76?#"'&57#"'&547+&'6736756'&/&76?6` " J<  NK /W R CYY; <     P F<I CM V S `  < ;   )V676'&'67'&7?6'%&?766?6/&//'&?'&76} .Km(  2 ,, t  7T 4  :       fEK4' JC    ! 3   I   @ #^n676'&'23#7'&'#6?63092#3210;210;67675&'#7674'&+&/&/&##76'&/7;P  mWX) ; 6j8+E  900" 3, 9 `@^ 5RX ~'  6! YL$R :V"13353356767527654'&+""'&/&'&'&+4'1&#"!"3!67675  )@@)   911#") `   %  ) )`  )1#   %/L%67167167&'&'&'#09367673676&'5#"/&'5670901011'&'"9&#"'&7630927652516'&'#0#&'&'676'&#"00901011'&'09"'&7621390127652516'&'#10#&'&'676'&#"0H9:"""":9HH9:""/ ,&#085 ##              //::////:E4% // `00` &      FR_61/;#"'%&/&76&5&76?56?'&/&767&?6/&'&767 *~  HG! W J". G5 T%   2b 8 K! 5'2 = K ," ^ENW`ir756776+"'&'676'&/&76567676'&56767'67&'&'6767&'&'6767&'32?6=&'U 0 8I0..0I8 1  )) u00  3 (    -GE--EG-    ( ))-P0G[dmv#'53'&'##"!67674'3327654/=76'&'&#54'4'1!&'&'6767!&'6767&''&'6767&'+Ep@kW){    00  +6 79 9@M    8h@`% p k"0  037 6SUG  G5m    0347163!2#!"'&54716;2+#"'&=#"'&5 @            (GKV33!276/6767&'&'5367&'!#"'&'&79&76763209513#&'67$  $ph/PP//PP/8  #F+< <+F#  @"0V_&;32?654/&'&'54/2?&7'%4'&'&+&'54?6'&'&#6676767&'O( P 6m p @ pm h;v >@9@=)(U%8 (h mp @ p m6 Pyv !> ?9@()=U#",#HUbo21#"'&54763471632#"'&56716735'&?63!&'&'533675&'#3675&'#73675&'#      Ո@@@p@@@@   8  B*00,L@@@@@@/763#&'&'56?63676754/&'47 U$11JR665 &% Q#/.3J1166RL6Y&&5+"@ A6"1'&76767670176767767670176767137//U--/.Y# V--/0X_11''N+ L#%23b+ 0**1/11/ ,0//1--6 14410%%  ""01663 , -J67167!32#2+!&'&'13!5!"#336753675&'#5&'#)    )@  00 00 `)  @  )@ @ 00 00 0!&11!676756767&'&'&#<<11   11<<###?  ?## %!6?63!&'&'5! X;;  ;;X0@,I%1#!&'&'5#&'&547%625476;2%#336753675&'#5&'#@    k   5 00 00   ^% y. ?0 00 00=M1#!6767&'&'#&'&'21#"'&54763676'&'671673#&'  &%    @  0"@"@@   $$$$""/L%67167167&'&'&'#093676736733##&'5#&'56735H9:"""":9HH9:""/ ,&#08  00 00//::////:E4%  0 00 05?1327654/&#"32?6?6?01017''7'76?) `"c c l#J-4C4-KC  M  #l b c#K-4C4-JDC M  =OXj/&?6;2367675476?674'&/&'&/&'&#21#"'&5476367&'21#"'&54763 < > *!%# "L          '   P   +&'1&'1&'4767676'&6747676++*+@@+*++6% #0//6:>?+,,+?>:6//j #21,&-,@3O4'1&#"35#535#51;276=4'&+"/&+"1;276=4'&+"/&+"@    c  C  c  C  `@@@      #,5IZ7"'1&547676767#!7&'6767&''&'6767167!!&'&'67!!&'&'5=  0/XX/0  zSp       %%""""%%   `0    ` 8"1&#&'5"36767=&'&'"&'&#"54'&#  -,:v6%$       I8&;'$%$6@     @#5"1"/!5&'&'#&'=4'&+676765&'!  08""!"80  @DDDD d T55C@BC44T d @&CPd13#3#3&54767=&'&'#33##&'5#&'5673567&'&7671;2765&'&'#0    hh'((''(('  'f' @P $` @---- ''iv1#"'&547632&0#91#76?036767676?676?6767676?6767367676'#"/&54?632' ` .                  `F               ~  !)65&'&'#;6767&'&'#6?!o()==)(  65  ii =)(()=       =67167!#!#67!!&'&'%6733##&'5#&'56735@@@@Z!!  00 00`!!0 00 0*5@67167!!&'&'3!276=4'&#!"367&'#3367&'#@ @  8800@ @ @ &@6'"/&'#&'5&'#&'&76326/&7733#"'&5476?67  *   I%+# ]( L=Z[k; 2:  ,A   P  P 0R./   52DVh&12121007676'&'&'&'45&'&'&'"#017%'21#"'&54763471632#"'&5471632#"'&5  YHI*+, ./JK\&'AAPe |  @      ,+*IHY  \KJ/.gPAA'& e     0   /u#'&7673301!&'&'676767096767&'#&'&'&96756767&'&'15&'&7&763276'&'5@/ /*) )) )*T        `G  G "#78R))R87#"X      ,0U\`dhlp1!#"'&547635"'&5476;!!!27654'&#'#7';32?3276/76'&+'&#"#"373#'5'3?#3'#7'3`))       7 8  7 8 88*E7))  @ @ @  0 00 00 00 000000H05#53%1!67675&'&'!!5!%1!67675&'&'!p    `p    ` ` @  @  @ @  @ '>332#!"'&5476;767!+"'&'"?67576/&#x `  `    P''P     S@P''P'>332#!"'&5476;767!!&'&'"?67576/&#x `  `  P''P    @@P''P'A^56?61&'&'5451167675#6?6#!"'&56767#336753675&'#5&'#`` `$%66$%0""  G G 2 ~ 2`@: $$ :(6%$$%6(0"" L L ))7 7))74716;235476;2++"'&5#+"'&5476;5  `  `  `  `    `   3@Zg676'&''&#"3276=4/7;27654'&+676'&'34'1&'&#"32767653676'&'34'1&'&#"3276765  > S<  +<) @ 5#$$##$$#""""#$$##$$#""""`@1 @&o  1!  ))))####))))#### )#53#53'#533#51!6767&'&'!@`@@@#5GYk} 1CUgy"'1&547632#721#"'&5476321#"'&54763"'1&547632#21#"'&54763"'1&547632#21#"'&54763"'1&547632#21#"'&54763"'1&547632#21#"'&5476321#"'&54763"'1&547632#21#"'&54763"'1&547632#21#"'&54763"'1&547632#%21#"'&54763%"'1&547632#%21#"'&54763"'1&547632#   `            `                               @          @                 @     @     @   @     @   @   -?Qcu713276567!27654'&#!34'1&#"3276534'1&#"32765#4'1&#"3276534'1&#"32765'271654'&#"3"1327654'�'&#"3  P "     `            P  "               ? 0K676'&'6767763!"'&?6737%&7#"'&=''&'&? 2' #O"  `     Sp  =% 0   &+%g".   \0` Ko  !8J"'#"767323676'&'3276545&'&754'&#21#"'&54763B""  r  56C  A""  r  56C    56C  A""  r  56C  B""  r    $ANe|&'&'67675&'&'676756?676;23#&'&'567673&'&767%32'&?#"'&?6%/&76767676 ` W >     u'8  '8   a `    9v   `   p  p h  Z p Z p ; d d!6716&/&76?66767'&?[ X<\iv!!&'&'56767&#"'&#";276/4'1&#"327653;276=3!&'&'67673675&'#3675&'#3675&'#3675&'#@ 8 @ P0`   `  Pk T P       @@hh#-D&76'%7376?6'&'#1#"'0510173'#";27654'&+7'' P ,g     q u!^$3  *6 0 מ  , Y(sJ   >+i'"B^b#"/&76764763276764716;32+&'&?#"'&5'&/#'&'&?673'  X    X  J3  J3 ` @ X @ ( `  $. $  ` I  I     (('"B^b&#"76?327657676/1;327654'&+76'&'#"76?37676/&'7#  X    X 3J  3J  ` @ X @ ( `  $ .$  ` I  I     ((@"5H[n#"/&767647632767632+"'&5476332+"'&5476332+"'&5476332+"'&54763  X    X    ` `      `  $. $  `         @"6J^r&#"76?327657676/7"1;27654'&+"1;27654'&+"1;27654'&+"1;27654'&+  X    X     ` `     `  $ .$  `         '"GYr2?6'&'&4'&#"'&'&3%&?#";27654'&+54/61'&'&76776?65&'&' X    X #0   00  !    1%% `  $. $  `  4   `   q  B$%% '"GYs2'&/#"'&5'&'&?6332+"'&5476;5'&'&76?6'6716'&'&7&'1&56767'&'&? X    X #  00   0   )%%1  `  $ .$  ` `   4    7 %%$B  @8@Ic76?37676/&'#77;6767&'65&'&'#"#53;#56514'&#"'&#"32?pC  Z B &} P" "@ `  0 I `    --`` "$" @ @ J ` @` +87&'&767367&'&'!6767&'&'#7&'&767----x()==)(()=`=)(()==)(p----'((''(('#-=)(()==)(()==)(()=-#'((''(('%G671016763#"'&'67676720116767676&'&'&'&76@    *+55+*    $44EE45#& +%>>\\>>$, & ((34% %43((  :+'',9 06;26765&'&'&/&'&+"1!%&+" <2$ &)3 .&&89#& 4 ') 35#367675+%5&'&'#3D----D@D----D--D D----D D--)4?J6'&!6767&'&'#%&'&767673#&'673#&'673#&'S ----````~ !lQ'((''(('@@3M_767167632#"'&'&'%21#"'&'&547676327167654'&'&#"35271654'&#"3!"<=CC=<"!!"<=CC=<"!  ####  F::$""$::FF::$""$::F`   """"`   9DOZ&'#3676754?6=4'&'#4'&#"#4'&#"#53#&'673#&'673#&'67p      0H \  \   H@@$8N[67167!32+!&'&'#&'&'535#&'67354'&+"'"1;276=4'&+676'&'"PD--   ))"@  @   `  P"--D  ))"`@  @ @ y2G1 ,  4y 2   > 2 d ,W X .% &S  SolidThe web's most popular icon set and toolkit.FontAwesome6Free-SolidVersion 772.01953125 (Font Awesome version: 6.4.2)Font Awesome 6 Free Solid-6.4.2https://fontawesome.comFont Awesome 6 FreeCopyright (c) Font AwesomeFont Awesome 6 Free SolidSolidThe web's most popular icon set and toolkit.FontAwesome6Free-SolidVersion 772.01953125 (Font Awesome version: 6.4.2)Font Awesome 6 Free Solid-6.4.2https://fontawesome.comFont Awesome 6 FreeCopyright (c) Font AwesomeFont Awesome 6 Free Solido      "# !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij exclamationhashtag dollar-sign0123456789 less-thanequals greater-thanabcdefghijklmnopqrstuvwxyzfaucet faucet-driphouse-chimney-window house-signaltemperature-arrow-downtemperature-arrow-uptrailerbacteria bacterium box-tissuehand-holding-medical hand-sparkles hands-bubbleshandshake-simple-slashhandshake-slashhead-side-coughhead-side-cough-slashhead-side-maskhead-side-virushouse-chimney-user house-laptop lungs-virus people-arrows plane-slash pump-medical pump-soap shield-virussinksoap stopwatch-20 shop-slash store-slashtoilet-paper-slash users-slashvirus virus-slashvirusesvest vest-patchesarrow-trend-downarrow-trend-uparrow-up-from-bracket austral-sign baht-sign bitcoin-signbolt-lightning book-bookmark camera-rotate cedi-sign chart-column chart-gantt clapperboardclover code-compare code-forkcode-pull-request colon-sign cruzeiro-signdisplay dong-signelevatorfilter-circle-xmark florin-sign folder-closed franc-sign guarani-signgunhands-clapping house-userindian-rupee-signkip-sign lari-sign litecoin-sign manat-sign mask-face mill-sign money-bills naira-signnotdefpanorama peseta-sign peso-signplane-up rupiah-signstairstimeline truck-frontturkish-lira-signvaultwand-magic-sparkles wheat-awnwheelchair-movebangladeshi-taka-sign bowl-riceperson-pregnant house-chimney house-crack house-medical cent-sign plus-minussailboatsectionshrimpbrazilian-real-sign chart-simple diagram-nextdiagram-predecessordiagram-successor earth-oceania bug-slashfile-circle-plus shop-lock virus-covidvirus-covid-slashanchor-circle-checkanchor-circle-exclamationanchor-circle-xmark anchor-lockarrow-down-up-across-linearrow-down-up-lockarrow-right-to-cityarrow-up-from-ground-waterarrow-up-from-water-pumparrow-up-right-dotsarrows-down-to-linearrows-down-to-peoplearrows-left-right-to-line arrows-spinarrows-split-up-and-leftarrows-to-circle arrows-to-dot arrows-to-eyearrows-turn-rightarrows-turn-to-dotsarrows-up-to-line bore-holebottle-droplet bottle-water bowl-food boxes-packingbridgebridge-circle-checkbridge-circle-exclamationbridge-circle-xmark bridge-lock bridge-waterbucketbugsbuilding-circle-arrow-rightbuilding-circle-checkbuilding-circle-exclamationbuilding-circle-xmark building-flag building-lock building-ngobuilding-shield building-un building-userbuilding-wheatburstcar-on car-tunnelchild-combatantchildren circle-nodesclipboard-questioncloud-showers-watercomputer cubes-stackedenvelope-circle-check explosionferryfile-circle-exclamationfile-circle-minusfile-circle-question file-shield fire-burner fish-fins flask-vial glass-waterglass-water-dropletgroup-arrows-rotatehand-holding-hand handcuffs hands-boundhands-holding-childhands-holding-circleheart-circle-boltheart-circle-checkheart-circle-exclamationheart-circle-minusheart-circle-plusheart-circle-xmarkhelicopter-symbol helmet-unhill-avalanchehill-rockslidehouse-circle-checkhouse-circle-exclamationhouse-circle-xmark house-fire house-flaghouse-flood-water$house-flood-water-circle-arrow-right house-lockhouse-medical-circle-check house-medical-circle-exclamationhouse-medical-circle-xmarkhouse-medical-flag house-tsunamijar jar-wheatjet-fighter-up jug-detergent kitchen-set land-mine-on landmark-flag laptop-file lines-leaninglocation-pin-locklocustmagnifying-glass-arrow-rightmagnifying-glass-chartmars-and-venus-burstmask-ventilatormattress-pillow mobile-retromoney-bill-transfermoney-bill-trend-upmoney-bill-wheatmosquito mosquito-netmound mountain-city mountain-sunoil-well people-group people-linepeople-pullingpeople-robbery people-roofperson-arrow-down-to-lineperson-arrow-up-from-lineperson-breastfeeding person-burst person-caneperson-chalkboardperson-circle-checkperson-circle-exclamationperson-circle-minusperson-circle-plusperson-circle-questionperson-circle-xmarkperson-dress-burstperson-drowningperson-fallingperson-falling-burstperson-half-dressperson-harassingperson-military-pointingperson-military-rifleperson-military-to-person person-rays person-rifleperson-shelterperson-walking-arrow-loop-leftperson-walking-arrow-right&person-walking-dashed-line-arrow-rightperson-walking-luggageplane-circle-checkplane-circle-exclamationplane-circle-xmark plane-lock plate-wheatplug-circle-boltplug-circle-checkplug-circle-exclamationplug-circle-minusplug-circle-plusplug-circle-xmark ranking-star road-barrier road-bridgeroad-circle-checkroad-circle-exclamationroad-circle-xmark road-lock road-spikesrug sack-xmarkschool-circle-checkschool-circle-exclamationschool-circle-xmark school-flag school-lock sheet-plastic shield-cat shield-dog shield-heart square-nfisquare-person-confined square-virus staff-snakesun-plant-wilttarp tarp-droplettenttent-arrow-down-to-linetent-arrow-left-righttent-arrow-turn-lefttent-arrows-downtentstoilet-portabletoilets-portable tower-celltower-observation tree-citytrowel trowel-brickstruck-arrow-right truck-droplet truck-fieldtruck-field-un truck-planeusers-between-lines users-line users-raysusers-rectangleusers-viewfindervial-circle-check vial-viruswheat-awn-circle-exclamationworm xmarks-lines child-dresschild-reachingfile-circle-checkfile-circle-xmarkperson-through-window plant-wiltstapler train-trammartini-glass-emptymusicmagnifying-glassheartstaruserfilmtable-cells-large table-cells table-listcheckxmarkmagnifying-glass-plusmagnifying-glass-minus power-offsignalgearhouseclockroaddownloadinboxarrow-rotate-right arrows-rotaterectangle-listlockflag headphones volume-off volume-low volume-highqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalic text-height text-width align-left align-center align-right align-justifylistoutdentindentvideoimage location-pincircle-half-strokedroplet pen-to-squarearrows-up-down-left-right backward-step backward-fastbackwardplaypausestopforward forward-fast forward-stepeject chevron-left chevron-right circle-plus circle-minus circle-xmark circle-checkcircle-question circle-info crosshairsban arrow-left arrow-rightarrow-up arrow-downshareexpandcompressminuscircle-exclamationgiftleaffireeye eye-slashtriangle-exclamationplane calendar-daysshufflecommentmagnet chevron-up chevron-downretweet cart-shoppingfolder folder-openarrows-up-downarrows-left-right chart-bar camera-retrokeygearscomments star-halfarrow-right-from-bracket thumbtackarrow-up-right-from-squarearrow-right-to-brackettrophyuploadlemonphone square-phoneunlock credit-cardrss hard-drivebullhorn certificatehand-point-righthand-point-left hand-point-uphand-point-downcircle-arrow-leftcircle-arrow-rightcircle-arrow-upcircle-arrow-downglobewrench list-checkfilter briefcaseup-down-left-rightuserslinkcloudflaskscissorscopy paperclip floppy-disksquarebarslist-ullist-ol strikethrough underlinetable wand-magictruck money-bill caret-downcaret-up caret-left caret-right table-columnssort sort-downsort-upenvelopearrow-rotate-leftgavelboltsitemapumbrellapaste lightbulbarrow-right-arrow-leftcloud-arrow-downcloud-arrow-up user-doctor stethoscopesuitcasebell mug-saucerhospital truck-medicalsuitcase-medical jet-fighterbeer-mug-emptysquare-h square-plus angles-left angles-right angles-up angles-down angle-left angle-rightangle-up angle-downlaptop tablet-button mobile-button quote-left quote-rightspinnercircle face-smile face-frownface-mehgamepadkeyboardflag-checkeredterminalcode reply-alllocation-arrowcrop code-branch link-slashinfo superscript subscripteraser puzzle-piece microphonemicrophone-slashshieldcalendarfire-extinguisherrocketcircle-chevron-leftcircle-chevron-rightcircle-chevron-upcircle-chevron-downanchorunlock-keyholebullseyeellipsisellipsis-vertical square-rss circle-playticket square-minus arrow-turn-uparrow-turn-down square-check square-pensquare-arrow-up-rightshare-from-squarecompasssquare-caret-downsquare-caret-upsquare-caret-right euro-sign sterling-sign rupee-signyen-sign ruble-signwon-signfile file-linesarrow-down-a-z arrow-up-a-zarrow-down-wide-shortarrow-up-wide-shortarrow-down-1-9 arrow-up-1-9 thumbs-up thumbs-downarrow-down-long arrow-up-longarrow-left-longarrow-right-long person-dresspersonsunmoon box-archivebugsquare-caret-left circle-dot wheelchair lira-sign shuttle-spacesquare-envelopebuilding-columnsgraduation-caplanguagefaxbuildingchildpawcubecubesrecyclecartaxitreedatabasefile-pdf file-word file-excelfile-powerpoint file-image file-zipper file-audio file-video file-code life-ring circle-notch paper-planeclock-rotate-leftheading paragraphsliders share-nodessquare-share-nodesbombfutboltty binocularsplug newspaperwifi calculator bell-slashtrash copyright eye-dropper paintbrush cake-candles chart-area chart-pie chart-line toggle-off toggle-onbicyclebusclosed-captioning shekel-sign cart-pluscart-arrow-downdiamondship user-secret motorcycle street-view heart-pulsevenusmarsmercurymars-and-venus transgender venus-double mars-double venus-mars mars-strokemars-stroke-upmars-stroke-rightneuter genderlessserver user-plus user-xmarkbedtrain train-subway battery-fullbattery-three-quarters battery-halfbattery-quarter battery-empty arrow-pointeri-cursor object-groupobject-ungroup note-stickyclonescale-balancedhourglass-starthourglass-half hourglass-end hourglasshand-back-fisthand hand-scissors hand-lizard hand-spock hand-pointer hand-peace trademark registeredtv calendar-pluscalendar-minuscalendar-xmarkcalendar-checkindustrymap-pin signs-postmapmessage circle-pause circle-stop bag-shoppingbasket-shoppinguniversal-accessperson-walking-with-caneaudio-description phone-volumebraille ear-listenhands-asl-interpretingear-deafhandseye-low-vision font-awesome handshake envelope-open address-book address-card circle-userid-badgeid-cardtemperature-fulltemperature-three-quarterstemperature-halftemperature-quartertemperature-emptyshowerbathpodcastwindow-maximizewindow-minimizewindow-restore square-xmark microchip snowflakespoonutensils rotate-left trash-canrotate stopwatchright-from-bracketright-to-bracket rotate-rightpooimagespencilpenpen-clip down-long left-long right-longup-longfile-penmaximize clipboard left-rightup-down circle-down circle-left circle-right circle-upup-right-from-squaresquare-up-right right-leftrepeat code-commit code-mergedesktopgem turn-downturn-up lock-open location-dotmicrophone-linesmobile-screen-buttonmobile mobile-screen money-bill-1 phone-slashimage-portraitreply shield-halvedtablet-screen-buttontablet ticket-simple user-largerectangle-xmark down-left-and-up-right-to-center"up-right-and-down-left-from-centerbaseball-bat-ballbaseball basketball bowling-ballchess chess-bishop chess-board chess-king chess-knight chess-pawn chess-queen chess-rookdumbbellfootball golf-ball-tee hockey-puck broom-ball square-fulltable-tennis-paddle-ball volleyball hand-dotsbandagebox boxes-stackedbriefcase-medicalfire-flame-simplecapsulesclipboard-checkclipboard-listperson-dots-from-linednadolly cart-flatbed file-medical file-waveform kit-medicalcircle-h id-card-clip notes-medicalpalletpillsprescription-bottleprescription-bottle-medical bed-pulse truck-fastsmokingsyringetablets thermometervialvials warehouse weight-scalex-raybox-open comment-dots comment-slashcouchcircle-dollar-to-slotdove hand-holdinghand-holding-hearthand-holding-dollarhand-holding-droplet hands-holdinghandshake-anglehandshake-simple parachute-boxpeople-carry-box piggy-bankribbonrouteseedling sign-hangingface-smile-winktapetruck-ramp-box truck-moving video-slash wine-glassuser-large-slashuser-astronaut user-check user-clock user-gearuser-pen user-group user-graduate user-lock user-minus user-ninja user-shield user-slashuser-taguser-tie users-gearscale-unbalancedscale-unbalanced-flipblender book-opentower-broadcastbroom chalkboardchalkboard-userchurchcoins compact-disccrowcrowndice dice-five dice-fourdice-onedice-six dice-threedice-twodivide door-closed door-openfeatherfroggas-pumpglassesgreater-than-equal helicopterinfinity kiwi-birdless-than-equalmemorymicrophone-lines-slashmoney-bill-wavemoney-bill-1-wave money-checkmoney-check-dollar not-equalpalettesquare-parkingdiagram-projectreceiptrobotrulerruler-combinedruler-horizontalruler-verticalschool screwdriver shoe-printsskull ban-smokingstoreshopbars-staggered stroopwafeltoolboxshirtperson-walkingwallet face-angryarchway book-atlasaward delete-left bezier-curvebongbrush bus-simplecannabis check-doublemartini-glass-citrusbell-conciergecookie cookie-bite crop-simpletachograph-digital face-dizzycompass-draftingdrum drum-steelpanfeather-pointed file-contractfile-arrow-down file-export file-import file-invoicefile-invoice-dollarfile-prescriptionfile-signature file-arrow-upfill fill-drip fingerprintfish face-flushedface-frown-open martini-glass earth-africaearth-americas earth-asia face-grimace face-grinface-grin-wideface-grin-beamface-grin-beam-sweatface-grin-heartsface-grin-squintface-grin-squint-tearsface-grin-starsface-grin-tearsface-grin-tongueface-grin-tongue-squintface-grin-tongue-winkface-grin-winkgrip grip-verticalheadphones-simpleheadset highlighterhot-tub-personhoteljoint face-kissface-kiss-beamface-kiss-wink-heart face-laughface-laugh-beamface-laugh-squintface-laugh-winkcart-flatbed-suitcase map-locationmap-location-dotmarkermedalface-meh-blankface-rolling-eyesmonument mortar-pestle paint-rollerpassport pen-fancypen-nib pen-ruler plane-arrivalplane-departure prescription face-sad-cry face-sad-tear van-shuttle signatureface-smile-beam solar-panelspasplotch spray-canstampstar-half-strokesuitcase-rolling face-surprise swatchbookperson-swimming water-ladder droplet-slash face-tiredtoothumbrella-beach vector-squareweight-hangingwine-glass-emptyspray-can-sparkles apple-wholeatombonebook-open-readerbraincar-rear car-battery car-burstcar-sidecharging-stationdiamond-turn-right draw-polygon laptop-code layer-grouplocation-crosshairslungs microscopeoil-canpoopshapes star-of-lifegauge gauge-high gauge-simplegauge-simple-highteeth teeth-open masks-theater traffic-light truck-monster truck-pickup rectangle-adankh book-bible business-timecitycomment-dollarcomments-dollarcross dharmachakraenvelope-open-text folder-minus folder-plusfilter-circle-dollargopuramhamsabahaijedibook-journal-whillskaabakhandalandmarkenvelopes-bulkmenorahmosqueomspaghetti-monster-flyingpeaceplace-of-worshipsquare-poll-verticalsquare-poll-horizontalperson-praying hands-praying book-quranmagnifying-glass-dollarmagnifying-glass-locationsockssquare-root-variablestar-and-crescent star-of-david synagogue scroll-torah torii-gatevihara volume-xmarkyin-yang blender-phone book-skull campgroundcatchair cloud-moon cloud-suncowdice-d20dice-d6dogdragondrumstick-bitedungeonfile-csv hand-fistghosthammerhanukiah hat-wizard person-hikinghippohorsehouse-chimney-crack hryvnia-signmaskmountain network-wiredotterringperson-runningscrollskull-crossbonesslashspider toilet-papertractor user-injured vr-cardboard wand-sparkleswind wine-bottlecloud-meatballcloud-moon-rain cloud-raincloud-showers-heavycloud-sun-raindemocratflag-usa hurricane landmark-domemeteor person-booth poo-stormrainbow republicansmogtemperature-hightemperature-low cloud-bolttornadovolcano check-to-slotwaterbaby baby-carriage biohazardblog calendar-day calendar-week candy-canecarrot cash-registerminimizedumpster dumpster-fireethernetgiftschampagne-glasses whiskey-glass earth-europe grip-linesgrip-lines-verticalguitar heart-crack holly-berry horse-headiciclesigloomittenmug-hot radiationcircle-radiationrestroom satellitesatellite-dishsd-cardsim-cardperson-skating person-skiingperson-skiing-nordicsleigh comment-smsperson-snowboardingsnowmansnowplow tenge-signtoiletscrewdriver-wrench cable-carfire-flame-curvedbacon book-medical bread-slicecheesehouse-chimney-medicalclipboard-usercomment-medicalcrutchdiseaseegg folder-treeburgerhand-middle-finger helmet-safety hospital-userhotdog ice-creamlaptop-medicalpager pepper-hot pizza-slice sack-dollar book-tanakh bars-progresstrash-arrow-uptrash-can-arrow-up user-nurse wave-square person-biking border-all border-noneborder-top-leftperson-diggingfanicons phone-flipsquare-phone-flip photo-film text-slasharrow-down-z-a arrow-up-z-aarrow-down-short-widearrow-up-short-widearrow-down-9-1 arrow-up-9-1 spell-check voicemail hat-cowboyhat-cowboy-sidecomputer-mouseradio record-vinyl walkie-talkiecaravanfontawesome/inst/fontawesome/webfonts/fa-regular-400.woff20000644000176200001440000005765014470000401023232 0ustar liggesuserswOF2_ _]8$ `Pʃh˃, svU!=o=DTz8#9ijw*~?3p\u<<~N  e̯!iG.wFA?SCH48Y`:={ @ JDJY=)Is;>cTg(٪jx:uo;7e'\^%JE*Vi1:i҄NG?|7gYg87+'gΙsbCYfII -PEldE龎KM)wO{7,'`cތ%0fw){F[GM-tHiwM) H !M5{@*1)t!{o-v łT<] I?]@R@)^JC LyTq18'CS׹to\*mc0梾 ,P[ET0BȲ쾊8_r0HiޫteB譏DMoi7 I_5rh6eCR2aw'sҸVފ('n~nԄ(hR 4tԾ ++~bj MHTB"L*jJRZST,aS|][*~MK]r] Uy2,r<^_G]I2vW_H~џHSnv^2iċ=ǜϢ|'kR(*ˇUk.׶4kr[Yj/XS{*K,57_UnC bV2.u5Zy:L_6nޞD3Q v;n{~taGuq'tiglxkߪTq&&d lS9ےʞΞ>7[|V>'_W AT7h/(Dhkt+DMИbv̉u16ŞhSq^"5n;x0'C5x/ޏO++*+]*=++}*QY9%ՕX*e̕-rA}y |C~oVӚZ[_ tNѩ:SbݫCzXQ='X\!hMمv)]ή`7[['r;휁dgw;'04d&'EiAKZњ6:UV]+OVMjJ=Kk㎙qUNPՀ:wTÛ s:]wx#y||i1]ڼa s\3WesΜ6+|f`ƛkoZLC0ӛKֈd`8&6&PCnn.O1^ ޜ$M@ Q;y 'yz2xNyvyyzx\{n }}EVf Z9V+YUu?G\]]R|#o]az7.000000<~~LIHwBBӴ3mOKҢtkZQXh^Ml(bҋ??j;Nڟީ;.Mf6'iz450f1_C{g*N^3m%u?R +&$*fYsjk 5'5%5&JOs~Gz}PCW'~3w:鬋鮇z魏RF:2hjFm&lfi9YdVYmlf[lGCH<%ծqVÝr<zg<9{^zE#f=jQob웁& hXU7PݱS.U/QW>U?PU8qHపUT* 'RqZ 5g!8[ 9jRs?@[j?,8| ײ~YB,"֑ϐmϓm/mOmϒmϑ#ɞ dp|l&` y 5|hB> <@>aVt&_013n7o{`$m)zԛa ⏗S0ha9јhҞMFh3x v'x'MD KԁqP0 &Db6J̉a @$bco6L&>Є8 G4(bNKDɁY`6qC\ W9ws+\vbG<ǰxx=T<@ >w,{<6<Ԇ`܆-] @}7$M\AŠ HB@C$ ʃdd+WhRT`o*#f @ϳR~JC@ M@i F=d •X2= 3@flA]@N\7\}?G`^W||`o~ 3C@+VVvpjК( Zԟg$ɠ] ;@GA'3A'3@2L.9@d1(t/0tdCf#eA^'\ ^ , e_r+ 1j!.vCk `=>``(qJp t(#i\0rRzT'[d;P ΑcΓ3Y@'܎~xI^v5y!cT2A|A">N,>E$>JKQQZҋ2Vޔq4e%([(MD*^o2@3T(7)}DCi/]JQSF2R Y2PdMl(D֡Lٌ2DdsJs(Dn,Q؜<J7W(cD^y0|/!e(DO$;erY|\rE|D*>W\Pp_<)R( |Ĥ/<)T(_,Q?e! Gh/i66#N M&=# 4.|IOs&qqPyBY"%9"RzɳwF GG\+!^RF{= V`88w4Oi6M4K 8<,ŗ{xi"%Q VHuCK hU):]X^9^*D5&oUXFUXk5IL*Cg͢Y0B\TdL$DdMcy2!*d:]D /%(]L!e5Vy [VܲpFR1T Xϲ,eqsQ.jpoE8ox ]Gd%C($Qpf I^%Jj"ӾxL{(YUzདྷ\۷:Ae^tI__$͢8+KBql8Ȅ)X!s<bgOKߣ(iFو2OO4FqY[;}zm/}ڈVF i8|9v+9f4_=+c ۈ#ԗhF#9' KB^挲ZcDANQql$p;Q޲Z)vG?&z2Z:b3Tf )(/il\ʟSٰ ЋQSt~gⴓݣ8]*V2nK<+]#O\56!m 櫿k9rYaK8ʜ9irF-õK2u=?ԍv=y-xؘGq$%hdQ]daa8Or41 NML~lKѓ{#YOO`RN1 []VR%dseH$tSԏ2|:8k>^7EI|dJF^od_avgke/{x\l]T|y&uLC;i/+mTrOcR_Sпc[K1E'[+{_0.56 0oa;+ lii挍1(.p>]{ݴeܰ[*@dB$!XVj"v{)3JF&?a3 al2m,Kb=gUK37dw/n>WC$Uq<WHz=A05~D0t~n{X\[xk\zL:gΤl6rj|qnxFz=B\Z6VC<}%-̜ u%f ?;2=?CaV'&b1g xthL - Ceǟ"&f 1{K"o1$D~ٳH"l9f|jq[H$m872k/} ahoKwYlS7N[%!Uֱx Y\܎0L;9׏DlnNH2*ι%'cScViӳlw:; ۋ4JÚҹ/K$Z`E"v5Ќ{/՟ɏnȪߑf7Yi}iJe?Obz0BmZڼ}Ou̗Y:,#SVy-1Kz;M[޿XeǷ[\X3?4IoZc"ˣ߈G~ԯatFh fUKi: 1hxCxZsV*轡r6ZiUr(c4BX*+= >(0Y/?ڋcX s:-qh<d&s3+JOJG͍tTes}g2i5de"mm^4S0CH4V;%dڥ;W V<-l4WW K Vse@P )ya &2TRROl:xaE+@Lf…VjGsi/t| Ȉ/*ٲ=rX䃺f_qnߵpt ;*RS=O0Z NZuh W\ϹR/'CU)3(}3%32泎'M8 eDf܏AL}j Q0pj6mUM}j  DqMm/ΚbЅC*/if(aDA$(vOP3e(%#W?"vSc^Jǧò mRR"ۈRJŶJ%\SIq FBX*ru5MejOYm}UW1U\ ^>. -"})зJ>yy]f})0K[;3 ۂ~P U`:^,TLLUilrNqoHC%w+{*q0Yʊܢ~iF^|/n/p !(nd#RT5zA㻌 `ǸV j6ٴ^K;~8j#2}ɘ5#%C+|"eem#l4l˲pYBlFɘ䬡K0z.t::ŶY(b{x4NS*c..sId?'2(+% G%sx"8h^qe$^_(W]|oz y8IuR_@{NCGɗǨ3."7b7l? *ٽ3A~~j=Z]^K%CbubWYYB3 2ѱhpU* ֵw醎xr/7$8]^({!FOkl:%¦oY0Ga JN.Ȟ?p)sCq!Pt=:SQan|F!^Nfd׋ R\`Y5E00 } q|)0Re>tS7:8S;%qYYڏzòשtBfB6th>foiI9 V~*zVz?{T?ORQiƟFCR/UTaXUEO1!QYw1"瀾([#pcp>rnYáe  @=Xyu8&KQ=W)Q;p<+8[O0"LkJ2G=d; e0 bw}Mۣ~prq~m!$;;I }_WUï˕UENv-"AۮiJ?A!c7k7ONt°0쿡ia@ |܈//l@ o}MWaam4Lt#Lj? i'xfCjga]/vn=G[.s`s?eɶR^: A.( dt_K]{ֳf9tD#l[K۴j_&jJ-熘%x99zm!ΕEZ P#^H` [ wYx0(n+q.&^8&^8ƕY84etz(Np:2}mײfqt~ooophoooo|CϹ}NvLnC=&$ eOlv~lv8f(dz~c < K}eq)}\Siv(>|BSFY&! Q bTA2JFVf3e/ͰkRQ1hj%N)C e*Q6&arT2Tarj^MB85kpUV,Ք ܪc VcָZ"S/  жkizlͶ_nok?Jo]ɧkL+|N]L(PV S&,i&aIti%;?KQ7ĂEQ`VXH$qPA /3xص^mƻ l]̝{3̃4;3"Ѵ7;ULr:mjjЄD~>**H/!, o D"n+ys,|!`<P60 ۈGQ`X4͢F`MH3 G;)`$f'\80ԃQbWt"|o!]n"ABvm^'2LXbٮIH[ v?Wpi& &/1&I j1,߲|D@ۮl5ocX {{!ɯBuM۲g*V΄6pQf@4ēN#YO ^ʢx2PAK'ԓ-q 8/T8Ͷ]wII"oʙP|gt ZQL C8A+H+( Ĥ@xM Vl*a`Pnu(,  X1i"_-9Pg L\mIq;k:qْ2GA,(CvzX6}j&OY(c..zLC<4»~ڐfy;AaOF*姹VR4d` ư hDçq&Pfs-dq4:&Ӑ̛LC_>F'NCzOHBSQ S|_i8&Ȱ6I6CKޭcN7EZ8:u;q.p7#`$/']|Ԡ$> BiILkz|Ag%o7#ҩ('n\=Xu|6c|ݍT}H/ՄPJmDخ$ٓb1[,f3]S+e7Vs51F:~hw9%јkFaFRAϿ1gl%PNV| Q [{0GQjAcƸoήM],u\ ʋSkۅfk~V& gOw*,qU=_R?[2.')0R r>X&0{86'_%| 㯿|# NIgyQQd&?qyʇ ?=(4l폰T?VvSS>dI#Ta!J1"x$x?3BU JRk51¹ı/7|g.p#ki,yG*8-r)䀏1<àB5~2Ƀsg ײ,\WmS~P<WShJAGiӊB&n0bfmtaE3RLd!{?zy/GnQCK)CUGs-Ő]^ţ:·Vi3FBLZ-@u;Oat03#>7XD%zCoGF_}d9%$KΨE>{ yظ 5Rp!! #kOW6^2΀mg,/͗Oi8 V !NW$)@s>B]դNLY^:_)\47~DP)҄!Ni9XdI/͆ V<y2m6:*/{H2u}q>l²dG_X13A4M XO k:Aw&%_iloB ُP4舧g|-6fYb/,_h$1t cҡ13FIvQ`#COdMSJZi7 W 7]0c +eg])va,Fؒyˬ0224g&t@+fّ0u߇c˼c*%ӒPDCWPixܷg369G`0Sn"a(7'02>ћnp@{oE ZܰB@77pU2BeW21U7 4S5tSy7ϫ>|߯?A 9B%MΛa(V=+v [UuAغ8 9[g!Y lW;aZe_?1Ə㾱?!@>AAozs/ѥ$ o J׶Bz r}wpU!=&T|zXQ[qPG|6|hiv)II@'Pe7I6 ɳS0;{.// 0jExm`0_ ðgV {.Ug͍ k̲0?&IR0tQ"B8d,B m";7̄zZ3\PA5\uMc?*u]Wfȓ/F h =B|"9j\x fRm;y(#8; 2 PF89 5 0 =#4&L\I(Dlă#!OqG9}d_YH'ކe}ľ}#qSaOȎpsR~ۀ^yB- WfblSBV;Hrs+M(2$|s{J<{\YXpd ffK?k`u5̲GH:L(3cI'C3{F7|@4MGv#NTΊi:iUtKGbXҗbOxaƬc0fu`Y R1-c|Ӂi(3iZ)V9?9oݖzUބ._E+-t,iR%2 EeH=#E`cm֐*;sP?5t!ǨO\+^8TNqT݂-GJcˢӞ4ژDa\`_*\)Uϯbpy>xN~nwWv+W_϶&>loTڑ_>r0~e u*I c->hRS{ebڟ2CKl"䊴(;p/pyߕ[Ԟwp lwۗ`g3rSv}?z >ebtؔ$I9Q.ųTvWM53LhF9~16}ؾM 2n_m 02'41pGn.Lމ95z}} (͜"L}(҉aa׻ꁐ&`̑ {iQvA/]\.$YCbd]6Fvѓd0"d ;2}߯RҟRu߇YI#Vyj?tL br`5W|R}q9\cd6I`r3,8 o>.-lf#TˬjB|/M==Ukff-$Le_dpH9'2lKsXs sUg2>>;0[X#Zp;6,@LtXeK4djT:{蘇1lH0aX"01lp9 _e_{ITX`F׻ i/&"вX$  V4ay0#k֯&ƭ 1[n.lXMՠԸu_ +xi ͆$r78 VqT){88On5Z7o`|ح\̵n07{&s 0FՐZ!Oc$ rg G]!8θ1I4-Ma.PnF:(^xM߯߻Ebks,J5 l,ˠV%T|$BuHDߜ_RJuzSTHS8Ҷa/7 0FCsQAD"X6XK8.'rm19&rl mF;F [8Ӏ}V `gziK^߯;S&mn>==0G6,۞w8e1VYiAVktŋGqAbÞ R$9 u8cۖ5gT+P<'DoF sd96SҌC/tyuGpr_Mmu#ҚG],*xi4W)Ct7 aqqj!YW(+/L1nۦPЛ7_Yؕ^tkR/v{-'j*6[.zs!KJ̝ OD&jUyeU]38 =XN_2}?tl~bl`+ FB \m#5xuM&q/9 ߯:U6ZU{{jqŢZ5OȌ`)Kr@E ]wBs"l^^ކ>0T}& 3juE9w^nE.׉x?k:Z n7T@k'G'].'Ï:YB3Pʇu;L7"M7iY*itiLWETR.\S˃GSMzjԳVmsX #Y Xʺmx죥"$\N>n&7v1nG:pų ?jX׾"N;[3Hz_' o暸esO.svy36lu7Pߑ~'*Vf;{dSn ]绱vi~P-?8&벐0-X^~ >7A8&puc|X2uj%![sXBzw\~bB:%^^нPs$UGG's3S;GbyHkJt{K\(ҏD(ax n7MxS0ң^ pasL{m]X98ޅ3=IF^_שYmE?[ɟ@+IopGmS8ZyyZB[0->B:|@0+9![";yFC륍TTV_PV*/!HlFZ`d([UIt=P0񈦈{Y E zf/ULs/!)H%uK^v@l994I{k@ptL GX~/mϲCZ/5Z9^݈~h6 t 1_NG9q2w raT{R{߮EՊ"bV(QXk m:d2D\ޠO̯@2%نPl*G35 =G gf`k]brbrf0QP+ }!/`S=d@A4Drv;Im^*W%TJ̙%F#\HŴ$zC.ӕ iZUf&]QwÍV<:H.BA\&1xr&Oj~omP|omku'_K+MʶOݳlk?]ֿL_eY_%z¹\8b=UuA( %' ,gO99<kBZOaeEnEm>8h"O*ב ms3|{8oqHmJiFd\%C>|_\"p(G0F Bt{(o3\AaJ|UCC!she' %ޥ( 4T ܲ|Z ys[ ,/8@V++nG??c,X#: ')9nS:щVSbזlZY|-]R^wHM':1|'Y rٴ|ql2%c%T=BU iSpMC h49ZO3@]ȧrg5OQ,o6ra'kMKCNFB 1rJNGWs`lvjɝN-Jmtjc=qց@ 7{SiBg3Jm-X8g;Z vQFJµ'ؗ@?Ytɇ[^nږw^'b}o:&$ "^79.m$zpAQl6%5\҂ErF4r*@QZ[#MSw9.,E!v 9*$َ̼ey! +dPr?%.+t+A!/:~mQjSV?S3 yװ C;Ǽ{gN]ȇVds0&q>L|D:F5DMfwtv; =(S}%@~xYe(B*EJX$wQ5B 鿺x3FvkL14K?.c܆y~e o:g`G*ӎ.#@!v/z%x*nF6=Mn,ȍtlE*&3tA_b:sc E"$D;Lp=bl&bhsn:q\c :`҈"AN!:k!+9DRĺitq(JH jT3]w*Wq<^bI~0Qq6Ȣ|B/*BLۢ`CJn_IuYSv.2痖5bSiՇ pVwOVbA%k׫X4'/'w c}T j"WƋ=yQ@a A{,'΢υCaS-p7lk7KIQnmmb+=x&$% d|}n^gtGB4j&=6&/~h/Vɮ;3, !eCN"p[+Vrf/a^7(N:`^ौqWF3aǚfja=QfFm 0Sz?/ԁNpuDìWi`2EH-dC$ҥV,hiyfEAMʔ SSOM dʥR91SӵPhVזC!M̱?e7PP%DŽTDB)F4,˼Oz*/N>l\s]B\wN#4L #T65M5@6C !a$V<4^>xR %Ƅa^EUU GPYt4q "Q"pÝ& `IJ[[48"W tk'_ze]  U.IkfNj1IU%fN+6wRKF+Hc~_HuRbEhgjs6c#y{ؕR5<#fR0)KBڷJBR>gB:y "8O83q\JkCq7[Kn* ۙLeM$! ?$Lb'p7 @,KO{.d /I_5dS߂]V5HCDQ$=b̎+fCaAo(~v' ]7qSו"(%v^rޗ b՝Nj\œ{["AR2r;kAUzGȀ{E2BG~; a\da#?Jd9D`\({3K^:lv{Yy+f[7<Ʒ_Ĉ(^%@))uA۔9uCiOަ,ہv'^11GB? ~QZ7'}Sl}=<ޥtL\_{S}%A|Z{_ڛW3{/ 3zF"#24^>w(hbhGgKz>* ̿&6_Y|'ࠂ J*\A -x0p>WGvF w^ 7|F"5~㵳L然fontawesome/inst/fontawesome/webfonts/fa-v4compatibility.ttf0000644000176200001440000002367414470000401024164 0ustar liggesusers  OS/2OwP(`cmap"$glyf head&'=6hhea h$hmtxHloca@@Pmaxp0~ name^ }postV%^_< H''|LfGLfAWSMAz@9 @ @@7@@'@@@'@@> AGf~ #>ILV^acxzAGe} #>HLV^`cuz}{zq`_\?:-& , >4~~Ln,VX2 B : p  J x J  $!"3!27654'&#'7'3#7` @  ZZZZ&ZZ&ZZ @  zL: :'67167167&'&'327&'&767''66RR66''  $$$$3!87;;-R6666R-;;78! s  I"3#5&'&76753#32?6'&'#53?654/&#53676/ @  `@ @`  @ @ `@ @`  @ @`  @ @ `@ @`  @ @ `@+3//&?'&767#&'567676X 'W W'  'W W'  'W W'  'W W' +6#&'567673//&?'&767 W'  'W 'W W'  W'  'W 'W W' "&#"3#32?6'&'#53676/ h 88 h h 88 hp    pp    p?@"%654/&#5&'&76753?p    pp    p h 88 h h 88 h/BVi21!2#!&'&'476321#"'&=47637#"'&=4763221#"'&=47637#"'&=47632   p"      @        "P @ @ @   ` ` `  F#"'&=#"'&=476;547632'#";2+&'&'676732#z{ {     @ @ @))@ V{  { > @ >   ))  F32?76754'&+1!676754'&#"!&'67327654'&+` * ) ""@"  p p) *  """p p@  F#"'&=#"'&=476;547632327654'&+"'&5476;#"'&54763{ {     @ @ @))@ V{  { > @ >   ))  )%7#5476735"'&#"#335Y (7! QQd]<O =F];Ic776?6?6754/&+"/&'&?676/&?6/"#&'65!67167632#"'&'&': : +"  G55 0!"<=CC=<"!!"<=CC=<"! ('      ((@?8-  2F::$""$::FF::$""$::F5#53%1!67675&'&'!!5!%1!67675&'&'!p    `p    ` ` @  @  @ @  @  @#?'&3676/73675&'&'77675&'#'76'&'Ȑ (OO(  (OO(  (OO(  (OO(  (OO(  (OO(  (OO(  (OO(  .3Le32?654/&#"1327654/&#" '732?654/&#"32?654/&#"&&&&#}#ii#8998`8998&&&&#}#8ii"99889988@#+3Mc1!6767&'&'!#5'5367167#7&'1&'347167632#"'&'&57#;67&'#5&'#@@@@@@@@@L@@@@@00D+EWi{767167632#"'&'&'%4'1&#"3276567167&'76'&"1"14'1&#"32765271654'&#"3%4'1&#"32765!"<=CC=<"!!"<=CC=<"!   @ @P   P  `   F::$""$::FF::$""$::F          6!5676'&'5!"'&5476321#!/&54?6! @` `  ` `@`@ ` `@   @ ` `@',67167!!&'&'4'1&#"32765!!@   @  @p',671673#&'&'4'1&#"32765#3   P  @7H+&'?76/76'&/'&#VD o o D5 vVi   n II n 2l U x806716727676'&'&'#!67675&'&'#5"  "",=)(@0"   %()=00_%6/&#"3+";67675367^   X P P6%$X      $%6 _%%#"/&767354'&+"'&=476;3^   X P P6%$Xq     $%6/1!&'&'6767!5&'#32?367@@!B$B! @ !B$B!@H4716;2+32+/&76732767#"'&5476;&'&+"'&5 @ 8# $ !!.  P   @     ,g     '"B^b#"/&76764763276764716;32+&'&?#"'&5'&/#'&'&?673'  X    X  J3  J3 ` @ X @ ( `  $. $  ` I  I     ((@"5H[n#"/&767647632767632+"'&5476332+"'&5476332+"'&5476332+"'&54763  X    X    ` `      `  $. $  `         @"6J^r#"/&7676476327676"'1&5476;2+5"'1&5476;2+5"'1&5476;2+5"'1&5476;2+  X    X     ` `     `  $. $  `         '"GYr2?6'&'&4'&#"'&'&3%&?#";27654'&+54/61'&'&76776?65&'&' X    X #0   00  !    1%% `  $. $  `  4   `   q  B$%% @732?6'&'#4'&+"#   H @ Hq    ?6/&#"3;2765367>   H @ H       _7/&54?6!2#!      "   H @ H _%?654/&!"3!O    "   H @ HO2176763676756763#"'&='&'&76?5'&'&76?54763` w  w  @4$$  66N`   )  )  #" '" '""5  N33     6 '2=H67332#!"'&5476;7!!&'&'675&'3675&'3675&' x `  `g```   n@@ "7#3'+7%3'#"'&?6;2WXH92I8  p p x]]MM}0MM( /ASe%67167167&'&'&'#09367673'21#"'&5476;21#"'&54763471632#"'&5H9:"""":9HH9:""/ ,&#08    `   //::////:E4%        %+%2t" ,H  4q J  V_ J d  D X .A :% Font Awesome v4 CompatibilityFont Awesome v4 Compatibility Regular-6.4.2The web's most popular icon set and toolkit.Version 772.01953125 (Font Awesome version: 6.4.2)Copyright (c) Font AwesomeRegularFont Awesome v4 Compatibility RegularFontAwesomev4Compatibility-Regularhttps://fontawesome.comFont Awesome v4 CompatibilityFont Awesome v4 Compatibility Regular-6.4.2The web's most popular icon set and toolkit.Version 772.01953125 (Font Awesome version: 6.4.2)Copyright (c) Font AwesomeRegularFont Awesome v4 Compatibility RegularFontAwesomev4Compatibility-Regularhttps://fontawesome.com'      !"#$%&' location-dotup-down-left-right"up-right-and-down-left-from-center down-left-and-up-right-to-centerup-down left-right chart-columnright-from-bracketup-right-from-squareright-to-bracket facebook-fearth-americas bars-progressmaximizewand-magic-sparkles money-bill-1 gauge-high right-lefttablet-screen-buttonmobile-screen-buttonstar-half-strokeunlockturn-up turn-downsquare-up-rightindian-rupee-signarrow-down-z-aarrow-down-short-widearrow-down-wide-shortarrow-down-9-1 down-longup-long left-long right-longturkish-lira-sign trash-cangem comment-dotsfontawesome/inst/fontawesome/webfonts/fa-brands-400.ttf0000644000176200001440000056236414470000401022617 0ustar liggesusers  OS/2_W^k(`cmapJ glyf/^4$\|head&'>6hhea=;$hmtx/$locaRH4(maxp2: name88QepostGy@Am _<   8'LfGLfAWSM!@9 @@@@@@@@@@@@@@@@@@ @@@@ @ @  3@$ @@@ p@@@@ @ @@@@@@-@@@@@ @  @    @ @h@@P   @ @@@@@  @@ @@ @ E@@ @@@ @@ @@$$ !%+9Zabcdefghijklmnopqrstuvwxyz'1'S'T'U'W'IRW@`:J1p gi(*6L^aknp~\u} !#%1MRWY,16A?B1]{=B!#*0<abcdefghijklmnopqrstuvwxyz'1'S'T'U'W'IRUw@`:J0p gi(*6;UZfgjkprsy 017:K^`cmp|\hx#%&MRWY ,16A?B0]z4? )   Kz t?$QEZ84   qponmba`XWLJIHE:,*)  ~ v u r q p n S O K J 3 ( $     9  d [ X U S N 9 8 1 (     e ^ ; 4 & VRL86vr@."rrld !"#$%&'()*+,-./frz  !!#%*+09<Zaabbccddeeffgghhiijjkk ll!mm"nn#oo$pp%qq&rr'ss(tt)uu*vv+ww,xx-yy.zz/'1'1'S'S'T'T'U'U'W'W''0123II4RR5UW6w9GIJ@@K``LMN::OJJPQRS01TppVWZ \]ggiiacdehlm((**66n;<oUUZZqffgirjjrknupqyrrzst{y~} 00f1277:>KL^^`ackmnpp|~  \\ hu x}!$%*136:GQRTUVYZefjqrsx |!##%%&1MMRRWWYY ,,1166AA??BB01]]z{4=?B84h  p `  h <  $ 0 hpHp@(  "p#$%,%',, ,,-.\/$//1 1346669:;=L>>>@@DXE@GGxHtIXL\MST,UVVPW8WXZ[<[]^`0aab0ccd4dxef<fgpgh4ijkklklmmntsHtuvwpxxz{| |}X~l<@|@|\tDH4X40 (T (((<t0lh$τPTXՐ֠ޘh <x8$thP4@@ x   TLD <"$%''()H,(,.\/02H3t4`5 6468x:D:;0@BTChDE<EFGH<IJM8MNNODP$U8VWXhYZZ[8\lcfgij@kTlmu vwdx\z8z{x}~pxxD,`PP |Pd ,L<L(DD, H,P$|Ǹt4tҼ@0tۼ݌(\ t,tP`@0@   p 4pD"#$P&)+/0`11234678\9::;,=4>,FPUVXHbbPiiljkmmo4pqrt8udvwx\~  0xh` <0T4hT \| %?'3'77#7%67167!!&'&'@ZZ'ZYYY3YZ     ::   `  H 4'1&#"32765676'&'@       `UZ13767632+32+'&'&?#'&'&?#"'&5476;7#"'&5476;767637# _   : E: E   _   : E: E  __ ;E ;   E ;E ;   E0r2123011/&21#"'&=0#01#1&'&'&'&76767676'&'&/101&'&'&'&767676754763 0  /0 1     1 1   $       ! #       #  -6514'&#"327&'&767&'&767w @    I @ $$$$$$$$=2176/#"'&='&'&76?'&'&767654763 p  rs  p  o  rr  p  C DE C B EE C )4'1&#"#";3276=327654'&+5      p      @'67167&'&'57167675&'&'--DD----DD--))))D----DD----D`))))$&'&?#";27654'&+`  .@ `` @ @    `@*"#"'&54?6732#!&'&?67&'&'" +<>())  "` *)(><+  ""@94716;3#"'&/&767636767&'&'#&'&?#"'&5  :&''&:O   Oh   x'&::&'  x /6'1&'&;3276=327654'&+54'&#"#7       kr  P P   @66732+3#"'&/&767636767&'&'#"'&?! r:&''&:S   S !  p'&::&'   @!;6'1&'&01016767&'&'71#"'&'&54767632  %--DD--*+@?   k  +9D----DB,-K  @47163!'&'&7#"'&5       P @<X&'1&'#367674'&'673#&'&'6767301013010150901#0101&'&'676730$%6 6%$#$%6@6%$#@   6%$$%65$ 6%$$%6 $5@@5132767654'&'&#"&'1&'6767'&'&?@   XA+*--DD--$ @  -,BD----D7*  K1 '%&'67%6}   @ n     @@'"13!27654'&#!"13!27654'&#!0 `  ` @     1 7%67&'%&   @ n     03@6716733276=4?676=&'&'#32765676'&'P +'  *$%6 6%$  P   "0  !6%$$%6 KX12#&'&'&'676767&'&'&'67676323276=&'&'&'&767R6666R H9:"""":9HH9:"")-$36%$$%6+    66R@  66RR66  "":9HH9:"""":9H )!!$%66%$ P   R66$$$$&'76?37676/#7 x(   (x*HH`  LL  ` @'41367674'&'67&'&'##53;#5@6%$$%6`````` $%6#"06%$@+"327632#"'&'&767632#"'I1<<1//1<<1 DVVD,,DVVD 1//1@@1// AA-9999,BB $671673#&'&'3#36767&'&'`?2332?```D----D`32??23@--DD--@+1327654'&+5327654'&+5327654'&+@       @%13276=327654'&+5327654'&+@        716767#"'&5476;2&'&'&'676767'&'D----D;++ }  >>Z?2332?X=  ,?`--DD--$#8  X9:32??237  ()%3276=4'&#"!54'&#"3276=!@         @*"1;#"3!27654'&+327654'&+  ``  ``     @  @%21&'&'54763267674763  --DD--  ))  D----D   )) @+6514'&#"54'&#"3276=77676/77 .   A j / x kC  ˍ @2132+"'&54763@       $676#"'&5#"/#"'&567      647632'#"'&567    ( = 3"132767654'&'&#1#"'&'&'6767632+%%%%++%%%%+45;;5445;;54`%&**&%%&**&%=3333==3333=@&671673##"'&=36767&'&'#`D----D`  @`))``--DD--` ))<7167'&767667&'&'&'&'&'676767'&/@--D,#H G--DD--5D?2332??2350 .D--V  U*7D----D"32??2332?V=9  8@$013276=37676/6767&'&'##53@  _g T(()=pppp""   x$#.=)(""?b013'9&'&'&'&#&'&767627676'&'&'01&#&'&'&'&7'676'&'&'7&c 8 :7E    9  8  :7E    9 W   $@     $@  "1;32765327654'&+        `  %216767547632&'&'54763  $%66%$  66RR66  6%$$%6 R6666R 61676&'&767     9   ?%6167676#&' "'&767 nUUn  QQ   $&   )6'1&'&'&'&76?7676/7y  k     &'1&3276=76'&'&':      ז   47163!32#!&'&7#"'&5 @         L  z09&'1&'0&'&'&'&74#1332;67&'&'&'&'&76767674'&'&'&'&'&'&71&'&7067676'&'41`    #/ ,=-3    &   !77D\CB @-* #"""  --&%     &D77 !98X5## ' 6BJXdh767&'&'35#7&'1&#32767533&'&'&+3#36765+53#3#3'##73'!!27676'&'&'#32#3'~  (OO"++-_((_k-,97 "J  z@@67kk==;:pT G..[E>!! S+---K[  [[@:9n+43&%U21ge34 ;%67&'&'276274'&767'/'&?'&763?6322.?>__>??>_)&2F:;;:HHV5IV::::VW::& ,E))E,DD376767!"11!676745454545 "!3GGCC13%$%%$,+   (I3!"<H2"",-9;22;%&2 ""210A@10*/&?5756/7''54?65'P_`PN_PNNP_Nd.88.\w.]8p/.ww./p8].w\.%&#"327654'&'%!#5##"'&'&5476763257+    I5(  8   @   N  E[h}77674'&'&'&"#"#&7232376767676'45456'&'"'1&'&767676#7&'&76#7!"3!27654'&###"#"'"'&5&545474763632322#  }    }  "U  [`''''  #)      "  `'''',&'&76?6''76'&'&7676's   \\  \\      t {} }{  9ER4'"#&#&'&'7&'&'&'&/&'&#"#0'0'&"#016767'2676711"'&501736765&'&'&'&76760'&76' ~ c &- /8     /%   2  _ X O66HH67"  /##  ,+88**4@ '   $ ,   %9   @y #'%35#53535#35#35#35#35#'35#35#535#}}}}}}=}}}}}}}}}}}}}}IeHHIIIIIIIIIIII271016'&'&#67676#67677675'&'!534@i;: 78M  9 !!5BDD&+??21:B97@@Y0$%4./E70/ i?4?A'FUgs|73#"'&'&71676367&#67674'%&#"632&#"3273354'#'&547632'&+3532725676'&'+5327#'#37j9)+""      ^?' ''  $%4O)  002      OY    L? A \\x@ FPZfr}%'&576'&/414'76'&#'"1&'76'&#&'76'&&'74'&&/4'&&#'&'&"/&#"#'&"##'&1'&0'&#&0#"032137??0?223?20132?6376?236376574367765'6776/67276/67437276/657676/4?654'&#"/&'&&'32=4#7323&'671#&'673'7676/3#&7'47631&'732#"'&'&'0'6767&'&'&'&+6732?#"'673&'"'&7631         %)(& -0  O  X 5   ?     +>)!! #            ## 6#    x#%$ $ T    / %(   -%"''&'&'&7676&7676531D70100#!,-3X +$'4)) ''21.-Z] 3 %!533=#3@}}}@`3[%'"'&7637676?4545&'&&#&3!01012?6'&'7"#2#3010132765&'&'<>A@( j  23 $$5"C"A  (  c  6#$&!7676767!3&'&'&'&501!6'J !))U8 %YQN88 @## G&&,8 '*+, 5F%'&#"32?6'7;2745'&+"'&+";2?45#";2?6'&#'CoBCCCBmBm `$276767654'&'&'&#7'!3@     B/.`    @./B 37%'#'t-vutg 9]' a%&51476'&'&'&767676776767676767676545&767676'&'&'74'&'&'! ,HAA   ""          c%,,,!"F$& &   !    ,@L%#327654'&#'#327654'!!6767&'&'#!"'&54763!2#327654'&#1:: :: !!!!?}:: b  b  a!!!!b  "CLU^it72767654/7654/&3276=3"5&'&'&#32?675&'67&'767&'67&''674'&'67&'367&'3767&'67&' uKdtJJ ee %@?? @ >  E+ :s UC++ ::, T  T $ RH,N`11676767&'&'&'&'1&54??276'&'&'01&3'67632'7654545'5C66  66CC66  66C( g N   I//80+* "! <=[ 66CC66  66CC66 c--5! N +$% \=>h!3FXko7#'1#'317337321#"'&54763271654'&'31'&'&547672153#'1327654'&'#5##"'&7533'533#%&-&#$/   "   "" &&luuttvv,h    >f   fLF$AW% %?'3'77#7%67167!!&'&'@ZZ'ZYYY3YZ     ::   `  33535''5#73SSIRR|yT p/AA/PII{{iLj'2Qcm7"5&'#;276=327654'&#&'5677674'˴'&'327676'&'&'1#"'&'6763267&'1%"9&563270176'&#"&'&132765&'&'"5&##&=3275&'#54'&+"1#"1;3276'V .   # "! #V''''2  #` + > $"l +  !;Z-  -""  ""k       =3@) t(8<Qh74'&+"'&?6736?6'0#01#2;6?45054'e#337#%#"00136741#"30136?6'&'01#0010136741761#0101301327  "   Q)3i43,)[)\) ) 7)\)\ * )< f)!h)3Qz^))4^))+@Th!&'&'567673'&5476323763231&'&#!"!67675#"'&=4763213#"'&=676321((( IXK ('  @         X'(+'  EE  F   + ! ! ! ! Q@Tan{%1#'&'&76796705#"7676767367676#01#01"'&''&'&7676"?6;2#'"?6;2+32754+"%45145&'&7674145   !< e 70)%-,+! 8.&""6,& pq/KD?, %&   + ->+  -+4(,     - (!F763#"/32?/&+7632#"'26?6;#"/&#"#'&54?3 Mab L L baML  M%;;%M  L :: MabLJMaaMLM  M::M L::13!67671#1&'&'367167!31--77-,7-,7--6$$$$6$$6$$6'132?654/&#"#1"'&547632###%00%##%00%""""%00%##%00%##""""1HY%1#'&/&'&'01'"'&5676767267671%&'1&767476716'&'&'"715-"", 1##&7))5%##& '2))0'0#"5/0&*E'(K5 V''CI??''0'&%>>L~.005J>/H`@?N>E#)1:11/'&/5671?1 '%737'7/7&76* + ED +   ^J +)/)  *   4 '{z'@c)ma*MBo U`M{ +M'&'&76767221237676322#"'&/&54763251##'&'&547676323232147165167654'&'0'&5&'&7416743436362"#"'&#&5"5&'05&7671#"'&'&541&="#"'&54?632#"#&/67676'&'"'&'01&7&7476767231#&/&74763267&'&'&76761"'&'67620#"/1_98 HJa,,W@>3$#*)$$  ##W8. >?J,,W@> 34U)0F? '011F? ')NPaaB@e//Y<=WWG" k!!&& "&'++'&!"%&!"&'++&'zD:IICC('c//W<>VWGF1#E>!%#0V#10#F?!$$ %K6'&/&'67632674'&'&'&7671'&'&547676#"/1 ?"!!"?    S2  ?!!!!?   S2  -88=?88- EW.,+$ @-88?=88- EU0,,# 5>G]{67&'1#"'&547632673#"'&'&'&'367%&'6767&/&'&'6767651'6776767676'&'&'671!&'&7677'1O"x""**//*+!"x"#..#ny##  !! !Z! !![..*)  )*..."    "  "" ""    &+73#5353535#33333#5##353533#35`  @ @@ `   @@@U!"!6767&'&#11#&'&'&#"5632275#&'&'&#"&'56767632276767@0       @ `I!!&'&'6767'&'&#"#'&'&'&#"'&"132743?1676/0`    N,{- C76E    ` t\\t3))3 8AJt}&'&'76767'"#&7676765&560127'&563/6"'47674'&'#101010901301'76'&7/?'119'01"#0#'&'&"1&5676767&76'%6'&7356#"347166'&'3256'&'"'&'&5&7620#00101AVU@@%      `\:!   ==   8  $%$' "":9HN> U   Y 0/.L%     _ME`3,-#%!  =  //*+&  H9:""(}(    )47676327!7'7'7'7'!#"'&'&'&#&1:   /********P/   #"  >0 88888888 /3 ?(,;FLQbo09"'63016323#656'&7#&'&'&'&67016'01017016#01"701601#3016"'101&77'0103"#"#94#'&'&'&7&76'767159327676716?676710767676701677639621727016'12703602016'0'1&#'01&'&''0101&501429&'9&1&701631&'0945&5065&01'06'01"71'14'&'&76741016767672&'&030101657670167676725967216'01&?6747141"1"303051&'&'09&'7'&'6#2123'101&'6724#01"5479?67&'1&37#7101&'41&'?09'&'76?%030#3761"10301674501&701       2)*             :C  $$&  ##  \+  $E ~    #         '&55;%            ,)   / L   ;   (   )y  * Pc%21+&'&'967673&'&'27676'&''&'&7676&'&+"'673#172767&#"1L, #3[i7117ij8 ) ,VV+''+VJ' /$-    #:` (''%5E>ll>EE"0 &662]]26) (!%% ,iE - at1!6767&'&'!#1&'&'9676312&'&'27676'&''&'&7676&'&'#&'673127167&#"#7#@@ "=G$  %FG%:991  &@H    @#.)HH)/. ##">>!$    FD  "'1!6767&'&'!#'#7'373'#3@@)hz_KV/oubCO/&@TwbbZZ 3#'#7'373#GoGet(*𑑼䅅NL1!6767&'&'!1&'2327"'&'7&'&=&'&567&767676701@@)*<9,/" #") @-*+  #  /!";5#5356763201#"3#327654'&#??+ E :H7.= /H`+E!"3!27654'&##53'"'1&547632##56'&'#5336763  BC"   BC@1    hj ,u mv!!6767&'&'"74545&'6767&'676'&1&#"&'&#"'&'&#33701#&'&'6767'"'432'#"'672''&563''&76''&76''&76''&563  `  {         2--GF//3b      `   .    .   *+8F----F8+*=  8101&'367&'&'327&'&'5&'67&567676767#"CBaZG K8$  %,'87B,/$ !(GDD--.,' 90 , % 0%&'1&'1&'5#5356763201#"3#6767!!88EE88!!::[??+ E :[::E88!!!!88E_CCH7.= /HCC_~7#"5632'76'&7365&#1'4545"'&'4'&'&'&7632767&'&'4767&'&76016324767676767&'&'&'76'&'76'&76'&'76'&,BkDD..M    ,!!  !    L.-!"89F ! 3DDjU@@    F    0 #%  @@UF77 #n%11"'676767670136767&'&'767676'&'&54767&'&767676'"01&'&'676767!!88E&# 9##++BP*) 5.!    G++!!88EE88!!E88!!   ,+B?'(,+=   + -3    >=PE88!!!!88Ef#676767676767&'&'767676'&'&54767#"'&76767&'&01#&'&'6767! 9##**BO)* 5."   Y  ` p    ++A>('++=   +-3 # "& `  8E!!6767&'&'&'1&'6767&'36767#537##5#53533  `  ++)  9^,   ` ++  " ,R s$1%&'&'6767&'&#6767#535##33535#12TR6666RN24 3!""!38m877888T3466RR6602 ""44""C888888-7#3'&'1&'676#56'&'#336767d]].]"# ]Z "D+)+)'(>Bew71&'&54767%'"#"#'&'&'&747&5476726326763&'1&'#"'&#&'7376767'167654'&'    &#$*)&&++%%)",-)'!(@$#""$0$"#S  w32-%%-2@1   2@3""++7{%#76'&+###'!a410'73?!7!7!7!@RtM PP_),,aR5R|9N`%6'&'&'5#"5##"#&#236'"#232#3523013567676'&/271611'"#55236'"#6- /11     @11=&%#>*OMNO4 :DCCD8.l  `j  1:>&'&'&'"#"#23012367676767674545&'&'5& %22++++22%  %22++++22% D%  %%  %֣QR'71+&?2#'&73271#"/67676; A E,A -ܐ[ A ]!] B +1  zL  M  ;  &9!!6767&'&'#&?01'&732#71#"/67676;  `  . 1 . 0gB /B</    `  W6  7U ֵw  xj(   '7'77'?'7'LUTTUTTTTUUTTpTTTTUTTU} %'7''7#3!5#!5##; w b'(g()')~ U%T ((x#0Y16767&'&'&'1&'67677&'476324'&#&#"#""7236776565454'#"#"#"'&'&'&'&54545476767676232321 !! 11 !! 1    L%'6%$$%6(%%'7%$$%6'%0 ""  "!  !"  "" 3! 11 !! 11 !    7'%%'6%$$$7'%%'7$$$%  !"  ""  ""  ""&8!!6767&'&'&'1&'67673&'1&'6767  `     ` &#711&'&'&'676767'3733AA!!88EE88!!!!88EE88!!d""bcYE88!!!!88EE88!!!!88ES44"!676'"#!#'3DF D-hd ֓8/1&'&'&=#"'54767676;3#766 $; /  .G S  T!  ! D "!! s R  AB!!6767&'&'1#&'&75#"'54767676;3#76  `  R7  ,44    ` Z+  H4S(|.?%&7&'&&'&'6767676767&'&701'6716'1017?38  ,"#- 9 '7( !!C'*   *# 7#55#5#35b"Բ|"@@1%&'67!&'67%76'&#"1&#"'&#"1!&'&'01;@@;10?&'@'&?SUUS#;:KK:;# 'i31327&'01&"3232710721256#&013&'141&'&'&'6'&'&'0'&'&5456'&'&'#76767672317676767676'6312&'07676'&#&&'&7'216'&#16&7676716743676#"'&'&'&'&71'&#&'&716'45&767676767676'&'76'&'&'&76767667676767767676726'&'&3"#0#6'&1'%1'&767676767217672360316701676'"&'&'01&5&'    &+          )                         E  *% !     =      =          $                      '5CR`n11676767&'&'&'&'&&'6767'1&'&'6'1'676745767&'67167'&'&'1&'6E88!!!!88EE88!!!!88E.++7 :8322'L77 -z ??R :005R++A 4980 3%%$!!88EE88!!!!88EE88!!r8L0#" #!""02&'((-:T#%%;++% )):,%$ `%65&'&'"&'276767&'"'1&'476367&'&'"'&'&'&'67632#&'&'&#&#::W'0 ::W'/ 2#" )  +!"(+!!  ( !!"+W:: 0'W:: /'[   +,   &,p$J!3676767601621367672576'#32#"65673C  ?S 0:  k[I :NI ! @J<    FS.D!014!6767&'&'#"'&'5676;271+"'&'567673PS  S  Q  Q HGP  p   111676767&'&'&''&'&76727676E88!!!!88EE88!!!!88Esqq  !!88EE88!!!!88EE88!!♙      %F173767676'56'&'&'&#&35367673#&'&'#&'&'++KK++++KK++-3005M)*++KK++++KK++i@JC11X4F\n|6'1&'&76'&7"'1&'1&'676763272167&'1&7676'17676'&'&1'&'&7676'&17676'7&76' ' 611J3-- >## C=>g..BA()/.AA)( %  *)4O!   V    !   &+DK20 3 33+,*!!+*!!+ $3++           &1&'6767&'67677&'1&'5()B899Z)A5+  ,5BB)(Z998TAB!C]^CC'(00('W!BATCC^]CY%1'1&'1&'&5476767'&'667#&'&'66765&'&'&7&7676'"'676760/; 1()6$$ ""$#;"!  < .""!! ''-2 >$# 3 6$+;%%.&& A)%"&7!+5#"'&=!5!5!5!%!!54'&'Wdd[tZZUUnUU:!!6767&'&'#"'&'&'&'"'67676767676'&6  `  ?B-   %  B2   ` .RT34 7`- N?#3GWk{71#"'&'67673347167&'&=7"'1&54767#21#&'&'676;471632#5#1&'&'5676721&'&'535"'1&'67673+^   /    /   /  v  v   /    /   /  v  v   /  v  v   /    /   /  v  v   /    IR^y&'&'67&'&'&'47632321&'2327630127'&'&56323276301276767327&/76767&'11&'&'&'676767#&'1&'1&'676767>e6 !R ;U8./M/!  L @%"AA0=!!88EE88!!!!88EE88!!  65BB56  65BB56 32@/(L& 6,[G& y -00<8.fE88!!!!88EE88!!!!88EB56  65BB56  65B%&'&'676777'7&'57DY8955T7""&%;D%(F2#  ((96(' + %'T!+ a'#37674'3798`j'^ & ##B]h]3ZS"# &)%1&'&'&'676767&676767#53@AmE88!!!!88EeAC/::,++,A1lBB!!88EE88!!?A*)*FC,,V#N`i7&'67%11&'&'&'676767'"&'767&''"&#67674'6'&'#1&'&3276'&767&'.!!88EE88!!!!88EE88!! #38=3# %%88&%E##2E88!!!!88EE88!!!!88E) N  V ))t K&;l%#"'&763276'&'27657367&'7!&'&'6767!"&'732767&'&#'&&#67676'6'&'&&"![ [    ` d &7;  B6% ((<=((f6    `   T  ]  ++ <T11676767&'&'&'&'&'536756767'5&'1&'&'5767535E88!!!!88EE88!!!!88E :" ":!!88EE88!!!!88EE88!!k  ..m { / /0!;%&'&'57676=3'75&'&'&'5#6767547632 /0 "4 V#3 // V /0  F/  /FG H:$/.EF/  /  /;&51&5&'&'&'&'01&'&'&#&#!3!27654'#5#56733  `|  ` ` "',1#35##53%3#35##533#35#73#5'3#53#5RR3)RRRRR3{4444L]])]]))]]u33L1CX1"'5632"36767&'!&'&'6767!67167&'&'"#7534'1&'"#7536765  5      `   -4  4   D CD    `  !" 3! 3"9EI7&#""17&'&'&'101674'&'67676767#5"'&'63675&'1�&'&'&"3"'&'&'5765&'"#&'"#276767327676763676=&'&'&'01&'25276767&'&'&'7/7'27676745&555 '  f-  19 ;##8  !  5       !"    % %! N G -  ^"  -##                 %$/".=3 !@Su&'1&'0101276745&'&'01#"'&109&/&767167671&'&76767#71#&'1&/&'&5&'5&76710*##65SR88##*  +-P*  ~; &T(11CS8866RC11(  ,2%( "j= $+%.&Qz4716726&#&'&'&'&'&'&7&'&5016767676326'67654'&'"&6'1&'&'&'&'&'"'767674'&/#"'&5&7'2767767676767672., d,&  ,  ,-  --d ,T,'   ,,  %d +-  d,& u, -14 -,d  , 5-'  -/4  $ @u%*DJ765&'&#327674/36+5#536#%#534'1&'27##&'365'67#0 !/2$%AI OSSU6g8 =;$###=\>>54s546Ee  Sb5 ##:('&&;=$%W @55-2B^7'#536'&'1&+3273&'7!&'&'6767!35#4'65&'&+3276?4'1&'27##&'34545-. (+?   ` NN+#[]! !2" "e4R -  `  in'    !/ "1HZl%11&'&'3276572767&'&'&'6767'7676'&'&'7"'1&'67632#567167&'&'!!88EWA@_T)'(; EDeE88!!        E88!!12O'<)((V 7b@@!!88E        HZl76'1&/6'&'767!6756767#&'&/!6767&'&'&'1&'67675671654'&'  u8%%&OY `  d  [    E 0 Q%%&8%q  `     1Mf11676767&'&'&'"'&'&"#&56767"'1&#&'&"#&'47676327"'&'&"##&'67632E88!!!!88EE88!!!!88Ee/556 >=<6  0?@?dM 9POA5A765+ !!88EE88!!!!88EE88!!  B - L  @3#1#57'#53?67613@b[ ,]]V+bc T]  T]5K &3@MZm7#"5'7477"6?'"32?'&#"32?'32?'&'7"3257'4#7"3257'4#7&'3257'4'&#"413276=7'&'"32?'&#&'&'"36767&'&'%657'&/6?'&'"6?'&#oox'&7""6AEEA-iEEiDD`####9899 DBBDFDDFo @ /:DD>7#$ "!<AACCCC2%#'&'&'&'367&'&54767'"'67&#"7&& !"K&+!&18 %%64;++ $$MNuFF-,?&'12 !!+*.2<  %*/3'&?6=4/'5#'75'77'7577'7 M_,_M77M_NNNN_M77   as3?gg?3s%%Js3?g4444g?3s%%J:0]%&54'&'&'&'&&'&'&323232767676'&''"##"'"#"'&7676'&76327676'1&'&'&'&'&767676'&'&'6767676'&'&'&76()120).'' %#" ""\\( ",<='('(C ""&(244%$ + X  "# &   3 3)0!!$#'%!!#< (( ''? **&P   # -  j&'1&'1&7676741272767016'&'&'&'014'&'701676701017676501676'&'&#&32G78 7.   ,,  & ($$BCl8"#99F<44$$$232  32  %% $&'"#.-YoDD .=Lg&'&'77&'47'67'7&'&'&'5"'767'63567'#6767'711&'&'&'676767#&'1&'1&'676767'67&'6767'67&'7&'&'7&#"'767' ;00 (>  >( 00;x(>;00 6(>;00 ]!!88EE88!!!!88EE88!!  55BB55  55BB55 '  3 @@ 3  4 @@ 4  0  .  1::1 p .  /9- 0  . /  E88!!!!88EE88!!!!88EB55  55BB55  55Bk  /;:1, ,CC, ,CC/8\n711'&'6?1654'%#!"'&54763!2327&#"#&01676'&'76767&'7'"=#3#"37''&741535#01545#236767e ?`1 CD* U 4  He&$  ,r  t`E.&   -  XiK  =(B* ):I_h#&"13676'&'&'776767&'71'1&'67'&'1&7167563676=4'&'&'733'&'632"'&=416#&56767373#07O! 7mC  %? % 3      T?$$$$%$ &9= "(.   H' &   d w! $##$#j$! )a   !!1010101#5'36767673@P%  #Q@6eg8   7gD1'&767&767'1176'&76767'&76767&'&'H 6  2x@++   #$3:'&&')8..//G0bPP7"5IHY%%877 /.-'':.!"   )(4G//I%"'1&'1&5101'&''&'&767&'&5#"5&7676767&767#  $$$$   '&VU''     4 Z=>==[ 4 3'5M[i2&'&'727&56767'"'&'6763"'1&54763&'1&'6763'6767'"'1&547633"'1&54763 76IS77LD ..Gh    00CH....H6k<&&..GQ3;"B+,5 0 <'(('<<((0!#`~"167654'"16767&'&#5&'&'!&'&'&76745454537676'676'&1'1"#"&'&"#'&'5476!6   P!  !O 0('"'&/ =,&Z %#H*+ $  $ *+G$$  /#3'#3'3737#5#!&&j''ataM'MMDW5Ynnn[[[I@@~!2CT7'&'&767676?&'&77676'&/&7&'&?676'%76754'&+dk  ,$+   J; " i ! > k  h  :61 ,)  o R n^' " ( [    $P711+&567272"#&7&'"#"7367410767676237676'&'oK ;+=, $$3  "#%&  @  6&&   t &&./4 g#"  ?= %5&'&'6'45#3&'&'13&'&'#7&'#6765&'7  0] >h !05''r &&9m YI AYI30(%%#%'I Ri401,XQ]^dh]]ND  FL.445of@$27\o%1#676707677!&'&'6767!7#/&#;7#374'&'4727&'"#"/6767'#&347673013!j     Y?+'@$+^(("      <*4%   `  jH 2 !  #2  @ Tj *8HV_%&'67%67&'73&#67&'0920#0011"15015"101&1414143014103030301201003101410501"1#3513'!&'&'6767!127&747&'6514'&'&&#"5#345&323&5&36357#&#2735"'6327&32#"'767'#"'535#5##33?3&7''&'7&5#35476747167&7''&57#&7353"5#35476?#&73573535#3450'01"50#01"10##101033230303052141417#'#1537357&'1&'36767    v k  jK     (';)#76#);'(5555   -(    $   ;    B  "(  (':*#$ %#*:'(&        Y  `  :('0CD/'';l,@@--@@,M%%      % %%4K|}P;''*+**'(: @-9@Re%4+3257!!6767&'&'23161#'##'3#3#3#'73#/21#"'&54763&7'&'6762716'&7676&'73#5323#53!676767%&+327654'     ,8--E$#'  1a     f  Do`YX>?*     ` #!!RR77TT     B   R  R"! `6 @$15CQZ^&'1&'6767!#'#'#3373!%#7'373#'7'73#53#3#17#'#5373#5##73#/3'0   KbNRB >  +1CC3)*3DD3*]''SzzSQQ%"%&= <'B +>3@, !'  `  00@@## t.GI//HH.CS*)P!! dddYYdHO.. @ 5Ke7"'672'#"376'&!#"37&'&7!&'&'6767!4'1&+;6?62367#01&67;6?4'7454'#"'&'#"36?4'1&+;2?62367#01&67";6?4'74'#;6?167&#i      @ ( -U    (@  ( -U   /Z0   `  f-    @b\'&  kf-    @!he4 @$CUeim%&3&67&'7!!6767&'&''527&'&'&'672&#&7#327#"'&'573&1"#536761#53557&'53672#7#727#"'&'67632$u       j/  .  E  #J$ ,$$$$J#F 5   ` ' "  '"  82 r!U} }}) !3  1NN7'"'&56762767&'&'&'&76367&&'&'&'&'&'&'"676501#* "#J7!! '$(*; [*F <, NA!"~1Q3*63 +,1$M0; ! @&&'&F `!!6767&'&'&'1&'&'&'&'"36765&'6737&'&'&'&767636&"3#  `  \/    NR1  % ,9%"   `  "   UY)   & 0  $FQ#&'&'#36767674'367&'1&'&'!67&'!&56767!!%3#&'67hC<=NE88!!5C<=NE88!!5`98U9..98U9..* D)*!!88ED)*!!88E`U89/U89/->Pf{%67167167&'&'&'&'&'&'&'67676'&/67167'7'47161&#&4#&'&'&'11&'&'&54767#"'&'&767"'&'&'676'232367414'&'67676767&'"#'&'&'&7636'12&'&'[      5--JY32 ##  "! "    ,A-"!             b  !" '' -,"89-,98X! k  ^< -e  1*!       %% ~  #?!&'&'6767! #373+V+   ` A__[p[)G  `  *[[2FJRdnrx|%'65&/65&'"#&#"#&#0227332733674'7674'767&''35#&501750'"/6501457275'650501757'7#7/77#''7''73#673'376357'557#5&/53#3&'#73#7'3?37#77'701'3 8jj86  7 4jk4 7  s,,,-3843.,,,F#@b  SPSPOD|q:bSu q9{K3ht36<]EE#rQQ""RRs<0/!.'56 hLL##A@V>23$EF^#RQrsSS"&-!11<86#NMi VBB#9)@#&&#"67267"'&'"&#+6766'&#&&"67632632 8//8!-/=*(;%!48<++<84 %*>G9119G>*+"14;,,;41"#&8//8&#Q +*))]""-''  z#0=JW%65&'&'&'!6767&'&'#&'56733#&'56733#&'56733#&'5673/0G;,-$!"#4~4#"*  YZ  W  G0/##9# $4####4+!!  oo      ' #'+/37;?CGM_77'7'77'7/7'7'7'77'#3'#3'#37#37#37#3'#37#3#37#3#35#367167&'&''6716#&'&#"36''71327674'&#'&5'#335#%#37'!!5!#3#37#335#535#'#335#35#'#37#335#3'#3d#|FX!!/""/""!!_""/""_!!"" F""F" ''''0       y V 5z u!! !! !!0""S !$""&    - * 0   & P " "''''o     U""+!Qjbb}VV+;;! ! ! !W B!" " *<#"#54'&+!67&'&'1&'67673&'1&54767j  j (( L|g%1&'&'&'&'2767676701&'&'6767676'&'#&'6767&'&'&'67676363!!2>**$#*)<79!!!   )(*@,,*+BI10'!$$01.  !2  ='&/ w3 &%10%% )*    ('AB))))4, "!"" 2    &%= /S"1367654'&'&'6767"'&56767&'&376767673676765&'&#P<=''=4!  "      5""54I0/T5  >%&5#$ !))*+#*- --/L,,.t&'7316767674'&'&/7'&'676727&'1&'&'&'&'&7676'&'&'&'&"1"#&03767676'&'&#}B[>22v19>23 3+F54NL6755Ne  ' _@22><3s22>-(( D-5N4566LN54        ##'##3#3735#735#7'3@Q^Q@00E RgYYgRD006p0 00 0p@@ v$616767&'&'167671&'&'167654'&'M3333ML3333L ''&&  v34MM4334MM43 00II0000II00,+AA+,,+AA+,!!7#/#35@N!. -#M@[ [^\@ 3@v*:%6&'6&'4#"&4527676'&'&'"""'ʤ52767676'&'&'&'&'&'&636'&54'&'&2""&&#3&&#&&&277367674/656&'16'&'671#&'2301&71676&'6767&'"'&774367721&'&'67631'&'232'1#"'&'&7123#1"'&74763231'67'&'&767125772377637767201&'&'6'1#&'&'476'&7167676'&70367&''151677677&'6731"'&'67676&'1&161767676'򻒿&'&'17676'&%"1767&'&'&17674'&'=       6BB;($    !   J     Z    0    t 6  I   j$    #''2/&&!      *882R5<=7 5;9/ j   F8                  $+    !!     !       !     ! !! 6  3      $#  B- @! ! -  {$$;      C   * #D%1#"'&547632'"1327654'&#"'1&'1&'7667676'&#     $WV22' JIy&&#%*%G"#~  .   * "#)&:%$/<I]x16767&'&'67167#&'5&'&#&'5#&'5673'+"=473+"'5&54763211676767&'&'&'"'1&'1&54767632#Z<<<{  #  `  p%1 $&''Z @&;P16767&'&'&'1&'676735!!6767&'&'#&'&'67673K2112KJ2222J(  P     [Q7777Q[Q:;.-5p12KJ2222JK21 $$ $$ H   ` `66PX4554X5++;Vh7&'&#"27'&'67623&'&#"2701'&'6762'11276767&'&'&'&'1&'6767! ! .! !  .H88 !"88DB88"# 88GV:988ZW99;<RQSS  !865#-    !  { !.=JYfs%'11676767&'&'&'761'1&7'761'1&'&7'11&'5676'&/&7161/&716731#&''&'1&76?6171/&716'&?6761&'56711'&/&71671/&716'?1/&716767#&'16731&GZE88!!!!88EE88!!!!88Eb:K@  9(^BC@  mt#&mR!!88EE88!!!!88EE88!!Y"*  I *  mttC-?767327&'&'65&'3?#'6767167167&'&'!n%L`=>m)"":9Hmq0"" M$44>H::"%%%%G:FFcB$;%-3G::""--"#:%%%%%&5151&'0/010145&50105&5050#4'54#45&145&14101&54'0101&'14#4'0501&50'050'4'05"54'&5&141&10'41&101&5&5'4'0'4#050/"501&'4'&'&'&'&'&'01&'"#"#"1&+""090109016?0103272301216'&'476767&&'&767&672767670145    41//% /.&   (+*)-CC^E88!!      #&)() "" ?./"9"2:BZ9:!"88E#;11327"#&'&'&'6767673&#'1&'67654'&'676:V343&%-7,DaB65!!88EaC,7f "#++ "# 55<'./7/+&#"2222%# =((+-*(FH](!--5,* $%*3 %H%11##531&'&'&'676767'&'&'67677&'&#"6767 &1 9:ME88!!!!88EI87"&=*P@****@J+;..8=2112=<00 ,aE)(!!88EE88!!$%@mb E**?@**>"012==214 %'?#7%737d%`TSY.Y}T&`:L9fs%#"#5&+"#54+"#5&"#5632376754#"#"'&#"565&#""#&#54+"#54+"#5&+"3567635&#%+"=4;23+"=4;2$%%   $$$   &<  p   `$ $`@@@@a%#"'&'5#35673#&'5#&'&'&'&'##"'&'67632237676762367#&'#"!5476Y YY e  %%  7Y5$Y ,< "!#6 '6%1+53211&'&'&'676767'&'1&'#3536767F FF !!88EE88!!!!88EE88!!%x2F% J %E88!!!!88EE88!!!!88E%%J%e!&7#57##'##53373%57'537'#'#53! &=& !B$ $BKVIIV VIIV re?>&44&>>&44&> !!!F7&56763'7&#"76'&'&#&76&'7'3767676'&'*0/GF,,2&8C(#"#"">&#^P@!#=(115' ! 3L&'H'$%  ?/'G# %$#"  -'7'711''&'&'476766#7''77'%+,,,+*)99--,-9V22O}J]]JS+V+++Vf7777fe9987XI]]IY& ?''77'755]VllVb)22222gV ll Vƕgg2d222d4%/&'&#&#'&'&'&"3016701?3676'F//F "j5  5j" (*)O((P)*(&+6;%11"'&'"#"##&'&'&7&76767%35#5'&'7'35#1 0&=BG#!"'&54763!2&'#''#!67%#53#53?##53#53'7##53  j % o==n jIIII 6v@T@v6Tccu j jK22K%%J&&,,I%%J&&,,%%@1111#''&'&'&'&'&1132'&'&'&'&'&'&'QRQF "33:0 P $$1# ;&'9888$RG+'33L5F. !/11 '&#-(()l'"#&'&54767637!&'&'6767!&'1&'&''6767&236'676761&'&#36767676367227     ` @ C6T   %  + ** E  `  A''+S;  !  Qh%&''67674'&#3236'&'676765&'&#67676767676763227&'&'&/'"#&'&74767632 59'&%$B    (:('    !  ,-6 -.+C##? (,-5!   TCC %&' ;\1&'76'4'&'&'6767267&767676'11676767654',!! &&=n 02%%<  R006#/0/0#)m  $!! ()OH+,(y<('H97/9:01 &%5:))  54IH=% %/67-     " #$00'Nk!!6767&'&'#1"'&767672&#67676'45&'#27674'677&'676767&567676767  `  w"/0"!4&  E&         ` ##&-. ! %! $$ 2-"$R.%""    %&'&#&'&'&'&'&7676767676'&'""4'&'&'&'&#""'&#72676701676321767676767676756'1#&&'&'&'&"'&54'&'&'&767676'216'&'&'&76322354'&7676767671723676763203 "   "**"   !  "     7   ))   7 Q           $      !"3!27654'&#1'01"01#"'&'&'&#'&'&'4'&'&'&'&7676767676'&'&'"'&'&'&7632234767676322363232'&'1&701&767676'&#"#"17056'&'&'&'#&1"'&'"#"013267676327654767676'&'@               $        $     @    &   &             ,<&#6767&'"'6767676767676'&&'1&567672+H/6X;;;;XX;;: ,22K/) H22K(%2//0 :;;XX;;;;XT= 2CK22 U+*2##'K22.GGiQX_fx70901097"''''7777327'67'67'67'654'7&'7&'7&'7&#'7'75''5716767&'&' - 3= @DD@ =3 - - 2= @CD@ =2 - ʼG////GG////GۄD@ >3 - - 3= @DEA =3 - - 3= @D uuvvennnn3/0GG0//0GG0/3?3##&'&'5676?356765414'&'&'3#673&'7[, &'C+% !-$)>2f 0>t%&8pKb11 3 ,,g0;  q471632&51##&'&'&'"'&5&'67&'7&'&'&74767672676767676767672632#63%16767&'&#"4767654#"'&5&'6753&'6753&'6753&'67571&'&'4767676767676?4'1&'2766765 0 %%     " "!   ##(  /       2)!0)112M*)4I++#    ! ,/ 1  h''      %% ,@    i)**  2        -34G4<.**&'+d*"5))%BN11676767&'&'&'"'1&'&54767632&#2767#537#5#53533E88!!!!88EE88!!!!88EG!!0#!!!Fu 7$##$#!!88EE88!!!!88EE88!!!! !!!+ 6!!j##$##$F#&'&'567275#&'&'"#"'&547632676763276767 !------   --!  @      -'''7''7'&'&7676#015??n;'al(K\}* BN !.:%%( Ah>&1,'!e NF6 7 M"$J,#<%#&'6765&'&'767676/&'1&'63#&7&7!;:ON:;%%89<%(#/  nnp= "''1Z5556YC10 :?%=#e654'&#"327654'&'4713517&716714'1&'2&'&7676767227210167676''7&#"32767674'&'a   CA]+ &#     (  AC  `"&&23''!$ ?f\>##$74&& / %$  *)8 >\f? $!''32&&"W11676767&'&'&'11'"'&'&'&'&767676767676'&'"'&'&#&5676767632E88!!!!88EE88!!!!88Es    e  m$2!!88EE88!!!!88EE88!!"!""   E  /11676767&'&'&'#73E88!!!!88EE88!!!!88E0U!!88EE88!!!!88EE88!! 2<W%/&?6'6'&776'&7&'1&76'7&176'11&'&'&'6767674'1&'&'&67236'6'&1"1676'&'&&'&'&767&'&676016'&#"41017674'6762765016'#014'&'7676767677-    H  0 !!88EE88!!!!88EE88!!B   $                     ,tE88!!!!88EE88!!!!88E+             #$ b%11&#&567676567454'4'&'&'5237670#&'&'&'#"672767673#&'&'&'2'"';2767673WVVn  (@@DD6  W2-Y)d &<<>=)    ( '+ +;\p7#53?3#5#'#53532+7276=6'&'"#"#15367632'"'&'#76=4'&#"32711001!01&&'67!009!674'&'!Z$$B / .D  +#:" -8  || ||IA]][[ #I0rY5 r,&   #  $   |  iz%4'1&'&'&'&'&'&'&'&'"#41"1"#"##01223;2363676767676767676767674507015&5'"'1&#"#536         II 3         % ^ &?o!!6767&'&'1''&?6'&7676'&'&0'"'&76'&711'&'&23'&'&'&767676a(())2''&        %        % ''&  ((((%     ('%      '(%%   -1676767676'&'71'&'&7676>??>F/.W>?>?F/.WP+,==&',+=='&  11G*&'W  11G*&'W=&&*+==&&+*=5:FKP%11&'&'&'676767#&'1&'1&'676767%'7#'#7'7/'7'7""::GG::""""::GG::"" 32?>3223>>32W%W%n/213D EDP77G::""""::GG::""""::G>3223>>3223>%W%W^ddk uDE+77 #,5>GP|7'&7676'&6'&7&76'%6'&76'&776'&7&76/76'&1''#'&'&'&'&767&7676766&'1&'&767676'&'&#"1"1'&'&'&'01&'&'&776767676767676767636576'&c     V   z        u   '  P      !!"!)10-5((F                "   H         :    8   J    "$$# %##37 K     %%       \  I^t15&'1067454=6767672767#&'&'"632767675#&'&'7!!6767&'&'1#!"'&54763!2        @  @ (  ` x@ @ 5G\%'&57'6'&'&'"'6?''&'&?672'67167&'&'&'1&'1&7'7'#  ))(-''"/L+3D"!"!  :j A)( ))9:4'z&?+'!'&( V. = B $$"'(7C))'(-]%5'03670167676701010145&54?6767673176767676'&'&'&'&'&'&'&#"#"##0#&&'1&'"'&/&'&'""2176767676'B3 !!+2&' ] (( !",/%$  9"##$,-<;-.  B ! +1&&  "x  $%00%$  ++9;//  J  Nl!"3!27654'&#&1'0#&'&767676'&'&'&'&'&'&7676767676'1'1&#!"'&54762323236"'&'&'&767676501&76232361#1&'&7676"#1"'1&'6767676#;    >? ../ % u  *,+ (4  z    )   0   T  D31 G#23 #)71'&767676%1'&'36767674'()* '()* '_:KJ:% +*6&56>L=>$$70/76//79^)(21#"-%$>>M P11276/&'&'&'67673'&'&'&'&76776'&'&'&27765&'#G99#""!::HB9 '-X:::;Wv6$+'&%8?,+)(=2& !"99FH::##<;YV::h'$,&8%%((?=** BS"17676726767232323236'6'&'&'&745&7676767/01(  *),) -22)( 6%+*  /.d2 /& !!"  "&  ##  )=%%    1NN^fko%777'7??'7'&767672?6?77?7?''&76?6276777'7/???41676763?6'7?7''7''%67676'&76767?&'&#7'###"@ /  ]    ' A$$%%7 K :(~,   8 ( 9 & ' +"% (&9m  "?  qsvPSxx$&  uoV\F  G<!-&(Kzfh?B)    +.O,-+#'%'  *(?BR#     &'!9Tf763#&'6737'&76'&?673#'&'&'&76711676767&'&'&'1&'&'6767 W?4B O 5   $ZE88!!!!88EE88!!!!88E==\[>===\[>=G  s$ " >" ." ? !!88EE88!!!!88EE88!![>===\[>===\6N!!6767&'&''&?67#&'6737'&767633#'&'&'&7673  `   3A  V>b    4   `  "6r#   " &%!7 W'ASm721156#&#4766#7#'7&'6&?3367632''##54'1&&3276573167632''##54'1&&32765747632#017'3''&?456&373362#45016"#5*&&.'++N&  'Q  :&  'Q  5 ! L& $' L&7'# '   L'%0  _     F==     F=$   ) .   Dw@5>%654'&'&67676'&'&767673773'673'67''7:+,Rcml[O\8984sH2+ /!d=*D"e"#!-fI!#"fO=72$$ 3*ABP))." =+(63"%5 GnQ)5| #8%%5%7&'&#"3676637&'&#'671617&'&'67@@/--67,-GQR9 5!.="yCMNHH31)ABOOAA*66H+*8 G. /4  E>%$$$?4!!67676'&''/767/?6760989: s)4:E g  _4n @ =0dq  w6J 71#01'&'#'&5&76656'&0#&'0#&56767676671676'45&#&7"/&5&70103237476;67476;604#"'&501'01'#"'1&'&'563676743676'&'&'&'"'&'47672#&'&'&01'"11#'&'&766767&11"1&76761676'  & % ' V    2 $!!%  !!    !    )6EECXRQB~s   !$$      "   E     $$S       i'<S0!  ##  0E!"3!27654'&#1#"'&'##53367632'+'&=47632  @C @@C@. .   & #K %#  Yiy%11&'&'&'676767'6'1&'7'&'7'&'1'2330#"''"'&'777676'&'67'1&'137'1&'1&'73!!88EE88!!!!88EE88!!   %     #   # > E88!!!!88EE88!!!!88E# -+,-  3H -,-- #W< X6 (:Ef67161'&#"'&7716'&'&76'&76716'&7'5&'6711#"'&747&#77675&'"N1==>=2 BTTA cU)) ,+A].. ((P>  G @? $#--#$},/ >: ] JIV@==..!QQ`SFG OH H   A<G44G s $0<HT1#737#3676'6'&'#367654'&'3#367654'&'7#3676'6'&'#3676'4'&'#367654'&')GD ~DF' DF) DG' DF' DF) DF* KY (Y Y Y 6Y Y 6Y /h76316323"#"'&'&7&1223?6'01&'&##"#"#"'"'&'&'&'&5&545454747672723233'&'&'"'"'&74'&'&#"'"336367676565&5>'  0   ', $$PM$$   (22AA22 U     *   _ ,   $$QP$$ '  $$RV)(- $.4Le%&'&#&'&'&7&'&'&'"'"2327676765654'%6716323##"'&'&7'&'&'&76763016 (%  2C " 0011 /#  #    + M2  ?@  2) I;I &$% #"!!@    "',16;@EJOT35##53735##53735##5335##53735##53735##5335##53735##53735#xpp(xpp(xppHxpp(xpp(xppHxpp(xpp(xppxxppxxpp(xppxxppxxpp(xppxxppx*;%1'&'&7676&'1&'1&767676'76'1&'1&'767IVJ78 %%8SPP56##<>HA22%>>[J;;!! #17$%'%   LT  >3223>>3223>D----DD----D& %&7 +  Xp  23>>3223>>32--DD----DD--"%#'57327167654'&'&&389%  %%  %98 $$  $$ h/jw71732767676'&'&'&'&"1#"'5#"31'&'&7&'&'&'&7676&'&'676676''&/#&'5673'&'5673#75673#&'#&'5673'(<(56'4#" 8!"%%+ / 16$% )* %%$   ((v    p    4!&+0,,, + ( "      $$ !!" "& (h(((    ]     2Ye7&'1&+36?3+3676'32?#"374+&54?#311#&54;6?#36?6'&'%#"276?6'1#32?332?6'&'&?6;2+32?6'&+36?% #     (%  N: # 09 L$ 0   b! 5 / C    `   )# 4 " c#b@ (!J   (  7!13/3?'9'?#'3##9so bc156p{t44P/2J&=.//)%1#&'&'6767267&'&#2767&'X,,C"//7E88!!!!88E7//"C,,O'&!!88EE88!!&'N*<\&76767676&'&'&''&76'&'&"201"01&'&7&'&"7676727#0#0#767476725010'012410767672323#00#057676076767650#0'&'1&'1&'010#"'&7676767&4747656'670101&7767676'7&'"'67676'&'&'"'#&'&'&'&'&#"#"'&'45&'&#"#&'01232&7677676767'6017676'&'%&'6&7&5&5&'&5&76741671&'&'&5&76767056'&'&#"#676'&2767633763'67'676'&'&67&'&'"'67&247676'&'&01"#67676'7&'S " 9       ( , %    $% %))          !   z               #  ] )  :#    $ {  . + )" !$1 $  &/         %!                        %9Kav3#5'&'4767651327654'&''3#5'&'4767651327654'&'%21#!"'&54763!5!!6767&'&'~44) @   33* A   D  84 h  4 h    #V^727676'4'&'&'3#"#727167#3'##&'&'&7&#'&'&75476;0363274'36'&  O& w+J!   [R T6 @  @&  % 7     + ! 8-335#'35%&'1&'&367676967676'5#31WJJ>>)*8VJJ..`//7 ''4S>?__"J===8)*?>S4'' 6//`..JJV__eHZl&1&'"&&'&#02767054#&'&543676332720"3367456'&'1&547673&'1&'6767 :>CC>:8CP IKLH ODfz   UTSR1 !! 1211013676767&'&'&'"'7&56767>33>2222>Q$%66%$$%622="",,!!33=>23 K"6%$$%66%$#5+325&+32=#^r__` dQT~  <AFKP%#535#35#35'#353#35&'1&&/!327677676747'%#353#353#35'#35^BBBBNBBBBNBB $ #M 8nwTT) BBNBBNBBNBB;;==;;H<<<<01@ !239[?E )267162&'"5617165&'&"67&'#67&''1&'01323721&5676676632'"1''#"''&57"#&5473&''&7676767&5&'7676363676367&7676676222'%4'1&&767676'&'1&'&3276?&'1e"1&76767676'9      >h00    D0    ,_   5  =#  " 4       j h        _    $    *      :T    (#3&'6713&'&'79!67673WWdL@#$1!!J3&%` QkQtL %% @bU67*0.#)%7#5476735"'&#"#335Y (7! QQd]<O =F]#>176767676767&'&'/&'&?676?6lEF%  NIH//EEkI  : OI  : OBCj6-.!  ;;XjCBt  ,< t  ,;  '###535353##3535##3535353535!@ZZ@&Z@*=M73#3#572'5&#535664'&#"3#572=&/73''7'73733r]M; &i%E   ! n *+ & &3"# 3c-  "  ("[-  -% &&! `7#3675&'3#36=&'7&'&'&'&'"'&'&#"00111011111001201010003211132010201010110000111011010101212322123032320321232303212230303232323012323232321212321230363230323212363032303216321230367670121474707014707412547250503474341056701016565070147416141654374705257074147056567470105416565434505434541470541474145650141705056501054145654501450505505250545454545&'5&'&&'&'&'54733547335473356235&'632632327632#"'&#"2363567335673356;2v*44),))12))- ((    4444}   ?Q'  )Q? L L GZ 1"C6716716'&'&'&7'&'1&67'&'&'&7667&'67674'0   0)   -6\====\[==`    1j  =<\\<==<\:0 H~&5676767&'&'&567&'6767675&'&'&'"#&'&'67676'&5&'&'476'&576767674'&'67&'676 @Ac Q43""9  3'&>  >&'3  9""34Q cA@ $%>?M M?>%$J  ,1hHH|h@@XE88  32?G77\  %  &&  &&  %  \76G@23  88FW@@h{HHg2,  06N@?''''?@N60/%0%##&'&'676727&'2767&'&/#35&'&#D &48&%%&86(>A[>2221?0+,$ ( jv4%##&&99&&'?A23>>32*qY)1*l1"'&'&767627!&'&'6767!5145145#"'01&'&'76747010301'&'401#76765,  #Pv' 3- !!%$$% -#gP/0Z($;+  "  'c>T73230127676'654/'&'&76767353501'&'&'&1727676'&'&#+ 3)(3 $FN-. ('<. ,8787 )""*# 6-3 1!"A,-Y$"6 =HH<+, .n !E.)) **,6 ! %3#!7! 'SQ6Q0QS %'% '7654'%'E<;AA<<ݡ< F "@A#  < @3i747167167167&'&'6'4'&'&'&'&'&57&'1&'1&'327676701270367674'q/        $  $%-$# '!    ""' ~)4`l~<Q`u#4;NUfv1921677476567'&'&17'&'&71101&'&767767650765&'167&'&50171'&'67#"327676'&5&5476767276767&'&'0101&#&'&547676'&'ǂ#&74767637'4'&'"&'&76701&&'&7&'&545#1&'&'&#0201""&'"1676767676'&#63"#"&'&'6767&'6763%&'672&'&##&'&54'&'2&'10'&'&'6?6727676'&'&'&'&7676301'01&'&'67632017016767672453&'110101"#&'&'&'&+"6767"'676'&'&71473"'&'&'1&'&7673767677#6'&5&'2767'1676501#"'#"367676'&'=       >                        %++&  +       ,       **      u    %.  o,v,Q L%       >      -      - f                       $+  +$        (                          + 2  E   ->7#"'&/327'67676#&'01&3676?6701"'&56767"'676?#'"5676767&'&547676760#'41"5'"7'&70567621276767676727670147676326767610161474767632676760##3670767657'&'71#1"'1&'67672?64'#"'41367"21!       &%        0000#"--#" !1 =9 F  9PO }        O^          .   1@<)0!!6767&'&'1010101#5'36767673  `  P%  #Q   ` 6eg8   7!!6767&'&'"#1"'1"#"#&547676507676'&5&'#1"'&#"##""#&7472767676=&'&'&76723322327630#3676'654545&'&'"1&7672223236327233t%   p        n    rk     =f    e> 411101#67676767673671653#676767j )b !*b<*b *b A)(4A()54A()5A)(GY%&#"327674'736767&'&'567&'&'&'&'&'65&'&'67&'1&'6767 '2  2!.7%%0  ' Z%9-!2  2%$82##>    = s\q16767&'&''&76723670125454#'&'&7676327674'4747636767612#367675&'&'&'1&'6767I0110IH1001HO    ( *,,,,yR7667RQ7667Qp01IH1001HI10   8(%  % B#/  ,,,,d67QR7667RQ76^%'&'&5&767676367016765&56#1'&'&76767276767654'454767636767612~ +  ,+++ !   N/B<)  "!N R/2  )((" {DG^y &4JQZ6NZh%&'1&'&'&'&'4767676'4'&'&'&'&!6767656"'"#"676767&'&45&767&'676'""'&76767674'&5676'67676&6'&'&'&'&&'&'&'&'67123&4'&567676&'6'47''61257674'1&76/&'1&732&'672#10141727167#71#&'&5&'&'05&76#4'#&'67677623476#7"1#67&'&'654'&67676716&&74763127&'&503'&'1&7'&771767676'&'&'&'&'&56'&'&7'&'1&'"&'&7&61&7676717'&''&'&'&'&'&3723 !01(   i" %    %$             h  .8      5   $S      `      , \     4:;*       ]         +))      }  ! :&     %    I  @     F               / 2X~&#"767676'&'1"'&'&'&'&767676323'&'1&767676'&&767601"'&'&'7&1'&301676767676'&##?6'&'z>D?88$$;;AA:9%$;4016 M( * $@%%*2SSN9 --11    .%9;AA:9%$;;AA:9%2    V "  MHL.$99?7  =!!1#&'&'7753&'7674'&/&'&'67676&#@"*c:"   (!  @! @(  #  &M!!6767&'&'1#&'&'7753&'7674'&/&'&'67676&#  `  "*c:"   (!     ` ! @(  #  ?[x?7'&'"'&5676%6#"'&7&'&'01674'7%&767''&56762%1"'&'&'67&547672'&'&767673'67&'&'@<.Q.( 1;B4   c-    @ . '-  i   ?2M.(1;B4)<## --<<##('8; J ';A  *   08E4    6F,&h 0,;,&18E4  -  ?9h0((0((]BB!!88EE88!!BB]d*/C .1MME>@A+ +$)*',87/1(p((0((0 3#5;#53#5;#5%767567676756767675!@   t   '6C11676767&'&'&'476327&#"547632&'547632E88!!!!88EE88!!!!88EP0  x  x 0  !!88EE88!!!!88EE88!!    :  %%3&'&'357%57365&'&'&'3`l!78DD87!lhhK !!88EE88!! K@7  7ii0П&*E88!!!!88E*&&DXo%&'3767#"'&'5632'6312&#"&/327675654'5&'&&'2316367676545"'&'1122301&'&"#&'&01327014'*d,'01@@11',33+3@@2 -11- Y,, ;;JJ;: ,,*8887+33'%J  R))))R :.-F01\--.-Z01E..  )7 ) {  Cy"/&76767676?6=4/&7675473"'&/&=4?6#74'1&'&'&7&7672;2765&'"'&'&+"67 >  /2 5 0 +)   WR&, 9$ ;Z<%kjj  8  k k  k  A:   >@@  *%#53%!#5#5!#353353#35353#35335335  @`@ @@@ @@ `` ```` >B+U735#3=&'&13167#&'&'#1;276=#767##"'&'5#5676354'&'&#"3%275&'01&/67=&'&'&'&'56335#&'6?'&'675'632#"'#"'5632'#3135#h5 O&%!#01"" !  !!   (%   )&  `  #" $%I/;?   %%0#""#0%% %$ -     qD    4  :  Z)^0I[m!361147676'476767&4'&'&'2'&'&'#"'&'&74767674'1&#"3276=4'1&#"3276=4'1&#"67654'1&#"3276=4'1&#"3276=4'1&#"67654'1&#"3276=4'1&#"3276=4'1&#"67654'1&#"3276=4'1&#"3276=4'1&#"67657&51&'&'67X  *#!%8! ,,00,, ! @``@       H      H      H       =SS= B^^B8   * ,>J: :J%!"/0"!%h   B   B     B   B     B   B     B   B   (   (1>HQh&'1&'1&'67676723=367#75356'7#'35##5##5##56'3=5'575'#353&'&7'676'E88!!!!88EΕ`F)o9  sD)*E EEEE$   8!!88EE88!!p ]? 6  480M<=Np0!!0 g E  8 D|%&'1&676703167"'&567674766'1'&'&54765'13!76?37676'&'#&'&'#54'&'#&#"#&  , 8&'  ! A V  " <<)H  ##  5("!<( 2211 U #%1&'&'67673#44NN4444NN44ZZN4444NN4554N5P&'676767676767&'&'1&'1&'67671&'&'&716767&'6rf ) 0':!!6767&'&'#5673#"#"#5673a)))) 8 8  ))))8  H 8 11676767&'&'&'#"#"#"#"#"'&'&'&767676767632370176763232327676767632323676#"#"#"76767632323232E88!!!!88EE88!!!!88E  DE          ; !!88EE88!!!!88EE88!!34   #" .. 1     (KUfw#&'&'567673'&#"#'#35676327#"'&'365654'&'&'&#"32767/#67632327654'&#"327654'&#"@6$%%$66$%%$6  $  t S " 3 P     %$66$%%$66$% Z"h  %"G   d   59%6716/&'&717676%6767674'&'&''" & ZAB4 $ ] 08GE88!!!!88E&% ' 6b944T@ .%)! " %P"!!88EE88!!I;>#5j%"1327654'&+"1327654'"1327674'&'&'&#"&'&7673276767654'"'65676'&'6767   n     )(327$$2))33))2$$732()-,3ABccBAABc       8$ 4BB4 $)..)  8,(8@****@@+*611676767&'&'&'#'&7673'#7632#"##"1E88!!!!88EE88!!!!88EZp KTUZ  e!!88EE88!!!!88EE88!!\cc ww "',16;@EJO'7'7'7''7'7''77'77'77'7'77'7/77'7'?'_7JNa."7A %  " <& )#.'UF7(T*3)=5P"3CBY,".',)$#$X##TJ " !- & %; / 1@ )*r@ D96_ l--_W OVB?PY577'&'&'6767'&'&'&'&'&'&'&/?67654'&'5'&'67D66DT%;&%'&;8  &,$,@**   >t`5 #(6 ,+>>,+ A  1 &*4,,B3'  711!67676'73&'&'&'X+AA98x3%&/ 0+11'(`FEPP623A&%3418N"#22@mST22%'67&'&'677%&'1&'6767//FG////G<-7$$$$76$$$$6+8H/00/HH/0%v$%77%%%%77%$V7&71676'&'?&'&'&'01'&'7767676'&'&'&'&56766@;CEVV?;C *@?@A0' )  (  8FUV?<BEVV?2) '  *(   !E%'&716/&0?6'7'&'&?176/&1/&?6?6':DT^- +29_\-,ARJ"}*'7\H$.K]1&'&54763231&'&/5676767&'1&#"#"'&'&'676?&'1&#"67674 1m!:aG 01   &!  !0 O!k'f0  1  !!  @ %"3'&'1&'1&'&'&'&567676'"#&'&76'"'&'&'&'&03207676567276'4'&'&'&'&'&5&'&7676767676767633632765672327&'&'&'&'&7676767676747676767676767676301667676545&'&'2 6          N          )                   :6767672237??7'7''''/'7'?'8P  C]8Y8}Rsf|1.+l &  ,ND% '$J .3E6 {l&Jc&Tz8a %   E`'Q`lt%1"'236767&'%671672&#&'167&'&'&'672354'&##&'&5017#"'5#675#35367&'#3753#35367&'#3753#;2=#+"=4+323;2=#+"=35#53354+373535#37353735#'#DEg&" gEE2.EEg "%gED-2<      y "'  9'  9 & ?'4;1! $$6-!#6$$!!2!-(     J7777VH++H+" >=    @L5!"3!27654'&#'1&'33675&'##6767 | :**^DD^&%66%&""9  | ""9D6""""69** '575'7/7XeWeUYVX@-uKK:5:O17/5 $(,048?CGKOVZ^gpz~67#'5#345#3&/#3&/#35#35#3#3#35#3#3367#735#35#535#535367!35#35#!67!736767#73014=#535#Ee  s  %  R  r=e111'&'&'&?6?676767674567036=4360"'1"27676'&'45&'"'"'076'&303'&'&'&'&'&'&'&767676'   1      > !!  1    ; 3L%1#"'&'&'6767632!1327676'6'&'&#""'&=6'273221+&'&+654'&54?'77;1654/&547416167;5&'73'&'73'&'7;27676=4'27+'&5123'7&'&547#&'&547&'&547 99?@89  99?@98 734::4334::43  Q       fc WB77! "77AA77" "77A<2332<<2332**   $$5  0,('H&%  *&,/#"39&%    !    8e"..((4   8`=>.   !%&T/  65QQ!+ !%=! %$Bb 9        :!"3!27654'&##"'&'&'&#"'67676767676'&6 f @B.  %  C2  f /RV45 8a. N@`,X7&'1&7'&'&73067610176767301#!&'1&7101'&'&730676#767673#'1101#&'&/0'&'101#&76701747673i 8! $ $ !8 # 8! $ % !7 # 8! % % 8 $` p KK p  p KK p  p KK p Xm1716767&'&#1'&'&'&'05&'&'67670563230167676762!!6767&'&'"'7&567678%% 2$8&&''6N    b  `  )#T--CA/.-.CE%&8& 0 %%87&'        ` R%+C-,..BC-,0B5/7''7'/#''773?7'77'?"'1&'67632#''#/'7''7/5?'77'7?3/2767;?3?/        wH/7'6'' * $%7&66'5%$ *  $-&           -( #&4(66'2#&)'$4'4. '-$ "+kw11676767&'&'&'47&'&'"'7#6765&'"#"''676'4'"#"#6767&1"#'76'4'E88!!!!88EE88!!!!88Ek9""!CD#'    "0R  10;Y> PQD3!!88EE88!!!!88EE88!!1*55C » G_.9 ))J/! 0;>32!Df}%1'&'&'&547676763'&'1&'1&'&'&7676767&'1&'"767676767654'%2113276762&'&7r!;3*    27 "$$ , 1>=>!)   !  %%. !!! & 33>?<#")881!     7#7&'&5676;#5##&735W@`"+*?R7..#%""9P)( ?=. 533#o7R^4y3@*<C<JRny#4767"1&'&'3676736767676501&'&'676703&'35367654'&'#3#5673354'&#"367237&'6?#716?##'#'"'23u            d*I#))#&5 " f 5#$3!      %B&%Ma  &  J ss @%._n%#536757!&'&'6767!276509&'1&'476721&'&#"&'&'6763236765017&'1&+3532767&'"3672671357##'#'"#23?.0     @  <       3 Z& %  f$ %7?    `  v  K 6 /  DQQc"hcAN`7100&'&7676741672&'&#3325276767676'&'&'1&'&767677167676'&' !  &)$)#"!! #$! B     i$""5)++&'%%()#(44-,/.!(55.$%%/.,;fox#8<@"/&3676?2=4/&=4;2#/&'56?6#74'&'&5&76;2165&#3#"54+"32?&'67#&'67#&54+#536#01201'4#32'%4/&+"?6=4?63276=%/&=4?6756&1'"#"3?0=36=4/&?6/&=4?6?"32172=4#'0#54/&?6745'13#'3<::9 :::/ 7    >=$%P===%-===%>$M    ==>=KM !B!!B  BB B!!B!B  2      $$_,  ,_h$$G$ ^   $$G##  ,G##G##|3e7671676'&'&7676'&'&'&'&'&'&'45717676'&7676767676'&'&'&<NxN())Tj 2  QQ/9 / 86I.Z%471656#36'#3'4'&5&7675&'&7&'1&'4327&'""'36765&'&''5#&735#745654'5654'45&367''017&'1&'4327&'""'36765&'&/1327'#'305674'&'63#e**j$     K*)  $      "!_!9 0 "" 0        ;0  0 "" ";      E'' $ !B<Tk%?"&'&'4'&767616'&'"&'&5&767654'&'1105019&7676765016'&"654'0#&14#&'&'&54767676'&'&01727676'&'&#767674'05016767677676761"67670769676767101017676765&'45676765012767674'6767676'&'1'&767676767616307711#&'&767676'47012767670017&767.      :K44 $#3 *0 89E)'($              ')  ,S  o V  EW           #*)++ "      $         .!\  5  #'##373 eM80[5sr6YY ! 73'77#'##L&&& N1n0[[JbbBB$ X(  Ef7'##7#'3''373753#7#5#53##"'&'&'&5476767276323#4'&'&'&#"32767676757656574101&''33'373""01''67&'53274'5#35335#51#35335#5276?#35335#5727&'5767&/7#'#k4>>-'q>-->Q)d)          _YAA >? @@Y   P   &&   P   **c++g``ttt 3       a  ))               X++((r-=Rf|%"101#&54701454'&##456'&#'&5276765&'&001676'4'&676'&'&101"&56567656'&01'67674'"01'676'&#&1"""'&10127676'&&"#'&1376?7676760133767676701376767677676101765"76?37670107656716"101%4716716676701#1&'0547620127051476012#01                   +       T        %%!       #    #      :  |     p 7#37#33#33#35B22e33e33d22}CLL S(  L[7&'7'%67165&#"35#35&'1&&3012767676'45456'&'1#"'&=66'&'1&&&'015&&35&'&'55476754'&'532767676'45456'&'%&'&761#"'&=66&98'-  ::J::    'k9-) *: "       "*`  s  xnn1     H)    *  'J 1 ^ 6    1?()  x 3731'#7Y>>Y,-DqottXX <D $Gai{675#"'535#'#356365&77425&#"#&'7767&'&'&'4'1&'3675#'&'365'671632''#?2767&'&#&/63235#+   ""Y&,  \,,S !  VX  ',   ,,/  "?& g ) H % D  *   (    "#"( !  A 3 *'{B  ! u0625&#&'&'32767&'&'&'&'&'/!&%"GGX44 !$*)%KQZ76"!!%! **L/   &'M4 !7471676767'01&'&'&'7&1676765&'&622 )(& ! {  ()7r (8877%%'&=32>>%.#..##*)+ q/fa76767676"+"#&'&'&'&'4'"5414'&+&0236745415767656'&'&#&#"#01&762'&'&5454545457"9""#76367600#01&'&76743323274=4'&'&'"#&#"#'&'&76762&'&'&323672767676767656='&'&'&'&#"#"#&#"#&376767656#"#"#"01&5 =B /0TO /5%&)'QA  "  /       #       $#"{ !  :  I* *  j     {65HI  YZd@3HK{74514=436'&'&576725454545454#&#&'&%!&'&'6767!#&#"#&37676767674#"#"#"04501&'&'&'&#"#"76743323254=4'&'&'"#&+0#0#76367621010#&'&'3232745015203767656'&'"'"+0#"41014'45&+&&'&'&'&'&'&32321213030367676701676'7&'&'&32376201367436767670145}  (                   BG((83 6D # ,' 2  $       `  &'?> T f  Y  c<  0    8 %''78]]z\\$!!6767&'&'373#5'#53#G`>oQB`XvGWttrr$).711676767&'&'&'7#5;#5#533#5""9:GH9:"""":9HG:9""++*G:9""""9:GG99""""99Gj++U++U++L75%!&'&'6767!4'1&'&'&'&'"#"#0123236767676765__   ` *!""!!""!66lz  `   !!###!@fYZY @ZY Yw 2e4+";25'&#"54#";2="1&7670132=4'&/&7676754#&#"01#&'&3270327676'%&1132=36767&'&'"'&56767'"1327654'&#))_$))"" : '  5!%)!//   " Q  {#n  -  "  )Y/.  h5EVs211&'&'&'6767635"113276767&'&'&#1'1"#723637232767676'&+73232#67676'&"##71'1"#723637232767676'&+@WDD(''(DDWWDD(''(DDWYHI*++*IHYYHI*++*IHYf y%  G!%  %%! y%  G!W"#((#""#((#"&&//&&&&//&&Gl,,& `jGl, /1G#&'&'&547676765&'&'&'27&'&'97"1767654'&#:+$%%$+I-- !77DE77!  !77E##N )%&)*&%33H-4E77!  !77ED77!   )@(5BO\iv#"&'&+";27676;27675&'&#+"=4;25#&=4;25#&=4;2+"=4735+"=4;25#&=4;2% %  ZK  KZ  $$  &&  ==z==|"=^q%67165101#"'&7676301&767'&'1&'1&7676'709"11127676'&'&'&767676'&6761'&'&7676&7676/117&''&767#1"'01767672'1'&7677&'$"! "%%>=3V -2  %s   4>    ./;;9:    #gRQ''%005 =?@-*066'' 3+,)76?   &)*! $   >   )  a     Y11&6'0167676212'&&'&74376767626766767676767013  G559 ,144X5 =56051717335 !&#   $ `   h,+  %$*/4F%##5#5476;2'432#"5711&'&'&'67676716767&'&';Mff#""##G88 #"88BD88"! 88HZ889:VQ<;99Wfxxf?##""{!!78FJ87! 88FC88""-;;RU:976]W99Bf11&'&'&'67676767676701'#5"'7374'"'&'&'&'7&1676353&654'&#F88! #"88BD88"! 88H :9V=''])"" -,`/0-_" " ;;U !78GJ87!!88EC88""$U:9) &&" +=+ ''!  9V:<FJl11676767&'&'&'&'1&'47#3#3367'#"'&'31'#31735#'6767&''6767621'I87 !!88EB88#" !78GV9: A ##,*  ['&;MG '<$Q $# W99""88CE88!!78JF88! =9:U# 2. 8  / ) %.99W<9>T11676767&'&'&'&'1&'47#3#3353517#5775#7#/#'6767'I87 !!88EB88#" 88GV9: :@@=AQ&&9X:7&?B+(BR+*DW99e""88CE88!!78JF88! =9:U 8' '88$$3t` V3$#99W -,1611&'&'&'67676716767&'&'#53#53G88 #"88BD88"! 88HZ889:VQ<;99W^!!78FJ87! 88FC88""-;;RU:976]W99++P**Ea11676767&'&'&'&'1&'1&732767'&'&517'6767&'&#'6767"101E88!!!!88EE88!!!!88EG23O$  K,4..:(GK,,5V98!!88EE88!!!!88EE88!!>''==B#1 ,! /d*1!*89V,8DPX11676767&'&'&'&'1&'6767#3767&'&#53036'#353676'4##53H88 !"88DB88"# 88GV:988ZW99;4 221!!78FJ87! 88FC88""-;;RU:976]W99)2((9./(,11,11&'&'&'67676716767&'&'6176714747276;##&/'41'&''05'&'"/5'0145''&/"#53767670167476327014767G88 #"88BD88"! 88HZ889:VQ<;99W   :3       4- !!78FJ87! 88FC88""-;;RU:976]W995l<   :@ a , ]  7H  ?_  W  Y9 Lb  E\Pb,11&'&'&'67676716767&'&''&#"'&"'&#"'&#"'&#"'&'&#32732?32?32?32?32??35##&=#&'6;54732G88 #"88BD88"! 88HZ889:VQ<;99Wk      +3      3;N!!78FJ87! 88FC88""-;;RU:976]W99 ] 3E  -^ TC P9 Z I +N FI QH :@ S,,AJO11&'&'&'67676716767&'&'#&'5#&'56733356735#7#35G88 #"88BD88"! 88HZ889:VQ<;99We  6  6) 7lll!!78FJ87! 88FC88""-;;RU:976]W99  6  6se (X,>JV11&'&'&'67676716767&'&'1676'6'&'2&5&767"'&?G88 #"88BD88"! 88HZ889:VQ<;99W<<<< 6) =!!78FJ87! 88FC88""-;;RU:976]W99<,,44,,,,44,,6d. j@@>P[u}'#&"3676"#"65&'&#&5#3653676773&=4'37&'1&547677&'&5663354'&#2767#'&'7#676^77% ,"(A !  %'=$ct  3-d#*+!__mm "# 'P   B t6|/. '$     `u%67&'7&'1&'&'6'&'&&767'&#&#&#"#50177676'&'76767674707765&'%''"'&?67601//&?''&'&?&'&'&567667&'p$      -   .-AA= #  #"Rh  $011+!  >^];:D 8""  7,++,7I45 >= Kr#$)8&% EK *+ (&7I>fr!!'1&'&'"'23"#"#"#"#527276=4'&'"'576327"'1&=476314'&'"67#53#"'56301@           t  $&@..m  %   -E""-5Y01016767&'&'67636/7676'&'&'&27676'&''7676/76'&'&767676/&'&'05&'&7654'&'&21#'1..'08:\23 KK_=;&$=JMRSNJ=7$  $7=J NSRM!!88EE88!!!!88EE88!! 66CC66  66CC66 12==2112==21P;7$ $7>JMRRMJ>6# ' '?5'?7'?/`$##T33))P#$$T**33,,+y::--/,,+Z--:: 5<Dmt{&'1&'1&'676767"1132767654'&'&#7&'#1675'#3735677'6735#&'7'&'5#3&'!367'7&'#!67#5&'367'1E88!!!!88EE88!!!!88EA4444AA4444A.%,989,$/  ;;RR;;  ;;RR;; ""*"",9/$$/9,8!!88EE88!!!!88EE88!!44AA4444AA44" !3R;;   ;;RR;;  ;;R%.9,,9/$9,$//$,9z""4K6754767632&'&'5#''2676767363&''&7&''&7&'1"#&6767010132701016767675&'&"#&'&'51&'1&'&'6767"1327654'&#1#"'&54767"0163675676726501&#01"10101#"'010101"1&'&'         $@$        #(** *# #* **(#         s   ::RR::   )&""&)    !    !`         C    %6716'1&#6'&'&'&###015&''7'7&'&'&=5'75"'&'&'&7"'&'&767&'&'&7"'&'36767676'101- &# ????" #& .--LM--J>55 !+''@32##!!<++ 20 7./HG8999GG0.7 0$2 ++< !##23@&'+! 55>-$$$$-&5145656767454'454'4'&745&5476767676'01'&5&'&7674'&'&1"'&74767656767475'&'&/74545/05&'&54'4'"'&'&'41&?'&'&'&5&76767676676'4'45&5&#&'&'&'&'"1&'&'&/5'7676326767&#&'&76163276367633?3272?#&376767676767674767676#74'4'4'4'&'&5&76#'&'&'4'4'&'&54'&5476#4117'&'&767716'"'&'671'               GW A 4 "! =,+@         <                          '-      &    5) 345(! # [O723123222333"####"'"'"#"'"#&'&'&'&'4#&'&'&'&'&'01&545&545&547454745474747676747676767676723632363236323"032323727272367236767676767676767676'4'45&'&'&'&'&'"#&#&6710"#&'&'&'&'&5&'4'&'&'4'4'&767676?1230#"'454545654545454545454545676767676765&'&'&'&'"'&'672330213676745054545454545456545454545454545454545450103747416767676323013236767676767'&'&'&#&'301"1"#"#"'&'&'&'&#&'676767'&'&'&'&'01&'&'2232323232721636016567456767654745656745454545454545&5&'&'&'&'"#0'4741676767096110#&5&'454'"#0#"#"#"#"#014163252767036345&#"1&'&#&#�270125476?2723323001""#001220001"#"#"#"#"1"#0#450=454565167222#"'&'&'&'&'&'05&'&'45&545&54765476767%1310#&'"'�'&' ( +    4  +   +   (!  '/  i             e      "          l      '  2#  ,A  &   -<  #  1                ; 7778               &&-           t}67162&6727676767676'450#&'7676767677676'4'45676''&'&'&'567676767#`#+*-,*$%B.5"*/'+"2 )L,15/.!Q"3D'7777'''6'777&#"''2#"'&54763"327654'&#F;FF;Fw [[ wF;FF;Fw [ [ w2&$$&22&$$&2####w [[ wF;FF;Fw [[ wF;FF;Fd$&22&$$&22&$$#### 5DR\fpz11676767&'&'&'&'1&'1&'6767675##33535#53##5#'353#/7'7'7'7'7'7'7/11676767&'&'&'##5#'353#'1##6767&'1&'4733535#535/7'7E88!!!!88EE88!!!!88EB54  45BB54  45B›%v0TTIS|O  4   t  ?4334??4334?_T4u(ƒ .''Ǟ76H[<< ,s@TS0<<[E  !!88EE88!!!!88EE88!! 55AB5555BA55 I/R./#-P8E       Y  33@?3333?@3332R3RA()U<<[ 8?39P[<<  7676767674767&7'''77656'&'6'4'&'&'&'&56767676'7''7//7/&'&'676'77777''&7'6767577?'677&'6705&'7&#&'65'16767&'7&''67&'0547'6367&571&'&'67  4      :l,! ,k:        4   O           $$%#- "&"!#  $%/"#>']<&1xx1&<]'>##/%$  #!"&" -#%$$  _  2  J$.  2  J$.%Q7'&76&7676732323"'&'6'&'&73450567676767624'&'&6716'&'&&'&#23632767676'767165#'"'&'77676'&'&#L $ #$-J..l  ( "**81  --F,"# s) "++9   N 8++" *G   ./K,#"!"  ) "#$+,,C-## %    +5?eFm%66'&0976'&767201760156'6'1&?1674'09'&76'&#"276767674'2#%4'1&51&'676'&'&'"'&74'&'67&'&0'&'&#&376767654'&#&'1&'&76'&'&'&76767601""1"'6367676'&'&'&767654'&'&'&76763227256763"'4#&7676'&'&'7676/672100156767201003&0'05K 6   6  ,  !- ,,)* AB@A  &-- A  )##  '#   $$!  5$$    O    ! ..-. CA  0  r4   4Qe                ;775'511676767&'&'&''5''5''575757!!!E88!!!!88EE88!!!!88E!"!";<<;B!!B"!!88EE88!!!!88EE88!!bA!!AA!!AW;X;LL;X;Wr%77&'6767&'7"1'6767&'&'&'1&'6767O'(-22LK2323K9%%%%98%&&%8$L1221LK12%&78&%%&78&%;%1'&'&'&7676771&'&'&'&'67677'135" "."-,CC,,)(=mmR6589Uҭ -('#")C,,,,C?+,(??&99SV9:&E#&'&'&'676767#&#"74'&'&#0101017276'BRE88!!!!88E_Gc=<((,4#c&#"&(! .0-1!!88EE88!!?'(L6"!  6;3Sh7?63232717654'&#"7&#"'1&1132?6'76'&#"'1&54717&#"1327'?632176'&#"1w('('w('X('iw''hWw''5!3;CRa6/&'567"#1"#353676'&''676'&'"#"#3533'1#5'1#5711676'&'11&'&767k     *C " ## #l  mm  \fe#f""T!&~5]"1&'&&&'&#767767676767654'&'&/#&/&5476337673767 & <= 'A $# (' "$ A ,- -,$~*  *! 4&;, 55 ,A(3 %s#!uu!# " C<E^110147676721'&#"'&'&2327676767676763237&0327676'5157&#"01'&'&'&'&#"0172767676760137'  s# (& #B    Bs  S  SS S<  #m00m  %'      U|      |{      {411676767&'&'&'1&'&'&7667676E88!!!!88EE88!!!!88E''44''  **  !!88EE88!!!!88EE88!!22  ((  3&'1&'1&'1&'6767676767654'&'&'1&56345474'45#'"#"#745656'5"'4767#3454'&32322'&!! ! '''' ! !!&'P P@  $$--$$  $$--$$ 2/.X CG&' 0'76'&+"4+";2=7;270E33nC62m!(!!67654'&'#5'#5373'3533R  $  >=>>>=>=\=>=   . xMMxMMlii $)#'#735737537#75'33#_lVb(m{WaCHU4N4POIH(6SPߌHH@\?q?235';er5F=f5{/QXg|3735##'#53'#65345&'#67"03276765673#013767767476'05&'&'6736'&'1%67167&'&'&11017&'&'1"1"#1"#1"152767676'&#76363#3'"'"'136=367651*1za Iv43X  4 B@  6 =      = +*67$  &l  -z,^)! ,  K2$A     ;  Ge d G ,I AQ!!6767&'&'&'&'&7676765#535#53533#35&'&'16767&'z4#--/&&04>7H \nn3mmX &'$$ +'E(2"33#  zXMPep%&'&'7676'&'&'&&5&545&1&'&'&'&'&'6767&7'041&'&'&#&#707367676107677&'&/721'7'676767&527216&"17&'1#&'76'&'6'31#1&'76?76767&'2301235'67676767635'&"#&#233373675326762&''&'"#1012&'&'&'&'&'&'7&7'"4''671#11&'&'&'&'''&'&'"17'1&'101&'&'76703727'7&'&'37'6367277#00''#''&5&'&''"5&'7''&/676767&'&'&'6767667415'367636776'7&'&5&76757676?5'37'732"'&'"#''767276767&'&17&76'&'75&701701&'&476"/71651&7&#"7#2&'&#11'676'74'&&#012767&'&'767676"/45671901'&?'&0167017#&763'    !#   5-  !  .B\^?? Z     (      '         -       -  ;,, (@       s!  !/.,-##      5/    )          -(  D      *            ,   &  !)*/<9:^              % $          &%)          ,'         T     g $ /  23       8     4jN-ex111#&'&'&'&545454545476767676710101'0'&'&'67676762327013=014#"#'&'&"#&303"#"#&54323274565456&#"#&7236012=4720;&'21"70165"'4'43676767&'&'1&5&'&'&''"#6727201'&'6'&'"3'&'&7672'6567654#"#"'&567433232'6545456#&5676432327'613"741&'&767674721'&'&767#"'63545456'"763207254105456#&7360#01"30013"#"#'&'&7%1#&#"30#"#&76'&'4#"#172#&7276767676343270325415454#"#"7010323"3'6&72323236'6&#"7012370160'454'"#&7765656"#"301&76156'&01'1'4'&7674560101#"'&547601"1&03765476'01#&703274545&&#&72323'7121"#&721545&#"#&70323230#"014767676767012#"#"#"010'&'&'&7476#'32376'&'&#&71'&'4745765&'01'1654'376'&'&' *+  "!(()32%% %*"! aa      !    ()  XX W   ++4           P    h        &  % &  '&Z !!) [ j    P }~""./'' 87      0   FG   32&% "JK           W     A  %n   j   :! .     hZ%/9p 6Xes3%67&'&'&'&701&47456'1007201&5437&10127&#'6''&'&'&#"#&54'&#"#&'&77'7'12632016&'#16701#47016367654'&#56'%&747&7654'"31667"362767"#&7017"#66654#4'&'&'&'&'&'2#"''&#"1'2725#6716'101&'&+#23276765416'&/2316'"#52363'"#757#53'1#37#711676'&'&'1&7167'7#1'7#3/"37&7"&701&6763&'&"#"#&'0123161'"#1&'&'#3'51357'"#1"#1&'010676"01035236'011676'6'&':  4    '  !"-  '  8    )   e%4IQ<& &' %[,*-,*#    '         4N  L6!  m    ' NLN   B&&B '    - *  M0  U `      !/@L7&+3276=4'%!"3!2767&'&#1#537#3#3#&'5673'1&/373x  h   /0 e5 5>?h  & !&h F  h GX&&}srr3oty7'25107167676&'&'&&'&'1'&'&'&'676776'&'&'41&7676761216767 7'ߨ:              C:      <       e} -<H~2VtLU]~7176'&097676'&'&1676'3276565'113676701767&'6763&'0167&'6776'0161&'&'&''1&'&7601?'7'#6'&'&56701&3676730#&17"7"156'&'4'1"#'16767613&#70170915&/31#16'4'&'&'&'127671167273'&'523671301717&'&'4'36721#6136307311"#&11276737#01"'&'&76767676'&'7216017&#"#&5&'&1711'&76760752476761&01&'&'76'014767&#&76'"'1"#57454&14#ۧ=3010'631276'"17&'&'701#&'&7&#&'0107376'&76"51&'11'?671&1«17'05654'&"'&'017'&'&'&72017&'1&'1&'"7'67676577'7'276'&'&'&17&5&'&'7'&'&'&"101'6767'77'777'774'&'7'676721'6176762'%2701&'&17'130167677654'&'&'6'"3767&176#23134547 Q/)11110/), 2fJK**09:!*==I=""    ))??Kc       7  -       %         *       #)(A( !U[! =    "*$ )!  ( _ ;  "  %6;<h    ,  -[DC&&!"GGq =f L &+    !"$%  12[6$%    7-, Gu     ,       X  s   Y   O     ,       P+% & D 3X +^%  ;   * $  +  =A= !!Jr '&| !!327 ,54'&  + ) %7# 373X 8 ̕ v!'_bi`= :Wnv +3=7Wak?'7#'#7'7#'##"'=46;2'45&1&717456##532=4+532=4+";2=4#'675&#";2=3;2/'#53274'&#&;276573;2/7532=4+";;257#53252=4#4+53216514'0+"#"2;216154'0#'#";2=4#'=466=4+"#02;216153;2/#532#7#0#02130361532=4#+532'#7'?&'6'&'&67601&'&'&767&''&'0#&'&7367676'&'676'%671636&67&'05&'&5471#'&'7676767017&'"'67&'01'&'&'#&'670#'#&7670167&'01676767667&'01167670#'#&1'=05&#&1;2=0'&'#7'7'7'7'#53270=41&+53234=05"+"1100;216154'0#'#7'7#=]Q  * O  P] .   V   $$(( *+7/0    6 ! 2##0( B600    r]++1//+* 1++2//$  $$ 88  $$vj  <  89 < 2!"s  &9 $ ( < ;& ; 66??((4  $   ?  !?   F;(('&  !"= K"" $$& } -&  !"=K!" #$,%A" JA">  ,%(%#01 %&" &r2  244U@d7!'7&'#705676/+;X) stGKg#@G-/7&3276'&'7111;276'&'&'&'&'&'&#" } 2\4$  #"$# >KK8ULLEFA//FFGG12%67167167'&547676767'&'&'01'&7476765'&'&'&''&'&''&'&'&'01'&'&'2127676760134'&'&563010'&'&76763         `           %-5:>FJNRZb55#73753''#553?35''#37%735'7#!#3753'3''#35#7'3'7##5'#'75#'3"LvM- , -8 88 Ola8 8!Z[ P=NZ[M -mL!=[ZNlM=L-Lm- ,7o[Z!P^MlMl 8 -87, -a8- ,7PZ[[ZlL L [Z M =Ll=M-g 7aZ[ O$I77016767050176'&'&'&6/&1'&'&'&01017676767 j +*Q2 tHI)* j **P3 tII)*$ B 4(  r6 ,-'8 A 4 (  r 6 ,,(  %*BGQV[`is737#'37#7"514710167676+36767#%7#3#3?101307676'&'#3237#!37#01;5#735#35#'#7#37#;7#;;RW3)dD=(>(>u_[o -vpINC;; _ZMI VQ:(':!^ 7 55 9 N55<q7111#&'&'&'47676767&'&'&'4767672254565456563232367676767"&'&'&'&'  !!!!  !  ]   !"   `<CR_gt%7#'#535##&&'&5#535#353767#'&'3673373'%631#&'1&7167#53#3#3'5355##7'373#'J5>w8  7''!!!!!!!!V:999WB55f  f55B---- |`1&'&'01&"76'&'&#32767&'&"#"'&'1676'&'&763&7673&767667676765254##01&'&'01'&'7670567&'&'&'&'�6763'&'7676'&'&5147 '(0'67K 2E      9.%"1 1@   < '  Y  , / '9    !'!!3  )# H   ,>N`t11676767&'&'&'6716'&'&7"'1&547632#6514'67&''1&'&76767&101'7767'&'1&'6217E88!!!!88EE88!!!!88E5    *''*   $-'&.#&'-$$.!!88EE88!!!!88EE88!!]     2(--(2  F (05#i0) #5{%4BPq7#1"'5#7675#'6767675&'&1&'&=67635767&'&56#&'01711"'7674'&'&'6725&g ! !c21UT11;EEAA0f)*WX*)NZZS    O  hg$ iJ&%!!&%J >!"$$"!>D lE70ve- W      %`9Z%6'1&#0163276327671676#'3&'&"#676767'11210!    pE !)43GGp&*40&`34$B2w10  ))<<<<((D  ]0     @e%1&'&763&'&'"'&76701#'&'&7&767&'&76016767601676476767711&'&'&'676767&'04'&'676'&'&'&&'&'0101&#"17276767676767676')       #  f!!88EE88!!!!88EE88!!O            g        $   YE88!!!!88EE88!!!!88EK!%       >i7&'&76'1&'676'&#'&76767676767676327&'1&'1&1767701676'4'&'&5&% 2"* ,0%'   !! /? !42', 2K/$,,$/I A-,),85' && 07DC1 <;  i455&% (- %&5 Ybkt%671676'&'676'&'&'&'&'1&014767'7767501&'&'677676'&'6'67'&?&'67#&'6767'6767012'&'&'014767037&'&56&'&2&'&'1&&6766&#767631#&'547  "  %9  ;"A   '0" ""Y ,N!,3    .' '## 3E0   8;;*+(-A   !# 4! ' 6( * " 1)- j8$ 8  &. - ,?5OJ 9--    $,9'   9 -95JR%&'#36?&'1&76'&'!!6765&767675&'#532#'#367&'N*3+2 '' H '' bb! ' 2446!G$ 0000mO'&%2%/&?6?65'&/&?6'%?6/&////hCaaCCCCbbr[[[[*7!"35!#32767&'&#134'3&'&'3&'&'&' +  U@.+**@+ 45BR66 @@+ * @U*-?+*A55 +66R}1#1"1"#"#"170&71673276516'&'"#&'&''&'"'&'&'&'67232767676545&760122'01"'&'776'&'&y   mO        #"# "  ! A   Q <o         %   "=66""8 <f16767676716765676567675&'&'&'"#"#1"''767676'&''&'#"'"'61667601'&'&5''&7676767173272375&'&'H  1**3788   +JJJI*    ") ,, "   **)  "]    :988  98:9 6##/ -  - /##0   .X1r 7#4763670#1&17216765&'&010175&#"%1'''&''&767&7676767264'1&'101&'&'632707674'&013#"'01&101657103076720&#&767016=016'&'705"1#0#112130305709&'&2765'4#"#&'&741325054'4'67&'&'"1&#&'4720767654'&013"'4#130174+47676212576#01&"#";"1'4767676767325094'1&'01676'7&1"50'01#0#1011307015&760125676''&#''&5&76327416741&010127657&'1&#72765'4#"#&'&741325056/"13&   10B#$/+,*+=##2 /<&!0 0,,        /  8 %$     B   6.   /  6   % D(( 01 %$33!)('0" $$2  + "O25  :   86  '  `2N7#"'&'&547676;#32+&'&7673654'673276=4'&+654'3r  r   T* Av""    x3x""11676767&'&'&'&'4767&'&#76'&56''&'67633674167676703&'&'&'&'&7676'&'&767667676016E88!!!!88EE88!!!!88E   '  '      $   !!88EE88!!!!88EE88!! +  *%&!  /J     4 -S]g%1"'&'"#"'#&'&7&'&7672767676767671676'&'&'622323676'6312#"'36312#"'&7161367676&'&' >  9+ =43%%=$1G      *-JS`k&'&15&'&#3721676711227676/9#&'54/&76;2767275&'#9'367571/5?> gg , n54  %% n7s&Rs T3x'!XDgg0<aa[..\ FF  =PC4+RB4"H TT7%'&#"66'&7'#"'&7675&'&7'32?654' (32  /  2 )42.z  {  3   9HLP71#537!6'&747;4'&'"'01&7#32?4'1&+35367677#7#3  @1   0~ 4!100*@      &8 / ] >KZcr}%156727654'&'&'&3&'&5676323&'&'6767'"'67676'&51&7167'2&'6711&'&547&'67#67&'34QI/.$$#$./Je779:kV77>=auAAAAua=>?I+)R $ $+*++H$ # I? 5*4  vF&&1J/.# !./J1:9hk::&'HS--AAuuAA--SDI  b##3IC&'    80:KWe11676767&'&'&'32&#"73#'#73#736767&'&'733%#327676'#367676'&"# N?@%%%%@?NN?@%%%%@?NUM/ ![ $ % ! \5h     32??2332??23#" :Z##Z%= R$9c0  _9 (<HT37373'#'3#376767&'&'&#56'0176'&'&#3276767&'&'4101#57516' ,-. -)*00 4.3  PPMMvv0.f !" J !   m &*3?#3676'6'&/11676767&'&'&'#53'&'67#53'./2+'E88!!!!88EE88!!!!88EQQQ94 !!88EE88!!!!88EE88!! '*F454'&'&'&'&#"+"#"#32;2327676767654=45""##'&'367&'&'&'&'&53676'&''      F&%)B'+((+## #)))@/. : $     = !''$   ,&&?!"%''"$999%c11676767&'&'&''#'&'&'&7476745676310;2767654'&/414?32E88!!!!88EE88!!!!87F 77      !!87FE88!!!!87FE88!!)  )  )) #2s ,G  4Y :  F : d/ 4 X . * Font Awesome 6 BrandsVersion 772.01953125 (Font Awesome version: 6.4.2)The web's most popular icon set and toolkit.FontAwesome6Brands-RegularFont Awesome 6 Brands RegularCopyright (c) Font Awesomehttps://fontawesome.comRegularFont Awesome 6 Brands Regular-6.4.2Font Awesome 6 BrandsVersion 772.01953125 (Font Awesome version: 6.4.2)The web's most popular icon set and toolkit.FontAwesome6Brands-RegularFont Awesome 6 Brands RegularCopyright (c) Font Awesomehttps://fontawesome.comRegularFont Awesome 6 Brands Regular-6.4.2       "# !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ exclamationhashtag dollar-sign0123456789 less-thanequals greater-thanabcdefghijklmnopqrstuvwxyzfirefox-browserideal microblogsquare-pied-piperunity dailymotionsquare-instagrammixershopifydeezer edge-legacy google-payrusttiktokunsplash cloudflareguildedhive42-groupinstalodoctopus-deployperbyte unchartedwatchman-monitoringwodunotdefwirsindhandwerkbotscmplidbilibiligolangpixsitroxhashnodemetapadletnfc-directional nfc-symbol screenpal space-awesomesquare-font-awesome square-gitlabodyseestubberdebianthreadssquare-threadssquare-x-twitter x-twittersquare-twittersquare-facebooklinkedin square-githubtwitterfacebookgithub pinterestsquare-pinterestsquare-google-plus google-plus-g linkedin-in github-altmaxcdnhtml5css3btcyoutubexing square-xingdropboxstack-overflow instagramflickradn bitbuckettumblr square-tumblrapplewindowsandroidlinuxdribbbleskype foursquaretrellogratipayvkweiborenren pagelinesstack-exchange square-vimeoslack wordpressopenidyahoogooglereddit square-redditstumbleupon-circle stumbleupon deliciousdigg pied-piper-pppied-piper-altdrupaljoomlabehancesquare-behancesteam square-steamspotify deviantart soundcloudvinecodepenjsfiddlerebelempire square-gitgit hacker-news tencent-weiboqqweixin slidesharetwitchyelppaypal google-walletcc-visa cc-mastercard cc-discovercc-amex cc-paypal cc-stripelastfm square-lastfmioxhost angellist buyselladsconnectdevelopdashcubeforumbeeleanpubsellsy shirtsinbulk simplybuiltskyatlas pinterest-pwhatsappviacoinmedium y-combinator optin-monsteropencart expeditedsslcc-jcbcc-diners-clubcreative-commonsgg gg-circle odnoklassnikisquare-odnoklassniki get-pocket wikipedia-wsafarichromefirefoxoperainternet-explorercontao500pxamazonhouzzvimeo-v black-tie fonticons reddit-alienedgecodiepiemodx fort-awesomeusb product-huntmixcloudscribd bluetooth bluetooth-bgitlab wpbeginnerwpformsenviraglideglide-gviadeo square-viadeosnapchatsquare-snapchat pied-piper first-orderyoast themeisle google-plus font-awesomelinodequorafree-code-camptelegrambandcampgravetsyimdbravelrysellcast superpowers wpexplorermeetupsquare-font-awesome-strokeaccessible-iconaccusoftadversalaffiliatethemealgoliaamilia angrycreative app-store app-store-iosapper asymmetrikaudibleavianexaws bimobjectbitcoinbity blackberryblogger blogger-bburomobelexperte centercode cloudscale cloudsmith cloudversifycpanelcss3-alt cuttlefishd-and-d deploydogdeskpro digital-oceandiscord discoursedochubdocker draft2digitalsquare-dribbbledyalog earlybirdserlang facebook-ffacebook-messenger firstdraft fonticons-fifort-awesome-altfreebsd gitkrakengofore goodreads goodreads-g google-drive google-playgripfiregruntgulpsquare-hacker-news hire-a-helperhotjarhubspotitunes itunes-notejenkinsjogetjs square-jskeycdn kickstarter kickstarter-klaravellinelyftmagentomedappsmedrt microsoftmixmizunimoneronapsternode-jsnpmns8 nutritionixpage4palfedpatreon periscope phabricatorphoenix-framework playstationpushedpython red-riverwpressrreplyd resolving rocketchatrockrmsschlix searchengin servicestacksistrixspeakap staylinked steam-symbol sticker-mule studiovinarisuppleuberuikit uniregistryuntappdussunnahvaadinvibervimeovnvsquare-whatsappwhmcswordpress-simplexboxyandexyandex-international apple-pay cc-apple-payflynodeosireact autoprefixerlesssassvuejsangularaviatoembergitterhoolistravastripestripe-stypo3 amazon-pay cc-amazon-payethereumkorvue elementorsquare-youtube flipboardhipsphp quinscapereadmejavapied-piper-hatcreative-commons-bycreative-commons-nccreative-commons-nc-eucreative-commons-nc-jpcreative-commons-ndcreative-commons-pdcreative-commons-pd-altcreative-commons-remixcreative-commons-sacreative-commons-samplingcreative-commons-sampling-pluscreative-commons-sharecreative-commons-zeroebaykeybasemastodon r-project researchgate teamspeakfirst-order-altfulcrumgalactic-republicgalactic-senate jedi-order mandalorian old-republicphoenix-squadronsithtrade-federationwolf-pack-battalionhornbill mailchimpmegaportnimblrrevshopware squarespacethemecoweeblywixello hackerrankkagglemarkdownneoszhihualipay the-red-yeti critical-roled-and-d-beyonddevfantasy-flight-gameswizards-of-the-coast think-peaks reacteurope artstation atlassiancanadian-maple-leafcentos confluencedhldiasporafedexfedorafigmaintercominvisionjiramendeley raspberry-piredhatsketch sourcetreesuseubuntuupsuspsyarnairbnb battle-net bootstrapbuffer chromecastevernoteitch-io salesforce speaker-decksymfonywazeyammergit-alt stackpath cotton-bureau buy-n-largemdborcidswiftumbracofontawesome/inst/fontawesome/webfonts/fa-v4compatibility.woff20000644000176200001440000001073014470000401024377 0ustar liggesuserswOF2 $8$ `ʺP AUp~?3 3 66B˴*4:Og"ʄizqϙ3gas&2qL8 Ɓ)sF[HHw4ib41Hg/  a Ֆ G ^Jˠ.$q) hUh[,x!S llAq -BYa]-.EA{ Ӳ,dԺ!nyGE:#+w\P-A`z6Z9XƇBh8nBW^T_g4lG:ե4բZcѰ \J8Ģ Zs#t;:*@E_./w?Pp]EQYsR γ](䧯ŹJzޠ١ B6xT_80zaEѳI1I+-!,k[/5\db1g?\qÖeͪz²,s1sl4ff zh`}щ2וj^űhP@Y5Pj'%`4 9Ϲ8f]cvTlpflfK\";zw`ξr}y )r0l39.9źJt;:*PU( G!%{ \%#j,00ݥ4IngqȮL`K-.¬KF+v^^ƙlkeT*bl qT3zSP }(4 a7)[JA"6nxwy_Q#긛$EwFp/jzzV+{Ѭ px!.-TL >P*$:]|mBLwe3ΘF6s3LKSc.i!'G SZQ$AEѻꦕ3SaNf /aD)/ 'у%n+B\KYW[N|{%Q_ e #*vP|Tzu QoqYI\G|gdA!jkZ1@ndb?L#7w@!eZ$t8a65j5ZyJ(˲Z#J911991!ԩ(5Bjcc5BjeRskit;ҼX<ȱ5BjT>`p Fx _Eu&ݒ4ёBgو^`B%(xl3TjEՌy~%Cz3Sq.bsV(YQ{0\մJKVQ@G֣H0^? na8﹞n"=\023ѳ 3,'ѓ01%Dx\u=Zё["]mWab[~ ؂_a%5> bm xuxGz IXk'$4?AjJ9bHG99sPDGsTUAmBX`^I̲֓ؓ䅜3)P2c;NVhj:闛a#㐵b Ł:)vl! >`$I]R A NEQ;v S>a)In3ܭ  ?<%I(=͈χ=0]8[J'PqGe*DKYL7܏٤ek~j`i:=R7Mh۲ol'EDn"Xb9[qC1'uS¹5̙6'dzQ_B01!P`x!C:'ݔ&o~͉.LcZSccxMl(_ȔB dB9;{{C/5,՚PjC,#J9{0$?[R4DH9͋^(e :kq/ljNҜX*NSob̌.B Kܐ)Sj@;-wws!X8dqԨ4k+pnEi( hi Cu;EX!dq mέYa[gQ9a"AXEgjIW'wJ s̷Ms֮o{3d6ғqAȪZF6mciE#A\t|MT˾eCSWCA}@ʨV̵(Y ІWAkğ8B|4쬬cJsc"&NhHʍ=CXH0 ,eIWVLcJ!Erjح|H}LT9XҫKN2xmدTU3O\U}y^˳awS4'dUeM3\&[7 ͬe^de|—d_'Tyĭ^ݗ5v𤬌zUY/r:&};v'=**|,)Q($X~j FP1T a+ 0Dg*σ*ϻ51R8o$FqI<DIdǓ'ʘD^%EidЏr $zqR@wO: 5$*æ(fAS؎ ;>2FP Ae!HT|uw<* Ãc8Ͽ$ Rfontawesome/inst/apps/0000755000176200001440000000000014467775557014554 5ustar liggesusersfontawesome/inst/apps/138-icon-fontawesome/0000755000176200001440000000000014467775557020342 5ustar liggesusersfontawesome/inst/apps/138-icon-fontawesome/app.R0000644000176200001440000000246414467775557021253 0ustar liggesuserslibrary(shiny) library(fontawesome) fa4icons <- c( "eur", "mouse-pointer", "rupee", "cogs", "inr" ) fa5icons <- c( "innosoft", "apple-alt", "sync", "sort-alpha-up", "redo" ) fa6icons <- c( "chart-line", "socks", "bullhorn", "lightbulb", "worm" ) fabicons <- c( "500px", "app-store-ios", "amazon", "btc", "github-alt" ) showIcons <- function(icons) { tags$table( tags$tr(style = "border-bottom: 1px solid black", tags$th("Name"), tags$th("Icon")), lapply(icons, function(name) { tags$tr( tags$td(style = "padding-right: 3em;", name), tags$td(shiny::icon(name)) ) }) ) } ui <- fluidPage( tags$h2("Font Awesome 4 Icons"), p("The following icons are from FontAwesome 4. They should display properly below."), showIcons(fa4icons), tags$h2("Font Awesome 5 Icons"), p("The following icons are from FontAwesome 5. They should display properly below."), showIcons(fa5icons), tags$h2("Font Awesome 6 Icons"), p("The following icons are from FontAwesome 6. They should display properly below."), showIcons(fa6icons), tags$h2("Font Awesome 6 Brand icons"), p("The following icons are from the FontAwesome 6 Brand set. They should display properly below."), showIcons(fabicons) ) shinyApp(ui, function(input, output, session) {})