Annotation of researchv10no/cmd/map/export/map.cpio, revision 1.1.1.1

1.1       root        1: 0707070035051032341006640000030000040000011211070533573712000001100000001722MakefileCFLAGS = -O
                      2: CC=cc
                      3: OBJ = map.o index.o symbol.o libmap.a
                      4: 
                      5: lplot: maplplot index.o symbol.o libmap.a
                      6:        $(CC) $(OBJ) -lplot -lm -o map
                      7: 
                      8: v10: mapv10 index.o symbol.o libmap.a
                      9:        $(CC) $(OBJ) -lm -o map
                     10: 
                     11: ps: maplplot plotPS.o index.o symbol.o libmap.a
                     12:        $(CC) $(OBJ) plotPS.o -lm -o map
                     13: 
                     14: 
                     15: mapv10: map.c iplot.h
                     16:        $(CC) -c $(CFLAGS) -DPLOT='"iplot.h"' map.c
                     17: 
                     18: maplplot: map.c plot.h
                     19:        $(CC) -c $(CFLAGS) -DPLOT='"plot.h"' map.c
                     20: 
                     21: 
                     22: route: route.o libmap.a
                     23:        $(CC) $(CFLAGS) route.o libmap.a -lm -o route
                     24: 
                     25: libmap.a: 
                     26:        cd libmap; make CC=$(CC)  CFLAGS="-I.. $(CFLAGS)"
                     27: 
                     28: install: map
                     29:        strip map
                     30:        test -d /usr/lib/map || mkdir /usr/lib/map
                     31:        cp map.sh /usr/bin/map
                     32:        cp map mapdata/* /usr/lib/map
                     33: 
                     34: clean:
                     35:        rm -f map route *.o libmap.a new.results
                     36:        cd libmap; make clean
                     37: 
                     38: quicktest: v10
                     39:        MAPPROG=./map MAPDIR=./mapdata map.sh mercator -l 0 10 0 10 -g -b >new.results
                     40:        :
                     41:        : If any "diff" output follows, it should show only roundoff differences.
                     42:        diff test.results new.results || true
                     43:        rm -f map map.o
                     44: 0707070035051032331006640000030000040000010633140533562750600000700000007126READMEMATERIALS
                     45: 
                     46: Manuals are included in two forms.
                     47:        formatted ASCII file:
                     48:                map.man
                     49:        input for troff -man:
                     50:                map.5, map.7, proj.3, proj.5, route.1
                     51: 
                     52: The source directory has two subdirectories: 
                     53:        libmap          source for all the projection subroutines
                     54:        mapdata         World Data Bank I, etc.
                     55: 
                     56: The source is written in ANSI C.  Check CFLAGS and CC in the
                     57: Makefile and make them reflect your system's conventions.
                     58: 
                     59: QUICK TEST
                     60: 
                     61: For a quick test, to see whether you can compile and compute, try this
                     62: test, which makes "map" and checks its output for a bit of Africa:
                     63: 
                     64:        make quicktest
                     65: 
                     66: PLOTTING FILTERS
                     67: 
                     68: Map produces output for a plotting filter (not included).
                     69: Unfortunately there is no Unix standard for plotting.
                     70: Here are ways to compile for various filters.
                     71: 
                     72:        make            For System V and SunOS filters plot(1)
                     73:                        or tplot(1).
                     74: 
                     75:        make v10        For v10 research system plot(1), not
                     76:                        compatible with System V.
                     77: 
                     78:        make ps         PostScript.  Maps are drawn in a 6.5-inch
                     79:                        square centered 1 inch from the top of an
                     80:                        8.5x11 page.  To change, edit the
                     81:                        PostScript or plotPS.c.
                     82: 
                     83:        As map uses only simple plotting features, it is usually
                     84:        easy to interface to other plotting packages. See
                     85:        iplot.h (used with "make v10") for details.
                     86: 
                     87: When you have a plotting filter, you can test map in the current
                     88: directory as follows.  For sample arguments, see EXAMPLES on the
                     89: map(7) man page.
                     90: 
                     91:        MAPDIR=./mapdata MAPPROG=./map  map.sh arguments | filter
                     92: 
                     93: INSTALLATION
                     94: 
                     95: For real installation, examine the recipe for
                     96: 
                     97:        make install
                     98: 
                     99: It puts the map shell script in /usr/bin and everything else
                    100: in /usr/lib/map.  If you want to put things elsewhere, adjust
                    101: variables MAPDIR and MAPPROG in map.sh.  map.sh will become
                    102: the command "map".  After installation it will be run thus:
                    103: 
                    104:        map arguments | filter
                    105: 
                    106: POSSIBLE PROBLEMS
                    107: 
                    108: Options 
                    109:        Option -f oes not work because World Data Bank II is
                    110:        not in this distribution on account of its size (13Mb).
                    111: 
                    112:        -y files are like v10, not Sys V, plot files.
                    113:        The plot(5) man page from v10 is included for reference,
                    114:        although most of it is irrelevant for this application.
                    115: 
                    116: Library 
                    117:        At least one version of tplot(1) has been seen to garble
                    118:        the output.  In this case the trouble went away by
                    119:        compiling map with -l4014 instead of -lplot; see plot(3).
                    120: 
                    121:        Collisions with a nonstandard library function sincos()
                    122:        have been observed.  sincos will have to be renamed 
                    123:        in map.h and all .c files.
                    124: 
                    125: Man pages
                    126:        The man pages were produced with a -man macros slightly
                    127:        different from Sys V.  If you change font L to B throughout
                    128:        you will probably get a passable result.
                    129: 
                    130: REFERENCES
                    131: 
                    132: Most standard texts on cartography discuss the major projections
                    133: and their uses.  Some thorough works:
                    134:   
                    135:   J. P. Snyder, An Album of Map Projections, US Geological Survey
                    136:   Professional Paper 1453, USGPO Washington (1989)
                    137:   
                    138:   J. P. Snyder, Map Projections - A Working Manual, US Geological
                    139:   Survey Professional Paper 1395, USGPO Washington (1987)
                    140:   
                    141:   D. H. Maling, Coordinate Systems and Map Projections, George
                    142:   Philip and Son, London (1973)
                    143:   
                    144:   J. A. Steers, An Introduction to the Study of Map Projections,
                    145:   Univ. London Press (1970)
                    146: 
                    147: A short introduction, with 24 sample maps drawn by the "map"
                    148: program itself and the commands to draw them:
                    149: 
                    150:   M. D.        McIlroy, Projections: Mapmakers' Answers to the Riddle of
                    151:   Presenting a Round Earth on Flat Paper, AT&T Bell Labs Computing
                    152:   Science Tech. Report 140 (1987), order from Computing Science
                    153:   Reports, Room 2C579, AT&T Bell Labs Murray Hill, NJ 07974
                    154: 
                    155:   [In this report, option -s is used in an obsolete way.  It
                    156:   should always be replaced by -s2, with -s1 added to the
                    157:   preceding command.]
                    158: 
                    159: Doug McIlroy
                    160: 201-582-6050
                    161: research!doug
                    162: [email protected]
                    163: 0707070035051032721006640000030000040000020633020533472714100001000000010405index.c#include "map.h"
                    164: 
                    165:                /* p0;p1 evaluated to shut off "not used" diags */
                    166: static proj Yaitoff(double p0,double p1){p0;p1;return aitoff();}
                    167: static proj Yalbers(double p0,double p1){return albers(p0,p1);}
                    168: static proj Yazequalarea(double p0,double p1){p0;p1;return azequalarea();}
                    169: static proj Yazequidistant(double p0,double p1){p0;p1;return azequidistant();}
                    170: static proj Ybicentric(double p0,double p1){p1;return bicentric(p0);}
                    171: static proj Ybonne(double p0,double p1){p1;return bonne(p0);}
                    172: static proj Yconic(double p0,double p1){p1;return conic(p0);}
                    173: static proj Ycylequalarea(double p0,double p1){p1;return cylequalarea(p0);}
                    174: static proj Ycylindrical(double p0,double p1){p0;p1;return cylindrical();}
                    175: static proj Yelliptic(double p0,double p1){p1;return elliptic(p0);}
                    176: static proj Yfisheye(double p0,double p1){p1;return fisheye(p0);}
                    177: static proj Ygall(double p0,double p1){p1;return gall(p0);}
                    178: static proj Yglobular(double p0,double p1){p0;p1;return globular();}
                    179: static proj Ygnomonic(double p0,double p1){p0;p1;return gnomonic();}
                    180: static proj Yguyou(double p0,double p1){p0;p1;return guyou();}
                    181: static proj Yharrison(double p0,double p1){return harrison(p0,p1);}
                    182: static proj Yhex(double p0,double p1){p0;p1;return hex();}
                    183: static proj Yhoming(double p0,double p1){p1;return homing(p0);}
                    184: static proj Ylagrange(double p0,double p1){p0;p1;return lagrange();}
                    185: static proj Ylambert(double p0,double p1){return lambert(p0,p1);}
                    186: static proj Ylaue(double p0,double p1){p0;p1;return laue();}
                    187: static proj Ymecca(double p0,double p1){p1;return mecca(p0);}
                    188: static proj Ymercator(double p0,double p1){p0;p1;return mercator();}
                    189: static proj Ymollweide(double p0,double p1){p0;p1;return mollweide();}
                    190: static proj Ynewyorker(double p0,double p1){p1;return newyorker(p0);}
                    191: static proj Yorthographic(double p0,double p1){p0;p1;return orthographic();}
                    192: static proj Yperspective(double p0,double p1){p1;return perspective(p0);}
                    193: static proj Ypolyconic(double p0,double p1){p0;p1;return polyconic();}
                    194: static proj Yrectangular(double p0,double p1){p1;return rectangular(p0);}
                    195: static proj Ysimpleconic(double p0,double p1){return simpleconic(p0,p1);}
                    196: static proj Ysinusoidal(double p0,double p1){p0;p1;return sinusoidal();}
                    197: static proj Ysp_albers(double p0,double p1){return sp_albers(p0,p1);}
                    198: static proj Ysp_mercator(double p0,double p1){p0;p1;return sp_mercator();}
                    199: static proj Ysquare(double p0,double p1){p0;p1;return square();}
                    200: static proj Ystereographic(double p0,double p1){p0;p1;return stereographic();}
                    201: static proj Ytetra(double p0,double p1){p0;p1;return tetra();}
                    202: static proj Ytrapezoidal(double p0,double p1){return trapezoidal(p0,p1);}
                    203: static proj Yvandergrinten(double p0,double p1){p0;p1;return vandergrinten();}
                    204: 
                    205: struct index index[] = {
                    206:        {"aitoff", Yaitoff, 0, picut, 0, 0},
                    207:        {"albers", Yalbers, 2, picut, 3, 0},
                    208:        {"azequalarea", Yazequalarea, 0, nocut, 1, 0},
                    209:        {"azequidistant", Yazequidistant, 0, nocut, 1, 0},
                    210:        {"bicentric", Ybicentric, 1, nocut, 0, 0},
                    211:        {"bonne", Ybonne, 1, picut, 0, 0},
                    212:        {"conic", Yconic, 1, picut, 0, 0},
                    213:        {"cylequalarea", Ycylequalarea, 1, picut, 3, 0},
                    214:        {"cylindrical", Ycylindrical, 0, picut, 0, 0},
                    215:        {"elliptic", Yelliptic, 1, picut, 0, 0},
                    216:        {"fisheye", Yfisheye, 1, nocut, 0, 0},
                    217:        {"gall", Ygall, 1, picut, 3, 0},
                    218:        {"globular", Yglobular, 0, picut, 0, 0},
                    219:        {"gnomonic", Ygnomonic, 0, nocut, 0, 0},
                    220:        {"guyou", Yguyou, 0, guycut, 0, 0},
                    221:        {"harrison", Yharrison, 2, nocut, 0, 0},
                    222:        {"hex", Yhex, 0, hexcut, 0, 0},
                    223:        {"homing", Yhoming, 1, picut, 0, 0},
                    224:        {"lagrange", Ylagrange,0,picut,0, 0},
                    225:        {"lambert", Ylambert, 2, picut, 0, 0},
                    226:        {"laue", Ylaue, 0, nocut, 0, 0},
                    227:        {"mecca", Ymecca, 1, picut, 0, 0},
                    228:        {"mercator", Ymercator, 0, picut, 0, 0},
                    229:        {"mollweide", Ymollweide, 0, picut, 0, 0},
                    230:        {"newyorker", Ynewyorker, 1, nocut, 0, 0},
                    231:        {"orthographic", Yorthographic, 0, nocut, 0, 0},
                    232:        {"perspective", Yperspective, 1, nocut, 0, 0},
                    233:        {"polyconic", Ypolyconic, 0, picut, 0, 0},
                    234:        {"rectangular", Yrectangular, 1, picut, 3, 0},
                    235:        {"simpleconic", Ysimpleconic, 2, picut, 3, 0},
                    236:        {"sinusoidal", Ysinusoidal, 0, picut, 0, 0},
                    237:        {"sp_albers", Ysp_albers, 2, picut, 3, 1},
                    238:        {"sp_mercator", Ysp_mercator, 0, picut, 0, 1},
                    239:        {"square", Ysquare, 0, picut, 0, 0},
                    240:        {"stereographic", Ystereographic, 0, nocut, 0, 0},
                    241:        {"tetra", Ytetra, 0, tetracut, 0, 0},
                    242:        {"trapezoidal", Ytrapezoidal, 2, picut, 3, 0},
                    243:        {"vandergrinten", Yvandergrinten, 0, picut, 0, 0},
                    244:        0
                    245: };
                    246: 0707070035051032701006640000030000040000020035130417420602000001000000002016iplot.h/* Plotting functions for v8 and v9 systems */
                    247: /* This file is an alternative to plot.h */
                    248: 
                    249: /* open the plotting output */
                    250: #define openpl()  printf("o\n")
                    251: 
                    252: /* close the plotting output */
                    253: #define closepl()  printf("cl\n")
                    254: 
                    255: /* make sure the page or screen is clear */
                    256: #define erase() printf("e\n")
                    257: 
                    258: /* plot a point at _x,_y, which becomes current */
                    259: #define point(_x,_y)  printf("poi %d %d\n", _x,_y)
                    260: 
                    261: /* coordinates to be assigned to lower left and upper right
                    262:    corners of (square) plotting area */
                    263: #define range(_x,_y,_X,_Y)  printf("ra %d %d %d %d\n", _x,_y,_X,_Y)
                    264: 
                    265: /* place text, first letter at current point, which does not change */
                    266: #define text(_s)  {if(*(_s) == ' ')printf("t \"%s\"\n",_s); else printf("t %s\n", _s); }
                    267: 
                    268: /* draw line from current point to _x,_y, which becomes current */
                    269: #define vec(_x,_y)  printf("v %d %d\n", _x,_y)
                    270: 
                    271: /* _x,_y becomes current point */
                    272: #define move(_x, _y)  printf("m %d %d\n", _x, _y)
                    273: 
                    274: /* specify style for drawing lines: "dotted", "solid", "dotdash" */
                    275: #define pen(_s)  printf("pe %s\n", _s)
                    276: 0707070035051031101006640000030000040000011401020525002214000002000000001206libmap/Makefile
                    277: # .o's ordered for a nonrandom library
                    278: OBJ= aitoff.o albers.o azequalarea.o elliptic.o azequidist.o  \
                    279: bicentric.o bonne.o conic.o cylequalarea.o cylindrical.o fisheye.o \
                    280: gall.o guyou.o harrison.o hex.o homing.o lagrange.o lambert.o \
                    281: laue.o mercator.o mollweide.o newyorker.o polyconic.o simpleconic.o \
                    282: sinusoidal.o tetra.o perspective.o orthographic.o trapezoidal.o \
                    283: rectangular.o twocirc.o cuts.o ccubrt.o cubrt.o elco2.o complex.o zcoord.o 
                    284: 
                    285: # ignore error on systems without ranlib
                    286: 
                    287: ../libmap.a: ../map.h $(OBJ)
                    288:        ar cr ../libmap.a $(OBJ)
                    289:        ranlib ../libmap.a 2>/dev/null || true
                    290: 
                    291: clean:
                    292:        rm -f *.o
                    293: 
                    294: %.o: %.c
                    295:        $(CC) $(CFLAGS) -I.. -c $*.c
                    296: 0707070035051031071006640000030000040000011231100533472766300002000000000554libmap/aitoff.c#include "map.h"
                    297: 
                    298: #define Xaitwist Xaitpole.nlat
                    299: static struct place Xaitpole;
                    300: 
                    301: static int
                    302: Xaitoff(struct place *place, double *x, double *y)
                    303: {
                    304:        struct place p;
                    305:        copyplace(place,&p);
                    306:        p.wlon.l /= 2.;
                    307:        sincos(&p.wlon);
                    308:        norm(&p,&Xaitpole,&Xaitwist);
                    309:        Xazequalarea(&p,x,y);
                    310:        *x *= 2.;
                    311:        return(1);
                    312: }
                    313: 
                    314: proj
                    315: aitoff(void)
                    316: {
                    317:        latlon(0.,0.,&Xaitpole);
                    318:        return(Xaitoff);
                    319: }
                    320: 0707070035051031061006640000030000040000011400540533472766300002000000004555libmap/albers.c#include "map.h"
                    321: 
                    322: /* For Albers formulas see Deetz and Adams "Elements of Map Projection", */
                    323: /* USGS Special Publication No. 68, GPO 1921 */
                    324: 
                    325: static double r0sq, r1sq, d2, n, den, sinb1, sinb2;
                    326: static struct coord plat1, plat2;
                    327: static southpole;
                    328: 
                    329: static double num(double s)
                    330: {
                    331:        if(d2==0)
                    332:                return(1);
                    333:        s = d2*s*s;
                    334:        return(1+s*(2./3+s*(3./5+s*(4./7+s*5./9))));
                    335: }
                    336: 
                    337: /* Albers projection for a spheroid, good only when N pole is fixed */
                    338: 
                    339: static int
                    340: Xspalbers(struct place *place, double *x, double *y)
                    341: {
                    342:        double r = sqrt(r0sq-2*(1-d2)*place->nlat.s*num(place->nlat.s)/n);
                    343:        double t = n*place->wlon.l;
                    344:        *y = r*cos(t);
                    345:        *x = -r*sin(t);
                    346:        if(!southpole)
                    347:                *y = -*y;
                    348:        else
                    349:                *x = -*x;
                    350:        return(1);
                    351: }
                    352: 
                    353: /* lat1, lat2: std parallels; e2: squared eccentricity */
                    354: 
                    355: static proj albinit(double lat1, double lat2, double e2)
                    356: {
                    357:        double r1,r2;
                    358:        double t;
                    359:        for(;;) {
                    360:                if(lat1 < -90)
                    361:                        lat1 = -180 - lat1;
                    362:                if(lat2 > 90)
                    363:                        lat2 = 180 - lat2;
                    364:                if(lat1 <= lat2)
                    365:                        break;
                    366:                t = lat1; lat1 = lat2; lat2 = t;
                    367:        }
                    368:        if(lat2-lat1 < 1) {
                    369:                if(lat1 > 89)
                    370:                        return(azequalarea());
                    371:                return(0);
                    372:        }
                    373:        if(fabs(lat2+lat1) < 1)
                    374:                return(cylequalarea(lat1));
                    375:        d2 = e2;
                    376:        den = num(1.);
                    377:        deg2rad(lat1,&plat1);
                    378:        deg2rad(lat2,&plat2);
                    379:        sinb1 = plat1.s*num(plat1.s)/den;
                    380:        sinb2 = plat2.s*num(plat2.s)/den;
                    381:        n = (plat1.c*plat1.c/(1-e2*plat1.s*plat1.s) -
                    382:            plat2.c*plat2.c/(1-e2*plat2.s*plat2.s)) /
                    383:            (2*(1-e2)*den*(sinb2-sinb1));
                    384:        r1 = plat1.c/(n*sqrt(1-e2*plat1.s*plat1.s));
                    385:        r2 = plat2.c/(n*sqrt(2-e2*plat2.s*plat2.s));
                    386:        r1sq = r1*r1;
                    387:        r0sq = r1sq + 2*(1-e2)*den*sinb1/n;
                    388:        southpole = lat1<0 && plat2.c>plat1.c;
                    389:        return(Xspalbers);
                    390: }
                    391: 
                    392: proj
                    393: sp_albers(double lat1, double lat2)
                    394: {
                    395:        return(albinit(lat1,lat2,EC2));
                    396: }
                    397: 
                    398: proj
                    399: albers(double lat1, double lat2)
                    400: {
                    401:        return(albinit(lat1,lat2,0.));
                    402: }
                    403: 
                    404: static double scale = 1;
                    405: static double twist = 0;
                    406: 
                    407: void
                    408: albscale(double x, double y, double lat, double lon)
                    409: {
                    410:        struct place place;
                    411:        double alat, alon, x1,y1;
                    412:        scale = 1;
                    413:        twist = 0;
                    414:        invalb(x,y,&alat,&alon);
                    415:        twist = lon - alon;
                    416:        deg2rad(lat,&place.nlat);
                    417:        deg2rad(lon,&place.wlon);
                    418:        Xspalbers(&place,&x1,&y1);
                    419:        scale = sqrt((x1*x1+y1*y1)/(x*x+y*y));
                    420: }
                    421: 
                    422: void
                    423: invalb(double x, double y, double *lat, double *lon)
                    424: {
                    425:        int i;
                    426:        double sinb_den, sinp;
                    427:        x *= scale;
                    428:        y *= scale;
                    429:        *lon = atan2(-x,fabs(y))/(RAD*n) + twist;
                    430:        sinb_den = (r0sq - x*x - y*y)*n/(2*(1-d2));
                    431:        sinp = sinb_den;
                    432:        for(i=0; i<5; i++)
                    433:                sinp = sinb_den/num(sinp);
                    434:        *lat = asin(sinp)/RAD;
                    435: }
                    436: 0707070035051031051006640000030000040000011400560533472766300002500000000361libmap/azequalarea.c#include "map.h"
                    437: 
                    438: int
                    439: Xazequalarea(struct place *place, double *x, double *y)
                    440: {
                    441:        double r;
                    442:        r = sqrt(1. - place->nlat.s);
                    443:        *x = - r * place->wlon.s;
                    444:        *y = - r * place->wlon.c;
                    445:        return(1);
                    446: }
                    447: 
                    448: proj
                    449: azequalarea(void)
                    450: {
                    451:        return(Xazequalarea);
                    452: }
                    453: 0707070035051031041006640000030000040000011400600533472766400002400000000401libmap/azequidist.c#include "map.h"
                    454: 
                    455: int
                    456: Xazequidistant(struct place *place, double *x, double *y)
                    457: {
                    458:        double colat;
                    459:        colat = PI/2 - place->nlat.l;
                    460:        *x = -colat * place->wlon.s;
                    461:        *y = -colat * place->wlon.c;
                    462:        return(1);
                    463: }
                    464: 
                    465: proj
                    466: azequidistant(void)
                    467: {
                    468:        return(Xazequidistant);
                    469: }
                    470: 0707070035051031031006640000030000040000011400620533472766400002300000000624libmap/bicentric.c#include "map.h"
                    471: 
                    472: static struct coord center;
                    473: 
                    474: static int
                    475: Xbicentric(struct place *place, double *x, double *y)
                    476: {
                    477:        if(place->wlon.c<=.01||place->nlat.c<=.01)
                    478:                return(-1);
                    479:        *x = -center.c*place->wlon.s/place->wlon.c;
                    480:        *y = place->nlat.s/(place->nlat.c*place->wlon.c);
                    481:        return(*x**x+*y**y<=9);
                    482: }
                    483: 
                    484: proj
                    485: bicentric(double l)
                    486: {
                    487:        l = fabs(l);
                    488:        if(l>89)
                    489:                return(0);
                    490:        deg2rad(l,&center);
                    491:        return(Xbicentric);
                    492: }
                    493: 0707070035051031021006640000030000040000011400640533472766400001700000001164libmap/bonne.c#include "map.h"
                    494: 
                    495: static struct coord stdpar;
                    496: static double r0;
                    497: 
                    498: static
                    499: Xbonne(struct place *place, double *x, double *y)
                    500: {
                    501:        double r, alpha;
                    502:        r = r0 - place->nlat.l;
                    503:        if(r<.001)
                    504:                if(fabs(stdpar.c)<1e-10)
                    505:                        alpha = place->wlon.l;
                    506:                else if(fabs(place->nlat.c)==0)
                    507:                        alpha = 0;
                    508:                else 
                    509:                        alpha = place->wlon.l/(1+
                    510:                                stdpar.c*stdpar.c*stdpar.c/place->nlat.c/3);
                    511:        else
                    512:                alpha = place->wlon.l * place->nlat.c / r;
                    513:        *x = - r*sin(alpha);
                    514:        *y = - r*cos(alpha);
                    515:        return(1);
                    516: }
                    517: 
                    518: proj
                    519: bonne(double par)
                    520: {
                    521:        if(fabs(par*RAD) < .01)
                    522:                return(Xsinusoidal);
                    523:        deg2rad(par, &stdpar);
                    524:        r0 = stdpar.c/stdpar.s + stdpar.l;
                    525:        return(Xbonne);
                    526: }
                    527: 0707070035051031011006640000030000040000011400660470474632500002000000000301libmap/ccubrt.c#include "map.h"
                    528: 
                    529: void
                    530: ccubrt(double zr, double zi, double *wr, double *wi)
                    531: {
                    532:        double r, theta;
                    533:        theta = atan2(zi,zr);
                    534:        r = cubrt(hypot(zr,zi));
                    535:        *wr = r*cos(theta/3);
                    536:        *wi = r*sin(theta/3);
                    537: }
                    538: 0707070035051031001006640000030000040000011400700470474632500002100000002535libmap/complex.c#include "map.h"
                    539: 
                    540: /*complex divide, defensive against overflow from
                    541:  *     * and /, but not from + and -
                    542:  *     assumes underflow yields 0.0
                    543:  *     uses identities:
                    544:  *     (a + bi)/(c + di) = ((a + bd/c) + (b - ad/c)i)/(c + dd/c)
                    545:  *     (a + bi)/(c + di) = (b - ai)/(d - ci)
                    546: */
                    547: void
                    548: cdiv(double a, double b, double c, double d, double *u, double *v)
                    549: {
                    550:        double r,t;
                    551:        if(fabs(c)<fabs(d)) {
                    552:                t = -c; c = d; d = t;
                    553:                t = -a; a = b; b = t;
                    554:        }
                    555:        r = d/c;
                    556:        t = c + r*d;
                    557:        *u = (a + r*b)/t;
                    558:        *v = (b - r*a)/t;
                    559: }
                    560: 
                    561: void
                    562: cmul(double c1, double c2, double d1, double d2, double *e1, double *e2)
                    563: {
                    564:        *e1 = c1*d1 - c2*d2;
                    565:        *e2 = c1*d2 + c2*d1;
                    566: }
                    567: 
                    568: void
                    569: csq(double c1, double c2, double *e1, double *e2)
                    570: {
                    571:        *e1 = c1*c1 - c2*c2;
                    572:        *e2 = c1*c2*2;
                    573: }
                    574: 
                    575: /* complex square root
                    576:  *     assumes underflow yields 0.0
                    577:  *     uses these identities:
                    578:  *     sqrt(x+_iy) = sqrt(r(cos(t)+_isin(t))
                    579:  *                = sqrt(r)(cos(t/2)+_isin(t/2))
                    580:  *     cos(t/2) = sin(t)/2sin(t/2) = sqrt((1+cos(t)/2)
                    581:  *     sin(t/2) = sin(t)/2cos(t/2) = sqrt((1-cos(t)/2)
                    582: */
                    583: void
                    584: csqrt(double c1, double c2, double *e1, double *e2)
                    585: {
                    586:        double r,s;
                    587:        double x,y;
                    588:        x = fabs(c1);
                    589:        y = fabs(c2);
                    590:        if(x>=y) {
                    591:                if(x==0) {
                    592:                        *e1 = *e2 = 0;
                    593:                        return;
                    594:                }
                    595:                r = x;
                    596:                s = y/x;
                    597:        } else {
                    598:                r = y;
                    599:                s = x/y;
                    600:        }
                    601:        r *= sqrt(1+ s*s);
                    602:        if(c1>0) {
                    603:                *e1 = sqrt((r+c1)/2);
                    604:                *e2 = c2/(2* *e1);
                    605:        } else {
                    606:                *e2 = sqrt((r-c1)/2);
                    607:                if(c2<0)
                    608:                        *e2 = -*e2;
                    609:                *e1 = c2/(2* *e2);
                    610:        }
                    611: }
                    612: 0707070035051030771006640000030000040000011400720533472766500001700000000717libmap/conic.c#include "map.h"
                    613: 
                    614: static struct coord stdpar;
                    615: 
                    616: static int
                    617: Xconic(struct place *place, double *x, double *y)
                    618: {
                    619:        double r;
                    620:        if(fabs(place->nlat.l-stdpar.l) > 80.*RAD)
                    621:                return(-1);
                    622:        r = stdpar.c/stdpar.s - tan(place->nlat.l - stdpar.l);
                    623:        *x = - r*sin(place->wlon.l * stdpar.s);
                    624:        *y = - r*cos(place->wlon.l * stdpar.s);
                    625:        if(r>3) return(0);
                    626:        return(1);
                    627: }
                    628: 
                    629: proj
                    630: conic(double par)
                    631: {
                    632:        if(fabs(par) <.1)
                    633:                return(Xcylindrical);
                    634:        deg2rad(par, &stdpar);
                    635:        return(Xconic);
                    636: }
                    637: 0707070035051030761006640000030000040000011400740470474632600001700000000450libmap/cubrt.c#include "map.h"
                    638: 
                    639: double
                    640: cubrt(double a)
                    641: {
                    642:        double x,y,x1;
                    643:        if(a==0) 
                    644:                return(0.);
                    645:        y = 1;
                    646:        if(a<0) {
                    647:                y = -y;
                    648:                a = -a;
                    649:        }
                    650:        while(a<1) {
                    651:                a *= 8;
                    652:                y /= 2;
                    653:        }
                    654:        while(a>1) {
                    655:                a /= 8;
                    656:                y *= 2;
                    657:        }
                    658:        x = 1;
                    659:        do {
                    660:                x1 = x;
                    661:                x = (2*x1+a/(x1*x1))/3;
                    662:        } while(fabs(x-x1)>10.e-15);
                    663:        return(x*y);
                    664: }
                    665: 0707070035051030451006640000030000040000011400760533472766500001600000001453libmap/cuts.c#include "map.h"
                    666: extern void abort(void);
                    667: 
                    668: /* these routines duplicate names found in map.c.  they are
                    669: called from routines in hex.c, guyou.c, and tetra.c, which
                    670: are in turn invoked directly from map.c.  this bad organization
                    671: arises from data hiding; only these three files know stuff
                    672: that's necessary for the proper handling of the unusual cuts
                    673: involved in these projections.
                    674: 
                    675: the calling routines are not advertised as part of the library,
                    676: and the library duplicates should never get loaded, however they
                    677: are included to make the libary self-standing.*/
                    678: 
                    679: int
                    680: picut(struct place *g, struct place *og, double *cutlon)
                    681: {
                    682:        g; og; cutlon;
                    683:        abort();
                    684:        return 0;
                    685: }
                    686: 
                    687: int
                    688: ckcut(struct place *g1, struct place *g2, double lon)
                    689: {
                    690:        g1; g2; lon;
                    691:        abort();
                    692:        return 0;
                    693: }
                    694: 
                    695: double
                    696: reduce(double x)
                    697: {
                    698:        x;
                    699:        abort();
                    700:        return 0;
                    701: }
                    702: 0707070035051030751006640000030000040000011401000533472766500002600000000502libmap/cylequalarea.c#include "map.h"
                    703: 
                    704: static double a;
                    705: 
                    706: static int
                    707: Xcylequalarea(struct place *place, double *x, double *y)
                    708: {
                    709:        *x = - place->wlon.l * a;
                    710:        *y = place->nlat.s;
                    711:        return(1);
                    712: }
                    713: 
                    714: proj
                    715: cylequalarea(double par)
                    716: {
                    717:        struct coord stdp0;
                    718:        if(par > 89.0)
                    719:                return(0);
                    720:        deg2rad(par, &stdp0);
                    721:        a = stdp0.c*stdp0.c;
                    722:        return(Xcylequalarea);
                    723: }
                    724: 0707070035051030741006640000030000040000011401100533472766600002500000000376libmap/cylindrical.c#include "map.h"
                    725: 
                    726: int
                    727: Xcylindrical(struct place *place, double *x, double *y)
                    728: {
                    729:        if(fabs(place->nlat.l) > 80.*RAD)
                    730:                return(-1);
                    731:        *x = - place->wlon.l;
                    732:        *y = place->nlat.s / place->nlat.c;
                    733:        return(1);
                    734: }
                    735: 
                    736: proj
                    737: cylindrical(void)
                    738: {
                    739:        return(Xcylindrical);
                    740: }
                    741: 0707070035051030731006640000030000040000011401120533472766600001700000004704libmap/elco2.c#include "map.h"
                    742: 
                    743: /* elliptic integral routine, R.Bulirsch,
                    744:  *     Numerische Mathematik 7(1965) 78-90
                    745:  *     calculate integral from 0 to x+iy of
                    746:  *     (a+b*t^2)/((1+t^2)*sqrt((1+t^2)*(1+kc^2*t^2)))
                    747:  *     yields about D valid figures, where CC=10e-D
                    748:  *     for a*b>=0, except at branchpoints x=0,y=+-i,+-i/kc;
                    749:  *     there the accuracy may be reduced.
                    750:  *     fails for kc=0 or x<0
                    751:  *     return(1) for success, return(0) for fail
                    752:  *
                    753:  *     special case a=b=1 is equivalent to
                    754:  *     standard elliptic integral of first kind
                    755:  *     from 0 to atan(x+iy) of
                    756:  *     1/sqrt(1-k^2*(sin(t))^2) where k^2=1-kc^2
                    757: */
                    758: 
                    759: #define ROOTINF 10.e18
                    760: #define CC 1.e-6
                    761: 
                    762: int
                    763: elco2(double x, double y, double kc, double a, double b, double *u, double *v)
                    764: {
                    765:        double c,d,dn1,dn2,e,e1,e2,f,f1,f2,h,k,m,m1,m2,sy;
                    766:        double d1[13],d2[13];
                    767:        int i,l;
                    768:        if(kc==0||x<0)
                    769:                return(0);
                    770:        sy = y>0? 1: y==0? 0: -1;
                    771:        y = fabs(y);
                    772:        csq(x,y,&c,&e2);
                    773:        d = kc*kc;
                    774:        k = 1-d;
                    775:        e1 = 1+c;
                    776:        cdiv2(1+d*c,d*e2,e1,e2,&f1,&f2);
                    777:        f2 = -k*x*y*2/f2;
                    778:        csqr(f1,f2,&dn1,&dn2);
                    779:        if(f1<0) {
                    780:                f1 = dn1;
                    781:                dn1 = -dn2;
                    782:                dn2 = -f1;
                    783:        }
                    784:        if(k<0) {
                    785:                dn1 = fabs(dn1);
                    786:                dn2 = fabs(dn2);
                    787:        }
                    788:        c = 1+dn1;
                    789:        cmul(e1,e2,c,dn2,&f1,&f2);
                    790:        cdiv(x,y,f1,f2,&d1[0],&d2[0]);
                    791:        h = a-b;
                    792:        d = f = m = 1;
                    793:        kc = fabs(kc);
                    794:        e = a;
                    795:        a += b;
                    796:        l = 4;
                    797:        for(i=1;;i++) {
                    798:                m1 = (kc+m)/2;
                    799:                m2 = m1*m1;
                    800:                k *= f/(m2*4);
                    801:                b += e*kc;
                    802:                e = a;
                    803:                cdiv2(kc+m*dn1,m*dn2,c,dn2,&f1,&f2);
                    804:                csqr(f1/m1,k*dn2*2/f2,&dn1,&dn2);
                    805:                cmul(dn1,dn2,x,y,&f1,&f2);
                    806:                x = fabs(f1);
                    807:                y = fabs(f2);
                    808:                a += b/m1;
                    809:                l *= 2;
                    810:                c = 1 +dn1;
                    811:                d *= k/2;
                    812:                cmul(x,y,x,y,&e1,&e2);
                    813:                k *= k;
                    814: 
                    815:                cmul(c,dn2,1+e1*m2,e2*m2,&f1,&f2);
                    816:                cdiv(d*x,d*y,f1,f2,&d1[i],&d2[i]);
                    817:                if(k<=CC) 
                    818:                        break;
                    819:                kc = sqrt(m*kc);
                    820:                f = m2;
                    821:                m = m1;
                    822:        }
                    823:        f1 = f2 = 0;
                    824:        for(;i>=0;i--) {
                    825:                f1 += d1[i];
                    826:                f2 += d2[i];
                    827:        }
                    828:        x *= m1;
                    829:        y *= m1;
                    830:        cdiv2(1-y,x,1+y,-x,&e1,&e2);
                    831:        e2 = x*2/e2;
                    832:        d = a/(m1*l);
                    833:        *u = atan2(e2,e1);
                    834:        if(*u<0)
                    835:                *u += PI;
                    836:        a = d*sy/2;
                    837:        *u = d*(*u) + f1*h;
                    838:        *v = (-1-log(e1*e1+e2*e2))*a + f2*h*sy + a;
                    839:        return(1);
                    840: }
                    841: 
                    842: void
                    843: cdiv2(double c1, double c2, double d1, double d2, double *e1, double *e2)
                    844: {
                    845:        double t;
                    846:        if(fabs(d2)>fabs(d1)) {
                    847:                t = d1, d1 = d2, d2 = t;
                    848:                t = c1, c1 = c2, c2 = t;
                    849:        }
                    850:        if(fabs(d1)>ROOTINF)
                    851:                *e2 = ROOTINF*ROOTINF;
                    852:        else
                    853:                *e2 = d1*d1 + d2*d2;
                    854:        t = d2/d1;
                    855:        *e1 = (c1+t*c2)/(d1+t*d2); /* (c1*d1+c2*d2)/(d1*d1+d2*d2) */
                    856: }
                    857: 
                    858: /* complex square root of |x|+iy */
                    859: void
                    860: csqr(double c1, double c2, double *e1, double *e2)
                    861: {
                    862:        double r2;
                    863:        r2 = c1*c1 + c2*c2;
                    864:        if(r2<=0) {
                    865:                *e1 = *e2 = 0;
                    866:                return;
                    867:        }
                    868:        *e1 = sqrt((sqrt(r2) + fabs(c1))/2);
                    869:        *e2 = c2/(*e1*2);
                    870: }
                    871: 0707070035051030721006640000030000040000010612660533472766600002200000001122libmap/elliptic.c#include "map.h"
                    872: 
                    873: struct coord center;
                    874: 
                    875: static int
                    876: Xelliptic(struct place *place, double *x, double *y)
                    877: {
                    878:        double r1,r2;
                    879:        r1 = acos(place->nlat.c*(place->wlon.c*center.c
                    880:                - place->wlon.s*center.s));
                    881:        r2 = acos(place->nlat.c*(place->wlon.c*center.c
                    882:                + place->wlon.s*center.s));
                    883:        *x = -(r1*r1 - r2*r2)/(4*center.l);
                    884:        *y = (r1*r1+r2*r2)/2 - (center.l*center.l+*x**x);
                    885:        if(*y < 0)
                    886:                *y = 0;
                    887:        *y = sqrt(*y);
                    888:        if(place->nlat.l<0)
                    889:                *y = -*y;
                    890:        return(1);
                    891: }
                    892: 
                    893: proj
                    894: elliptic(double l)
                    895: {
                    896:        l = fabs(l);
                    897:        if(l>89)
                    898:                return(0);
                    899:        if(l<1)
                    900:                return(Xazequidistant);
                    901:        deg2rad(l,&center);
                    902:        return(Xelliptic);
                    903: }
                    904: 0707070035050603501006640000100000040000011210700533472766600002100000000566libmap/fisheye.c#include "map.h"
                    905: /* refractive fisheye, not logarithmic */
                    906: 
                    907: static double n;
                    908: 
                    909: static int
                    910: Xfisheye(struct place *place, double *x, double *y)
                    911: {
                    912:        double r;
                    913:        double u = sin(PI/4-place->nlat.l/2)/n;
                    914:        if(fabs(u) > .97)
                    915:                return -1;
                    916:        r = tan(asin(u));
                    917:        *x = -r*place->wlon.s;
                    918:        *y = -r*place->wlon.c;
                    919:        return 1;
                    920: }
                    921: 
                    922: proj
                    923: fisheye(double par)
                    924: {
                    925:        n = par;
                    926:        return n<.1? 0: Xfisheye;
                    927: }
                    928: 0707070035051030401006640000030000040000011401140533472766700001600000000737libmap/gall.c#include "map.h"
                    929: 
                    930: static double scale;
                    931: 
                    932: static int
                    933: Xgall(struct place *place, double *x, double *y)
                    934: {
                    935:        /* two ways to compute tan(place->nlat.l/2) */
                    936:        if(fabs(place->nlat.s)<.1)
                    937:                *y = sin(place->nlat.l/2)/cos(place->nlat.l/2);
                    938:        else
                    939:                *y = (1-place->nlat.c)/place->nlat.s;
                    940:        *x = -scale*place->wlon.l;
                    941:        return 1;
                    942: }
                    943: 
                    944: proj
                    945: gall(double par)
                    946: {
                    947:        double coshalf;
                    948:        if(fabs(par)>80)
                    949:                return 0;
                    950:        par *= RAD;
                    951:        coshalf = cos(par/2);
                    952:        scale = cos(par)/(2*coshalf*coshalf);
                    953:        return Xgall;
                    954: }
                    955: 0707070035051030701006640000030000040000011402000533472766700001700000003271libmap/guyou.c#include "map.h"
                    956: 
                    957: static struct place gywhem, gyehem;
                    958: static struct coord gytwist;
                    959: static double gyconst, gykc, gyside;
                    960: 
                    961: 
                    962: static void
                    963: dosquare(double z1, double z2, double *x, double *y)
                    964: {
                    965:        double w1,w2;
                    966:        w1 = z1 -1;
                    967:        if(fabs(w1*w1+z2*z2)>.000001) {
                    968:                cdiv(z1+1,z2,w1,z2,&w1,&w2);
                    969:                w1 *= gyconst;
                    970:                w2 *= gyconst;
                    971:                if(w1<0)
                    972:                        w1 = 0;
                    973:                elco2(w1,w2,gykc,1.,1.,x,y);
                    974:        } else {
                    975:                *x = gyside;
                    976:                *y = 0;
                    977:        }
                    978: }
                    979: 
                    980: int
                    981: Xguyou(struct place *place, double *x, double *y)
                    982: {
                    983:        int ew;         /*which hemisphere*/
                    984:        double z1,z2;
                    985:        struct place pl;
                    986:        ew = place->wlon.l<0;
                    987:        copyplace(place,&pl);
                    988:        norm(&pl,ew?&gyehem:&gywhem,&gytwist);
                    989:        Xstereographic(&pl,&z1,&z2);
                    990:        dosquare(z1/2,z2/2,x,y);
                    991:        if(!ew)
                    992:                *x -= gyside;
                    993:        return(1);
                    994: }
                    995: 
                    996: proj
                    997: guyou(void)
                    998: {
                    999:        double junk;
                   1000:        gykc = 1/(3+2*sqrt(2.));
                   1001:        gyconst = -(1+sqrt(2.));
                   1002:        elco2(-gyconst,0.,gykc,1.,1.,&gyside,&junk);
                   1003:        gyside *= 2;
                   1004:        latlon(0.,90.,&gywhem);
                   1005:        latlon(0.,-90.,&gyehem);
                   1006:        deg2rad(0.,&gytwist);
                   1007:        return(Xguyou);
                   1008: }
                   1009: 
                   1010: int
                   1011: guycut(struct place *g, struct place *og, double *cutlon)
                   1012: {
                   1013:        int c;
                   1014:        c = picut(g,og,cutlon);
                   1015:        if(c!=1)
                   1016:                return(c);
                   1017:        *cutlon = 0.;
                   1018:        if(g->nlat.c<.7071||og->nlat.c<.7071)
                   1019:                return(ckcut(g,og,0.));
                   1020:        return(1);
                   1021: }
                   1022: 
                   1023: static int
                   1024: Xsquare(struct place *place, double *x, double *y)
                   1025: {
                   1026:        double z1,z2;
                   1027:        double r, theta;
                   1028:        struct place p;
                   1029:        copyplace(place,&p);
                   1030:        if(place->nlat.l<0) {
                   1031:                p.nlat.l = -p.nlat.l;
                   1032:                p.nlat.s = -p.nlat.s;
                   1033:        }
                   1034:        if(p.nlat.l<FUZZ && fabs(p.wlon.l)>PI-FUZZ){
                   1035:                *y = -gyside/2;
                   1036:                *x = p.wlon.l>0?0:gyside;
                   1037:                return(1);
                   1038:        }
                   1039:        Xstereographic(&p,&z1,&z2);
                   1040:        r = sqrt(sqrt(hypot(z1,z2)/2));
                   1041:        theta = atan2(z1,-z2)/4;
                   1042:        dosquare(r*sin(theta),-r*cos(theta),x,y);
                   1043:        if(place->nlat.l<0)
                   1044:                *y = -gyside - *y;
                   1045:        return(1);
                   1046: }
                   1047: 
                   1048: proj
                   1049: square(void)
                   1050: {
                   1051:        guyou();
                   1052:        return(Xsquare);
                   1053: }
                   1054: 0707070035051030501006640000030000040000010631010533472766700002200000001241libmap/harrison.c#include "map.h"
                   1055: 
                   1056: static double v3,u2,u3,a,b; /*v=view,p=obj,u=unit.y*/
                   1057: 
                   1058: static int
                   1059: Xharrison(struct place *place, double *x, double *y)
                   1060: {
                   1061:        double p1 = -place->nlat.c*place->wlon.s;
                   1062:        double p2 = -place->nlat.c*place->wlon.c;
                   1063:        double p3 = place->nlat.s;
                   1064:        double d = b + u3*p2 - u2*p3;
                   1065:        double t;
                   1066:        if(d < .01)
                   1067:                return 0;
                   1068:        t = a/d;
                   1069:        if(t < 0)
                   1070:                return 0;
                   1071:        if(v3*place->nlat.s < 1.)
                   1072:                return -1;
                   1073:        *y = t*p2*u2 + (v3-t*(v3-p3))*u3;
                   1074:        *x = t*p1;
                   1075:        if(*x * *x + *y * *y > 16)
                   1076:                return 0;
                   1077:        return 1;
                   1078: }
                   1079: 
                   1080: proj
                   1081: harrison(double r, double alpha)
                   1082: {
                   1083:        u2 = cos(alpha*RAD);
                   1084:        u3 = sin(alpha*RAD);
                   1085:        v3 = r;
                   1086:        b = r*u2;
                   1087:        a = 1 + b;
                   1088:        if(r<1.001 || a<sqrt(r*r-1))
                   1089:                return 0;
                   1090:        return Xharrison;
                   1091: }
                   1092: 0707070035051030671006640000030000040000011402020533472766700001500000004312libmap/hex.c#include "map.h"
                   1093: 
                   1094: #define BIG 1.e15
                   1095: #define HFUZZ .0001
                   1096: 
                   1097: static double hcut[3] ;
                   1098: static double kr[3] = { .5, -1., .5 };
                   1099: static double ki[3] = { -1., 0., 1. };         /*to multiply by sqrt(3)/2*/
                   1100: static double cr[3];
                   1101: static double ci[3];
                   1102: static struct place hem;
                   1103: static struct coord twist;
                   1104: static double  rootroot3, hkc;
                   1105: static double w2;
                   1106: static double rootk;
                   1107: 
                   1108: static void
                   1109: reflect(int i, double wr, double wi, double *x, double *y)
                   1110: {
                   1111:        double pr,pi,l;
                   1112:        pr = cr[i]-wr;
                   1113:        pi = ci[i]-wi;
                   1114:        l = 2*(kr[i]*pr + ki[i]*pi);
                   1115:        *x = wr + l*kr[i];
                   1116:        *y = wi + l*ki[i];
                   1117: }
                   1118: 
                   1119: static int
                   1120: Xhex(struct place *place, double *x, double *y)
                   1121: {
                   1122:        int ns;
                   1123:        register i;
                   1124:        double zr,zi;
                   1125:        double sr,si,tr,ti,ur,ui,vr,vi,yr,yi;
                   1126:        struct place p;
                   1127:        copyplace(place,&p);
                   1128:        ns = place->nlat.l >= 0;
                   1129:        if(!ns) {
                   1130:                p.nlat.l = -p.nlat.l;
                   1131:                p.nlat.s = -p.nlat.s;
                   1132:        }
                   1133:        if(p.nlat.l<HFUZZ) {
                   1134:                for(i=0;i<3;i++)
                   1135:                        if(fabs(reduce(p.wlon.l-hcut[i]))<HFUZZ) {
                   1136:                                if(i==2) {
                   1137:                                        *x = 2*cr[0] - cr[1];
                   1138:                                        *y = 0;
                   1139:                                } else {
                   1140:                                        *x = cr[1];
                   1141:                                        *y = 2*ci[2*i];
                   1142:                                }
                   1143:                                return(1);
                   1144:                        }
                   1145:                p.nlat.l = HFUZZ;
                   1146:                sincos(&p.nlat);
                   1147:        }
                   1148:        norm(&p,&hem,&twist);
                   1149:        Xstereographic(&p,&zr,&zi);
                   1150:        zr /= 2;
                   1151:        zi /= 2;
                   1152:        cdiv(1-zr,-zi,1+zr,zi,&sr,&si);
                   1153:        csq(sr,si,&tr,&ti);
                   1154:        ccubrt(1+3*tr,3*ti,&ur,&ui);
                   1155:        csqrt(ur-1,ui,&vr,&vi);
                   1156:        cdiv(rootroot3+vr,vi,rootroot3-vr,-vi,&yr,&yi);
                   1157:        yr /= rootk;
                   1158:        yi /= rootk;
                   1159:        elco2(fabs(yr),yi,hkc,1.,1.,x,y);
                   1160:        if(yr < 0)
                   1161:                *x = w2 - *x;
                   1162:        if(!ns) reflect(hcut[0]>place->wlon.l?0:
                   1163:                        hcut[1]>=place->wlon.l?1:
                   1164:                        2,*x,*y,x,y);
                   1165:        return(1);
                   1166: }
                   1167: 
                   1168: proj
                   1169: hex(void)
                   1170: {
                   1171:        register i;
                   1172:        double t;
                   1173:        double root3;
                   1174:        double c,d;
                   1175:        struct place p;
                   1176:        hcut[2] = PI;
                   1177:        hcut[1] = hcut[2]/3;
                   1178:        hcut[0] = -hcut[1];
                   1179:        root3 = sqrt(3.);
                   1180:        rootroot3 = sqrt(root3);
                   1181:        t = 15 -8*root3;
                   1182:        hkc = t*(1-sqrt(1-1/(t*t)));
                   1183:        elco2(BIG,0.,hkc,1.,1.,&w2,&t);
                   1184:        w2 *= 2;
                   1185:        rootk = sqrt(hkc);
                   1186:        latlon(90.,90.,&hem);
                   1187:        latlon(90.,0.,&p);
                   1188:        Xhex(&p,&c,&t);
                   1189:        latlon(0.,0.,&p);
                   1190:        Xhex(&p,&d,&t);
                   1191:        for(i=0;i<3;i++) {
                   1192:                ki[i] *= root3/2;
                   1193:                cr[i] = c + (c-d)*kr[i];
                   1194:                ci[i] = (c-d)*ki[i];
                   1195:        }
                   1196:        deg2rad(0.,&twist);
                   1197:        return(Xhex);
                   1198: }
                   1199: 
                   1200: int
                   1201: hexcut(struct place *g, struct place *og, double *cutlon)
                   1202: {
                   1203:        int t,i;
                   1204:        if(g->nlat.l>=-HFUZZ&&og->nlat.l>=-HFUZZ)
                   1205:                return(1);
                   1206:        for(i=0;i<3;i++) {
                   1207:                t = ckcut(g,og,*cutlon=hcut[i]);
                   1208:                if(t!=1) return(t);
                   1209:        }
                   1210:        return(1);
                   1211: }
                   1212: 0707070035051030511006640000030000040000011402040533472767300002000000002430libmap/homing.c#include "map.h"
                   1213: 
                   1214: static struct coord p0;                /* standard parallel */
                   1215: 
                   1216: static double
                   1217: trigclamp(double x)
                   1218: {
                   1219:        return x>1? 1: x<-1? -1: x;
                   1220: }
                   1221: 
                   1222: static struct coord az;                /* azimuth of p0 seen from place */
                   1223: static struct coord rad;       /* angular dist from place to p0 */
                   1224: 
                   1225: static int
                   1226: azimuth(struct place *place)
                   1227: {
                   1228:        if(place->nlat.c < .01)
                   1229:                return 0;
                   1230:        rad.c = trigclamp(p0.s*place->nlat.s +  /* law of cosines */
                   1231:                p0.c*place->nlat.c*place->wlon.c);
                   1232:        rad.s = sqrt(1 - rad.c*rad.c);
                   1233:        if(fabs(rad.s) < .001) {
                   1234:                az.s = 0;
                   1235:                az.c = 1;
                   1236:        } else {
                   1237:                az.s = trigclamp(p0.c*place->wlon.s/rad.s); /* sines */
                   1238:                az.c = trigclamp((p0.s - rad.c*place->nlat.s)
                   1239:                                /(rad.s*place->nlat.c));
                   1240:        }
                   1241:        rad.l = atan2(rad.s, rad.c);
                   1242:        return 1;
                   1243: }
                   1244: 
                   1245: static int
                   1246: Xmecca(struct place *place, double *x, double *y)
                   1247: {
                   1248:        if(!azimuth(place))
                   1249:                return 0;
                   1250:        *x = -place->wlon.l;
                   1251:        *y = fabs(az.s)<.02? -az.c*rad.s/p0.c: *x*az.c/az.s;
                   1252:        return fabs(*y)>2? 0:
                   1253:               rad.c<0? -1:
                   1254:               1;
                   1255: }
                   1256: 
                   1257: proj
                   1258: mecca(double par)
                   1259: {
                   1260:        if(fabs(par)>80.)
                   1261:                return(0);
                   1262:        deg2rad(par,&p0);
                   1263:        return(Xmecca);
                   1264: }
                   1265: 
                   1266: static int
                   1267: Xhoming(struct place *place, double *x, double *y)
                   1268: {
                   1269:        if(!azimuth(place))
                   1270:                return 0;
                   1271:        *x = -rad.l*az.s;
                   1272:        *y = -rad.l*az.c;
                   1273:        return place->wlon.c<0? -1: 1;
                   1274: }
                   1275: 
                   1276: proj
                   1277: homing(double par)
                   1278: {
                   1279:        if(fabs(par)>80.)
                   1280:                return(0);
                   1281:        deg2rad(par,&p0);
                   1282:        return(Xhoming);
                   1283: }
                   1284: 
                   1285: 0707070035051030351006640000030000040000011402060533472767300002200000000663libmap/lagrange.c#include "map.h"
                   1286: 
                   1287: static int
                   1288: Xlagrange(struct place *place, double *x, double *y)
                   1289: {
                   1290:        double z1,z2;
                   1291:        double w1,w2,t1,t2;
                   1292:        struct place p;
                   1293:        copyplace(place,&p);
                   1294:        if(place->nlat.l<0) {
                   1295:                p.nlat.l = -p.nlat.l;
                   1296:                p.nlat.s = -p.nlat.s;
                   1297:        }
                   1298:        Xstereographic(&p,&z1,&z2);
                   1299:        csqrt(-z2/2,z1/2,&w1,&w2);
                   1300:        cdiv(w1-1,w2,w1+1,w2,&t1,&t2);
                   1301:        *y = -t1;
                   1302:        *x = t2;
                   1303:        if(place->nlat.l<0)
                   1304:                *y = -*y;
                   1305:        return(1);
                   1306: }
                   1307: 
                   1308: proj
                   1309: lagrange(void)
                   1310: {
                   1311:        return(Xlagrange);
                   1312: }
                   1313: 0707070035051030661006640000030000040000011402100533472767300002100000001576libmap/lambert.c#include "map.h"
                   1314: 
                   1315: static struct coord stdp0, stdp1;
                   1316: static double k;
                   1317: 
                   1318: static int
                   1319: Xlambert(struct place *place, double *x, double *y)
                   1320: {
                   1321:        double r;
                   1322:        if(place->nlat.l < -80.*RAD)
                   1323:                return(-1);
                   1324:        if(place->nlat.l > 89.*RAD)
                   1325:                r = 0;  /* slovenly */
                   1326:        else
                   1327:                r = stdp0.c*exp(0.5*k*log(
                   1328:                   (1+stdp0.s)*(1-place->nlat.s)/((1-stdp0.s)*(1+place->nlat.s))));
                   1329:        if(stdp1.l<0.)
                   1330:                r = -r;
                   1331:        *x = - r*sin(k * place->wlon.l);
                   1332:        *y = - r*cos(k * place->wlon.l);
                   1333:        return(1);
                   1334: }
                   1335: 
                   1336: proj
                   1337: lambert(double par0, double par1)
                   1338: {
                   1339:        double temp;
                   1340:        if(fabs(par0)>fabs(par1)){
                   1341:                temp = par0;
                   1342:                par0 = par1;
                   1343:                par1 = temp;
                   1344:        }
                   1345:        deg2rad(par0, &stdp0);
                   1346:        deg2rad(par1, &stdp1);
                   1347:        if(fabs(par1+par0)<.1) 
                   1348:                return(mercator());
                   1349:        if(fabs(par1-par0)<.1)
                   1350:                return(perspective(-1.));
                   1351:        if(fabs(par0)>89.5||fabs(par1)>89.5)
                   1352:                return(0);
                   1353:        k = 2*log(stdp1.c/stdp0.c)/log(
                   1354:                (1+stdp0.s)*(1-stdp1.s)/((1-stdp0.s)*(1+stdp1.s)));
                   1355:        return(Xlambert);
                   1356: }
                   1357: 0707070035051030651006640000030000040000011402120533472767500001600000000445libmap/laue.c#include "map.h"
                   1358: 
                   1359: 
                   1360: static int
                   1361: Xlaue(struct place *place, double *x, double *y)
                   1362: {
                   1363:        double r;
                   1364:        if(place->nlat.l<PI/4+FUZZ)
                   1365:                return(-1);
                   1366:        r = tan(PI-2*place->nlat.l);
                   1367:        if(r>3)
                   1368:                return(-1);
                   1369:        *x = - r * place->wlon.s;
                   1370:        *y = - r * place->wlon.c;
                   1371:        return(1);
                   1372: }
                   1373: 
                   1374: proj
                   1375: laue(void)
                   1376: {
                   1377:        return(Xlaue);
                   1378: }
                   1379: 0707070035051030631006640000030000040000011402140533472767500002200000001026libmap/mercator.c#include "map.h"
                   1380: 
                   1381: static int
                   1382: Xmercator(struct place *place, double *x, double *y)
                   1383: {
                   1384:        if(fabs(place->nlat.l) > 80.*RAD)
                   1385:                return(-1);
                   1386:        *x = -place->wlon.l;
                   1387:        *y = 0.5*log((1+place->nlat.s)/(1-place->nlat.s));
                   1388:        return(1);
                   1389: }
                   1390: 
                   1391: proj
                   1392: mercator(void)
                   1393: {
                   1394:        return(Xmercator);
                   1395: }
                   1396: 
                   1397: static double ecc = ECC;
                   1398: 
                   1399: static int
                   1400: Xspmercator(struct place *place, double *x, double *y)
                   1401: {
                   1402:        if(Xmercator(place,x,y) < 0)
                   1403:                return(-1);
                   1404:        *y += 0.5*ecc*log((1-ecc*place->nlat.s)/(1+ecc*place->nlat.s));
                   1405:        return(1);
                   1406: }
                   1407: 
                   1408: proj
                   1409: sp_mercator(void)
                   1410: {
                   1411:        return(Xspmercator);
                   1412: }
                   1413: 0707070035051030621006640000030000040000011402160533472767500002300000000616libmap/mollweide.c#include "map.h"
                   1414: 
                   1415: static int
                   1416: Xmollweide(struct place *place, double *x, double *y)
                   1417: {
                   1418:        double z;
                   1419:        double w;
                   1420:        z = place->nlat.l;
                   1421:        if(fabs(z)<89.9*RAD)
                   1422:                do {    /*newton for 2z+sin2z=pi*sin(lat)*/
                   1423:                        w = (2*z+sin(2*z)-PI*place->nlat.s)/(2+2*cos(2*z));
                   1424:                        z -= w;
                   1425:                } while(fabs(w)>=.00001);
                   1426:        *y = sin(z);
                   1427:        *x = - (2/PI)*cos(z)*place->wlon.l;
                   1428:        return(1);
                   1429: }
                   1430: 
                   1431: proj
                   1432: mollweide(void)
                   1433: {
                   1434:        return(Xmollweide);
                   1435: }
                   1436: 0707070035051030521006640000030000040000010633000533472767600002300000000570libmap/newyorker.c#include "map.h"
                   1437: 
                   1438: static double a;
                   1439: 
                   1440: static int
                   1441: Xnewyorker(struct place *place, double *x, double *y)
                   1442: {
                   1443:        double r = PI/2 - place->nlat.l;
                   1444:        double s;
                   1445:        if(r<.001)      /* cheat to plot center */
                   1446:                s = 0;
                   1447:        else if(r<a)
                   1448:                return -1;
                   1449:        else
                   1450:                s = log(r/a);
                   1451:        *x = -s * place->wlon.s;
                   1452:        *y = -s * place->wlon.c;
                   1453:        return(1);
                   1454: }
                   1455: 
                   1456: proj
                   1457: newyorker(double a0)
                   1458: {
                   1459:        a = a0*RAD;
                   1460:        return(Xnewyorker);
                   1461: }
                   1462: 0707070035051030611006640000030000040000011402220533472767600002600000000370libmap/orthographic.c#include "map.h"
                   1463: 
                   1464: int
                   1465: Xorthographic(struct place *place, double *x, double *y)
                   1466: {
                   1467:        *x = - place->nlat.c * place->wlon.s;
                   1468:        *y = - place->nlat.c * place->wlon.c;
                   1469:        return(place->nlat.l<0.? 0 : 1);
                   1470: }
                   1471: 
                   1472: proj
                   1473: orthographic(void)
                   1474: {
                   1475:        return(Xorthographic);
                   1476: }
                   1477: 0707070035051030601006640000030000040000011402240533472767600002500000001435libmap/perspective.c#include "map.h"
                   1478: 
                   1479: static double viewpt;
                   1480: 
                   1481: static int
                   1482: Xperspective(struct place *place, double *x, double *y)
                   1483: {
                   1484:        double r;
                   1485:        if(viewpt<=1. && place->nlat.s<=viewpt+.01)
                   1486:                return(-1);
                   1487:        r = place->nlat.c*(viewpt - 1.)/(viewpt - place->nlat.s);
                   1488:        *x = - r*place->wlon.s;
                   1489:        *y = - r*place->wlon.c;
                   1490:        if(r>4.)
                   1491:                return(0);
                   1492:        if(fabs(viewpt)>1. && place->nlat.s<=1./viewpt)
                   1493:                return(0);
                   1494:        return(1);
                   1495: }
                   1496: 
                   1497: int
                   1498: Xstereographic(struct place *place, double *x, double *y)
                   1499: {
                   1500:        viewpt = -1;
                   1501:        return(Xperspective(place, x, y));
                   1502: }
                   1503: 
                   1504: proj
                   1505: perspective(double radius)
                   1506: {
                   1507:        viewpt = radius;
                   1508:        if(radius>=1000.)
                   1509:                return(Xorthographic);
                   1510:        if(fabs(radius-1.)<.0001)
                   1511:                return(0);
                   1512:        return(Xperspective);
                   1513: }
                   1514: 
                   1515: proj
                   1516: stereographic(void)
                   1517: {
                   1518:        viewpt = -1.;
                   1519:        return(Xperspective);
                   1520: }
                   1521: 
                   1522: proj
                   1523: gnomonic(void)
                   1524: {
                   1525:        viewpt = 0.;
                   1526:        return(Xperspective);
                   1527: }
                   1528: 0707070035051030571006640000030000040000011402260533472767700002300000001047libmap/polyconic.c#include "map.h"
                   1529: 
                   1530: int
                   1531: Xpolyconic(struct place *place, double *x, double *y)
                   1532: {
                   1533:        double r, alpha;
                   1534:        double lat2, lon2;
                   1535:        if(fabs(place->nlat.l) > .01) {
                   1536:                r = place->nlat.c / place->nlat.s;
                   1537:                alpha = place->wlon.l * place->nlat.s;
                   1538:                *y = place->nlat.l + r*(1 - cos(alpha));
                   1539:                *x = - r*sin(alpha);
                   1540:        } else {
                   1541:                lon2 = place->wlon.l * place->wlon.l;
                   1542:                lat2 = place->nlat.l * place->nlat.l;
                   1543:                *y = place->nlat.l * (1+(lon2/2)*(1-(8+lon2)*lat2/12));
                   1544:                *x = - place->wlon.l * (1-lat2*(3+lon2)/6);
                   1545:        }
                   1546:        return(1);
                   1547: }
                   1548: 
                   1549: proj
                   1550: polyconic(void)
                   1551: {
                   1552:        return(Xpolyconic);
                   1553: }
                   1554: 0707070035051030561006640000030000040000011402300533472770000002500000000426libmap/rectangular.c#include "map.h"
                   1555: 
                   1556: static double scale;
                   1557: 
                   1558: static int
                   1559: Xrectangular(struct place *place, double *x, double *y)
                   1560: {
                   1561:        *x = -scale*place->wlon.l;
                   1562:        *y = place->nlat.l;
                   1563:        return(1);
                   1564: }
                   1565: 
                   1566: proj
                   1567: rectangular(double par)
                   1568: {
                   1569:        scale = cos(par*RAD);
                   1570:        if(scale<.1)
                   1571:                return 0;
                   1572:        return(Xrectangular);
                   1573: }
                   1574: 0707070035051030361006640000030000040000011402320533472770000002500000001143libmap/simpleconic.c#include "map.h"
                   1575: 
                   1576: static double r0, a;
                   1577: 
                   1578: static int
                   1579: Xsimpleconic(struct place *place, double *x, double *y)
                   1580: {
                   1581:        double r = r0 - place->nlat.l;
                   1582:        double t = a*place->wlon.l;
                   1583:        *x = -r*sin(t);
                   1584:        *y = -r*cos(t);
                   1585:        return 1;
                   1586: }
                   1587: 
                   1588: proj
                   1589: simpleconic(double par0, double par1)
                   1590: {
                   1591:        struct coord lat0;
                   1592:        struct coord lat1;
                   1593:        deg2rad(par0,&lat0);
                   1594:        deg2rad(par1,&lat1);
                   1595:        if(fabs(lat0.l+lat1.l)<.01)
                   1596:                return rectangular(par0);
                   1597:        if(fabs(lat0.l-lat1.l)<.01) {
                   1598:                a = lat0.s/lat0.l;
                   1599:                r0 = lat0.c/lat0.s + lat0.l;
                   1600:        } else {
                   1601:                a = (lat1.c-lat0.c)/(lat0.l-lat1.l);
                   1602:                r0 = ((lat0.c+lat1.c)/a + lat1.l + lat0.l)/2;
                   1603:        }
                   1604:        return Xsimpleconic;
                   1605: }
                   1606: 0707070035051030551006640000030000040000011402360533472770000002400000000312libmap/sinusoidal.c#include "map.h"
                   1607: 
                   1608: int
                   1609: Xsinusoidal(struct place *place, double *x, double *y)
                   1610: {
                   1611:        *x = - place->wlon.l * place->nlat.c;
                   1612:        *y = place->nlat.l;
                   1613:        return(1);
                   1614: }
                   1615: 
                   1616: proj
                   1617: sinusoidal(void)
                   1618: {
                   1619:        return(Xsinusoidal);
                   1620: }
                   1621: 0707070035051030541006640000030000040000011402400533472770100001700000011457libmap/tetra.c#include "map.h"
                   1622: 
                   1623: /*
                   1624:  *     conformal map of earth onto tetrahedron
                   1625:  *     the stages of mapping are
                   1626:  *     (a) stereo projection of tetrahedral face onto
                   1627:  *         isosceles curvilinear triangle with 3 120-degree
                   1628:  *         angles and one straight side
                   1629:  *     (b) map of this triangle onto half plane cut along
                   1630:  *         3 rays from the roots of unity to infinity
                   1631:  *             formula (z^4+2*3^.5*z^2-1)/(z^4-2*3^.5*z^2-1)
                   1632:  *     (c) do 3 times for  each sector of plane:
                   1633:  *         map of |arg z|<=pi/6, cut along z>1 into
                   1634:  *         triangle |arg z|<=pi/6, Re z<=const,
                   1635:  *         with upper side of cut going into upper half of
                   1636:  *         of vertical side of triangle and lowere into lower
                   1637:  *             formula int from 0 to z dz/sqrt(1-z^3)
                   1638:  *
                   1639:  *     int from u to 1 3^.25*du/sqrt(1-u^3) =
                   1640:                F(acos((rt3-1+u)/(rt3+1-u)),sqrt(1/2+rt3/4))
                   1641:  *     int from 1 to u 3^.25*du/sqrt(u^3-1) =
                   1642:  *             F(acos((rt3+1-u)/(rt3-1+u)),sqrt(1/2-rt3/4))
                   1643:  *     this latter formula extends analytically down to
                   1644:  *     u=0 and is the basis of this routine, with the
                   1645:  *     argument of complex elliptic integral elco2
                   1646:  *     being tan(acos...)
                   1647:  *     the formula F(pi-x,k) = 2*F(pi/2,k)-F(x,k) is
                   1648:  *     used to cross over into the region where Re(acos...)>pi/2
                   1649:  *             f0 and fpi are suitably scaled complete integrals
                   1650: */
                   1651: 
                   1652: #define TFUZZ 0.00001
                   1653: 
                   1654: static struct place tpole[4];  /* point of tangency of tetrahedron face*/
                   1655: static double tpoleinit[4][2] = {
                   1656:        1.,     0.,
                   1657:        1.,     180.,
                   1658:        -1.,    90.,
                   1659:        -1.,    -90.
                   1660: };
                   1661: static struct tproj {
                   1662:        double tlat,tlon;       /* center of stereo projection*/
                   1663:        double ttwist;          /* rotatn before stereo*/
                   1664:        double trot;            /*rotate after projection*/
                   1665:        struct place projpl;    /*same as tlat,tlon*/
                   1666:        struct coord projtw;    /*same as ttwist*/
                   1667:        struct coord postrot;   /*same as trot*/
                   1668: } tproj[4][4] = {
                   1669: {/*00*/        {0.},
                   1670:  /*01*/        {90.,   0.,     90.,    -90.},
                   1671:  /*02*/        {0.,    45.,    -45.,   150.},
                   1672:  /*03*/        {0.,    -45.,   -135.,  30.}
                   1673: },
                   1674: {/*10*/        {90.,   0.,     -90.,   90.},
                   1675:  /*11*/ {0.},
                   1676:  /*12*/ {0.,   135.,   -135.,  -150.},
                   1677:  /*13*/        {0.,    -135.,  -45.,   -30.}
                   1678: },
                   1679: {/*20*/        {0.,    45.,    135.,   -30.},
                   1680:  /*21*/        {0.,    135.,   45.,    -150.},
                   1681:  /*22*/        {0.},
                   1682:  /*23*/        {-90.,  0.,     180.,   90.}
                   1683: },
                   1684: {/*30*/        {0.,    -45.,   45.,    -150.},
                   1685:  /*31*/ {0.,   -135.,  135.,   -30.},
                   1686:  /*32*/        {-90.,  0.,     0.,     90.},
                   1687:  /*33*/ {0.} 
                   1688: }};
                   1689: static double tx[4] = {        /*where to move facet after final rotation*/
                   1690:        0.,     0.,     -1.,    1.      /*-1,1 to be sqrt(3)*/
                   1691: };
                   1692: static double ty[4] = {
                   1693:        0.,     2.,     -1.,    -1.
                   1694: };
                   1695: static double root3;
                   1696: static double rt3inv;
                   1697: static double two_rt3;
                   1698: static double tkc,tk,tcon;
                   1699: static double f0r,f0i,fpir,fpii;
                   1700: 
                   1701: static void
                   1702: twhichp(struct place *g, int *p, int *q)
                   1703: {
                   1704:        int i,j,k;
                   1705:        double cosdist[4];
                   1706:        struct place *tp;
                   1707:        for(i=0;i<4;i++) {
                   1708:                tp = &tpole[i];
                   1709:                cosdist[i] = g->nlat.s*tp->nlat.s +
                   1710:                          g->nlat.c*tp->nlat.c*(
                   1711:                          g->wlon.s*tp->wlon.s +
                   1712:                          g->wlon.c*tp->wlon.c);
                   1713:        }
                   1714:        j = 0;
                   1715:        for(i=1;i<4;i++)
                   1716:                if(cosdist[i] > cosdist[j])
                   1717:                        j = i;
                   1718:        *p = j;
                   1719:        k = j==0?1:0;
                   1720:        for(i=0;i<4;i++)
                   1721:                if(i!=j&&cosdist[i]>cosdist[k])
                   1722:                        k = i;
                   1723:        *q = k;
                   1724: }
                   1725: 
                   1726: int
                   1727: Xtetra(struct place *place, double *x, double *y)
                   1728: {
                   1729:        int i,j;
                   1730:        struct place pl;
                   1731:        register struct tproj *tpp;
                   1732:        double vr, vi;
                   1733:        double br, bi;
                   1734:        double zr,zi,z2r,z2i,z4r,z4i,sr,si,tr,ti;
                   1735:        twhichp(place,&i,&j);
                   1736:        copyplace(place,&pl);
                   1737:        norm(&pl,&tproj[i][j].projpl,&tproj[i][j].projtw);
                   1738:        Xstereographic(&pl,&vr,&vi);
                   1739:        zr = vr/2;
                   1740:        zi = vi/2;
                   1741:        if(zr<=TFUZZ)
                   1742:                zr = TFUZZ;
                   1743:        csq(zr,zi,&z2r,&z2i);
                   1744:        csq(z2r,z2i,&z4r,&z4i);
                   1745:        z2r *= two_rt3;
                   1746:        z2i *= two_rt3;
                   1747:        cdiv(z4r+z2r-1,z4i+z2i,z4r-z2r-1,z4i-z2i,&sr,&si);
                   1748:        csqrt(sr-1,si,&tr,&ti);
                   1749:        cdiv(tcon*tr,tcon*ti,root3+1-sr,-si,&br,&bi);
                   1750:        if(br<0) {
                   1751:                br = -br;
                   1752:                bi = -bi;
                   1753:                if(!elco2(br,bi,tk,1.,1.,&vr,&vi))
                   1754:                        return 0;
                   1755:                vr = fpir - vr;
                   1756:                vi = fpii - vi;
                   1757:        } else 
                   1758:                if(!elco2(br,bi,tk,1.,1.,&vr,&vi))
                   1759:                        return 0;
                   1760:        if(si>=0) {
                   1761:                tr = f0r - vi;
                   1762:                ti = f0i + vr;
                   1763:        } else {
                   1764:                tr = f0r + vi;
                   1765:                ti = f0i - vr;
                   1766:        }
                   1767:        tpp = &tproj[i][j];
                   1768:        *x = tr*tpp->postrot.c +
                   1769:             ti*tpp->postrot.s + tx[i];
                   1770:        *y = ti*tpp->postrot.c -
                   1771:             tr*tpp->postrot.s + ty[i];
                   1772:        return(1);
                   1773: }
                   1774: 
                   1775: int
                   1776: tetracut(struct place *g, struct place *og, double *cutlon)
                   1777: {
                   1778:        int i,j,k;
                   1779:        if((g->nlat.s<=-rt3inv&&og->nlat.s<=-rt3inv) && 
                   1780:           (ckcut(g,og,*cutlon=0.)==2||ckcut(g,og,*cutlon=PI)==2))
                   1781:                return(2);
                   1782:        twhichp(g,&i,&k);
                   1783:        twhichp(og,&j,&k);
                   1784:        if(i==j||i==0||j==0)
                   1785:                return(1);
                   1786:        return(0);
                   1787: }
                   1788: 
                   1789: proj
                   1790: tetra(void)
                   1791: {
                   1792:        register i;
                   1793:        int j;
                   1794:        register struct place *tp;
                   1795:        register struct tproj *tpp;
                   1796:        double t;
                   1797:        root3 = sqrt(3.);
                   1798:        rt3inv = 1/root3;
                   1799:        two_rt3 = 2*root3;
                   1800:        tkc = sqrt(.5-.25*root3);
                   1801:        tk = sqrt(.5+.25*root3);
                   1802:        tcon = 2*sqrt(root3);
                   1803:        elco2(tcon/(root3-1),0.,tkc,1.,1.,&f0r,&f0i);
                   1804:        elco2(1.e15,0.,tk,1.,1.,&fpir,&fpii);
                   1805:        fpir *= 2;
                   1806:        fpii *= 2;
                   1807:        for(i=0;i<4;i++) {
                   1808:                tx[i] *= f0r*root3;
                   1809:                ty[i] *= f0r;
                   1810:                tp = &tpole[i];
                   1811:                t = tp->nlat.s = tpoleinit[i][0]/root3;
                   1812:                tp->nlat.c = sqrt(1 - t*t);
                   1813:                tp->nlat.l = atan2(tp->nlat.s,tp->nlat.c);
                   1814:                deg2rad(tpoleinit[i][1],&tp->wlon);
                   1815:                for(j=0;j<4;j++) {
                   1816:                        tpp = &tproj[i][j];
                   1817:                        latlon(tpp->tlat,tpp->tlon,&tpp->projpl);
                   1818:                        deg2rad(tpp->ttwist,&tpp->projtw);
                   1819:                        deg2rad(tpp->trot,&tpp->postrot);
                   1820:                }
                   1821:        }
                   1822:        return(Xtetra);
                   1823: }
                   1824: 
                   1825: 0707070035051030711006640000030000040000011402440533472770100002500000001041libmap/trapezoidal.c#include "map.h"
                   1826: 
                   1827: static struct coord stdpar0, stdpar1;
                   1828: static double k;
                   1829: static double yeq;
                   1830: 
                   1831: static int
                   1832: Xtrapezoidal(struct place *place, double *x, double *y)
                   1833: {
                   1834:        *y = yeq + place->nlat.l;
                   1835:        *x = *y*k*place->wlon.l;
                   1836:        return 1;
                   1837: }
                   1838: 
                   1839: proj
                   1840: trapezoidal(double par0, double par1)
                   1841: {
                   1842:        if(fabs(fabs(par0)-fabs(par1))<.1)
                   1843:                return rectangular(par0);
                   1844:        deg2rad(par0,&stdpar0);
                   1845:        deg2rad(par1,&stdpar1);
                   1846:        if(fabs(par1-par0) < .1)
                   1847:                k = stdpar1.s;
                   1848:        else
                   1849:                k = (stdpar1.c-stdpar0.c)/(stdpar0.l-stdpar1.l);
                   1850:        yeq = -stdpar1.l - stdpar1.c/k;
                   1851:        return Xtrapezoidal;
                   1852: }
                   1853: 0707070035051030431006640000030000040000011400500533472770100002100000003153libmap/twocirc.c#include "map.h"
                   1854: 
                   1855: static double
                   1856: quadratic(double a, double b, double c)
                   1857: {
                   1858:        double disc = b*b - 4*a*c;
                   1859:        return disc<0? 0: (-b-sqrt(disc))/(2*a);
                   1860: }
                   1861: 
                   1862: /* for projections with meridians being circles centered
                   1863: on the x axis and parallels being circles centered on the y
                   1864: axis.  Find the intersection of the meridian thru (m,0), (90,0),
                   1865: with the parallel thru (0,p), (p1,p2) */
                   1866: 
                   1867: static int
                   1868: twocircles(double m, double p, double p1, double p2, double *x, double *y)
                   1869: {
                   1870:        double a;       /* center of meridian circle, a>0 */
                   1871:        double b;       /* center of parallel circle, b>0 */
                   1872:        double t,bb;
                   1873:        if(m > 0) {
                   1874:                twocircles(-m,p,p1,p2,x,y);
                   1875:                *x = -*x;
                   1876:        } else if(p < 0) {
                   1877:                twocircles(m,-p,p1,-p2,x,y);
                   1878:                *y = -*y;
                   1879:        } else if(p < .01) {
                   1880:                *x = m;
                   1881:                t = m/p1;
                   1882:                *y = p + (p2-p)*t*t;
                   1883:        } else if(m > -.01) {
                   1884:                *y = p;
                   1885:                *x = m - m*p*p;
                   1886:        } else {
                   1887:                b = p>=1? 1: p>.99? 0.5*(p+1 + p1*p1/(1-p)):
                   1888:                        0.5*(p*p-p1*p1-p2*p2)/(p-p2);
                   1889:                a = .5*(m - 1/m);
                   1890:                t = m*m-p*p+2*(b*p-a*m);
                   1891:                bb = b*b;
                   1892:                *x = quadratic(1+a*a/bb, -2*a + a*t/bb,
                   1893:                        t*t/(4*bb) - m*m + 2*a*m);
                   1894:                *y = (*x*a+t/2)/b;
                   1895:        }
                   1896:        return 1;
                   1897: }              
                   1898: 
                   1899: static int
                   1900: Xglobular(struct place *place, double *x, double *y)
                   1901: {
                   1902:        twocircles(-2*place->wlon.l/PI,
                   1903:                2*place->nlat.l/PI, place->nlat.c, place->nlat.s, x, y);
                   1904:        return 1;
                   1905: }      
                   1906: 
                   1907: proj
                   1908: globular(void)
                   1909: {
                   1910:        return Xglobular;
                   1911: }
                   1912: 
                   1913: static int
                   1914: Xvandergrinten(struct place *place, double *x, double *y)
                   1915: {
                   1916:        double t = 2*place->nlat.l/PI;
                   1917:        double abst = fabs(t);
                   1918:        double pval = abst>=1? 1: abst/(1+sqrt(1-t*t));
                   1919:        double p2 = 2*pval/(1+pval);
                   1920:        twocircles(-place->wlon.l/PI, pval, sqrt(1-p2*p2), p2, x, y);
                   1921:        if(t < 0) 
                   1922:                *y = -*y;
                   1923:        return 1;
                   1924: }
                   1925: 
                   1926: proj
                   1927: vandergrinten(void)
                   1928: {
                   1929:        return Xvandergrinten;
                   1930: }
                   1931: 0707070035051030531006640000030000040000011402460533501406400002000000004626libmap/zcoord.c#include "map.h"
                   1932: 
                   1933: static double cirmod(double);
                   1934: 
                   1935: static struct place pole;      /* map pole is tilted to here */
                   1936: static struct coord twist;     /* then twisted this much */
                   1937: static struct place ipole;     /* inverse transfrom */
                   1938: static struct coord itwist;
                   1939: 
                   1940: void
                   1941: orient(double lat, double lon, double theta)
                   1942: {
                   1943:        lat = cirmod(lat);
                   1944:        if(lat>90.) {
                   1945:                lat = 180. - lat;
                   1946:                lon -= 180.;
                   1947:                theta -= 180.;
                   1948:        } else if(lat < -90.) {
                   1949:                lat = -180. - lat;
                   1950:                lon -= 180.;
                   1951:                theta -= 180.;
                   1952:        }
                   1953:        latlon(lat,lon,&pole);
                   1954:        deg2rad(theta, &twist);
                   1955:        latlon(lat,180.-theta,&ipole);
                   1956:        deg2rad(180.-lon, &itwist);
                   1957: }
                   1958: 
                   1959: void
                   1960: latlon(double lat, double lon, struct place *p)
                   1961: {
                   1962:        lat = cirmod(lat);
                   1963:        if(lat>90.) {
                   1964:                lat = 180. - lat;
                   1965:                lon -= 180.;
                   1966:        } else if(lat < -90.) {
                   1967:                lat = -180. - lat;
                   1968:                lon -= 180.;
                   1969:        }
                   1970:        deg2rad(lat,&p->nlat);
                   1971:        deg2rad(lon,&p->wlon);
                   1972: }
                   1973: 
                   1974: void
                   1975: deg2rad(double theta, struct coord *coord)
                   1976: {
                   1977:        theta = cirmod(theta);
                   1978:        coord->l = theta*RAD;
                   1979:        if(theta==90) {
                   1980:                coord->s = 1;
                   1981:                coord->c = 0;
                   1982:        } else if(theta== -90) {
                   1983:                coord->s = -1;
                   1984:                coord->c = 0;
                   1985:        } else
                   1986:                sincos(coord);
                   1987: }
                   1988: 
                   1989: static double
                   1990: cirmod(double theta)
                   1991: {
                   1992:        while(theta >= 180.)
                   1993:                theta -= 360;
                   1994:        while(theta<-180.)
                   1995:                theta += 360.;
                   1996:        return(theta);
                   1997: }
                   1998: 
                   1999: void
                   2000: sincos(struct coord *coord)
                   2001: {
                   2002:        coord->s = sin(coord->l);
                   2003:        coord->c = cos(coord->l);
                   2004: }
                   2005: 
                   2006: void
                   2007: normalize(struct place *gg)
                   2008: {
                   2009:        norm(gg,&pole,&twist);
                   2010: }
                   2011: 
                   2012: void
                   2013: invert(struct place *g)
                   2014: {
                   2015:        norm(g,&ipole,&itwist);
                   2016: }
                   2017: 
                   2018: void
                   2019: norm(struct place *gg, struct place *pp, struct coord *tw)
                   2020: {
                   2021:        register struct place *g;       /*geographic coords */
                   2022:        register struct place *p;       /* new pole in old coords*/
                   2023:        struct place m;                 /* standard map coords*/
                   2024:        g = gg;
                   2025:        p = pp;
                   2026:        if(p->nlat.s == 1.) {
                   2027:                if(p->wlon.l+tw->l == 0.)
                   2028:                        return;
                   2029:                g->wlon.l -= p->wlon.l+tw->l;
                   2030:        } else {
                   2031:                if(p->wlon.l != 0) {
                   2032:                        g->wlon.l -= p->wlon.l;
                   2033:                        sincos(&g->wlon);
                   2034:                }
                   2035:                m.nlat.s = p->nlat.s * g->nlat.s
                   2036:                        + p->nlat.c * g->nlat.c * g->wlon.c;
                   2037:                m.nlat.c = sqrt(1. - m.nlat.s * m.nlat.s);
                   2038:                m.nlat.l = atan2(m.nlat.s, m.nlat.c);
                   2039:                m.wlon.s = g->nlat.c * g->wlon.s;
                   2040:                m.wlon.c = p->nlat.c * g->nlat.s
                   2041:                        - p->nlat.s * g->nlat.c * g->wlon.c;
                   2042:                m.wlon.l = atan2(m.wlon.s, - m.wlon.c)
                   2043:                        - tw->l;
                   2044:                *g = m;
                   2045:        }
                   2046:        sincos(&g->wlon);
                   2047:        if(g->wlon.l>PI)
                   2048:                g->wlon.l -= 2*PI;
                   2049:        else if(g->wlon.l<-PI)
                   2050:                g->wlon.l += 2*PI;
                   2051: }
                   2052: 
                   2053: void
                   2054: printp(struct place *g)
                   2055: {
                   2056: printf("%.3f %.3f %.3f %.3f %.3f %.3f\n",
                   2057: g->nlat.l,g->nlat.s,g->nlat.c,g->wlon.l,g->wlon.s,g->wlon.c);
                   2058: }
                   2059: 
                   2060: void
                   2061: copyplace(struct place *g1, struct place *g2)
                   2062: {
                   2063:        *g2 = *g1;
                   2064: }
                   2065: 0707070035050172611006640000030000040000010336560447134002200000600000003321map.5.TH MAP 5
                   2066: .CT 1 inst_info graphics
                   2067: .SH NAME
                   2068: map \- digitized map formats
                   2069: .SH DESCRIPTION
                   2070: Files used by
                   2071: .IR  map (7)
                   2072: are a sequence of structures of the form:
                   2073: .PP
                   2074: .EX
                   2075: struct {
                   2076:        signed char patchlatitude;
                   2077:        signed char patchlongitude;
                   2078:        short n;
                   2079:        union {
                   2080:                struct {
                   2081:                        short latitude;
                   2082:                        short longitude;
                   2083:                } point[n];
                   2084:                struct {
                   2085:                        short latitude;
                   2086:                        short longitude;
                   2087:                        struct {
                   2088:                                signed char latdiff;
                   2089:                                signed char londiff;
                   2090:                        } point[\-n];
                   2091:                } highres;
                   2092:        } segment;
                   2093: };
                   2094: .EE
                   2095: .PP
                   2096: Fields
                   2097: .L patchlatitude
                   2098: and
                   2099: .L patchlongitude
                   2100: tell to what
                   2101: 10-degree by 10-degree
                   2102: patch of the earth's surface a segment belongs.
                   2103: Their values range from \-9 to 8 and from \-18 to 17,
                   2104: respectively, and indicate the coordinates of the
                   2105: southeast corner of the patch in units of 10 degrees.
                   2106: .PP
                   2107: Each segment of
                   2108: .RB | n |
                   2109: points is connected; consecutive segments
                   2110: are not necessarily related.
                   2111: Latitude and longitude
                   2112: are measured in units of 0.0001 radian.
                   2113: If
                   2114: .B n
                   2115: is negative, then
                   2116: differences to the first and succeeding points
                   2117: are measured in units of 0.00001 radian.
                   2118: Latitude is counted positive to the north and
                   2119: longitude positive to the west.
                   2120: .PP
                   2121: The patches are ordered lexicographically by
                   2122: .L patchlatitude
                   2123: then
                   2124: .LR patchlongitude .
                   2125: A printable
                   2126: index to the first segment of each patch
                   2127: in a file named
                   2128: .I data
                   2129: is kept in an associated file named
                   2130: .IB data .x .
                   2131: Each line of an index file contains
                   2132: .L patchlatitude,
                   2133: .L patchlongitude
                   2134: and the byte position
                   2135: of the patch
                   2136: in the map file.
                   2137: Both the map file and the index file are ordered by
                   2138: patch latitude and longitude.
                   2139: .PP
                   2140: Shorts are stored in little-endian order, low byte first, 
                   2141: regardless of computer architecture.
                   2142: To assure portability,
                   2143: .I map
                   2144: accesses them bytewise.
                   2145: .SH "SEE ALSO"
                   2146: .IR map (7), 
                   2147: .IR proj (3)
                   2148: 0707070035050172351006640000030000040000010270460533572105600000600000021604map.7.TH MAP 7
                   2149: .CT 1 inst_info
                   2150: .SH NAME
                   2151: map \- draw maps on various projections
                   2152: .SH SYNOPSIS
                   2153: .B map
                   2154: .I projection
                   2155: [
                   2156: .I param ...
                   2157: ]
                   2158: [
                   2159: .I option ...
                   2160: ]
                   2161: .PP
                   2162: .SH DESCRIPTION
                   2163: .I Map
                   2164: prepares on the standard output a
                   2165: map suitable for display by any
                   2166: plotting filter described in
                   2167: .IR  plot (1).
                   2168: A menu of projections is produced in response to an unknown
                   2169: .IR projection .
                   2170: For the meanings of
                   2171: .I params
                   2172: pertinent to particular projections
                   2173: see
                   2174: .IR  proj (3).
                   2175: .PP
                   2176: The default data for
                   2177: .I map
                   2178: are world shorelines.
                   2179: Option
                   2180: .B -f
                   2181: accesses the higher-resolution World Data Bank II.
                   2182: .TP
                   2183: .BR -f " [ \fIfeature\fR ... ]"
                   2184: Features are ranked 1 (default) to 4 from major to minor.
                   2185: Higher-numbered ranks include all lower-numbered ones.
                   2186: Features are
                   2187: .RS
                   2188: .TF country[1-3]
                   2189: .TP
                   2190: .BR shore [ 1 - 4 ] 
                   2191: seacoasts, lakes, and islands; in the absence of
                   2192: .BR -m ,
                   2193: option
                   2194: .B -f
                   2195: automatically includes
                   2196: .B shore1
                   2197: .TP
                   2198: .BR ilake [ 1 - 2 ] 
                   2199: intermittent lakes
                   2200: .TP
                   2201: .BR river [ 1 - 4 ] 
                   2202: rivers
                   2203: .TP
                   2204: .BR iriver [ 1 - 3 ] 
                   2205: intermittent rivers
                   2206: .TP
                   2207: .BR canal [ 1 - 3 ] 
                   2208: .BR 3 =irrigation
                   2209: canals
                   2210: .TP
                   2211: .BR glacier
                   2212: .TP
                   2213: .BR iceshelf [ 12 ] 
                   2214: .TP
                   2215: .BR reef
                   2216: .TP
                   2217: .BR saltpan [ 12 ] 
                   2218: .TP
                   2219: .BR country [ 1 - 3 ] 
                   2220: .BR 2 =disputed
                   2221: boundaries,
                   2222: .BR 3 =indefinite
                   2223: boundaries
                   2224: .TP
                   2225: .BR state
                   2226: states and provinces (US and Canada only)
                   2227: .PD
                   2228: .RE
                   2229: .PP
                   2230: In other options
                   2231: coordinates are in degrees, with north latitude
                   2232: and west longitude counted as positive.
                   2233: .TP 0
                   2234: .BI -l " S N E W"
                   2235: Set the southern and northern latitude
                   2236: and the eastern and western longitude limits.
                   2237: Missing arguments are filled out from the list
                   2238: \-90, 90, \-180, 180.
                   2239: .TP
                   2240: .BI -k " S N E W
                   2241: Set the scale as if for a map with limits
                   2242: .B -l
                   2243: .I "S N E W"
                   2244: and no
                   2245: .B -w
                   2246: option.
                   2247: .TP
                   2248: .BI -o " lat lon rot"
                   2249: Orient the map in a nonstandard position.
                   2250: Imagine a transparent gridded sphere around the globe.
                   2251: Turn the overlay about the North Pole
                   2252: so that the Prime Meridian (longitude 0)
                   2253: of the overlay coincides with meridian
                   2254: .I lon
                   2255: on the globe.
                   2256: Then tilt the North Pole of the
                   2257: overlay along its Prime Meridian to latitude
                   2258: .I lat
                   2259: on the globe.
                   2260: Finally again turn the
                   2261: overlay about its `North Pole' so
                   2262: that its Prime Meridian coincides with the previous position
                   2263: of meridian
                   2264: .IR rot .
                   2265: Project the map in
                   2266: the standard form appropriate to the overlay, but presenting
                   2267: information from the underlying globe.
                   2268: Missing arguments are filled out from the list
                   2269: 90, 0, 0.
                   2270: In the absence of
                   2271: .BR \-o ,
                   2272: the orientation is 90, 0,
                   2273: .I m,
                   2274: where
                   2275: .I m
                   2276: is the middle of the longitude range.
                   2277: .TP
                   2278: .BI -w " S N E W"
                   2279: Window the map by the specified latitudes
                   2280: and longitudes in the tilted, rotated coordinate system.
                   2281: Missing arguments are filled out from the list \-90, 90, \-180, 180.
                   2282: (It is wise to give an encompassing
                   2283: .B -l
                   2284: option with
                   2285: .BR -w .
                   2286: Otherwise for small windows computing time
                   2287: varies inversely with area!)
                   2288: .TP
                   2289: .BI -d " n"
                   2290: For speed, plot only every
                   2291: .IR n th
                   2292: point.
                   2293: .TP
                   2294: .B  -r
                   2295: Reverse left and right
                   2296: (good for star charts and inside-out views).
                   2297: .br
                   2298: .ns
                   2299: .TP
                   2300: .B  -s1
                   2301: .br
                   2302: .ns
                   2303: .TP
                   2304: .B -s2
                   2305: Superpose.  Outputs for a
                   2306: .B -s1
                   2307: map (no closing) and a
                   2308: .B -s2
                   2309: map (no opening) may be concatenated.
                   2310: .TP
                   2311: .BI -g " dlat dlon res"
                   2312: Grid spacings are
                   2313: .I dlat,
                   2314: .I dlon.
                   2315: Zero spacing means no grid.
                   2316: Missing
                   2317: .I dlat
                   2318: is taken to be zero.
                   2319: Missing
                   2320: .I dlon
                   2321: is taken the same as
                   2322: .IR dlat .
                   2323: Grid lines are drawn to a resolution of
                   2324: .I res
                   2325: (2\(de or less by default).
                   2326: In the absence of
                   2327: .BR \-g ,
                   2328: grid spacing is 10\(de.
                   2329: .TP
                   2330: .BI -p " lat lon extent"
                   2331: Position the point
                   2332: .I lat, lon
                   2333: at the center of a square plotting area.
                   2334: Scale the map so that a side of the square is
                   2335: .I extent
                   2336: times the size of one degree of latitude
                   2337: at the center.
                   2338: By default maps are scaled and positioned
                   2339: to fit within the plotting area.
                   2340: An
                   2341: .I extent
                   2342: overrides option
                   2343: .BR -k .
                   2344: .TP
                   2345: .BI -c " x y rot"
                   2346: After all other positioning and scaling operations,
                   2347: rotate the image
                   2348: .I rot
                   2349: degrees counterclockwise about the center 
                   2350: and move the center to position
                   2351: .I x, y,
                   2352: of the plotting area, whose nominal extent is
                   2353: .RI \-1 \(<= x \(<= 1,
                   2354: .RI \-1 \(<= y \(<= 1.
                   2355: The map is clipped to this area.
                   2356: Missing arguments are taken to be 0.
                   2357: .TP
                   2358: .BR -m " [ \fIfile\fP ... ]"
                   2359: Use
                   2360: map data from named files.
                   2361: If no files are named, omit map data.
                   2362: Files that cannot be found directly are looked up
                   2363: a standard directory, which contains, in addition to the
                   2364: data for
                   2365: .BR -f ,
                   2366: .RS
                   2367: .LP
                   2368: .TF counties
                   2369: .TP
                   2370: .B world
                   2371: World Data Bank I from CIA (default)
                   2372: .TP
                   2373: .B states
                   2374: US map from Census Bureau
                   2375: .TP
                   2376: .B counties
                   2377: US map from Census Bureau
                   2378: .PD
                   2379: .RE
                   2380: .IP
                   2381: The environment variables
                   2382: .B MAP 
                   2383: and
                   2384: .B MAPDIR 
                   2385: change the default
                   2386: map and default directory.
                   2387: .TP
                   2388: .BI -b " \fR[ \fPlat1 lon1 lat2 lon2 \fR... ]"
                   2389: Suppress the drawing of the normal boundary
                   2390: (defined by options
                   2391: .BR -l 
                   2392: and
                   2393: .BR -w ).
                   2394: Coordinates, if present, define the vertices of a
                   2395: polygon to which the map is clipped.
                   2396: If only two vertices are given, they are taken to be the
                   2397: diagonal of a rectangle.
                   2398: To draw the polygon, give its vertices as a
                   2399: .B -u
                   2400: track.
                   2401: .TP
                   2402: .BI -t " file ..."
                   2403: The arguments name ASCII files that
                   2404: contain lists of points,
                   2405: given as latitude-longitude pairs in degrees.
                   2406: If the first file is named 
                   2407: .LR - ,
                   2408: the standard input is taken instead.
                   2409: The points of each list are plotted as connected `tracks'.
                   2410: .IP
                   2411: Points in a track file may be followed by label strings.
                   2412: A label breaks the track.
                   2413: A label may be prefixed by
                   2414: \f5"\fR,
                   2415: .LR : ,
                   2416: or 
                   2417: .L !
                   2418: and is terminated by a newline.
                   2419: An unprefixed string or a string prefixed with
                   2420: .L
                   2421: "
                   2422: is displayed at the designated point.
                   2423: The first word of a
                   2424: .L :
                   2425: or
                   2426: .L !
                   2427: string names a special symbol (see option
                   2428: .BR -y ).
                   2429: An optional numerical second word is a scale factor
                   2430: for the size of the symbol, 1 by default.
                   2431: A
                   2432: .L :
                   2433: symbol is aligned with its top to the north; a
                   2434: .L !
                   2435: symbol is aligned vertically on the page.
                   2436: .TP
                   2437: .BI -u " file ..."
                   2438: Same as
                   2439: .BR -t ,
                   2440: except the tracks are
                   2441: unbroken lines.
                   2442: .RB ( -t
                   2443: tracks are dot-dash lines.)
                   2444: .TP
                   2445: .BI -y " file
                   2446: The
                   2447: .I file
                   2448: contains 
                   2449: .IR plot (5)-style
                   2450: data for
                   2451: .L :
                   2452: or
                   2453: .L !
                   2454: labels in
                   2455: .B -t
                   2456: or
                   2457: .B -u
                   2458: files.
                   2459: Each symbol is defined by a comment
                   2460: .BI : name
                   2461: then a sequence of
                   2462: .L m
                   2463: and
                   2464: .L v
                   2465: commands.
                   2466: Coordinates (0,0) fall on the plotting point.
                   2467: Default scaling is as if the nominal plotting range were
                   2468: .LR "ra -1 -1 1 1" ;
                   2469: .L ra
                   2470: commands in
                   2471: .I file
                   2472: change the scaling.
                   2473: .SH EXAMPLES
                   2474: .TP
                   2475: .L
                   2476: map perspective 1.025 -o 40.75 74
                   2477: A view looking down on New York from 100 miles
                   2478: (0.025 of the 4000-mile earth radius).
                   2479: The job can be done faster by limiting the map so as not to `plot'
                   2480: the invisible part of the world:
                   2481: .LR "map perspective 1.025 -o 40.75 74 -l 20 60 30 100".
                   2482: A circular border can be forced by adding option
                   2483: .LR "-w 77.33" .
                   2484: (Latitude 77.33\(de falls just inside a polar cap of
                   2485: opening angle arccos(1/1.025) = 12.6804\(de.)
                   2486: .TP
                   2487: .L
                   2488: map mercator -o 49.25 -106 180
                   2489: A map whose `equator' is a great circle pasing east-west
                   2490: through New York.
                   2491: The pole of the map is placed 90\(de away (40.75+49.25=90)
                   2492: on the
                   2493: other side of the earth.
                   2494: A 180\(de twist around the pole of the map arranges that the
                   2495: Prime Meridian of the map runs from the pole of the
                   2496: map over the North Pole to New York
                   2497: instead of down the back side of the earth.
                   2498: The same effect can be had from
                   2499: .L
                   2500: map mercator -o 130.75 74
                   2501: .TP
                   2502: .L
                   2503: map albers 28 45 -l 20 50 60 130 -m states
                   2504: A customary curved-latitude map of the United States.
                   2505: .TP
                   2506: .L
                   2507: map albers 28 45 -l 20 50 60 130 -y yfile -t tfile
                   2508: An example of tracks, labels, and symbols.
                   2509: Arrows at New York and Miami are 8% and 12%
                   2510: as long as the map is wide.
                   2511: The contents of 
                   2512: .L yfile
                   2513: and
                   2514: .L tfile
                   2515: are
                   2516: .nf
                   2517: .ft L
                   2518: .ta 3i
                   2519: ra -50 -50 50 50       25.77 80.20 :arrow 12   
                   2520: :arrow 25.77  80.20 Miami
                   2521: m -1 0 25.77  80.20 
                   2522: v 0 0  35.00  74.02
                   2523: v -.6 .3       40.67  74.02 !arrow 8
                   2524: m -.6 -.3      40.67  74.02 " New York 
                   2525: v 0 0  34.05 118.25 Los Angeles
                   2526: .ft
                   2527: .TP
                   2528: .L
                   2529: map harrison 2 30 -l -90 90 120 240 -o 90 0 0
                   2530: A fan view covering 60\(de on either
                   2531: side of the Date Line, as seen from one earth radius
                   2532: above the North Pole gazing at the
                   2533: earth's limb, which is 30\(de off vertical.
                   2534: Option
                   2535: .B -o
                   2536: overrides the default
                   2537: .BR "-o 90 0 180" , 
                   2538: which would rotate
                   2539: the scene to behind the observer.
                   2540: .SH FILES
                   2541: All files in directory $MAPDIR
                   2542: .TF counties
                   2543: .TP
                   2544: .F [1-4]??
                   2545: World Data Bank II for option
                   2546: .B -f
                   2547: .TP
                   2548: .BR world , states , counties
                   2549: default and other maps for option
                   2550: .B -m
                   2551: .TP
                   2552: .F *.x
                   2553: map indexes
                   2554: .TP
                   2555: .F map
                   2556: the program proper
                   2557: .SH "SEE ALSO"
                   2558: .IR map (5), 
                   2559: .IR proj (3), 
                   2560: .IR plot (1)
                   2561: .SH DIAGNOSTICS
                   2562: `Map seems to be empty'\(ema coarse survey found
                   2563: zero extent within the 
                   2564: .B -l
                   2565: and
                   2566: .BR -w 
                   2567: bounds; for maps of limited extent
                   2568: the grid resolution,
                   2569: .I res,
                   2570: or the limits may have to be refined.
                   2571: .SH BUGS
                   2572: The syntax of range specifications in
                   2573: .B -y
                   2574: files differs from that in options.
                   2575: .br
                   2576: Windows (option
                   2577: .BR -w )
                   2578: cannot cross the Date Line.
                   2579: .br
                   2580: No borders appear along edges arising from
                   2581: visibility limits.
                   2582: .br
                   2583: Segments that cross a border are dropped, not clipped.
                   2584: .br
                   2585: Certain very long line segments are dropped on the assumption
                   2586: that they were intended to go the other way around the world.
                   2587: .br
                   2588: Automatic scaling may miss the extreme points of
                   2589: peculiarly shaped maps; use option
                   2590: .B -p
                   2591: to recover.
                   2592: .br
                   2593: Although
                   2594: .I map
                   2595: draws grid lines dotted and
                   2596: .B -t
                   2597: tracks dot-dashed, many plotting filters
                   2598: cannot cope and make them solid.
                   2599: 0707070035051031151006640000030000040000020633030533574341400000600000055751map.c#include "map.h"
                   2600: 
                   2601: #define NTRACK 10      /* max number of -t and -u files */
                   2602: #define NFILE 30       /* max number of map files */
                   2603: #define NVERT 20       /* max number of vertices in a -v polygon */
                   2604: #define HALFWIDTH 8192 /* output scaled to fit in -HALFWIDTH,HALFWIDTH */
                   2605: #define LONGLINES (HALFWIDTH*4)        /* permissible segment lengths */
                   2606: #define SHORTLINES (HALFWIDTH/8)
                   2607: #define SCALERATIO 10  /* of abs to rel data (see map(5)) */
                   2608: #define RESOL 2.       /* coarsest resolution for tracing grid (degrees) */
                   2609: #define TWO_THRD 0.66666666666666667
                   2610: 
                   2611: int normproj(double, double, double *, double *);
                   2612: int posproj(double, double, double *, double *);
                   2613: int picut(struct place *, struct place *, double *);
                   2614: double reduce(double);
                   2615: short getshort(FILE *);
                   2616: char *mapindex(char *);
                   2617: proj projection;
                   2618: 
                   2619: 
                   2620: static char *mapdir = "/usr/dict";     /* default map directory */
                   2621: static char *file[NFILE+1] = { /* list of map files */
                   2622:        "world",                /* default map */
                   2623:        0
                   2624: };
                   2625: 
                   2626: 
                   2627: extern struct index index[];
                   2628: int halfwidth = HALFWIDTH;
                   2629: 
                   2630: static int (*cut)(struct place *, struct place *, double *);
                   2631: static int poles;
                   2632: static double orientation[3] = { 90., 0., 0. };        /* -o option */
                   2633: static oriented;       /* nonzero if -o option occurred */
                   2634: static upright;                /* 1 if orientation[0]==90, -1 if -90, else 0*/
                   2635: static int delta = 1;  /* -d setting */
                   2636: static double limits[4] = {    /* -l parameters */
                   2637:        -90., 90., -180., 180.
                   2638: };
                   2639: static double klimits[4] = {   /* -k parameters */
                   2640:        -90., 90., -180., 180.
                   2641: };
                   2642: static int limcase;
                   2643: static double rlimits[4];      /* limits expressed in radians */
                   2644: static double lolat, hilat, lolon, hilon;
                   2645: static double window[4] = {    /* option -w */
                   2646:        -90., 90., -180., 180.
                   2647: };
                   2648: static windowed;       /* nozero if option -w */
                   2649: static struct vert { double x, y; } v[NVERT+2];        /*clipping polygon*/
                   2650: static struct edge { double a, b, c; } e[NVERT]; /* coeffs for linear inequality */
                   2651: static int nvert;      /* number of vertices in clipping polygon */
                   2652: 
                   2653: static double rwindow[4];      /* window, expressed in radians */
                   2654: static double params[2];               /* projection params */
                   2655: /* bounds on output values before scaling; found by coarse survey */
                   2656: static double xmin = 100.;
                   2657: static double xmax = -100.;
                   2658: static double ymin = 100.;
                   2659: static double ymax = -100.;
                   2660: static double xcent, ycent;
                   2661: static double xoff, yoff;
                   2662: double xrange, yrange;
                   2663: static int left = -HALFWIDTH;
                   2664: static int right = HALFWIDTH;
                   2665: static int bottom = -HALFWIDTH;
                   2666: static int top = HALFWIDTH;
                   2667: static int longlines = SHORTLINES; /* drop longer segments */
                   2668: static int shortlines = SHORTLINES;
                   2669: static int bflag = 1;  /* 0 for option -b */
                   2670: static int s1flag = 0; /* 1 for option -s1 */
                   2671: static int s2flag = 0; /* 1 for option -s2 */
                   2672: static int rflag = 0;  /* 1 for option -r */
                   2673: static int mflag = 0;  /* 1 if option -m occurred */
                   2674: static int kflag = 0;  /* 1 if option -k occurred */
                   2675: static double position[3];     /* option -p */
                   2676: static double center[3] = {0., 0., 0.};        /* option -c */
                   2677: static struct coord crot;              /* option -c */
                   2678: static double grid[3] = { 10., 10., RESOL };   /* option -g */
                   2679: static double dlat, dlon;      /* resolution for tracing grid in lat and lon */
                   2680: static double scaling; /* to compute final integer output */
                   2681: static struct track {  /* options -t and -u */
                   2682:        int tracktyp;   /* 't' or 'u' */
                   2683:        char *tracknam; /* name of input file */
                   2684: } track[NTRACK];
                   2685: static int ntrack;     /* number of tracks present */
                   2686: static char *symbolfile;       /* option -y */
                   2687: 
                   2688: void   clamp(double *px, double v);
                   2689: void   clipinit(void);
                   2690: double diddle(struct place *, double, double);
                   2691: double diddle(struct place *, double, double);
                   2692: void   dobounds(double, double, double, double, int);
                   2693: void   dogrid(double, double, double, double);
                   2694: int    duple(struct place *, double);
                   2695: double fmax(double, double);
                   2696: double fmin(double, double);
                   2697: void   getdata(char *);
                   2698: int    gridpt(double, double, int);
                   2699: int    inpoly(double, double);
                   2700: int    inwindow(struct place *);
                   2701: void   pathnames(void);
                   2702: int    pnorm(double);
                   2703: void   radbds(double *w, double *rw);
                   2704: void   revlon(struct place *, double);
                   2705: void   satellite(struct track *);
                   2706: int    seeable(double, double);
                   2707: void   windlim(void);
                   2708: void   realcut(void);
                   2709: 
                   2710: int
                   2711: option(char *s) 
                   2712: {
                   2713: 
                   2714:        if(s[0]=='-' && (s[1]<'0'||s[1]>'9'))
                   2715:                return(s[1]!='.'&&s[1]!=0);
                   2716:        else
                   2717:                return(0);
                   2718: }
                   2719: 
                   2720: void
                   2721: conv(int k, struct coord *g)
                   2722: {
                   2723:        g->l = (0.0001/SCALERATIO)*k;
                   2724:        sincos(g);
                   2725: }
                   2726: 
                   2727: int
                   2728: main(int argc, char *argv[])
                   2729: {
                   2730:        int i,k;
                   2731:        char *s, *t;
                   2732:        double x, y;
                   2733:        double lat, lon;
                   2734:        double *wlim;
                   2735:        double dd;
                   2736:        if(sizeof(short)!=2)
                   2737:                abort();        /* getshort() won't work */
                   2738:        s = getenv("MAP");
                   2739:        if(s)
                   2740:                file[0] = s;
                   2741:        s = getenv("MAPDIR");
                   2742:        if(s)
                   2743:                mapdir = s;
                   2744:        if(argc<=1) 
                   2745:                error("usage: map projection params options");
                   2746:        for(k=0;index[k].name;k++) {
                   2747:                s = index[k].name;
                   2748:                t = argv[1];
                   2749:                while(*s == *t){
                   2750:                        if(*s==0) goto found;
                   2751:                        s++;
                   2752:                        t++;
                   2753:                }
                   2754:        }
                   2755:        fprintf(stderr,"projections:\n");
                   2756:        for(i=0;index[i].name;i++)  {
                   2757:                fprintf(stderr,"%s",index[i].name);
                   2758:                for(k=0; k<index[i].npar; k++)
                   2759:                        fprintf(stderr," p%d", k);
                   2760:                fprintf(stderr,"\n");
                   2761:        }
                   2762:        exit(1);
                   2763: found:
                   2764:        argv += 2;
                   2765:        argc -= 2;
                   2766:        cut = index[k].cut;
                   2767:        poles = index[k].poles;
                   2768:        for(i=0;i<index[k].npar;i++) {
                   2769:                if(i>=argc||option(argv[i])) {
                   2770:                        fprintf(stderr,"%s needs %d params\n",index[k].name,index[k].npar);
                   2771:                        exit(1);
                   2772:                }
                   2773:                params[i] = atof(argv[i]);
                   2774:        }
                   2775:        argv += i;
                   2776:        argc -= i;
                   2777:        while(argc>0&&option(argv[0])) {
                   2778:                argc--;
                   2779:                argv++;
                   2780:                switch(argv[-1][1]) {
                   2781:                case 'm':
                   2782:                        i = 0;
                   2783:                        if(!mflag) while(file[i]!=0)
                   2784:                                        i++;
                   2785:                        for(i=0;i<NFILE&&argc>i&&!option(argv[i]);i++)
                   2786:                                file[i] = argv[i];
                   2787:                        file[i] = 0;
                   2788:                        mflag++;
                   2789:                        argc -= i;
                   2790:                        argv += i;
                   2791:                        break;
                   2792:                case 'b':
                   2793:                        bflag = 0;
                   2794:                        for(nvert=0;nvert<NVERT&&argc>=2;nvert++) {
                   2795:                                if(option(*argv))
                   2796:                                        break;
                   2797:                                v[nvert].x = atof(*argv++);
                   2798:                                argc--;
                   2799:                                if(option(*argv))
                   2800:                                        break;
                   2801:                                v[nvert].y = atof(*argv++);
                   2802:                                argc--;
                   2803:                        }
                   2804:                        if(nvert>=NVERT)
                   2805:                                error("too many clipping vertices");
                   2806:                        break;
                   2807:                case 'g':
                   2808:                        for(i=0;i<3&&argc>i&&!option(argv[i]);i++)
                   2809:                                grid[i] = atof(argv[i]);
                   2810:                        switch(i) {
                   2811:                        case 0:
                   2812:                                grid[0] = grid[1] = 0.;
                   2813:                                break;
                   2814:                        case 1:
                   2815:                                grid[1] = grid[0];
                   2816:                        }
                   2817:                        argc -= i;
                   2818:                        argv += i;
                   2819:                        break;
                   2820:                case 't':
                   2821:                case 'u':
                   2822:                        for(i=0;ntrack<NTRACK&&argc>i&&!option(argv[i]);i++) {
                   2823:                                track[ntrack].tracktyp = argv[-1][1];
                   2824:                                track[ntrack++].tracknam = argv[i];
                   2825:                        }
                   2826:                        argc -= i;
                   2827:                        argv +=i;
                   2828:                        break;
                   2829:                case 'r':
                   2830:                        rflag++;
                   2831:                        break;
                   2832:                case 's':
                   2833:                        switch(argv[-1][2]) {
                   2834:                        case '1':
                   2835:                                s1flag++;
                   2836:                                break;
                   2837:                        case 0:         /* compatibility */
                   2838:                        case '2':
                   2839:                                s2flag++;
                   2840:                        }
                   2841:                        break;
                   2842:                case 'o':
                   2843:                        for(i=0;i<3&&i<argc&&!option(argv[i]);i++)
                   2844:                                orientation[i] = atof(argv[i]);
                   2845:                        oriented++;
                   2846:                        argv += i;
                   2847:                        argc -= i;
                   2848:                        break;
                   2849:                case 'l':
                   2850:                        for(i=0;i<argc&&i<4&&!option(argv[i]);i++)
                   2851:                                limits[i] = atof(argv[i]);
                   2852:                        argv += i;
                   2853:                        argc -= i;
                   2854:                        break;
                   2855:                case 'k':
                   2856:                        kflag++;
                   2857:                        for(i=0;i<argc&&i<4&&!option(argv[i]);i++)
                   2858:                                klimits[i] = atof(argv[i]);
                   2859:                        argv += i;
                   2860:                        argc -= i;
                   2861:                        break;
                   2862:                case 'd':
                   2863:                        if(argc>0&&!option(argv[0])) {
                   2864:                                delta = atoi(argv[0]);
                   2865:                                argv++;
                   2866:                                argc--;
                   2867:                        }
                   2868:                        break;
                   2869:                case 'w':
                   2870:                        windowed++;
                   2871:                        for(i=0;i<argc&&i<4&&!option(argv[i]);i++)
                   2872:                                window[i] = atof(argv[i]);
                   2873:                        argv += i;
                   2874:                        argc -= i;
                   2875:                        break;
                   2876:                case 'c':
                   2877:                        for(i=0;i<3&&argc>i&&!option(argv[i]);i++) 
                   2878:                                center[i] = atof(argv[i]);
                   2879:                        argc -= i;
                   2880:                        argv += i;
                   2881:                        break;
                   2882:                case 'p':
                   2883:                        for(i=0;i<3&&argc>i&&!option(argv[i]);i++)
                   2884:                                position[i] = atof(argv[i]);
                   2885:                        argc -= i;
                   2886:                        argv += i;
                   2887:                        if(i!=3||position[2]<=0) 
                   2888:                                error("incomplete positioning");
                   2889:                        break;
                   2890:                case 'y':
                   2891:                        if(argc>0&&!option(argv[0]))
                   2892:                                symbolfile = argv[0];
                   2893:                        argc--;
                   2894:                        argv++;
                   2895:                        break;
                   2896:                }
                   2897:        }
                   2898:        if(argc>0)
                   2899:                error("error in arguments");
                   2900:        pathnames();
                   2901:        clamp(&limits[0],-90.);
                   2902:        clamp(&limits[1],90.);
                   2903:        clamp(&klimits[0],-90.);
                   2904:        clamp(&klimits[1],90.);
                   2905:        clamp(&window[0],-90.);
                   2906:        clamp(&window[1],90.);
                   2907:        radbds(limits,rlimits);
                   2908:        limcase = limits[2]<-180.?0:
                   2909:                  limits[3]>180.?2:
                   2910:                  1;
                   2911:        if(
                   2912:                window[0]>=window[1]||
                   2913:                window[2]>=window[3]||
                   2914:                window[0]>90.||
                   2915:                window[1]<-90.||
                   2916:                window[2]>180.||
                   2917:                window[3]<-180.)
                   2918:                error("unreasonable window");
                   2919:        windlim();
                   2920:        radbds(window,rwindow);
                   2921:        upright = orientation[0]==90? 1: orientation[0]==-90? -1: 0;
                   2922:        if(index[k].spheroid && !upright)
                   2923:                error("can't tilt the spheroid");
                   2924:        if(limits[2]>limits[3])
                   2925:                limits[3] += 360;
                   2926:        if(!oriented)
                   2927:                orientation[2] = (limits[2]+limits[3])/2;
                   2928:        orient(orientation[0],orientation[1],orientation[2]);
                   2929:        projection = (*index[k].prog)(params[0],params[1]);
                   2930:        if(projection == 0)
                   2931:                error("unreasonable projection parameters");
                   2932:        clipinit();
                   2933:        grid[0] = fabs(grid[0]);
                   2934:        grid[1] = fabs(grid[1]);
                   2935:        if(!kflag)
                   2936:                for(i=0;i<4;i++)
                   2937:                        klimits[i] = limits[i];
                   2938:        if(klimits[2]>klimits[3])
                   2939:                klimits[3] += 360;
                   2940:        lolat = limits[0];
                   2941:        hilat = limits[1];
                   2942:        lolon = limits[2];
                   2943:        hilon = limits[3];
                   2944:        if(lolon>=hilon||lolat>=hilat||lolat<-90.||hilat>90.)
                   2945:                error("unreasonable limits");
                   2946:        wlim = kflag? klimits: window;
                   2947:        dlat = fmin(hilat-lolat,wlim[1]-wlim[0])/16;
                   2948:        dlon = fmin(hilon-lolon,wlim[3]-wlim[2])/32;
                   2949:        dd = fmax(dlat,dlon);
                   2950:        while(grid[2]>fmin(dlat,dlon)/2)
                   2951:                grid[2] /= 2;
                   2952:        realcut();
                   2953:        if(nvert<=0) {
                   2954:                for(lat=klimits[0];lat<klimits[1]+dd-FUZZ;lat+=dd) {
                   2955:                        if(lat>klimits[1])
                   2956:                                lat = klimits[1];
                   2957:                        for(lon=klimits[2];lon<klimits[3]+dd-FUZZ;lon+=dd) {
                   2958:                                if((kflag?posproj:normproj)
                   2959:                                        (lat,lon+(lon<klimits[3]?FUZZ:-FUZZ),
                   2960:                                   &x,&y)<=0)
                   2961:                                        continue;
                   2962:                                if(x<xmin) xmin = x;
                   2963:                                if(x>xmax) xmax = x;
                   2964:                                if(y<ymin) ymin = y;
                   2965:                                if(y>ymax) ymax = y;
                   2966:                        }
                   2967:                }
                   2968:        } else {
                   2969:                for(i=0; i<nvert; i++) {
                   2970:                        x = v[i].x;
                   2971:                        y = v[i].y;
                   2972:                        if(x<xmin) xmin = x;
                   2973:                        if(x>xmax) xmax = x;
                   2974:                        if(y<ymin) ymin = y;
                   2975:                        if(y>ymax) ymax = y;
                   2976:                }
                   2977:        }
                   2978:        xrange = xmax - xmin;
                   2979:        yrange = ymax - ymin;
                   2980:        if(xrange<=0||yrange<=0)
                   2981:                error("map seems to be empty");
                   2982:        scaling = 2;    /*plotting area from -1 to 1*/
                   2983:        if(position[2]!=0) {
                   2984:                if(posproj(position[0]-.5,position[1],&xcent,&ycent)<=0||
                   2985:                   posproj(position[0]+.5,position[1],&x,&y)<=0)
                   2986:                        error("unreasonable position");
                   2987:                scaling /= (position[2]*hypot(x-xcent,y-ycent));
                   2988:                if(posproj(position[0],position[1],&xcent,&ycent)<=0)
                   2989:                        error("unreasonable position");
                   2990:        } else {
                   2991:                scaling /= (xrange>yrange?xrange:yrange);
                   2992:                xcent = (xmin+xmax)/2;
                   2993:                ycent = (ymin+ymax)/2;
                   2994:        }
                   2995:        xoff = center[0]/scaling;
                   2996:        yoff = center[1]/scaling;
                   2997:        crot.l = center[2]*RAD;
                   2998:        sincos(&crot);
                   2999:        scaling *= HALFWIDTH*0.9;
                   3000:        if(symbolfile) 
                   3001:                getsyms(symbolfile);
                   3002:        if(!s2flag) {
                   3003:                openpl();
                   3004:                erase();
                   3005:        }
                   3006:        range(left,bottom,right,top);
                   3007:        pen("dotted");
                   3008:        if(grid[0]>0.)
                   3009:                for(lat=ceil(lolat/grid[0])*grid[0];
                   3010:                    lat<=hilat;lat+=grid[0]) 
                   3011:                        dogrid(lat,lat,lolon,hilon);
                   3012:        if(grid[1]>0.)
                   3013:                for(lon=ceil(lolon/grid[1])*grid[1];
                   3014:                    lon<=hilon;lon+=grid[1]) 
                   3015:                        dogrid(lolat,hilat,lon,lon);
                   3016:        pen("solid");
                   3017:        if(bflag) {
                   3018:                dobounds(lolat,hilat,lolon,hilon,0);
                   3019:                dobounds(window[0],window[1],window[2],window[3],1);
                   3020:        }
                   3021:        lolat = floor(limits[0]/10)*10;
                   3022:        hilat = ceil(limits[1]/10)*10;
                   3023:        lolon = floor(limits[2]/10)*10;
                   3024:        hilon = ceil(limits[3]/10)*10;
                   3025:        if(lolon>hilon)
                   3026:                hilon += 360.;
                   3027:        /*do tracks first so as not to lose the standard input*/
                   3028:        for(i=0;i<ntrack;i++) {
                   3029:                longlines = LONGLINES;
                   3030:                satellite(&track[i]);
                   3031:                longlines = shortlines;
                   3032:        }
                   3033:        pen("solid");
                   3034:        for(i=0;file[i];i++)
                   3035:                getdata(file[i]);
                   3036: 
                   3037:        move(right,bottom);
                   3038:        if(!s1flag)
                   3039:                closepl();
                   3040:        return 0;
                   3041: }
                   3042: 
                   3043: 
                   3044: int
                   3045: normproj(double lat, double lon, double *x, double *y)
                   3046: {
                   3047:        int i;
                   3048:        struct place geog;
                   3049:        latlon(lat,lon,&geog);
                   3050: /*
                   3051:        printp(&geog);
                   3052: */
                   3053:        normalize(&geog);
                   3054:        if(!inwindow(&geog))
                   3055:                return(-1);
                   3056:        i = (*projection)(&geog,x,y);
                   3057:        if(rflag) 
                   3058:                *x = -*x;
                   3059: /*
                   3060:        printp(&geog);
                   3061:        fprintf(stderr,"%d %.3f %.3f\n",i,*x,*y);
                   3062: */
                   3063:        return(i);
                   3064: }
                   3065: 
                   3066: int
                   3067: posproj(double lat, double lon, double *x, double *y)
                   3068: {
                   3069:        int i;
                   3070:        struct place geog;
                   3071:        latlon(lat,lon,&geog);
                   3072:        normalize(&geog);
                   3073:        i = (*projection)(&geog,x,y);
                   3074:        if(rflag) 
                   3075:                *x = -*x;
                   3076:        return(i);
                   3077: }
                   3078: 
                   3079: int
                   3080: inwindow(struct place *geog)
                   3081: {
                   3082:        if(geog->nlat.l<rwindow[0]||
                   3083:           geog->nlat.l>rwindow[1]||
                   3084:           geog->wlon.l<rwindow[2]||
                   3085:           geog->wlon.l>rwindow[3])
                   3086:                return(0);
                   3087:        else return(1);
                   3088: }
                   3089: 
                   3090: int
                   3091: inlimits(struct place *g)
                   3092: {
                   3093:        if(rlimits[0]>g->nlat.l||
                   3094:           rlimits[1]<g->nlat.l)
                   3095:                return(0);
                   3096:        switch(limcase) {
                   3097:        case 0:
                   3098:                if(rlimits[2]+TWOPI>g->wlon.l&&
                   3099:                   rlimits[3]<g->wlon.l)
                   3100:                        return(0);
                   3101:                break;
                   3102:        case 1:
                   3103:                if(rlimits[2]>g->wlon.l||
                   3104:                   rlimits[3]<g->wlon.l)
                   3105:                        return(0);
                   3106:                break;
                   3107:        case 2:
                   3108:                if(rlimits[2]>g->wlon.l&&
                   3109:                   rlimits[3]-TWOPI<g->wlon.l)
                   3110:                        return(0);
                   3111:                break;
                   3112:        }
                   3113:        return(1);
                   3114: }
                   3115: 
                   3116: 
                   3117: long patch[18][36];
                   3118: 
                   3119: void
                   3120: getdata(char *mapfile)
                   3121: {
                   3122:        char *indexfile;
                   3123:        int kx,ky,c;
                   3124:        int k;
                   3125:        long b;
                   3126:        long *p;
                   3127:        int ip, jp;
                   3128:        int n;
                   3129:        struct place g;
                   3130:        int i, j;
                   3131:        double lat, lon;
                   3132:        int conn;
                   3133:        FILE *ifile, *xfile;
                   3134: 
                   3135:        indexfile = mapindex(mapfile);
                   3136:        xfile = fopen(indexfile,"r");
                   3137:        if(xfile==NULL)
                   3138:                filerror("can't find map index", indexfile);
                   3139:        free(indexfile);
                   3140:        for(i=0,p=patch[0];i<18*36;i++,p++)
                   3141:                *p = 1;
                   3142:        while(!feof(xfile) && fscanf(xfile,"%d%d%ld",&i,&j,&b)==3)
                   3143:                patch[i+9][j+18] = b;
                   3144:        fclose(xfile);
                   3145:        ifile = fopen(mapfile,"r");
                   3146:        if(ifile==NULL)
                   3147:                filerror("can't find map data", mapfile);
                   3148:        for(lat=lolat;lat<hilat;lat+=10.)
                   3149:                for(lon=lolon;lon<hilon;lon+=10.) {
                   3150:                        if(!seeable(lat,lon))
                   3151:                                continue;
                   3152:                        i = pnorm(lat);
                   3153:                        j = pnorm(lon);
                   3154:                        if((b=patch[i+9][j+18])&1)
                   3155:                                continue;
                   3156:                        fseek(ifile,b,0);
                   3157:                        while((ip=getc(ifile))>=0&&(jp=getc(ifile))>=0){
                   3158:                                if(ip!=(i&0377)||jp!=(j&0377))
                   3159:                                        break;
                   3160:                                n = getshort(ifile);
                   3161:                                conn = 0;
                   3162:                                if(n > 0) {     /* absolute coordinates */
                   3163:                                        for(k=0;k<n;k++){
                   3164:                                                kx = SCALERATIO*getshort(ifile);
                   3165:                                                ky = SCALERATIO*getshort(ifile);
                   3166:                                                if (((k%delta) != 0) && (k != (n-1)))
                   3167:                                                        continue;
                   3168:                                                conv(kx,&g.nlat);
                   3169:                                                conv(ky,&g.wlon);
                   3170:                                                conn = plotpt(&g,conn);
                   3171:                                        }
                   3172:                                } else {        /* differential, scaled by SCALERATI0 */
                   3173:                                        n = -n;
                   3174:                                        kx = SCALERATIO*getshort(ifile);
                   3175:                                        ky = SCALERATIO*getshort(ifile);
                   3176:                                        for(k=0; k<n; k++) {
                   3177:                                                c = getc(ifile);
                   3178:                                                if(c&0200) c|= ~0177;
                   3179:                                                kx += c;
                   3180:                                                c = getc(ifile);
                   3181:                                                if(c&0200) c|= ~0177;
                   3182:                                                ky += c;
                   3183:                                                if(k%delta!=0&&k!=n-1)
                   3184:                                                        continue;
                   3185:                                                conv(kx,&g.nlat);
                   3186:                                                conv(ky,&g.wlon);
                   3187:                                                conn = plotpt(&g,conn);
                   3188:                                        }
                   3189:                                }
                   3190:                                if(k==1) {
                   3191:                                        conv(kx,&g.nlat);
                   3192:                                        conv(ky,&g.wlon);
                   3193:                                        conn = plotpt(&g,conn);
                   3194:                                }
                   3195:                        }
                   3196:                }
                   3197:        fclose(ifile);
                   3198: }
                   3199: 
                   3200: int
                   3201: seeable(double lat0, double lon0)
                   3202: {
                   3203:        double x, y;
                   3204:        double lat, lon;
                   3205:        for(lat=lat0;lat<=lat0+10;lat+=2*grid[2])
                   3206:                for(lon=lon0;lon<=lon0+10;lon+=2*grid[2])
                   3207:                        if(normproj(lat,lon,&x,&y)>0)
                   3208:                                return(1);
                   3209:        return(0);
                   3210: }
                   3211: 
                   3212: void
                   3213: satellite(struct track *t)
                   3214: {
                   3215:        char sym[50];
                   3216:        char lbl[50];
                   3217:        double scale;
                   3218:        register conn;
                   3219:        double lat,lon;
                   3220:        struct place place;
                   3221:        static FILE *ifile = stdin;
                   3222:        if(t->tracknam[0]!='-'||t->tracknam[1]!=0) {
                   3223:                fclose(ifile);
                   3224:                if((ifile=fopen(t->tracknam,"r"))==NULL)
                   3225:                        filerror("can't find track", t->tracknam);
                   3226:        }
                   3227:        pen(t->tracktyp=='t'?"dotdash":"solid");
                   3228:        for(;;) {
                   3229:                conn = 0;
                   3230:                while(!feof(ifile) && fscanf(ifile,"%f%f",&lat,&lon)==2){
                   3231:                        latlon(lat,lon,&place);
                   3232:                        if(fscanf(ifile,"%1s",lbl) == 1) {
                   3233:                                if(strchr("+-.0123456789",*lbl)==0)
                   3234:                                        break;
                   3235:                                ungetc(*lbl,ifile);
                   3236:                        }
                   3237:                        conn = plotpt(&place,conn);
                   3238:                }
                   3239:                if(feof(ifile))
                   3240:                        return;
                   3241:                fscanf(ifile,"%[^\n]",lbl+1);
                   3242:                switch(*lbl) {
                   3243:                case '"':
                   3244:                        if(plotpt(&place,conn))
                   3245:                                text(lbl+1);
                   3246:                        break;
                   3247:                case ':':
                   3248:                case '!':
                   3249:                        if(sscanf(lbl+1,"%s %f",sym,&scale) <= 1)
                   3250:                                scale = 1;
                   3251:                        if(plotpt(&place,conn?conn:-1)) {
                   3252:                                int r = *lbl=='!'?0:rflag?-1:1;
                   3253:                                if(putsym(&place,sym,scale,r) == 0)
                   3254:                                        text(lbl);
                   3255:                        }
                   3256:                        break;
                   3257:                default:
                   3258:                        if(plotpt(&place,conn))
                   3259:                                text(lbl);
                   3260:                        break;
                   3261:                }
                   3262:        }
                   3263: }
                   3264: 
                   3265: int
                   3266: pnorm(double x)
                   3267: {
                   3268:        int i;
                   3269:        i = x/10.;
                   3270:        i %= 36;
                   3271:        if(i>=18) return(i-36);
                   3272:        if(i<-18) return(i+36);
                   3273:        return(i);
                   3274: }
                   3275: 
                   3276: void
                   3277: error(char *s)
                   3278: {
                   3279:        fprintf(stderr,"map: \r\n%s\n",s);
                   3280:        exit(1);
                   3281: }
                   3282: 
                   3283: void
                   3284: filerror(char *s, char *f)
                   3285: {
                   3286:        fprintf(stderr,"\r\n%s %s\n",s,f);
                   3287:        exit(1);
                   3288: }
                   3289: 
                   3290: char *
                   3291: mapindex(char *s)
                   3292: {
                   3293:        char *t = malloc(strlen(s)+3);
                   3294:        strcpy(t,s);
                   3295:        strcat(t,".x");
                   3296:        return t;
                   3297: }
                   3298: 
                   3299: #define NOPT 32767
                   3300: static ox = NOPT, oy = NOPT;
                   3301: 
                   3302: int
                   3303: cpoint(int xi, int yi, int conn)
                   3304: {
                   3305:        int dx = abs(ox-xi);
                   3306:        int dy = abs(oy-yi);
                   3307:        if(xi<left||xi>=right || yi<bottom||yi>=top) {
                   3308:                ox = oy = NOPT;
                   3309:                return 0;
                   3310:        }
                   3311:        if(conn == -1)          /* isolated plotting symbol */
                   3312:                ;
                   3313:        else if(!conn)
                   3314:                move(xi,yi);
                   3315:        else {
                   3316:                if(dx+dy>longlines) {
                   3317:                        ox = oy = NOPT; /* don't leap across cuts */
                   3318:                        return 0;
                   3319:                }
                   3320:                if(dx || dy)
                   3321:                        vec(xi,yi);
                   3322:        }
                   3323:        ox = xi, oy = yi;
                   3324:        return dx+dy<=2? 2: 1;  /* 2=very near; see dogrid */
                   3325: }
                   3326: 
                   3327: 
                   3328: struct place oldg;
                   3329: 
                   3330: int
                   3331: plotpt(struct place *g, int conn)
                   3332: {
                   3333:        int kx,ky;
                   3334:        int ret;
                   3335:        double cutlon;
                   3336:        if(!inlimits(g)) {
                   3337:                return(0);
                   3338: }
                   3339:        normalize(g);
                   3340:        if(!inwindow(g)) {
                   3341:                return(0);
                   3342: }
                   3343:        switch((*cut)(g,&oldg,&cutlon)) {
                   3344:        case 2:
                   3345:                if(conn) {
                   3346:                        ret = duple(g,cutlon)|duple(g,cutlon);
                   3347:                        oldg = *g;
                   3348:                        return(ret);
                   3349:                }
                   3350:        case 0:
                   3351:                conn = 0;
                   3352:        default:        /* prevent diags about bad return value */
                   3353:        case 1:
                   3354:                oldg = *g;
                   3355:                if(doproj(g,&kx,&ky)<=0) {
                   3356:                        return(0);
                   3357:                }
                   3358:                ret = cpoint(kx,ky,conn);
                   3359:                return ret;
                   3360:        }
                   3361: }
                   3362: 
                   3363: int
                   3364: doproj(struct place *g, int *kx, int *ky)
                   3365: {
                   3366:        double x,y,x1,y1;
                   3367: /*fprintf(stderr,"dopr1 %f %f \n",g->nlat.l,g->wlon.l);*/
                   3368:        if((*projection)(g,&x,&y)<=0) {
                   3369:                return(0);
                   3370: }
                   3371:        if(rflag)
                   3372:                x = -x;
                   3373: /*fprintf(stderr,"dopr2 %f %f\n",x,y);*/
                   3374:        if(!inpoly(x,y)) {
                   3375:                return 0;
                   3376: }
                   3377:        x1 = x - xcent;
                   3378:        y1 = y - ycent;
                   3379:        x = (x1*crot.c - y1*crot.s + xoff)*scaling;
                   3380:        y = (x1*crot.s + y1*crot.c + yoff)*scaling;
                   3381:        *kx = x + (x>0?.5:-.5);
                   3382:        *ky = y + (y>0?.5:-.5);
                   3383:        return(1);
                   3384: }
                   3385: 
                   3386: int
                   3387: duple(struct place *g, double cutlon)
                   3388: {
                   3389:        int kx,ky;
                   3390:        int okx,oky;
                   3391:        struct place ig;
                   3392:        revlon(g,cutlon);
                   3393:        revlon(&oldg,cutlon);
                   3394:        ig = *g;
                   3395:        invert(&ig);
                   3396:        if(!inlimits(&ig))
                   3397:                return(0);
                   3398:        if(doproj(g,&kx,&ky)<=0 || doproj(&oldg,&okx,&oky)<=0)
                   3399:                return(0);
                   3400:        cpoint(okx,oky,0);
                   3401:        cpoint(kx,ky,1);
                   3402:        return(1);
                   3403: }
                   3404: 
                   3405: void
                   3406: revlon(struct place *g, double cutlon)
                   3407: {
                   3408:        g->wlon.l = reduce(cutlon-reduce(g->wlon.l-cutlon));
                   3409:        sincos(&g->wlon);
                   3410: }
                   3411: 
                   3412: 
                   3413: /*     recognize problems of cuts
                   3414:  *     move a point across cut to side of its predecessor
                   3415:  *     if its very close to the cut
                   3416:  *     return(0) if cut interrupts the line
                   3417:  *     return(1) if line is to be drawn normally
                   3418:  *     return(2) if line is so close to cut as to
                   3419:  *     be properly drawn on both sheets
                   3420: */
                   3421: 
                   3422: int
                   3423: picut(struct place *g, struct place *og, double *cutlon)
                   3424: {
                   3425:        *cutlon = PI;
                   3426:        return(ckcut(g,og,PI));
                   3427: }
                   3428: 
                   3429: int
                   3430: nocut(struct place *g, struct place *og, double *cutlon)
                   3431: {
                   3432: #pragma        ref g
                   3433: #pragma        ref og
                   3434: #pragma        ref cutlon
                   3435:        return(1);
                   3436: }
                   3437: 
                   3438: int
                   3439: ckcut(struct place *g1, struct place *g2, double lon)
                   3440: {
                   3441:        double d1, d2;
                   3442:        double f1, f2;
                   3443:        int kx,ky;
                   3444:        d1 = reduce(g1->wlon.l -lon);
                   3445:        d2 = reduce(g2->wlon.l -lon);
                   3446:        if((f1=fabs(d1))<FUZZ)
                   3447:                d1 = diddle(g1,lon,d2);
                   3448:        if((f2=fabs(d2))<FUZZ) {
                   3449:                d2 = diddle(g2,lon,d1);
                   3450:                if(doproj(g2,&kx,&ky)>0)
                   3451:                        cpoint(kx,ky,0);
                   3452:        }
                   3453:        if(f1<FUZZ&&f2<FUZZ)
                   3454:                return(2);
                   3455:        if(f1>PI*TWO_THRD||f2>PI*TWO_THRD)
                   3456:                return(1);
                   3457:        return(d1*d2>=0);
                   3458: }
                   3459: 
                   3460: double
                   3461: diddle(struct place *g, double lon, double d)
                   3462: {
                   3463:        double d1;
                   3464:        d1 = FUZZ/2;
                   3465:        if(d<0)
                   3466:                d1 = -d1;
                   3467:        g->wlon.l = reduce(lon+d1);
                   3468:        sincos(&g->wlon);
                   3469:        return(d1);
                   3470: }
                   3471: 
                   3472: double
                   3473: reduce(double lon)
                   3474: {
                   3475:        if(lon>PI)
                   3476:                lon -= 2*PI;
                   3477:        else if(lon<-PI)
                   3478:                lon += 2*PI;
                   3479:        return(lon);
                   3480: }
                   3481: 
                   3482: 
                   3483: double tetrapt = 35.26438968;  /* atan(1/sqrt(2)) */
                   3484: 
                   3485: void
                   3486: dogrid(double lat0, double lat1, double lon0, double lon1)
                   3487: {
                   3488:        double slat,slon,tlat,tlon;
                   3489:        register int conn, oconn;
                   3490:        slat = tlat = slon = tlon = 0;
                   3491:        if(lat1>lat0)
                   3492:                slat = tlat = fmin(grid[2],dlat);
                   3493:        else
                   3494:                slon = tlon = fmin(grid[2],dlon);;
                   3495:        conn = oconn = 0;
                   3496:        while(lat0<=lat1&&lon0<=lon1) {
                   3497:                conn = gridpt(lat0,lon0,conn);
                   3498:                if(projection==Xguyou&&slat>0) {
                   3499:                        if(lat0<-45&&lat0+slat>-45)
                   3500:                                conn = gridpt(-45.,lon0,conn);
                   3501:                        else if(lat0<45&&lat0+slat>45)
                   3502:                                conn = gridpt(45.,lon0,conn);
                   3503:                } else if(projection==Xtetra&&slat>0) {
                   3504:                        if(lat0<-tetrapt&&lat0+slat>-tetrapt) {
                   3505:                                gridpt(-tetrapt-.001,lon0,conn);
                   3506:                                conn = gridpt(-tetrapt+.001,lon0,0);
                   3507:                        }
                   3508:                        else if(lat0<tetrapt&&lat0+slat>tetrapt) {
                   3509:                                gridpt(tetrapt-.001,lon0,conn);
                   3510:                                conn = gridpt(tetrapt+.001,lon0,0);
                   3511:                        }
                   3512:                }
                   3513:                if(conn==0 && oconn!=0) {
                   3514:                        if(slat+slon>.05) {
                   3515:                                lat0 -= slat;   /* steps too big */
                   3516:                                lon0 -= slon;   /* or near bdry */
                   3517:                                slat /= 2;
                   3518:                                slon /= 2;
                   3519:                                conn = oconn = gridpt(lat0,lon0,conn);
                   3520:                        } else
                   3521:                                oconn = 0;
                   3522:                } else {
                   3523:                        if(conn==2) {
                   3524:                                slat = tlat;
                   3525:                                slon = tlon;
                   3526:                                conn = 1;
                   3527:                        }
                   3528:                        oconn = conn;
                   3529:                }
                   3530:                lat0 += slat;
                   3531:                lon0 += slon;
                   3532:        }
                   3533:        gridpt(lat1,lon1,conn);
                   3534: }
                   3535: 
                   3536: static gridinv;                /* nonzero when doing window bounds */
                   3537: 
                   3538: int
                   3539: gridpt(double lat, double lon, int conn)
                   3540: {
                   3541:        struct place g;
                   3542: /*fprintf(stderr,"%f %f\n",lat,lon);*/
                   3543:        latlon(lat,lon,&g);
                   3544:        if(gridinv)
                   3545:                invert(&g);
                   3546:        return(plotpt(&g,conn));
                   3547: }
                   3548: 
                   3549: /* win=0 ordinary grid lines, win=1 window lines */
                   3550: 
                   3551: void
                   3552: dobounds(double lolat, double hilat, double lolon, double hilon, int win)
                   3553: {
                   3554:        gridinv = win;
                   3555:        if(lolat>-90 || win && (poles&1)!=0)
                   3556:                dogrid(lolat+FUZZ,lolat+FUZZ,lolon,hilon);
                   3557:        if(hilat<90 || win && (poles&2)!=0)
                   3558:                dogrid(hilat-FUZZ,hilat-FUZZ,lolon,hilon);
                   3559:        if(hilon-lolon<360 || win && cut==picut) {
                   3560:                dogrid(lolat,hilat,lolon+FUZZ,lolon+FUZZ);
                   3561:                dogrid(lolat,hilat,hilon-FUZZ,hilon-FUZZ);
                   3562:        }
                   3563:        gridinv = 0;
                   3564: }
                   3565: 
                   3566: void
                   3567: radbds(double *w, double *rw)
                   3568: {
                   3569:        int i;
                   3570:        for(i=0;i<4;i++)
                   3571:                rw[i] = w[i]*RAD;
                   3572:        rw[0] -= FUZZ;
                   3573:        rw[1] += FUZZ;
                   3574:        rw[2] -= FUZZ;
                   3575:        rw[3] += FUZZ;
                   3576: }
                   3577: 
                   3578: void
                   3579: windlim(void)
                   3580: {
                   3581:        double center = orientation[0];
                   3582:        double colat;
                   3583:        if(center>90)
                   3584:                center = 180 - center;
                   3585:        if(center<-90)
                   3586:                center = -180 - center;
                   3587:        if(fabs(center)>90)
                   3588:                error("unreasonable orientation");
                   3589:        colat = 90 - window[0];
                   3590:        if(center-colat>limits[0])
                   3591:                limits[0] = center - colat;
                   3592:        if(center+colat<limits[1])
                   3593:                limits[1] = center + colat;
                   3594: }
                   3595: 
                   3596: 
                   3597: short
                   3598: getshort(FILE *f)
                   3599: {
                   3600:        int c, r;
                   3601:        c = getc(f);
                   3602:        r = (c | getc(f)<<8);
                   3603:        if (r&0x8000)
                   3604:                r |= ~0xFFFF;   /* in case short > 16 bits */
                   3605:        return r;
                   3606: }
                   3607: 
                   3608: double
                   3609: fmin(double x, double y)
                   3610: {
                   3611:        return(x<y?x:y);
                   3612: }
                   3613: 
                   3614: double
                   3615: fmax(double x, double y)
                   3616: {
                   3617:        return(x>y?x:y);
                   3618: }
                   3619: 
                   3620: void
                   3621: clamp(double *px, double v)
                   3622: {
                   3623:        *px = (v<0?fmax:fmin)(*px,v);
                   3624: }
                   3625: 
                   3626: void
                   3627: pathnames(void)
                   3628: {
                   3629:        int i;
                   3630:        char *t, *indexfile;
                   3631:        FILE *f, *fx;
                   3632:        for(i=0; i<NFILE && file[i]; i++) {
                   3633:                if(*file[i]=='/')
                   3634:                        continue;
                   3635:                indexfile = mapindex(file[i]);
                   3636:                        /* ansi equiv of unix access() call */
                   3637:                f = fopen(file[i], "r");
                   3638:                fx = fopen(indexfile, "r");
                   3639:                if(f) fclose(f);
                   3640:                if(fx) fclose(fx);
                   3641:                free(indexfile);
                   3642:                if(f && fx)
                   3643:                        continue;
                   3644:                t = malloc(strlen(file[i])+strlen(mapdir)+2);
                   3645:                strcpy(t,mapdir);
                   3646:                strcat(t,"/");
                   3647:                strcat(t,file[i]);
                   3648:                file[i] = t;
                   3649:        }
                   3650: }
                   3651: 
                   3652: void
                   3653: clipinit(void)
                   3654: {
                   3655:        register i;
                   3656:        double s,t;
                   3657:        if(nvert<=0)
                   3658:                return;
                   3659:        for(i=0; i<nvert; i++) {        /*convert latlon to xy*/
                   3660:                if(normproj(v[i].x,v[i].y,&v[i].x,&v[i].y)<=0)
                   3661:                        error("invisible clipping vertex");
                   3662:        }
                   3663:        if(nvert==2) {                  /*rectangle with diag specified*/
                   3664:                nvert = 4;
                   3665:                v[2] = v[1];
                   3666:                v[1].x=v[0].x, v[1].y=v[2].y, v[3].x=v[2].x, v[3].y=v[0].y;
                   3667:        }       
                   3668:        v[nvert] = v[0];
                   3669:        v[nvert+1] = v[1];
                   3670:        s = 0;
                   3671:        for(i=1; i<=nvert; i++) {       /*test for convexity*/
                   3672:                t = (v[i-1].x-v[i].x)*(v[i+1].y-v[i].y) -
                   3673:                    (v[i-1].y-v[i].y)*(v[i+1].x-v[i].x);
                   3674:                if(t<-FUZZ && s>=0) s = 1;
                   3675:                if(t>FUZZ && s<=0) s = -1;
                   3676:                if(-FUZZ<=t&&t<=FUZZ || t*s>0) {
                   3677:                        s = 0;
                   3678:                        break;
                   3679:                }
                   3680:        }
                   3681:        if(s==0)
                   3682:                error("improper clipping polygon");
                   3683:        for(i=0; i<nvert; i++) {        /*edge equation ax+by=c*/
                   3684:                e[i].a = s*(v[i+1].y - v[i].y);
                   3685:                e[i].b = s*(v[i].x - v[i+1].x);
                   3686:                e[i].c = s*(v[i].x*v[i+1].y - v[i].y*v[i+1].x);
                   3687:        }
                   3688: }
                   3689: 
                   3690: int
                   3691: inpoly(double x, double y)
                   3692: {
                   3693:        register i;
                   3694:        for(i=0; i<nvert; i++) {
                   3695:                register struct edge *ei = &e[i];
                   3696:                double val = x*ei->a + y*ei->b - ei->c;
                   3697:                if(val>10*FUZZ)
                   3698:                        return(0);
                   3699:        }
                   3700:        return 1;
                   3701: }
                   3702: 
                   3703: void
                   3704: realcut()
                   3705: {
                   3706:        struct place g;
                   3707:        double lat;
                   3708:        
                   3709:        if(cut != picut)        /* punt on unusual cuts */
                   3710:                return;
                   3711:        for(lat=window[0]; lat<=window[1]; lat+=grid[2]) {
                   3712:                g.wlon.l = PI;
                   3713:                sincos(&g.wlon);
                   3714:                g.nlat.l = lat*RAD;
                   3715:                sincos(&g.nlat);
                   3716:                if(!inwindow(&g)) {
                   3717:                        break;
                   3718: }
                   3719:                invert(&g);
                   3720:                if(inlimits(&g)) {
                   3721:                        return;
                   3722: }
                   3723:        }
                   3724:        longlines = shortlines = LONGLINES;
                   3725:        cut = nocut;            /* not necessary; small eff. gain */
                   3726: }
                   3727: 0707070035051031121006640000030000040000020636350533472776500000600000010246map.h#include <math.h>
                   3728: #include <stdlib.h>
                   3729: #include <stdio.h>
                   3730: #include <string.h>
                   3731: #ifdef PLOT
                   3732: #include PLOT
                   3733: #else
                   3734: #include "iplot.h"
                   3735: #endif
                   3736: 
                   3737: #ifndef PI
                   3738: #define PI     3.1415926535897932384626433832795028841971693993751
                   3739: #endif
                   3740: 
                   3741: #define TWOPI (2*PI)
                   3742: #define RAD (PI/180)
                   3743: double hypot(double, double);  /* sqrt(a*a+b*b) */
                   3744: double tan(double);            /* not in K&R library */
                   3745: 
                   3746: #define ECC .08227185422       /* eccentricity of earth */
                   3747: #define EC2 .006768657997
                   3748: 
                   3749: #define FUZZ .0001
                   3750: #define UNUSED 0.0             /* a dummy double parameter */
                   3751: 
                   3752: struct coord {
                   3753:        double l;       /* lat or lon in radians*/
                   3754:        double s;       /* sin */
                   3755:        double c;       /* cos */
                   3756: };
                   3757: struct place {
                   3758:        struct coord nlat;
                   3759:        struct coord wlon;
                   3760: };
                   3761: 
                   3762: typedef int (*proj)(struct place *, double *, double *);
                   3763: 
                   3764: struct index {         /* index of known projections */
                   3765:        char *name;     /* name of projection */
                   3766:        proj (*prog)(double, double);
                   3767:                        /* pointer to projection function */
                   3768:        int npar;       /* number of params */
                   3769:        int (*cut)(struct place *, struct place *, double *);
                   3770:                        /* function that handles cuts--eg longitude 180 */
                   3771:        int poles;      /*1 S pole is a line, 2 N pole is, 3 both*/
                   3772:        int spheroid;   /* poles must be at 90 deg if nonzero */
                   3773: };
                   3774: 
                   3775: 
                   3776: proj   aitoff(void);
                   3777: proj   albers(double, double);
                   3778: int    Xazequalarea(struct place *, double *, double *);
                   3779: proj   azequalarea(void);
                   3780: int    Xazequidistant(struct place *, double *, double *);
                   3781: proj   azequidistant(void);
                   3782: proj   bicentric(double);
                   3783: proj   bonne(double);
                   3784: proj   conic(double);
                   3785: proj   cylequalarea(double);
                   3786: int    Xcylindrical(struct place *, double *, double *);
                   3787: proj   cylindrical(void);
                   3788: proj   elliptic(double);
                   3789: proj   fisheye(double);
                   3790: proj   gall(double);
                   3791: proj   globular(void);
                   3792: proj   gnomonic(void);
                   3793: int    guycut(struct place *, struct place *, double *);
                   3794: int    Xguyou(struct place *, double *, double *);
                   3795: proj   guyou(void);
                   3796: proj   harrison(double, double);
                   3797: int    hexcut(struct place *, struct place *, double *);
                   3798: proj   hex(void);
                   3799: proj   homing(double);
                   3800: proj   lagrange(void);
                   3801: proj   lambert(double, double);
                   3802: proj   laue(void);
                   3803: proj   loxodromic(double);     /* not in library */
                   3804: proj   mecca(double);
                   3805: proj   mercator(void);
                   3806: proj   mollweide(void);
                   3807: proj   newyorker(double);
                   3808: proj   ortelius(double, double);       /* not in library */
                   3809: int    Xorthographic(struct place *place, double *x, double *y);
                   3810: proj   orthographic(void);
                   3811: proj   perspective(double);
                   3812: int    Xpolyconic(struct place *, double *, double *);
                   3813: proj   polyconic(void);
                   3814: proj   rectangular(double);
                   3815: proj   simpleconic(double, double);
                   3816: int    Xsinusoidal(struct place *, double *, double *);
                   3817: proj   sinusoidal(void);
                   3818: proj   sp_albers(double, double);
                   3819: proj   sp_mercator(void);
                   3820: proj   square(void);
                   3821: int    Xstereographic(struct place *, double *, double *);
                   3822: proj   stereographic(void);
                   3823: int    Xtetra(struct place *, double *, double *);
                   3824: int    tetracut(struct place *, struct place *, double *);
                   3825: proj   tetra(void);
                   3826: proj   trapezoidal(double, double);
                   3827: proj   vandergrinten(void);
                   3828: proj   wreath(double, double); /* not in library */
                   3829: 
                   3830: void   findxy(double, double *, double *);
                   3831: void   albscale(double, double, double, double);
                   3832: void   invalb(double, double, double *, double *);
                   3833: 
                   3834: void   cdiv(double, double, double, double, double *, double *);
                   3835: void   cmul(double, double, double, double, double *, double *);
                   3836: void   csq(double, double, double *, double *);
                   3837: void   csqrt(double, double, double *, double *);
                   3838: void   ccubrt(double, double, double *, double *);
                   3839: double cubrt(double);
                   3840: int    elco2(double, double, double, double, double, double *, double *);
                   3841: void   cdiv2(double, double, double, double, double *, double *);
                   3842: void   csqr(double, double, double *, double *);
                   3843: 
                   3844: void   orient(double, double, double);
                   3845: void   latlon(double, double, struct place *);
                   3846: void   deg2rad(double, struct coord *);
                   3847: void   sincos(struct coord *);
                   3848: void   normalize(struct place *);
                   3849: void   invert(struct place *);
                   3850: void   norm(struct place *, struct place *, struct coord *);
                   3851: void   printp(struct place *);
                   3852: void   copyplace(struct place *, struct place *);
                   3853: 
                   3854: int    picut(struct place *, struct place *, double *);
                   3855: int    ckcut(struct place *, struct place *, double);
                   3856: double reduce(double);
                   3857: 
                   3858: void   getsyms(char *);
                   3859: int    putsym(struct place *, char *, double, int);
                   3860: void   filerror(char *s, char *f);
                   3861: void   error(char *s);
                   3862: int    doproj(struct place *, int *, int *);
                   3863: int    cpoint(int, int, int);
                   3864: int    plotpt(struct place *, int);
                   3865: int    nocut(struct place *, struct place *, double *);
                   3866: 
                   3867: extern int (*projection)(struct place *, double *, double *);
                   3868: 0707070035050601711006640000100000040000011211100533574360100001000000116632map.man
                   3869: 
                   3870: 
                   3871:      MAP(7)                                                     MAP(7)
                   3872: 
                   3873: 
                   3874: 
                   3875:      NAME
                   3876:           map - draw maps on various projections
                   3877: 
                   3878:      SYNOPSIS
                   3879:           map _p_r_o_j_e_c_t_i_o_n [ _p_a_r_a_m ... ] [ _o_p_t_i_o_n ... ]
                   3880: 
                   3881:      DESCRIPTION
                   3882:           _M_a_p prepares on the standard output a map suitable for dis-
                   3883:           play by any plotting filter described in _p_l_o_t(1).  A menu of
                   3884:           projections is produced in response to an unknown
                   3885:           _p_r_o_j_e_c_t_i_o_n.  For the meanings of _p_a_r_a_m_s pertinent to partic-
                   3886:           ular projections see _p_r_o_j(3).
                   3887: 
                   3888:           The default data for _m_a_p are world shorelines.  Option -f
                   3889:           accesses the higher-resolution World Data Bank II.
                   3890: 
                   3891:           -f [ _f_e_a_t_u_r_e ... ]
                   3892:                Features are ranked 1 (default) to 4 from major to
                   3893:                minor.  Higher-numbered ranks include all lower-
                   3894:                numbered ones.  Features are
                   3895: 
                   3896:                shore[1-4]    seacoasts, lakes, and islands; in the
                   3897:                              absence of -m, option -f automatically
                   3898:                              includes shore1
                   3899:                ilake[1-2]    intermittent lakes
                   3900:                river[1-4]    rivers
                   3901:                iriver[1-3]   intermittent rivers
                   3902:                canal[1-3]    3=irrigation canals
                   3903:                glacier
                   3904:                iceshelf[12]
                   3905:                reef
                   3906:                saltpan[12]
                   3907:                country[1-3]  2=disputed boundaries, 3=indefinite
                   3908:                              boundaries
                   3909:                state         states and provinces (US and Canada only)
                   3910: 
                   3911:           In other options coordinates are in degrees, with north lat-
                   3912:           itude and west longitude counted as positive.
                   3913: 
                   3914:           -l _S _N _E _W
                   3915:                Set the southern and northern latitude and the eastern
                   3916:                and western longitude limits.  Missing arguments are
                   3917:                filled out from the list -90, 90, -180, 180.
                   3918: 
                   3919:           -k _S _N _E _W
                   3920:                Set the scale as if for a map with limits -l _S _N _E _W
                   3921:                and no -w option.
                   3922: 
                   3923:           -o _l_a_t _l_o_n _r_o_t
                   3924:                Orient the map in a nonstandard position.  Imagine a
                   3925:                transparent gridded sphere around the globe.  Turn the
                   3926:                overlay about the North Pole so that the Prime Meridian
                   3927: 
                   3928: 
                   3929: 
                   3930:      Page 1                    Tenth Edition          (printed 2/9/93)
                   3931: 
                   3932: 
                   3933: 
                   3934: 
                   3935: 
                   3936: 
                   3937:      MAP(7)                                                     MAP(7)
                   3938: 
                   3939: 
                   3940: 
                   3941:                (longitude 0) of the overlay coincides with meridian
                   3942:                _l_o_n on the globe.  Then tilt the North Pole of the
                   3943:                overlay along its Prime Meridian to latitude _l_a_t on the
                   3944:                globe.  Finally again turn the overlay about its `North
                   3945:                Pole' so that its Prime Meridian coincides with the
                   3946:                previous position of meridian _r_o_t.  Project the map in
                   3947:                the standard form appropriate to the overlay, but pre-
                   3948:                senting information from the underlying globe.  Missing
                   3949:                arguments are filled out from the list 90, 0, 0.  In
                   3950:                the absence of -o, the orientation is 90, 0, _m, where _m
                   3951:                is the middle of the longitude range.
                   3952: 
                   3953:           -w _S _N _E _W
                   3954:                Window the map by the specified latitudes and longi-
                   3955:                tudes in the tilted, rotated coordinate system.  Miss-
                   3956:                ing arguments are filled out from the list -90, 90,
                   3957:                -180, 180.  (It is wise to give an encompassing -l
                   3958:                option with -w.  Otherwise for small windows computing
                   3959:                time varies inversely with area!)
                   3960: 
                   3961:           -d _n For speed, plot only every _nth point.
                   3962: 
                   3963:           -r   Reverse left and right (good for star charts and
                   3964:                inside-out views).
                   3965:           -s1
                   3966:           -s2  Superpose.  Outputs for a -s1 map (no closing) and a
                   3967:                -s2 map (no opening) may be concatenated.
                   3968: 
                   3969:           -g _d_l_a_t _d_l_o_n _r_e_s
                   3970:                Grid spacings are _d_l_a_t, _d_l_o_n. Zero spacing means no
                   3971:                grid.  Missing _d_l_a_t is taken to be zero.  Missing _d_l_o_n
                   3972:                is taken the same as _d_l_a_t.  Grid lines are drawn to a
                   3973:                resolution of _r_e_s (28o9 or less by default).  In the
                   3974:                absence of -g, grid spacing is 108o9.
                   3975: 
                   3976:           -p _l_a_t _l_o_n _e_x_t_e_n_t
                   3977:                Position the point _l_a_t, _l_o_n at the center of a square
                   3978:                plotting area.  Scale the map so that a side of the
                   3979:                square is _e_x_t_e_n_t times the size of one degree of lati-
                   3980:                tude at the center.  By default maps are scaled and
                   3981:                positioned to fit within the plotting area.  An _e_x_t_e_n_t
                   3982:                overrides option -k.
                   3983: 
                   3984:           -c _x _y _r_o_t
                   3985:                After all other positioning and scaling operations,
                   3986:                rotate the image _r_o_t degrees counterclockwise about the
                   3987:                center and move the center to position _x, _y, of the
                   3988:                plotting area, whose nominal extent is -1_<x_<1, -1_<y_<1.
                   3989:                The map is clipped to this area.  Missing arguments are
                   3990:                taken to be 0.
                   3991: 
                   3992:           -m [ _f_i_l_e ... ]
                   3993: 
                   3994: 
                   3995: 
                   3996:      Page 2                    Tenth Edition          (printed 2/9/93)
                   3997: 
                   3998: 
                   3999: 
                   4000: 
                   4001: 
                   4002: 
                   4003:      MAP(7)                                                     MAP(7)
                   4004: 
                   4005: 
                   4006: 
                   4007:                Use map data from named files.  If no files are named,
                   4008:                omit map data.  Files that cannot be found directly are
                   4009:                looked up a standard directory, which contains, in
                   4010:                addition to the data for -f,
                   4011: 
                   4012:                world     World Data Bank I from CIA (default)
                   4013:                states    US map from Census Bureau
                   4014:                counties  US map from Census Bureau
                   4015: 
                   4016:                The environment variables MAP and MAPDIR change the
                   4017:                default map and default directory.
                   4018: 
                   4019:           -b [ _l_a_t_1 _l_o_n_1 _l_a_t_2 _l_o_n_2 ... ]
                   4020:                Suppress the drawing of the normal boundary (defined by
                   4021:                options -l and -w).  Coordinates, if present, define
                   4022:                the vertices of a polygon to which the map is clipped.
                   4023:                If only two vertices are given, they are taken to be
                   4024:                the diagonal of a rectangle.  To draw the polygon, give
                   4025:                its vertices as a -u track.
                   4026: 
                   4027:           -t _f_i_l_e ...
                   4028:                The arguments name ASCII files that contain lists of
                   4029:                points, given as latitude-longitude pairs in degrees.
                   4030:                If the first file is named `-', the standard input is
                   4031:                taken instead.  The points of each list are plotted as
                   4032:                connected `tracks'.
                   4033: 
                   4034:                Points in a track file may be followed by label
                   4035:                strings.  A label breaks the track.  A label may be
                   4036:                prefixed by ", `:', or `!'  and is terminated by a new-
                   4037:                line.  An unprefixed string or a string prefixed with "
                   4038:                is displayed at the designated point.  The first word
                   4039:                of a `:' or `!'  string names a special symbol (see
                   4040:                option -y).  An optional numerical second word is a
                   4041:                scale factor for the size of the symbol, 1 by default.
                   4042:                A `:' symbol is aligned with its top to the north; a
                   4043:                `!'  symbol is aligned vertically on the page.
                   4044: 
                   4045:           -u _f_i_l_e ...
                   4046:                Same as -t, except the tracks are unbroken lines.  (-t
                   4047:                tracks are dot-dash lines.)
                   4048: 
                   4049:           -y _f_i_l_e
                   4050:                The _f_i_l_e contains _p_l_o_t(5)-style data for `:' or `!'
                   4051:                labels in -t or -u files.  Each symbol is defined by a
                   4052:                comment :_n_a_m_e then a sequence of `m' and `v' commands.
                   4053:                Coordinates (0,0) fall on the plotting point.  Default
                   4054:                scaling is as if the nominal plotting range were `ra -1
                   4055:                -1 1 1'; `ra' commands in _f_i_l_e change the scaling.
                   4056: 
                   4057:      EXAMPLES
                   4058:           map perspective 1.025 -o 40.75 74
                   4059: 
                   4060: 
                   4061: 
                   4062:      Page 3                    Tenth Edition          (printed 2/9/93)
                   4063: 
                   4064: 
                   4065: 
                   4066: 
                   4067: 
                   4068: 
                   4069:      MAP(7)                                                     MAP(7)
                   4070: 
                   4071: 
                   4072: 
                   4073:                A view looking down on New York from 100 miles (0.025
                   4074:                of the 4000-mile earth radius).  The job can be done
                   4075:                faster by limiting the map so as not to `plot' the
                   4076:                invisible part of the world: `map perspective 1.025 -o
                   4077:                40.75 74 -l 20 60 30 100'.  A circular border can be
                   4078:                forced by adding option `-w 77.33'.  (Latitude 77.338o9
                   4079:                falls just inside a polar cap of opening angle arc-
                   4080:                cos(1/1.025) = 12.68048o9.)
                   4081: 
                   4082:           map mercator -o 49.25 -106 180
                   4083:                A map whose `equator' is a great circle pasing east-
                   4084:                west through New York.  The pole of the map is placed
                   4085:                908o9 away (40.75+49.25=90) on the other side of the
                   4086:                earth.  A 1808o9 twist around the pole of the map
                   4087:                arranges that the Prime Meridian of the map runs from
                   4088:                the pole of the map over the North Pole to New York
                   4089:                instead of down the back side of the earth.  The same
                   4090:                effect can be had from map mercator -o 130.75 74
                   4091: 
                   4092:           map albers 28 45 -l 20 50 60 130 -m states
                   4093:                A customary curved-latitude map of the United States.
                   4094: 
                   4095:           map albers 28 45 -l 20 50 60 130 -y yfile -t tfile
                   4096:                An example of tracks, labels, and symbols.  Arrows at
                   4097:                New York and Miami are 8% and 12% as long as the map is
                   4098:                wide.  The contents of `yfile' and `tfile' are
                   4099:                ra -50 -50 50 50              25.77 80.20 :arrow 12
                   4100:                :arrow                        25.77  80.20 Miami
                   4101:                m -1 0                        25.77  80.20
                   4102:                v 0 0                         35.00  74.02
                   4103:                v -.6 .3                      40.67  74.02 !arrow 8
                   4104:                m -.6 -.3                     40.67  74.02 " New York
                   4105:                v 0 0                         34.05 118.25 Los Angeles
                   4106: 
                   4107:           map harrison 2 30 -l -90 90 120 240 -o 90 0 0
                   4108:                A fan view covering 608o9 on either
                   4109:                side of the Date Line, as seen from one earth radius
                   4110:                above the North Pole gazing at the
                   4111:                earth's limb, which is 308o9 off vertical.
                   4112:                Option
                   4113:                -o
                   4114:                overrides the default
                   4115:                -o 90 0 180,
                   4116:                which would rotate
                   4117:                the scene to behind the observer.
                   4118: 
                   4119:      FILES
                   4120:           All files in directory $MAPDIR
                   4121: 
                   4122:           [1-4]??   World Data Bank II for option -f
                   4123:           world,states,counties
                   4124:                     default and other maps for option -m
                   4125: 
                   4126: 
                   4127: 
                   4128:      Page 4                    Tenth Edition          (printed 2/9/93)
                   4129: 
                   4130: 
                   4131: 
                   4132: 
                   4133: 
                   4134: 
                   4135:      MAP(7)                                                     MAP(7)
                   4136: 
                   4137: 
                   4138: 
                   4139:           *.x       map indexes
                   4140:           map       the program proper
                   4141: 
                   4142:      SEE ALSO
                   4143:           _m_a_p(5), _p_r_o_j(3), _p_l_o_t(1)
                   4144: 
                   4145:      DIAGNOSTICS
                   4146:           `Map seems to be empty'-a coarse survey found zero extent
                   4147:           within the -l and -w bounds; for maps of limited extent the
                   4148:           grid resolution, _r_e_s, or the limits may have to be refined.
                   4149: 
                   4150:      BUGS
                   4151:           The syntax of range specifications in -y files differs from
                   4152:           that in options.
                   4153:           Windows (option -w) cannot cross the Date Line.
                   4154:           No borders appear along edges arising from visibility lim-
                   4155:           its.
                   4156:           Segments that cross a border are dropped, not clipped.
                   4157:           Certain very long line segments are dropped on the assump-
                   4158:           tion that they were intended to go the other way around the
                   4159:           world.
                   4160:           Automatic scaling may miss the extreme points of peculiarly
                   4161:           shaped maps; use option -p to recover.
                   4162:           Although _m_a_p draws grid lines dotted and -t tracks dot-
                   4163:           dashed, many plotting filters cannot cope and make them
                   4164:           solid.
                   4165: 
                   4166: 
                   4167: 
                   4168: 
                   4169: 
                   4170: 
                   4171: 
                   4172: 
                   4173: 
                   4174: 
                   4175: 
                   4176: 
                   4177: 
                   4178: 
                   4179: 
                   4180: 
                   4181: 
                   4182: 
                   4183: 
                   4184: 
                   4185: 
                   4186: 
                   4187: 
                   4188: 
                   4189: 
                   4190: 
                   4191: 
                   4192: 
                   4193: 
                   4194:      Page 5                    Tenth Edition          (printed 2/9/93)
                   4195: 
                   4196: 
                   4197: 
                   4198: 
                   4199: 
                   4200: 
                   4201:      PROJ(3X)                    (bowell)                     PROJ(3X)
                   4202: 
                   4203: 
                   4204: 
                   4205:      NAME
                   4206:           orient, normalize - map projections
                   4207: 
                   4208:      SYNOPSIS
                   4209:           orient(lat, lon, rot)
                   4210:           double lat, lon, rot;
                   4211: 
                   4212:           normalize(p)
                   4213:           struct place *p;
                   4214: 
                   4215:      DESCRIPTION
                   4216:           Users of _m_a_p(7) may skip to the description of `Projection
                   4217:           generators' below.
                   4218: 
                   4219:           The functions _o_r_i_e_n_t and _n_o_r_m_a_l_i_z_e plus a collection of map
                   4220:           projection generators are loaded by option -lmap of _l_d(1).
                   4221:           Most of them calculate maps for a spherical earth.  Each map
                   4222:           projection is available in one standard form, into which
                   4223:           data must be normalized for transverse or nonpolar projec-
                   4224:           tions.
                   4225: 
                   4226:           Each standard projection is displayed with the Prime Merid-
                   4227:           ian (longitude 0) being a straight vertical line, along
                   4228:           which North is up.  The orientation of nonstandard projec-
                   4229:           tions is specified by _o_r_i_e_n_t. Imagine a transparent gridded
                   4230:           sphere around the globe.  First turn the overlay about the
                   4231:           North Pole so that the Prime Meridian (longitude 0) of the
                   4232:           overlay coincides with meridian _l_o_n on the globe.  Then tilt
                   4233:           the North Pole of the overlay along its Prime Meridian to
                   4234:           latitude _l_a_t on the globe.  Finally again turn the overlay
                   4235:           about its `North Pole' so that its Prime Meridian coincides
                   4236:           with the previous position of (the overlay's) meridian _r_o_t.
                   4237:           Project the desired map in the standard form appropriate to
                   4238:           the overlay, but presenting information from the underlying
                   4239:           globe.  It is not useful to use _o_r_i_e_n_t without using
                   4240:           _n_o_r_m_a_l_i_z_e.
                   4241: 
                   4242:           _N_o_r_m_a_l_i_z_e converts latitude-longitude coordinates on the
                   4243:           globe to coordinates on the overlaid grid.  The coordinates
                   4244:           and their sines and cosines are input to _n_o_r_m_a_l_i_z_e in a
                   4245:           place structure.  Transformed coordinates and their sines
                   4246:           and cosines are returned in the same structure.
                   4247: 
                   4248:                   struct place {
                   4249:                           double radianlat, sinlat, coslat;
                   4250:                           double radianlon, sinlon, coslon;
                   4251:                   };
                   4252: 
                   4253:           The projection generators return a pointer to a function
                   4254:           that converts normalized coordinates to _x-_y coordinates for
                   4255:           the desired map, or 0 if the required projection is not
                   4256:           available.  The returned function is exemplified by _p_r_o_j in
                   4257: 
                   4258: 
                   4259: 
                   4260:      Page 6                    Tenth Edition          (printed 2/9/93)
                   4261: 
                   4262: 
                   4263: 
                   4264: 
                   4265: 
                   4266: 
                   4267:      PROJ(3X)                    (bowell)                     PROJ(3X)
                   4268: 
                   4269: 
                   4270: 
                   4271:           this example:
                   4272: 
                   4273:                   struct place pt;
                   4274:                   int (*proj)() = mercator();
                   4275:                   double x, y;
                   4276: 
                   4277:                   orient(45.0, 30.0, 180.0);      /* set coordinate rotation */
                   4278: 
                   4279:                   . . .                           /* fill in the pt structure */
                   4280:                   normalize(&pt);                 /* rotate coordinates */
                   4281:                   if((*proj)(&pt, &x, &y) > 0)    /* project onto x,y plane */
                   4282:                           plot(x, y);
                   4283: 
                   4284:           The projection function (*proj)() returns 1 for a good
                   4285:           point, 0 for a point on a wrong sheet (e.g. the back of the
                   4286:           world in a perspective projection), and -1 for a point that
                   4287:           is deemed unplottable (e.g. points near the poles on a Mer-
                   4288:           cator projection).
                   4289: 
                   4290:           Scaling may be determined from the _x-_y coordinates of
                   4291:           selected points.  Latitudes and longitudes are measured in
                   4292:           degrees for ease of specification for _o_r_i_e_n_t and the projec-
                   4293:           tion generators but in radians for ease of calculation for
                   4294:           _n_o_r_m_a_l_i_z_e and _p_r_o_j. In either case latitude is measured pos-
                   4295:           itive north of the equator, and longitude positive west of
                   4296:           Greenwich.  Radian longitude should be limited to the range
                   4297:           -_p_i <= _l_o_n < _p_i.
                   4298: 
                   4299:         Projection generators
                   4300:           Equatorial projections centered on the Prime Meridian (lon-
                   4301:           gitude 0).  Parallels are straight horizontal lines.
                   4302:                mercator() equally spaced straight meridians, confor-
                   4303:                mal, straight compass courses
                   4304:                sinusoidal() equally spaced parallels, equal-area, same
                   4305:                as _b_o_n_n_e(_0)
                   4306:                cylequalarea(lat0) equally spaced straight meridians,
                   4307:                equal-area, true scale on _l_a_t_0
                   4308:                cylindrical() central projection on tangent cylinder
                   4309:                rectangular(lat0) equally spaced parallels, equally
                   4310:                spaced straight meridians, true scale on _l_a_t_0
                   4311:                gall(lat0) parallels spaced stereographically on prime
                   4312:                meridian, equally spaced straight meridians, true scale
                   4313:                on _l_a_t_0
                   4314:                mollweide() (homalographic) equal-area, hemisphere is a
                   4315:                circle
                   4316: 
                   4317:           Azimuthal projections centered on the North Pole.  Parallels
                   4318:           are concentric circles.  Meridians are equally spaced radial
                   4319:           lines.
                   4320:                azequidistant() equally spaced parallels, true dis-
                   4321:                tances from pole
                   4322:                azequalarea() equal-area
                   4323: 
                   4324: 
                   4325: 
                   4326:      Page 7                    Tenth Edition          (printed 2/9/93)
                   4327: 
                   4328: 
                   4329: 
                   4330: 
                   4331: 
                   4332: 
                   4333:      PROJ(3X)                    (bowell)                     PROJ(3X)
                   4334: 
                   4335: 
                   4336: 
                   4337:                gnomonic() central projection on tangent plane,
                   4338:                straight great circles
                   4339:                perspective(dist) viewed along earth's axis _d_i_s_t earth
                   4340:                radii from center of earth
                   4341:                orthographic() viewed from infinity
                   4342:                stereographic() conformal, projected from opposite pole
                   4343:                laue() _r_a_d_i_u_s = tan(2x_c_o_l_a_t_i_t_u_d_e), used in xray crys-
                   4344:                tallography
                   4345:                fisheye(n) stereographic seen from just inside medium
                   4346:                with refractive index n
                   4347:                newyorker(r) _r_a_d_i_u_s = log(_c_o_l_a_t_i_t_u_d_e/_r): extreme `fish-
                   4348:                eye' view from pedestal of radius _r degrees
                   4349: 
                   4350:           Polar conic projections symmetric about the Prime Meridian.
                   4351:           Parallels are segments of concentric circles.  Except in the
                   4352:           Bonne projection, meridians are equally spaced radial lines
                   4353:           orthogonal to the parallels.
                   4354:                conic(lat0) central projection on cone tangent at _l_a_t_0
                   4355:                simpleconic(lat0,lat1) equally spaced parallels, true
                   4356:                scale on _l_a_t_0 and _l_a_t_1
                   4357:                lambert(lat0,lat1) conformal, true scale on _l_a_t_0 and
                   4358:                _l_a_t_1
                   4359:                albers(lat0,lat1) equal-area, true scale on _l_a_t_0 and
                   4360:                _l_a_t_1
                   4361:                bonne(lat0) equally spaced parallels, equal-area, par-
                   4362:                allel _l_a_t_0 developed from tangent cone
                   4363: 
                   4364:           Projections with bilateral symmetry about the Prime Meridian
                   4365:           and the equator.
                   4366:                polyconic() parallels developed from tangent cones,
                   4367:                equally spaced along Prime Meridian
                   4368:                aitoff() equal-area projection of globe onto 2-to-1
                   4369:                ellipse, based on _a_z_e_q_u_a_l_a_r_e_a
                   4370:                lagrange() conformal, maps whole sphere into a circle
                   4371:                bicentric(lon0) points plotted at true azimuth from two
                   4372:                centers on the equator at longitudes +__l_o_n_0, great cir-
                   4373:                cles are straight lines (a stretched gnomonic projec-
                   4374:                tion)
                   4375:                elliptic(lon0) points are plotted at true distance from
                   4376:                two centers on the equator at longitudes +__l_o_n_0
                   4377:                globular() hemisphere is circle, circular arc meridians
                   4378:                equally spaced on equator, circular arc parallels
                   4379:                equally spaced on 0- and 90-degree meridians
                   4380:                vandergrinten() sphere is circle, meridians as in
                   4381:                _g_l_o_b_u_l_a_r, circular arc parallels resemble _m_e_r_c_a_t_o_r
                   4382: 
                   4383:           Doubly periodic conformal projections.
                   4384:                guyou() W and E hemispheres are square
                   4385:                square() world is square with Poles at diagonally oppo-
                   4386:                site corners
                   4387:                tetra() map on tetrahedron with edge tangent to Prime
                   4388:                Meridian at S Pole, unfolded into equilateral triangle
                   4389: 
                   4390: 
                   4391: 
                   4392:      Page 8                    Tenth Edition          (printed 2/9/93)
                   4393: 
                   4394: 
                   4395: 
                   4396: 
                   4397: 
                   4398: 
                   4399:      PROJ(3X)                    (bowell)                     PROJ(3X)
                   4400: 
                   4401: 
                   4402: 
                   4403:                hex() world is hexagon centered on N Pole, N and S
                   4404:                hemispheres are equilateral triangles
                   4405: 
                   4406:           Miscellaneous projections.
                   4407:                harrison(dist,angle) oblique perspective from above the
                   4408:                North Pole, _d_i_s_t earth radii from center of earth,
                   4409:                looking along the Date Line _a_n_g_l_e degrees off vertical
                   4410:                trapezoidal(lat0,lat1) equally spaced parallels,
                   4411:                straight meridians equally spaced along parallels, true
                   4412:                scale at _l_a_t_0 and _l_a_t_1 on Prime Meridian
                   4413: 
                   4414:           Retroazimuthal projections.  At every point the angle
                   4415:           between vertical and a straight line to `Mecca', latitude
                   4416:           _l_a_t_0 on the prime meridian, is the true bearing of Mecca.
                   4417:                mecca(lat0) equally spaced vertical meridians
                   4418:                homing(lat0) distances to `Mecca' are true
                   4419: 
                   4420:           Maps based on the spheroid.  Of geodetic quality, these pro-
                   4421:           jections do not make sense for tilted orientations.  For
                   4422:           descriptions, see corresponding maps above.
                   4423:                sp_mercator()
                   4424:                sp_albers(lat0,lat1)
                   4425: 
                   4426:      SEE ALSO
                   4427:           _m_a_p(7), _m_a_p(5), _p_l_o_t(3)
                   4428: 
                   4429:      BUGS
                   4430:           Only one projection and one orientation can be active at a
                   4431:           time.
                   4432:           The west-longitude-positive convention betrays Yankee chau-
                   4433:           vinism.
                   4434: 
                   4435: 
                   4436: 
                   4437: 
                   4438: 
                   4439: 
                   4440: 
                   4441: 
                   4442: 
                   4443: 
                   4444: 
                   4445: 
                   4446: 
                   4447: 
                   4448: 
                   4449: 
                   4450: 
                   4451: 
                   4452: 
                   4453: 
                   4454: 
                   4455: 
                   4456: 
                   4457: 
                   4458:      Page 9                    Tenth Edition          (printed 2/9/93)
                   4459: 
                   4460: 
                   4461: 
                   4462: 
                   4463: 
                   4464: 
                   4465:      MAP(5)                                                     MAP(5)
                   4466: 
                   4467: 
                   4468: 
                   4469:      NAME
                   4470:           map - digitized map formats
                   4471: 
                   4472:      DESCRIPTION
                   4473:           Files used by _m_a_p(7) are a sequence of structures of the
                   4474:           form:
                   4475: 
                   4476:           struct {
                   4477:                signed char patchlatitude;
                   4478:                signed char patchlongitude;
                   4479:                short n;
                   4480:                union {
                   4481:                     struct {
                   4482:                          short latitude;
                   4483:                          short longitude;
                   4484:                     } point[n];
                   4485:                     struct {
                   4486:                          short latitude;
                   4487:                          short longitude;
                   4488:                          struct {
                   4489:                               signed char latdiff;
                   4490:                               signed char londiff;
                   4491:                          } point[-n];
                   4492:                     } highres;
                   4493:                } segment;
                   4494:           };
                   4495: 
                   4496:           Fields `patchlatitude' and `patchlongitude' tell to what
                   4497:           10-degree by 10-degree patch of the earth's surface a seg-
                   4498:           ment belongs.  Their values range from -9 to 8 and from -18
                   4499:           to 17, respectively, and indicate the coordinates of the
                   4500:           southeast corner of the patch in units of 10 degrees.
                   4501: 
                   4502:           Each segment of |n| points is connected; consecutive seg-
                   4503:           ments are not necessarily related.  Latitude and longitude
                   4504:           are measured in units of 0.0001 radian.  If n is negative,
                   4505:           then differences to the first and succeeding points are mea-
                   4506:           sured in units of 0.00001 radian.  Latitude is counted posi-
                   4507:           tive to the north and longitude positive to the west.
                   4508: 
                   4509:           The patches are ordered lexicographically by `patchlatitude'
                   4510:           then `patchlongitude'.  A printable index to the first seg-
                   4511:           ment of each patch in a file named _d_a_t_a is kept in an asso-
                   4512:           ciated file named _d_a_t_a.x.  Each line of an index file con-
                   4513:           tains `patchlatitude,' `patchlongitude' and the byte posi-
                   4514:           tion of the patch in the map file.  Both the map file and
                   4515:           the index file are ordered by patch latitude and longitude.
                   4516: 
                   4517:           Shorts are stored in little-endian order, low byte first,
                   4518:           regardless of computer architecture.  To assure portability,
                   4519:           _m_a_p accesses them bytewise.
                   4520: 
                   4521: 
                   4522: 
                   4523: 
                   4524:      Page 10                   Tenth Edition          (printed 2/9/93)
                   4525: 
                   4526: 
                   4527: 
                   4528: 
                   4529: 
                   4530: 
                   4531:      MAP(5)                                                     MAP(5)
                   4532: 
                   4533: 
                   4534: 
                   4535:      SEE ALSO
                   4536:           _m_a_p(7), _p_r_o_j(3)
                   4537: 
                   4538: 
                   4539: 
                   4540: 
                   4541: 
                   4542: 
                   4543: 
                   4544: 
                   4545: 
                   4546: 
                   4547: 
                   4548: 
                   4549: 
                   4550: 
                   4551: 
                   4552: 
                   4553: 
                   4554: 
                   4555: 
                   4556: 
                   4557: 
                   4558: 
                   4559: 
                   4560: 
                   4561: 
                   4562: 
                   4563: 
                   4564: 
                   4565: 
                   4566: 
                   4567: 
                   4568: 
                   4569: 
                   4570: 
                   4571: 
                   4572: 
                   4573: 
                   4574: 
                   4575: 
                   4576: 
                   4577: 
                   4578: 
                   4579: 
                   4580: 
                   4581: 
                   4582: 
                   4583: 
                   4584: 
                   4585: 
                   4586: 
                   4587: 
                   4588: 
                   4589: 
                   4590:      Page 11                   Tenth Edition          (printed 2/9/93)
                   4591: 
                   4592: 
                   4593: 
                   4594: 
                   4595: 
                   4596: 
                   4597:      PLOT(5)                                                   PLOT(5)
                   4598: 
                   4599: 
                   4600: 
                   4601:      NAME
                   4602:           plot - graphics interface
                   4603: 
                   4604:      DESCRIPTION
                   4605:           Files of this format are produced by routines described in
                   4606:           _p_l_o_t(3), and are interpreted for various devices by commands
                   4607:           described in _p_l_o_t(1).  A graphics file is an ASCII stream of
                   4608:           instruction lines.  Arguments are delimited by spaces, tabs,
                   4609:           or commas.  Numbers may be floating point.  Punctuation
                   4610:           marks (except `:') , spaces, and tabs at the beginning of
                   4611:           lines are ignored.  Comments run from `:' to newline.  Extra
                   4612:           letters appended to a valid instruction are ignored.  Thus
                   4613:           `...line', `line', `li' all mean the same thing.  Arguments
                   4614:           are interpreted as follows:
                   4615: 
                   4616:           1.   If an instruction requires no arguments, the rest of
                   4617:                the line is ignored.
                   4618: 
                   4619:           2.   If it requires a string argument, then all the line
                   4620:                after the first field separator is passed as argument.
                   4621:                Quote marks may be used to preserve leading blanks.
                   4622:                Strings may include newlines represented as `\n'.
                   4623: 
                   4624:           3.   Between numeric arguments alphabetic characters and
                   4625:                punctuation marks are ignored.  Thus line from 5 6 to 7
                   4626:                8 draws a line from (5, 6) to (7, 8).
                   4627: 
                   4628:           4.   Instructions with numeric arguments remain in effect
                   4629:                until a new instruction is read.  Such commands may
                   4630:                spill over many lines. Thus the following sequence will
                   4631:                draw a polygon with vertices (4.5, 6.77), (5.8, 5.6),
                   4632:                (7.8, 4.55), and (10.0, 3.6).
                   4633: 
                   4634:                move 4.5 6.77
                   4635:                vec 5.8, 5.6 7.8
                   4636:                4.55 10.0, 3.6 4.5, 6.77
                   4637: 
                   4638:           The instructions are executed in order.  The last designated
                   4639:           point in a line, move, rmove, vec, rvec, arc, or point com-
                   4640:           mand becomes the `current point' (_X,_Y) for the next command.
                   4641:           Each of the following descriptions corresponds to a routine
                   4642:           in _p_l_o_t(3).
                   4643: 
                   4644:         Open & Close
                   4645:           o _s_t_r_i_n_g  Open plotting device.  For _t_r_o_f_f, _s_t_r_i_n_g specifies
                   4646:                     the size of the plot (default is `6i.')
                   4647:           cl        Close plotting device.
                   4648: 
                   4649:         Basic Plotting Commands
                   4650:           e         Start another frame of output or erase the screen
                   4651:                     on CRT terminals without scroll.
                   4652:           m _x _y     (move) Current point becomes _x _y.
                   4653: 
                   4654: 
                   4655: 
                   4656:      Page 12                   Tenth Edition          (printed 2/9/93)
                   4657: 
                   4658: 
                   4659: 
                   4660: 
                   4661: 
                   4662: 
                   4663:      PLOT(5)                                                   PLOT(5)
                   4664: 
                   4665: 
                   4666: 
                   4667:           rm _d_x _d_y  Current point becomes _X+_d_x _Y+_d_y.
                   4668:           poi _x _y   Plot the point _x _y and make it the current point.
                   4669:           v _x _y     Draw a vector from the current point to _x _y.
                   4670:           rv _d_x _d_y  Draw vector from current point to X+dx Y+dy
                   4671:           li _x_1 _y_1 _x_2 _y_2
                   4672:                     Draw a line from _x_1 _y_1 to _x_2 _y_2. Make the current
                   4673:                     point _x_2 _y_2.
                   4674:           t _s_t_r_i_n_g  Place the _s_t_r_i_n_g so that its first character is
                   4675:                     centered on the current point (default).  If
                   4676:                     _s_t_r_i_n_g begins with `\C' (`\R'), it is centered
                   4677:                     (right-adjusted) on the current point.  A back-
                   4678:                     slash at the beginning of the string may be
                   4679:                     escaped with another backslash.
                   4680:           a _x_1 _y_1 _x_2 _y_2 _x_c _y_c _r
                   4681:                     Draw a circular arc from _x_1 _y_1 to _x_2 _y_2 with cen-
                   4682:                     ter _x_c _y_c and radius _r. If the radius is positive,
                   4683:                     the arc is drawn counterclockwise; negative,
                   4684:                     clockwise.  The starting point is exact but the
                   4685:                     ending point is approximate.
                   4686:           ci _x_c _y_c _r
                   4687:                     Draw a circle centered at _x_c _y_c with radius _r. If
                   4688:                     the range and frame parameters do not specify a
                   4689:                     square, the `circle' will be elliptical.
                   4690:           di _x_c _y_c _r
                   4691:                     Draw a disc centered at _x_c _y_c with radius _r using
                   4692:                     the filling color (see cfill below).  Only works
                   4693:                     on the 5620; on other devices is the same as
                   4694:                     circle.
                   4695:           bo _x_1 _y_1 _x_2 _y_2
                   4696:                     Draw a box with lower left corner at _x_1 _y_1 and
                   4697:                     upper right corner at _x_2 _y_2.
                   4698:           sb _x_1 _y_1 _x_2 _y_2
                   4699:                     Draw a solid box with lower left corner at _x_1 _y_1
                   4700:                     and upper right corner at _x_2 _y_2 using the filling
                   4701:                     color (see cfill below).
                   4702:           par _x_1 _y_1 _x_2 _y_2 _x_g _y_g
                   4703:                     Draw a parabola from _x_1 _y_1 to _x_2 _y_2 `guided' by _x_g
                   4704:                     _y_g. The parabola passes through the midpoint of
                   4705:                     the line joining _x_g _y_g with the midpoint of the
                   4706:                     line joining _x_1 _y_1 and _x_2 _y_2 and is tangent to the
                   4707:                     lines from _x_g _y_g to the endpoints.
                   4708:           pol { {_x_1 _y_1 ... _x_n _y_n} ... {_X_1 _Y_1 ... _X_m _Y_m} }
                   4709:                     Draw polygons with vertices _x_1 _y_1 ... _x_n _y_n and _X_1
                   4710:                     _Y_1 ... _X_m _Y_m. If only one polygon is specified,
                   4711:                     the inner brackets are not needed.
                   4712:           fi { {_x_1 _y_1 ... _x_n _y_n} ... {_X_1 _Y_1 ... _X_m _Y_m} }
                   4713:                     Fill a polygon.  The arguments are the same as
                   4714:                     those for pol except that the first vertex is
                   4715:                     automatically repeated to close each polygon.  The
                   4716:                     polygons do not have to be connected.  Enclosed
                   4717:                     polygons appear as holes.
                   4718:           sp { {_x_1 _y_1 ... _x_n _y_n} ... {_X_1 _Y_1 ... _X_m _Y_m} }
                   4719: 
                   4720: 
                   4721: 
                   4722:      Page 13                   Tenth Edition          (printed 2/9/93)
                   4723: 
                   4724: 
                   4725: 
                   4726: 
                   4727: 
                   4728: 
                   4729:      PLOT(5)                                                   PLOT(5)
                   4730: 
                   4731: 
                   4732: 
                   4733:                     Draw a parabolic spline guided by _x_1 _y_1 ... _x_n _y_n
                   4734:                     with simple endpoints.
                   4735:           fsp { {_x_1 _y_1 ... _x_n _y_n} ... {_X_1 _Y_1 ... _X_m _Y_m} }
                   4736:                     Draw a parabolic spline guided by _x_1 _y_1 ... _x_n _y_n
                   4737:                     with double first endpoint.
                   4738:           lsp { {_x_1 _y_1 ... _x_n _y_n} ... {_X_1 _Y_1 ... _X_m _Y_m} }
                   4739:                     Draw a parabolic spline guided by _x_1 _y_1 ... _x_n _y_n
                   4740:                     with double last endpoint.
                   4741:           dsp { {_x_1 _y_1 ... _x_n _y_n} ... {_X_1 _Y_1 ... _X_m _Y_m} }
                   4742:                     Draw a parabolic spline guided by _x_1 _y_1 ... _x_n _y_n
                   4743:                     with double endpoints.
                   4744:           csp { {_x_1 _y_1 ... _x_n _y_n} ... {_X_1 _Y_1 ... _X_m _Y_m} }
                   4745:           in _f_i_l_e_n_a_m_e
                   4746:                     (include) Take commands from _f_i_l_e_n_a_m_e.
                   4747:           de _s_t_r_i_n_g { _c_o_m_m_a_n_d_s }
                   4748:                     Define _s_t_r_i_n_g as _c_o_m_m_a_n_d_s.
                   4749:           ca _s_t_r_i_n_g _s_c_a_l_e
                   4750:                     Invoke commands defined as _s_t_r_i_n_g applying _s_c_a_l_e
                   4751:                     to all coordinates.
                   4752: 
                   4753:         Commands Controlling the Environment
                   4754:           co _s_t_r_i_n_g Draw lines with color _s_t_r_i_n_g. Available colors
                   4755:                     depend on the device.  _S_t_r_i_n_g may contain defini-
                   4756:                     tions for several devices separated by `/'.  Col-
                   4757:                     ors possible for the various devices are:
                   4758:                     pen  black, red, green, blue, Tblack, Tred,
                   4759:                          Tgreen, Tblue (assumes default carousel,
                   4760:                          T=thick)
                   4761:                          1-8 (pen number)
                   4762:                          S_n_u_m_b_e_r character size as % of plotting area
                   4763:                     troff
                   4764:                          F_f_o_n_t
                   4765:                          P_p_o_i_n_t _s_i_z_e
                   4766:                     2621 H_c_h_a_r_a_c_t_e_r for plotting
                   4767: 
                   4768:           pe _s_t_r_i_n_g Use _s_t_r_i_n_g as the style for drawing lines.  Not
                   4769:                     all pen styles are implemented for all devices.
                   4770:                     _S_t_r_i_n_g may contain definitions for several devices
                   4771:                     separated by `/'.  The available pen styles are:
                   4772: 
                   4773:                     pen  solid, dott[ed], short, long, dotd[ashed],
                   4774:                          cdash, ddash
                   4775:                     4014 solid , dott[ed], short, long, dotd[ashed],
                   4776:                          ddash
                   4777:                     troff
                   4778:                          solid, dash only straight lines will be
                   4779:                          dashed
                   4780:                     5620 B_n_u_m_b_e_r line thickness
                   4781:                     2621 H_c_h_a_r_a_c_t_e_r for plotting
                   4782: 
                   4783:           cf _s_t_r_i_n_g Color for filling; may contain the definitions for
                   4784:                     several devices.  separated by `/'.  The following
                   4785: 
                   4786: 
                   4787: 
                   4788:      Page 14                   Tenth Edition          (printed 2/9/93)
                   4789: 
                   4790: 
                   4791: 
                   4792: 
                   4793: 
                   4794: 
                   4795:      PLOT(5)                                                   PLOT(5)
                   4796: 
                   4797: 
                   4798: 
                   4799:                     colors are available on the specified devices:
                   4800: 
                   4801:                     pen  black, red, green, blue, Tblack, Tred,
                   4802:                          Tgreen, Tblue
                   4803:                          1-8 pen number
                   4804:                     5620 B_t_e_x_t_u_r_e string with octal numbers for tex-
                   4805:                          ture; see _t_y_p_e_s(9.5).  The 16 words of tex-
                   4806:                          ture should be followed by one word for the
                   4807:                          mode used by _t_e_x_t_u_r_e(); see _b_i_t_b_l_t(9.3).
                   4808:                     2621 H_c_h_a_r_a_c_t_e_r for filling
                   4809:                     All  /A_d_e_g_r_e_e_s slant of shading lines
                   4810:                          /G_n_u_m_b_e_r gap between shading lines (in user
                   4811:                          units)
                   4812: 
                   4813:           ra _x_1 _y_1 _x_2 _y_2
                   4814:                     The data will fall between _x_1 _y_1 and _x_2 _y_2. The
                   4815:                     plot will be magnified or reduced to fit the
                   4816:                     device as closely as possible.
                   4817: 
                   4818:                     Range settings that exactly fill the plotting area
                   4819:                     with unity scaling appear below for devices sup-
                   4820:                     ported by the filters of _p_l_o_t(1).  The upper limit
                   4821:                     is just outside the plotting area.  In every case
                   4822:                     the plotting area is taken to be square; points
                   4823:                     outside may be displayable on devices with non-
                   4824:                     square faces.
                   4825: 
                   4826:                     4014      `range 0. 0. 3120. 3120.'
                   4827:                     troff     `range 0. 0. 6144. 6144.'
                   4828:                     2621      `range 0. 0. 22. 22.'
                   4829:                     5620      range dependent on layer size
                   4830:                     pen       range dependent on paper size
                   4831: 
                   4832:           fr _p_x_1 _p_y_1 _p_x_2 _p_y_2
                   4833:                     Plot the data in the fraction of the display spec-
                   4834:                     ified by _p_x_1 _p_y_1 for lower left corner and _p_x_2 _p_y_2
                   4835:                     for upper right corner.  Thus `frame .5 0 1. .5'
                   4836:                     plots in the lower right quadrant of the display;
                   4837:                     `frame 0. 1. 1. 0.'  uses the whole display but
                   4838:                     inverts the _y coordinates.
                   4839: 
                   4840:           sa        Save the current environment, and move to a new
                   4841:                     one.  The new environment inherits the old one.
                   4842:                     There are 7 levels.
                   4843: 
                   4844:           re        Restore previous environment.
                   4845: 
                   4846:      SEE ALSO
                   4847:           _p_l_o_t(1), _p_l_o_t(3), _g_r_a_p_h(1)
                   4848: 
                   4849: 
                   4850: 
                   4851: 
                   4852: 
                   4853: 
                   4854:      Page 15                   Tenth Edition          (printed 2/9/93)
                   4855: 
                   4856: 
                   4857: 
                   4858: 
                   4859: 
                   4860: 
                   4861:      ROUTE(1)                                                 ROUTE(1)
                   4862: 
                   4863: 
                   4864: 
                   4865:      NAME
                   4866:           route - map orientations and great circle paths
                   4867: 
                   4868:      SYNOPSIS
                   4869:           route [ -t ]
                   4870: 
                   4871:      DESCRIPTION
                   4872:           _R_o_u_t_e without an option reads from the standard input a
                   4873:           sequence of points, expressed as latitude-longitude pairs.
                   4874:           For each pair of points, say A and B, _r_o_u_t_e prints on the
                   4875:           standard output
                   4876: 
                   4877:           -    A _m_a_p(7) orientation, expressed as a -o option, that
                   4878:                transforms the great circle from A to B into the equa-
                   4879:                tor.  The transformed locations of A and B are located
                   4880:                on the equator at equal distances west and east of the
                   4881:                Prime Meridian.
                   4882: 
                   4883:           -    The transformed coordinates of the two points.
                   4884: 
                   4885:           -    The same information for a map orientation in which
                   4886:                point A appears to the east and B to the west of the
                   4887:                Prime Meridian.
                   4888: 
                   4889:           Under option -t _r_o_u_t_e produces coordinates along the great
                   4890:           circle from A to B in the form of a track for use with _m_a_p
                   4891:           option -t.
                   4892: 
                   4893:           Coordinates are expressed in degrees, with latitude positive
                   4894:           north of the equator and longitude positive west of Green-
                   4895:           wich.
                   4896: 
                   4897:      EXAMPLES
                   4898:           echo 40.75 74 52 0 | route -t | map mercator -l 30 70 -10 80
                   4899:                -t - | plot
                   4900:                Produce a map of the North Atlantic with a great circle
                   4901:                plotted from New York to London.
                   4902: 
                   4903:           route
                   4904:           40.75 74 52 0
                   4905:                Produces the output
                   4906: 
                   4907:                     -o 35.8283 -157.5308 -168.6148
                   4908:                     A -0.0000 24.9943
                   4909:                     B -0.0000 -24.9943
                   4910:                     -o -35.8283 22.4692 168.6149
                   4911:                     A -0.0000 -24.9943
                   4912:                     B 0.0000 24.9943
                   4913: 
                   4914:                From this we derive the following command to draw a
                   4915:                strip map 20 degrees wide along the great circle from
                   4916:                New York to London.  The -w option windows the map in
                   4917: 
                   4918: 
                   4919: 
                   4920:      Page 16                   Tenth Edition          (printed 2/9/93)
                   4921: 
                   4922: 
                   4923: 
                   4924: 
                   4925: 
                   4926: 
                   4927:      ROUTE(1)                                                 ROUTE(1)
                   4928: 
                   4929: 
                   4930: 
                   4931:                the new coordinate system, where the equator runs along
                   4932:                the great circle and the two cities sit at 25W and 25E
                   4933:                on that `equator'.  The -l option avoids surveying the
                   4934:                whole rest of the world for plottable points.
                   4935: 
                   4936:                map mercator -o 35.83 -157.53 -168.61 -w -10 10 -30 30
                   4937:                -l 30 75 -10 80
                   4938: 
                   4939:      SEE ALSO
                   4940:           _m_a_p(7)
                   4941: 
                   4942: 
                   4943: 
                   4944: 
                   4945: 
                   4946: 
                   4947: 
                   4948: 
                   4949: 
                   4950: 
                   4951: 
                   4952: 
                   4953: 
                   4954: 
                   4955: 
                   4956: 
                   4957: 
                   4958: 
                   4959: 
                   4960: 
                   4961: 
                   4962: 
                   4963: 
                   4964: 
                   4965: 
                   4966: 
                   4967: 
                   4968: 
                   4969: 
                   4970: 
                   4971: 
                   4972: 
                   4973: 
                   4974: 
                   4975: 
                   4976: 
                   4977: 
                   4978: 
                   4979: 
                   4980: 
                   4981: 
                   4982: 
                   4983: 
                   4984: 
                   4985: 
                   4986:      Page 17                   Tenth Edition          (printed 2/9/93)
                   4987: 
                   4988: 
                   4989: 
                   4990: 0707070035050675411007750000030000040000010322010533573267500000700000002667map.sh# MF -m -f or "", M map files, A other arguments
                   4991: # MFLAG and FFLAG 0 or 1 for -m or -f ever used
                   4992: FEATURE=no
                   4993: MAPDIR=${MAPDIR-/usr/lib/map}
                   4994: MAPPROG=${MAPPROG-$MAPDIR/map}
                   4995: M= A= MF= MFLAG=0 FFLAG=0
                   4996: for i in $*
                   4997: do
                   4998:        case $i in
                   4999:        -m)
                   5000:                MF=-m MFLAG=1 ;;
                   5001:        -f)
                   5002:                MF=-f FFLAG=1 ;;
                   5003:        -*)
                   5004:                MF= A="$A $i" ;;
                   5005:        *)
                   5006:                case $MF$i in
                   5007:                -m*)            M="$M $i" ;;
                   5008:                -friv*4)        M="$M 201 202 203 204";;
                   5009:                -friv*3)        M="$M 201 202 203";;
                   5010:                -friv*2)        M="$M 201 202";;
                   5011:                -friv*)         M="$M 201";;
                   5012:                -firiv*[34])    M="$M 206 207 208";;
                   5013:                -firiv*2)       M="$M 206 207";;
                   5014:                -firiv*)        M="$M 206";;
                   5015:                -fcoast*4|-fshore*4|-flake*4)   M="$M 102 103 104";;
                   5016:                -fcoast*3|-fshore*3|-flake*3)   M="$M 102 103";;
                   5017:                -fcoast*2|-fshore*2|-flake*2)   M="$M 102";;
                   5018:                -fcoast*|-fshore*|-flake*)      M="$M 101";;
                   5019:                -filake*[234]|-fishore*[234])   M="$M 106 107";;
                   5020:                -filake*|-fishore*)             M="$M 106";;
                   5021:                -freef*)        M="$M 108";;
                   5022:                -fcanal*[34])   M="$M 210 211 212";;
                   5023:                -fcanal*2)      M="$M 210 211";;
                   5024:                -fcanal*)       M="$M 210";;
                   5025:                -fglacier*)     M="$M 115";;
                   5026:                -fstate*|-fprovince*)           M="$M 401";;
                   5027:                -fcountr*[34])  M="$M 301 302 303";;
                   5028:                -fcountr*2)     M="$M 301 302";;
                   5029:                -fcountr*)      M="$M 301";;
                   5030:                -fsalt*[234])   M="$M 109 110";;
                   5031:                -fsalt*)        M="$M 109";;
                   5032:                -fice*[234]|-fshel*[234])       M="$M 113 114";;
                   5033:                -fice*|-fshel*)                 M="$M 113";;
                   5034:                -f*)    echo map: unknown feature $i 1>&2
                   5035:                        exit 1 ;;
                   5036:                *)
                   5037:                        A="$A $i" MF=
                   5038:                esac
                   5039:        esac
                   5040: done
                   5041: 
                   5042: case "$MFLAG$FFLAG$M " in
                   5043: 00)
                   5044:        : ;;
                   5045: 1* | *" 101 "*)
                   5046:        M="-m $M" ;;
                   5047: 01*)
                   5048:        M="-m 101 $M"
                   5049: esac
                   5050: 
                   5051: MAP=${MAP-world} MAPDIR=$MAPDIR $MAPPROG $A $M
                   5052: 0707070035050415411004640000030000040000011762600330024205300002100001013370mapdata/countiesn<:oB:qH:sL:�7�7t7R74�6#�6
                   5053: �6��6��6��6��6��6��6��6��6��6?�7E�7P�7U�7Y�7[�7]�7_�7a�7d�7e�7c�7b�7b�7b�7b�7b8a8h8i8h8d8a8T8O8I8H8I8J
8J8I8M8M8L8O8V"8^$8�W8�X8�Z8�Z8�Y8�Y8�Y8�\8�\8�_8�a8�a8�a8�`8�^8�Z8�W8�U8�T8�V8�Z8�a8�a8�d8�f8�f8�h8�|7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6{�6y�6w�6t�6n�6k�6g�6g�6b�6\�6U�6P�6L�6I�6E�6E�6@�6>�6;�65�62�64�63�6/�6/�64�65�64�6/�6-�6-�6-�6+7'7'7*7+7+'7��8�8�8�8�8�8�8�8�8�8�8�8�8�8�8!�8$�8*�8-�8-�83�8;�86\7&U7L7q�9o�9m�9k�9h�9f�9d�9d�9e�9h�9j�9i�9h�9f�9g�9g�9f�9`�9Y�9Q�9M�9J�9J�9K�9P�9R�9T�9T�9T�9S�9O�9M�9M�9L�9G�9F�9F�9G  :G:"G:G:D:A:A!:B(:A+:?/:=3:=6:>9:F?:NA:TC:YB:]B:`@:b>:c<:c::V::O;:H::C6:B3:D0:J-:Q,:Y-:_1:c5:i8:l8:n<:d_8g^8j`8q^8s\8w[8}[8�]8�]8�\8�Z8�W8 3848688898<8;8�<8�>8�>8�A8�D8&F8F8F8F8J8Q8T8W8Z8�J8�J8�I8�F8�B8�?8�;8�:8�;8�;8�98�38�+8�,8&-80818
0838��6��6��6��6��6��6��7��7��7�7�7   �7     �7�7�7�7�7�7�7�7�7�7
                   5054: �7�7�7 �7'�7+�7.�72�7:�7?�7�h8�j8�i8�i8�j8�j8�m8�r8�t8�u8�t8�s8�u8�u8�|8��8��8��8��8��8��8��8��8��8��8��8��8��8�J8�K8�Q8�U8�]8�^8�\8�[8�Z8�V8�N8�M8�N8�O8�P8�O8�K8�J8
                   5055: ��6��6��6��6��6��6}�6v�6k�6a�6+'7%07$37#87$A7"H7#L7'P7/V75X7:Y7@X7CV7DS7CN7@K7;G76B74=72874276.78,7<-7?,7B+7D+7E-7E-7D37D67E77I97J<7J>7ND7NF7MK7NM7QT7UW7^X7a[7e_7g`7k^7m_7od7od7rf7~k7�p7�s7�x7�|7    a�6Y�6K�6?�61�6$�6�6�6��65s88s8<o8Fi8Gh8Lg8Sg8Xe8\c8`b8d_8�Y8�[8�_8�a8�b8�e8�h8�l8�m8�n8�o8�q8�t8�u8�w8�x8{8|8
                   5056: |8y8t8 q8'q8-q85s8  Z8[8^8_8a8b8c8c8e8e8g8g8e8       ]8Z8V8&U8�X8�X8�V8�V8�W8�X8�X8�Y8�s7nl7fj7`l7\h7We7Oe7Dd7@b7>^7;\76\7��6��6��6��6��6��6��6
                   5057: ^$8`'8c+8h/8n28v98z;8};8�:8�<8�<8�B8�G8�J8�J8;�8=�8?�8D�8E�8D�8E�8K�8M�8P�8S�8U�8W�8Z�8\9\9b    9j9m9r9r$9s'9L7H7H7�87�47�27�27�07�-7�)7�(7�(7� 7�7�7�7�7�7�7�7t�9r�9r�9r�9q�9vA=rB= ��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<�&=�=�=�
                   5058: =�=�=�=�=&!=�$=�'=�3=&==@=A=B=D=J=P=V=[=)8
=6=5=3=0=*=%=!===    ===
&=
�<�<�<
                   5059: �<�<�<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<u�<q�<l�<k�<j�<e�<c�<a�<a�<_�<[�<V�<S�<S�<S�<R�<J�<F�<@�<>�<>�<==>=<=8
=rB=o@=m==k5=j/=f+=`'=`=a=e=l=r=
                   5060: C�7H�7U�7V8X8X8X8]$8^)8e28jC8gF8gK8eM8`M8ZP8ZP8YT8TW8T[8T[8)\8)\8%[8$J8J8/8/8
8    8     88
8
                   5061: 88�7�7�7�7�7�7�7�7�7�7�7C�7e28jC8n<:�::C�7��7u8r8m8l 8k%8i+8e28�#7��6��6_&7W"7Q!7        07x-7v/7r.7l$7i#7f%7c%7_&7Q!7�#7�7�/707�%7�&7�&7�7�7��6��6��6�$7�%7��6�$7n�7n�7?�7n�7?�7?�7n�7o8^8^$8�W8�28�28�8 �D8�L8�N8�Q8�T8�\8�`8�c8�h8�8� 8�28�98�@8�D8     �8�8�8�8�8�8�
8�8�8
                   5062: C�7G�7G�7G�7I�7M�7O�7Q�7V�7V�7V�7c�7j�7n�7n�7x�7�&7�&7�%7�l7k7�7�7�7�7��7��7��7��7��7�|7�&7hs8gq8`l8\k8Xe8V`8T[8�r8qr8rk8pj8kr8hs8jC8mF8qK8uJ8�&7+'7��7��7n�7��7��7��7�8�8�
8�
8z
8z�7n�7-�8.�86�8<�8A�8F�8M�8T�8T�8U�8��8��8��8��8��8&�8�8�8
                   5063: �8
�8�8�8�8�8"�8&�8*�8-�8U�8O�8K�8H�8H�8D�8?�8;�8;�82�7�7�7�7
�7
                   5064: �7
                   5065: �76\78f76l77o76q73p72�7
                   5066: �7��7�U7
T7L7X�9T�9R�9N�9M:N
                   5067: :G:p�9j�9b�9^�9X�9x�9s�9p�9q�9r�9r�9s�9t�9s�9s�9u�9^�8]�8X�8V�8U�8T�8-�8-~8+}8+m8)l8)\8hs8fv8dw8c{8b}8^�8?�7?�7A�7@�7?�7>07@07�17�V7}W7|j7nj7nt7nt7pt7ox7nx7n�7�#7�&7�*7�.7�17@07z/7~+7�&7�#7p�9u:��7��7��7��7��7��7?�7�7�$7:$7<%7@07d_8d8j8j�7j�7s�7r�7s�7x8y
                   5068: 8{8~8�8�8�8�8�17�37�77�87�:7�>7�?7�M7�Y7�Z7�X7�Y7�X7�U7�S7�P7�P7��7�J8��75�74Z84Z8Z8��74�75�7�"7�7�7�&7�#7�$7�%7�"7�"7�&7��6^�8a�8d�8f�8k�8m�8p�8x�8��8d�8d�8V�8U�8��7��7��7��7��7��7��7��7�~7R�7w�7~�7��7��7��7R�7R�7U�7T�7S�7R�7�~7�~7�}7�y7�u7��7R�7�u7�t7�v7�w7�z7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�D8�D8�/8/8�J8�48�38�8�8�
8
                   5069: ��7&�7�7�7�7�7�7�7�7�7�8��7��7��7��7��7��7�&7�7
                   5070: �7z�6v�6r�6j�6c�6_�6_�6a�6a�6��6��6��6�&7�"7�P7�#7�!7�!7�7�7�7�7�7�&7�&7R�7Q!7        �67�p7�q7��7��7��7��7�7�~707�67R�7C�7C�7#�7${7!|7x7x7z7|7|7x7
t7
                   5071: s7m7m7�i7�f7�_7�X7�V7�V7�R7�O7�P75s84Z85�7B�7C�7L�7L�7j�7  R�7N�7M�7L�7N�7N�7N�7L�7L�72�7I�7L�7V�7��7��7�7�7
                   5072: �7�67�77�;7�=7�A7�A7�B7�G7�J7�L7�L7�M7
                   5073: �M7�U7�V7�X7�\7�_7�d7�p7�s7�u7[= Y=$Y=&Z=+Y=.Z=.Z=?d=a]=\N=k^=rY=pL=rK=sJ=sH=rB=\N=`M=cN=eR=8
=;===A =B$=D&=G)=I,=J6=L6=N7=O;=P?=OB=PD=RH=\N=     -$?0-?9F?@W?Hd?Jl?Lt?Ox?P{?R�?S�?R�?Q�?S�?Q�?Q�?P�?P�?O�?M�?K�?H�?F�? I�>G�>G�>I�>L�>Q�>T�>W�>Z�>Z�>Y�> Y�>X�>Z�> 
                   5074: [=c=e=c=b=e=e=c=b=g=     g=�i=�i=�h=�`=�_=�`=�j=     �j=�o=�{=��=��=��=��=��=��=��=��= =>C>G>"M>"P>#U>%W>(X>([>#i>%k>'j>+i>/i>5l> 5l>7n>7t>6y>6|>7~><|>@z>Cz>Fy>Iv>Js>Ls>Mv>M}> M}>L�>L�>I�>     ��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��= ��=��=��=��=��=��=��=��=��=�>�>�>�>�>�>�!>�!>#>&>
                   5075: (>.>
1>2>4>;>=>=>       
                   5076: Z�>Z�>X�>T�>Q�>K�>G�>H�>K�>M�>     M�>K�>I�>D�>B�>B�>B�>?�>;�>7�>6�>6�>5�>4�>2�>/�>.�> .�>+�>'�>(�>)�>+?-$? N�AI&BDB=B     =B9B4B1B7BABFBGB     GBC B@B=B9B5B2"B 2"B2(B5)B:(B=,B =,B;/B     ��@��@��@��@��@��@��@         ��@��@��@��@��@��@��@��@��@  ��@�A�A�%A     W�AT�AR�AS�AV�Aa�Ac�Ae�Aj�An�AoBmBiBe�A     ��A��A��A��A~�A~�A�A��Az�Aw�At�Ap�Am�Am�Ap�Aq�Ah�Ad�Aa�Ab�A^�AW�A     �QB�UB�UB�VB     �VB�\B�aB�cB�bB�cB�gB�jB�lB�pB�uB�xB�}B��B��B��B��B��B��B��B��B��B��B��B     �fB�cB�cB�aB�]B�ZB�\B�^B�WB�YB�YB�XB�SB�NB�JB�GB�IB�NB�PB�NB�HB�IB�FB�AB�BB�AB�=B�<B�?B�QB     .U@,Y@     (r@.t@/y@,�@*�@'�@'�@)�@,�@2�@<�@N�@V�@X�@Y�@T�@Q�@ Q�@L�@D�@>�@>�@ ,Y@*a@'i@#s@�@�@�@
�@�@
�@�@�@�@�@�@!�@%�@'~@'v@(r@     '�@%�@$�@!�@�@�@�@�@�@
                   5077: �@�@�@&�@�@   �@��@��@ >�@C�@G�@H�@I�@G�@     
                   5078: G�@E�@B�@?�@:�@7�@3�@.�@+�@'�@     #��B��B��B��B��B��B��B��B��B��B��B��B��B�C�C�C�C�C�
                   5079: C�
C�C�C�C�C�C�C� C�"C�&C�)C�.C�2C�4C�6C�8C             ��A��A��A��A��A��A��A��A��A  ��A}�A�A��A��A��A��A��A     ��A��A��A��A��A��A��A��A     F�?F@B@A"@0N@.U@     ��B��B��B��B��B��B��B��B�B�zB�uB�qB�qB�qBtB}xByzBtxBqwBmyBj�B j�Bg�Bc�B\�BW�BO�BL�BG{B?xB,sB$qB �^B�cB�hB�lB�sB�wB�|B��B��B��B�|B�{B�{B�~B��B�B��B ��B��B��B��B��B��B��B ��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B )�%A�5A�GA�^A�tAx�Aj�Ab�A_�Ab�Ac�Aj�Ak�As�A}�A�}A�vA�rA�bA�MA�IA�IA�MA�SA�[A�eA�rA��A��A~�A��A��A��A��A��A��A��A��A��A��A��A ��A��A��A��A��A��A     ��B�|B�tB�oB�kB�hB�iB�jB�jB�eB�aB�aB�eB�gB�eB�bB�[B�XB�VB�UB�ZB�^B     e�Aa�A^�A^&BbBc        B`B]BXBSBN�A  ;/B85B57B4;B7>B8CB7GB3CB1CB-EB(MB (MB(PB$NB $NB:B�DB�JB�MBQBUBYB&`BfBiBwB{B�B�B��B     �8C�>C�@C�EC�RC�SC�WC�]C�aC�gC�oC�sC�yC}C�C��C&�C�C�C�C     �C �C     
                   5080: ��C��C��C��C��C��C��C��C��C��C     ��C��C��C��C��C��C��C�D�D�
                   5081: D�D�D�DD!D"D%D)D-D $qBoBqBtBqBkB�fB  �C(�C-�C5�CN�CQ�CY�C[�C^�Ce�Ci�Cn�Cs�Cy�C~�C��C��C u9>s9>p8> C
>U�=^�=^�=c�= c�=h�=i�=q�=q&>~&>     p8>e1>a0>\->Y(>U>O>C">     C">B>A>?>=>:>6>3>     3>C
>     -$?{%?             m�?g�?_�?Z@V
                   5082: @Q
                   5083: @M@M@F�? w�?p�?m�? kf>p8>     
                   5084: I�>P�>T�>Y�>`>hy>lv>mt>mo>kf>     y�>o�>e�>a�>Z�> >�=<|=;z=6x=*y=({=&{="y=s=n=j=�j=     a]=gb=hd=eg=di=cl=cp=et=ht=lt=su=}u=     ?d=Bd=Cf=Kj=Oi=Sh=Vf=Za=]`=``=a]= E}=>�=     
                   5085: ��=d�=a�=Y�=Sy=Rz=Ox=Kx=Hy=E}=     >�=@�=A�=A�=A�=A�=?�=?�=L�=O�=P�=R�=Z�=\�=^�=`�=     a�=a�=f�=f�=d�=c�=     `�=a�=     C
>C�=G�=H�=K�=K�=K�=H�=>�=<�=:�=2�=1�='�= �=�=�=�=
                   5086: �=�=�=��=       eR=i\=k^= w�=p�=o�=`�=     a�=f�=l�=n�=     n�=p�=p�=z�=     
kf>h^>cU>_R>YQ>UP>OK>MH>KA>J6>H.>E)>C"> 
=>!<>#<>$<>%9>(4>+5>0->/*>/'>1!>2>3> N�AG%BE5BC8B@8B=5B;/B �C�_C     �_C�_C     ��B��B     �C��B     �_C�IC�C�C     �_C�_C     ��B�C             k�Aa�AT�AW�AP�AG�A<�A9�A4�A  }�Ak�A     -�A/A1yA8xA=}A?vAEyA EyAMyAQ�AW�A^�Ag�A     g�An�Au�A 4�A-�A     ;_CBYC     BYCLoC     LoC`�C^�C         1�C2�C2zC({C%xC'wC'rC7eC;_C  ^�C1�C     1�C1�C     OYB'B             \cBalB`vBi�Bt�Bv�B��B��B��B  ��B��B��B��B     ��B��Bh�B5�B     6B\cB     5�B3�B0�B6B     .C1        C4C9C<CACF
CFC      FCICF CK/CI?C         �B�B�B�B�B�B%�B&&C.C  I?CBYC     ;_C�_C     �C�B     jC|C     -AA%A
%A
                   5087: *A   
                   5088: *A-A�5AHAMA�PA�SA�ZA       ��@�@�@$�@)�@ )�@*�@1�@1A/A-A     �]A�\A�[A�YA�[A�TA�IA�DA�;A�7A�7A�%A     �ZA�]A     ��B�/C     D    CD�B  
                   5089: �/C�+C�'C�&C�"Cu"CuCZCOCDC     ��B��B     D�B��B     ��B��B��B DCD        C      7�B5�BDnBOYB     [�BY�BQ�BD�B<�B;�B7�B v�Bq�Bl�Ba�B^�B[�B     pBmBfBdBe�A ��A��A��A�
                   5090: B}ByBpB ��B��B     
                   5091: �fB�kB�qB�sB�|B�~B��B��B��B��B     (r@&o@'n@)l@'i@)e@*c@.a@1_@0]@0Z@,Y@     a�@^�@V�@I�@>�@ .U@DV@cV@bc@     bc@a�@     k�A4B     ��A��A     4B*B*�A�A��A ��A��A�A!�A4�A .C5�B>�BB�BI�B I�BZ�Br�B|C     jCI?C     ��B�nB�_B�XB     MB��B     ��B��B��B �BMB     �XB�B     :�C��C     :AD:�C     ��C�BD     �^C�TC�TC�@C�@C�:C�:C�3C�2C�.C�/C ��B�B     �B 
                   5092: C      
                   5093: C^C ^C�^C     OYBIPB7:B4<B     4<B4B     -APVA     PVAL`AFoAEyA     �A|AoA�cA�ZA -�A&�A$�A!{A|A�A�A ��C�_C     �_C��C     ��C��C     '�@'�@(�@(�@$�@#�@ �@�@�@"�@'�@)�@     ��B��B     \cBx@B     x@B�?B�BB�@B�GB �GB�VB�XB 7�B�B     ��B��B     MBLBFB&FB-FB4<B     �B&�B��B��B     [�BI�B     �B�B�B  �B     �B�B        a�@k�@r�@x�@     �kA_[APVA %�B'�B;�BD�B     D    C�8C          ��B�B�B
                   5094: �B
�B�B�B�B%�B       ��A�B     ��A��A             �B�B�B�B��A��A��A��A��A  ��A��A     m�?s�?x@ DyCDC     �^C�^C�yC �yCDyC     ��B��B��B  �B�B     ��B�B�B�B     �B�B�B�B �B ��B��B     ��B��B     �oCLoC     ��B��B��B��B��B��B     %�B#�B$�B$qB     �C_�C^�C �^B�xB��B��B��B��B��B ^C�_C     :�C �C^C �B�B     �C 
                   5095: C      �B%�B)�B0�B5�B �]A��A     1�C��C     
                   5096: ��B�B�B�B&�B�B�B�B�B�B     1/D1�C     6B5}B8xB-lB2[B)TB$NB 
pBpBmBmBpBp&Bv+Bw-Bv4Bx6Bv:Bz<Bx@B DyC0�C �C �BD��C     ��C��C��C�yC
                   5097: ]�EZ�EL�EI�EJ�EN�EI�EG�EJ�EF�EF�EFF9F4F-F/F
                   5098: /F*F$F!FFF
                   5099: FFF$F�'F�(F�$F�)F
                   5100: �)F�.F�7F�;F�?F�FF�KF�MF�PF�UF�[F�fF�kF�tF�vF�zF�}F��F��F��F��F��F��F��F��F��F��F��F��F
                   5101: ��D��D��D��D��D��D
                   5102: 9PD>UDD]DI`DNbDQeDWfD]gDbiDfnDioDmmDpnDrsD
                   5103: rsDuwDzxD}wD~zD
                   5104: ~zD�}D�D��D��D��D��D��D��D��D��D
                   5105: ��D��D��D��D��D
                   5106: ��F��F��F��F&�F&GGGGG $G"*G,3G-:G3AG8EGNLGPRG\WGd]G
                   5107:        K_ENgENkELER�EM�EX�E\�E]�E
                   5108: ��D��D��D��D�D�D�D�D�D�D�DE#E&E-E0E1
                   5109: E
                   5110: 1
                   5111: E.E-E)
E
                   5112: )
E(E+E2E6E4E
                   5113: 4E5E8EG EG#EE(EF,EK-EJ6EJ:EN9EP<E
                   5114: P<EMAEIGEIOEJ[EK_E
                   5115: -D1D&7D-<D1ED5MD9PD
                   5116: ��F��F
                   5117: ]�E}�E
                   5118: �BD:AD
                   5119: 1�D1BD
                   5120:        1/D94D>4DA8DE2DK5DS1DW4Dc.D
                   5121: 1BD1/D
                   5122: ��D1�D
                   5123: ��D�BD
                   5124: �BD1BD
                   5125: 1�D�D�D�D��D��D��D
                   5126: ��D��D
                   5127: 9PD:AD
                   5128: �BD�BD
                   5129: K_E�`E�}3�x3�r3�n3�k3�h3�g3�g3�h3�g3�c3�\3�Z3�Y3
}3�3     �3�3�3��3��3��3��3��3��3��3��3��3�}3�Y3�Y3�V3�T3}L3wF3sB3r=3q93p23n03`-3[,3Y+3X-3X13]23`63a83^93\:3[>3X:3V73S83Q:3P=3QC3QC3QI3LH3KG3JC3K?3M;3L93K63J43K23K.3A+38,3�74�/4�-4�'4�%4�4�4�4�4�(4�*4�(4�$4�4�4�4�4�%4�'4�*4�$4�"4�#4�%4�,4�,4�-4�04�.4�.414m54k44h14e04   14}44z44z,4y*4t,4s/4p24m54�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�!4�4�4� 4�'4�'4�,4�/4e04b/4]/4U04R-4L/4G/4B,4<(45"4.4)4'4!4!4" 4$$4)%40/43243244645;48>4<A4=D4=G4��3��3��3��3��3��3��3��3
��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3%h4$j4#j4 j4h4g4j4n4n4r4s4#{4+|46�47�47�43�41�4/�4+�4"�3!�3�3�3�3�3�3�3�3!�3#�3#�3#�3 �3�3�3�3 �3�3�3�3�3�3�3!�3%�3'�3'�3(�35484>�3D�3D�3E�3F�3J�3J�3H�3L4P4T�3U�3T�3T�3Q�3M�3L�3M�3 ��3��3��3��3��3��3��3��3��3��3��3��3��3��3 ��3��3��3��3�&4�&4�4�&4�4�4�4�4�4�4��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�4�4�4�444   4!4!4#4%4%4(4(4+414444494
=4C4F4G4P4R4U4W4[4]4a4b4$f4%h4=G4;G48H44D4(34$-4)4%4 444444444&4�4�4�4�4�4�
4�4 ��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�3�3�3�3�3�3
                   5130: �3��3�3�3�3�3
�3�3�3�3M�3Q�3T�3V�3Z�3]�3_�3f�3h�3h�3e�3e�3a�3`�3`�3f�3h�3h&4i4i4h4k4p4w4z4{4z�3s�3q�3q�3u�3y�3}�3��3�3�3�3�3�3�3"�38,33,3//3,23(23"13234343=3�@3�E3�H3�R3�N3�J3�I3G3C3C3E3I3L3N3  Q3S3�T3�V3�\3�a3       �/4�24�74�:4�<4�=4�:4�74�74@'4>'4:'48*4:04874=@4=D4:F48D45?4194.<4'84$94!<4!@4 !@4&F4(I4(L4(T4*[4,\40[42]4!2]42_4-c4,e4-h4544�42�40�4-|4*|4)z4*s4'o4%l4%i4%d4#`4`4_4Z4U4S4S4V4V4T4I4D4B4B4@4>4�N4�N4�P4�S4�T4�T4�Q4�M4�I4�H4�I4�N4�P4P4}O4=#5=#52%5+'5%,5!253565<5D5M5!R5[5e5j5!k5"n5r5x55�5�5
                   5131: ��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�4�4�4�4�4�4�4�4�4�&4�'4�*4�04�64�54�44�74�4�4�4�4�4�4�4�4�4�
4�
4�    4�4�4�4�4�
                   5132: 4�    4�4�4�74�;4�=4�=4�@4�E4�?4�>4�A4�B4�?4�;4�74�54�14�/4�04�44�34�.4�*4�%4�%4�$4�!4�"4�4�4�4�4�4�4�4�@4�E4�D4�F4�F4�O4�S4�K4�I4�K4�M4�a4
                   5133: �a4�l4��4��4��4��4��4��4��4��4� 4�4�4�4�$4�+4�54�<4�?4�D4�G4�H4�G4�K4�K4�L4�K4�F4�D4�D4�G4��4��4�z4�v4�s4�l4�f4�a4�\4�Y4�V4�R4�O4�L4�G4�E4�D4�E4�s4�v4�|4�}4��4��4��4��4��4��4��4$��3��3��3��3��3��3��3��3��3��3��3{�3v�3q�3l�3i�3g�3h�3i�3p�3t�3y�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3
                   5134: ��3��3��3��3��3��3��3��3��3��3��3��3��3��3"��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3W�3W�3T�3L�3I�3F�3@�3@�3?�3C�3G�3F�3Q�3Y�3^�3e�3k�3t�3w�3z�3{�3z�3�3��3��3��3��3}�3w�3o�3l�3j�3d�3^�3W�3V�3W�3�G4�J4�M4�P4�T4�T4�S4�S4�O4�M4�L4�N4F�3@�3:�3:�38�3/�3-�3'�3'�3*�3,�3+�3%�3�3�3W�3U�3R�3P�3N�3P�3Q�3�3�3�3�3�3�3�3�34!4#4!
4
4444 4'4*4
*4*4%4$4 #4 +4-/41043.45"49"4=4@$4@$4@'4b5a5\5P
5F5=565/5*5(5(5* 5- 595<5=#5
                   5135: ��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4~�4>4;47434/4)4'4$4
%4&4(4.414,4�,4�-4&64&64�:4�?4�A4�@4�94�44�14�.4�-4�24�34�74�;4�?4�B4�B4�G4�K4�M4�T4�Y4�^4�g4�k4�p4�s4��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3~�4z�4t�4h�4b5��3�&4�4��3��3��3��3��3��3��3�
                   5136: 4�
                   5137: 4�4�4�4�4�4�4�4�4�4�4�4� 4~4~
44�4�4��3��3��3��3��3��3�3w�3v�3v�3u�3s�3q�3i�3g�3f�3    f�3d�3b�3`�3_�3\�3V�3S�3V�3V�3W�3}O4}G4�14�)4�"4�4�4�4�4�44~4��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�"3�%3�*3�.3�13�43�73�<3�>3�@3�G3�J3�L3�Q3�V3�[3�b3�g3�l3
                   5138: Kw2=y26|2)}2!�2�2!�2'�25�2?�2K�2@�2<�28�2+�2+�2%�2!�2�2�2
                   5139: �2
                   5140: 
                   5141: �2�2�2��2��2��2��2��2��2��2�l3�s3�|3�|3�{3�z3�z3�~3�~3&�3�3
}3�6�
6�6�6�6�6�6�$6�'6�+6�/6�36�66�:6|C6vM6tN6qN6nL6mL6jR6jR6gX6c^6Zg6Xl6Wq6Xt6ax6b{6`}6[}6Y6Y6V�6T6Sz6Qy6Oz6L�6B�6B�6A�6��5��5��5��5��5��5��5�6�6�6�6�6�6�      6�
6�6�
6�6�6�6��5��5��5�&6�6�6�6�6�6�6     �5�5�5�5�5��5��5��5��5�H3�N3�W3�Y3�\3�]3�a3�c3�c3�b3�_3�Y3�U3�R3�a3�g3�k3�m3�l3�n3�n3�q3�p3�p3�w3 �w3�y3�}3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3ok4nm4jm4fo4fo4ep4ev4f{4�t4�u4�u4�s4�j4�f4�a4�^4�Z4�W4�S4�O4�M4�J4p#4m"4l4n4m4m4j4g4e4f4f!4f%4i+4l04q44}B4�I4�L4�4}4|!4{"4y"4x 4w4t4s4q"4p#4�"4�!4�4OF4KE4EF4BF4?B4=?4=949848847647/43+42'41%4/%4X;4[<4^@4_E4`J4_M4^R4`Y4b\4c`4cc4cf4eh4lg4og4ok4�T4�O4xI4�L4�O4�X4�[4+�4,�4)�4$�4 �4�4�4�4�[4�^4�4�4�
4�4�4�
4�4�4�4�!4�$4�&4�)4�+4�-4�04�34�94�<4�A4�4�4�4�4� 4�4�4�4��3��3~�3|�3z4w&4u&4q4q4q4u4w 4{     4}4}
4{44�4�4�4�J4�D4�<4�94�74�74�54�24�.4�&4�!4�4�4�4�4� 4�4�4�4�4�4�4�4�"4/%4*%4&%4$$4' 4(4(4�^4�_4�_4�\4�Y4�W4�T4��3��3~�3{�3y�3y�3w�3u�3q�3k�3g�3d�3d�3b�3Y�3V�3S�3P�3P�3O�3Q�3_�3`�3d�3g�3g�3l�3p�3s�3w�3{�3~�3��3��3��3��3��3��3��3�14�/4�)4�(4�&4�4�4�4�4��3��3��3��3��3��3�4�4�
                   5142: 4�4�
4�
                   5143: 4�4�
                   5144: 4�4�4�4�
                   5145: 4�
                   5146: 4�4f{4c}4�A4�H4�L4�O4�R4�Z4�_4�b4�f4�o4�t4c}4a{4`y4_s4\o4[k4[g4\a4\\4WX4UV4TS4TN4WK4VH4TG4OF4�4}4x4
y4w4
                   5147: t4m4f4_4Z4�U4�R4�N4&M4&I4�I4�G4�D4�B4�A4�>4�<4�94�34�14�14xI4uE4j:4g54b.4_'4^!4^4]4\4X4U4T4U4U4U
4T      4Q     4O     4K
4
K
4K4I4I 4J4J4I4G4D�3A4>4<4<4<4<4:484
846454>"4A%4A(4C,4J04I64N=4S:4V:4X;4(4&     4)4-4/424341�30�3-�3,�3,�3,�3+�3(�3'�3)�3+�3,�3+�3)�3'�3#�3�3�3
                   5148: �3�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��4��4��4u�4�s4��4��4��4��4�4y�4u�4
                   5149: �}3��3��3��3��3��3��3��3��3��3y�3z�3~�3~}3�y3�t3�o3�k3�i3�h3�d3�b3�_3�Y3��3y�3��3��3��3��3�3��3��3��3 o3$l3#j3
}3
~3 o3    )�3(�3%�3"�3�3�3�3�3�3#j3'o3)v3+~3*�3)�3y�3Z�3Z�3J�3J�39�38_38_38,3�5��5k5j5h5f5e5g5p5�5g5p5�5�5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5�5�5�5�5�5��5��5��5��5
��5��5��5�~5�~5�{5�y5�{5|5z5x5s5k5�?4�A4�F4�J4�M4kL4nA4f@4e04�M4�P4�S4�V4�Z4�\4�f4
�f4�d4�a4�U4�S4�N4�M4�J4|M4yN4tP4oO4kL4�74�?4[4�k4�l4�l4�m4�m4�k4�k4�l4�k4
                   5150: �4�4�4�4�4�4�$4�/4�4444�k4�c4�_4�]4�[4�Z4�M4�?4�F4�M4�N4�.4�/444[4DJ4@J4kL4dM4ZM4WM4SJ4DJ4@J4=G4
                   5151: _�3`�3b�3d�3d�3b�3`�3_�3`�3Z�3��3��3��3��3��3��3��3��3
��3��3}�3z�3w�3m�3l�3i�3g�3e�3a�3`�3_�3�4�4�4�4�4
                   5152: �4
                   5153: �4�4�4�4�4�4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4�~4�x4�u4�p4�k4�4�4[4�4�3�3�3�3��3��3��3��3��3�3�3�3�3DJ4GS4JV4TW4Zc4[i4[l4Zp4Zt4[x4\|4[�4Y�4T�4b�4
%h4'h4)k4,k41g44d48a4;`4?_4@Y4@U4@S4@J4b�4_�4]�4X�4U�4R�4$�4!�4!�4"�4'�4'�4+�4R�4Q�4N�4H�4E�4@�4@�4;�44�4/�4)�4$�4_�3Y�3W�3P�3N�3M�3M�3"�3%�3*�3.�31�33�35�38�3;�3>�3?�3@�3B�3D�3J�3��4��4��4��4�4�4�4�4�4��4��4��4��4��4��4��4��4��4��4��4�4�4�4�4��4��4��4��4��4��4��4��4"63636�5"6�26�,6�"6�6�6�6�6      �6�6�6�6��5��5��5��5��536�26�344
                   5154: ��4��4��4��4��4��4�{4�x4�u4�o4�o4�l4�f4��3��3��3��3��3��3��3��3��3��3��3��3��3��3��4�o4��4��4��4��4��4��4��4
                   5155: ��4��4��4��4��4��4��4��4��4��4u�4p�4i�4f�4c�4c�4b�4��3��3��3��3��3��3
�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3��3��3��3��3��3��3��3��3��3�3�3�3�3  �3�3��3��3�4>5>5g5��4��455/5%5�!5�555&5�5�5�5�5�5�5�5�5�
                   5156: 5�5�5�5�
                   5157: 5�    5�5�5�5�5��4k5f5b5^5[5   X5U5O5
F5A555
                   5158: �3c3b3!^3$[3'[3*^3,_3/]38_3�R3�H3��3�a3�
                   5159: 6�76p:6p6s6w6�76�:6y;6w6{6�
                   5160: 6y;6p:6        �{6�y6�w6�q6�o6�n6�r6�q6�r6�r6�v6�w6�t6�u6�z6�z6�{6�{6�}6��6��6��6��6��6�{6%�4|4   n4@'4G04H44N:4R94W@4Va4Q�4_�4^�4 n4&a4
                   5161: 84>4^�4W�4R�4M�4K�4F�4E�4D�4@�4>�49�47�43�4%�4W@4Va4
                   5162: ��4��4��4��4��4��4��4��4��4��4�N4��4��4��4 ��4��4��4��4��4��4��4��4��4�4�4��4��4�4|�4y�4t�4s�4u4wy4yt4yp4wm4sl4om4kj4nf4pd4uc4wb4x^4vW4��4��4��4��4��4��4��4��4vW4wS4zQ4}O4��5~�5�5|�5}�5|�5{�5x�5w�5qx5oq5om5oh5r`5vX5��5��5��5��5vX5�L5�P5�Z5�[5�Z5    ��5��5��5��5��5��5��5��5��5
                   5163: �Z5�_5�e5�f5�h5�j5�m5�q5�5��5oF5TY5Tl5Pk5Np5Np5Jr5Ju5M�5M�5I�5F�5;�5;�53�52�5-�5%�5=#5C!5G#5I#5Z+5g/5i05j45j45m;5o?5oB5oF5%�5�5��3��3��3�4�-4�&4�&4�4�4�4�
4�4�4�4��3��3��3��3��3��3�&4�-4�4�&4�E4�D4�D4�R4��4��4��4��4�
                   5164: 6��5��5��5�16�76��5�6�6�16r�5r�58�5C�566:6<6>6=
6;6<
                   5165: 6>6?6>&6D�5F�5E�5C�5>�5:�5:�58�598666r�5s�5t6w6p:6986C�5G�5r�5�14�94�=4�?4�A4�C4�G4� 4�%4�*4�14�44�54�54�24�24�14�14oF5nK5oN5oR5vX5��5~�5|�5{�5y�5t�5s�5r�5p�5m�5j�5j�5j�5h�5e�5c�5c�5%�5�4�4��4��4��4��4��4��4��4��4��4��4��4��4��4�4�4�4�4�4
�4
                   5166: �4�4�s4�s4�u4�v4s4p4    n4%�4!�4�4�4�4�4�4�4�4�4�4�5 �5     �5
                   5167: �5
                   5168: �5
                   5169: �5�5�5&�5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5
                   5170: ��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5�5�5��3�4��3��3��3��3��3��3��3��3Q�3P�3F�3��4�5�5�&5�5��4��4��4��4�A5�>5�65�/5�,5�(5��4�J5�F5�O5�A5�5�5� 5�#5�'5�+5�.5�35�75�85�:5�J5��5��5��5��5��5��5r�5��5��5r�5r�5}�5}�5��5��5��5��5��5��5��5��5��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4k�4|�4~�4��4��4��4��4��4�5{5r5R�4h�4h�4n�4k�4r5l5f5]�4V�4R�4��5��5��5��5��5��5kZ5�L5�>5�35�,5�e5�h5�q5�v5��5��5�{5�x5�s5r5~m5}k5{j5va5t^5kZ5�,5�15�>5�B5�D5�F5�J5�W5�_5�`5�e5�q4�o4�p4�t4�v4�t4�p4�f4�`4�Z4�T4� 4�&4�&4�14� 4�-4�q4��5��5��5��5��5�{5��5��5��5��5��5��5�{5��5
                   5171: 5�4�4�4�4�4�4 �4!�4+�4+�49�4:�4>�4H�4N�4?5-5)5&5#
5!55N�4?5|�6y;6�76��6��4��4�,5�*5�'5�#5�5�5�5�5�5�5�&5��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4�        5�5�5�5�5�5�!5�&5�,5
                   5172: �5�5�5�5 �5&�5-�50�54�57�58�5�5�5
6�5�5�5��5�5      �5�5�57�5C�5��4��4��4��4��4��4��4��4��4��4��4�q4��4��5��5��5�6�6�6�+6�6��5��5�+6�$6�6�6�6�6       W�3V�3R�3I�3G�3F�3H4V4W4W4W@4     [P5\R5^S5_T5`W5aY5c[5g[5kZ5�5
                   5173: �5y5c5kZ5W�57�5c5`5\5W5S5R5M5K5(H5:>5C:5C:5ED5WK5YL5[P5�4�4�4��4�5��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4
                   5174: 66563626$6!6 66    6�5�4�4�4�4 �4+�455�5k�4f�4c�4b�4^�4Va4^_4b]4kY4pX4vW4�F6�I6�M6M6O6   P6     T6     V6V6V6*[68^68^66�6
                   5175: ��6��6�{6�v6�n6�W6�T6�M6�K6�F69868^6�F6�?6�>6�@6�@6�76�26�+6[P5p5n5r5b5o5q    5q
5q
5s5o5o5p5p5n 5p'5o*5k,5k35j45�5�5�5�5��4�5��4��4��4��4�4~�4��5��5� 4�4�4�4�4��3�A5�E5�J5�N5�S5�Z5��5��5R�4N�4
                   5176: �R6�J6�G6�E6�D6�<6�>6�86�36�+6�{6�U6�R6�6�6�*6�*6c�5�*6�*6�X6��6�16�X6�J5�J5X5[5`5c5�R6�*6~4|4t4h4W4�e5�_5�^5�e5�e5�{5�5�55�55�e5?5C5C15D:5C:5��2��2��2��2��2��2��2�2�2�2�2
�2�2�2�2�3
                   5177: �    3�3��2��2��2��2��2��2��2��2�3� 3�     3�3� 3�     3�3�3��2��2E*3A$3>%35303+3!3 3�2�2�2��2��2��2�2R�2O3E*3
                   5178: 1<3*13(23(3#3333
                   5179: 3�3E*3C/3>63:735931<3�      3�3�3�3�3�3�3�+3�.3�.3�03�K3�T3�[3�_3�a3�e3�h3�j3�k3�l3 o3g3g3f3b3b3a3U3Q3N3K3E3�.3�.3,L3+S3*]3'c3#j31<30?3-F3,L3F�4C�4@�4@�4?�4�4?}4E�4H�4
                   5180: �4(4*�4+y4-y4/y40|42|47{4?}4p5j5PM5R�5'�5�5)�3/�35�3={3Bp3Cp3Eq3Ki3N�3<�31�3/�3*�3%�3 �3�3C�4@�4BQ3Ra3,L39Q3;L3>O3?Q3?Q3@R3BQ3
                   5181: ?�69~66|61}6+~6#{6!|6~6|6w6*!6-%67 6A6G6"6"6!6!!6!6#6(6*!6H}6E6G�6D�6w6a6a636K5E5B!5;#5/)5).565>5�6w6N.4D)4="4947454/4)
4!4&4�3o�6p�6n�6i�6g�6d~6ex6iw6kt6lo6sl6wc6yb6~a6�[6�T6�L6�I6�E6�A6�>6�:6�76�06�*6�*6�,6�/6�36�R6
                   5182: �R6�Y6�^6�a6�d6�k6�r6�s6�r6�t6�t6�y6��6��6��6��6�6�
6�6�6� 6�$6�*6
                   5183: ��6��6��6�~6�{6�t6�r6�q6�n6�k6�k6�i6�f6�c6�c6�d6�g6�k6�p6�t6�{6�{6u66�6$�6$�6�6��6��6�6
                   5184: �6
                   5185: �6    �6u6?�6^a6_]6a[6aT6dO6   dO6hP6iS6jU6lT6pQ6rT6tS6uU6uU6uX6uY6wY6z^6|_6~^6�\6�Y6�Z6�\6�_6�_6�b6�f6�h6�j6�k6bG6_C6X;6Y�5]�5c�5X;6\46]16b-6a)6c"6c6`6^6_6_6[6[6\�5^�5Y�5�*6bG6
                   5186: 6
66666"6 %6$)6%-6'.6*.6,06.36126536536>76?76@56B36E46I96I96K>6O=6S:6V96X;6bG6dO66�62�6/z6,w6$�6u6s6p6n6k6d6Z6V6
R6N6J6G65616    .6     (6&666
                   5187: 6  ��5��5��5��5��5��5��5��5��5��5��5��5�6�6�6�666666�6�&6�'6�.6�16�86�A6�G6�R6Y�5T�5K�5C�5>6:666664
606,6(6
6     66666��5
                   5188: 66��3��3��3��3��3��3��3�5
�5�5�5��5��5��5��5��5��5��5��5��5��5��5�e5        n5�5�e5�W5�V5S5��5��5S5 n5�5�5�5�5�5�5�K6�S6�^6�x6�6��6��6��6��6��6��6�|6�z6�y6�w6�p6�n6�h6�_6�S6�S6�E6�D6�K6g�4m�4l�4m�4j5j5k5m5o
                   5189: 5t
5{5~5�5�5�F5�K5�P5�S5~U5|X5[5\5]�4^�4`�4g�4lX5[5
                   5190: �5�5�5�5�5�05�75�=5�A5�F5|X5lX5        ��5��5��5��5��5��5��5��5��5
�'6�'6�%6�!6�6�6�6�6�6�6�6�6�6�6��5��5��5��5��5��5��5�5�5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5     ��5�6�6�6�     6�6�6�6�'6�5�5�5��5��5��5��5��5o�5f�5e�5e�5c�5_�5\�5\�5\�5_�5`�5_�5`�5d�5c�5��5��5c�5q�5s�5v�5y�5�5��4��4z�4u�4       56*6�36�06
                   5191: 16-6%6%6#6%6*6-636  56��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5�06��5�5�5�5;6;696562616 56X6g6�K6�I6�F6�A6�:6�56�56�06��6��6g6k6
x6}66��6��6�26�76�;6�?6�@6�A6�B6�F6�K6�L6�T6�W6�]6�_6�c6�f6~i6ze6uf6si6sm6sm6nq6F+6M$6Q"6�6ap6af6]a6]\6[[6WY6VX6VT6QO6LN6IG6CE6CE6BB6B?6C;6>36>06A/6C16E26G26F/6F+6nq6mp6hq6gp6eo6ap6�'6�*6�,6�,6�+6�26��6��6��6��6rt6nq6�26�B6�A6�T6�T6�S6�T6�S6(�4*�4,�4/�4457   59585�5�4(�4=052525�55859&5:(5<+5=-5=05t~5�Y5�Z5�Z5�c5�w5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5�5~�5y�5w�5v�5t~5=�5\�5D�5B�5A�5A�5A�5@�5?�5=�5F+6F%6J#6Q6R6N6N6O
6Q6Q6M6O6N6H6G�5H�5G�5D�5��4��4��4��4��4��4��4&�4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4
&�4�4�4�4�4�4
                   5192: �4�4�4�4�4�4�4�4�4�4��4��4��4��4��4��4��4��4�4��4�4�4|�4z�4q�4��4}�4}�4|�4ok4wi4xj4xl4wn4yo4}o4}o4~r4}t4v4�y4�|4��4��4��4��4��4q�4q�4o�4o�4n�4k�4j�4i�4m�4n�4l�4f{4-�5*�5"�5�5�5�5�5�5�5�5
�5
                   5193: �5    �5�5=�5<�58�57�57�55�53�51�52�56�58�5;�5;�58�52�50�5-�5'�5G|5�5'�5G|5J�5S�5S�5S�5U�5W�5[�5\�5]�5^�5c�5g�4j�4g�4b�4b�4b�4c�4d�4��4��4|�4{�4w�4w�4z�4�4��4
                   5194: ��4��4}�4{�4y�4y�4{�4}�4�4�4�4��4��4��4��4��4��4��4��4��4��4��4��4�
                   5195: 5�5�
5�5d�4g�4p�4p�4p�4q�4�05�*5�55�75�:5�<5�J5�*5�%5�!5�5�5�5�5�5�J5�05�5�550�42�42�44�455D5H5N5P5T5W5\5\5^5a5b"5b%5
                   5196: EU57D55D5/@5.@5+A5&B5$=5#=5 ?5 ?5 65!55#45%15)#5*!5.5.5,5+5*5*        5+5,5,5)�4b%5DK5EU5)�4*�4)�4(�4(�40�4�K5�P5�V5�Z5�=5�B5�@5�A5�H5�H5�K5�F5�=5
                   5197: t~5qs5oo5pf5rb5ua5w_5w]5y[5|X5(�4'�4&�4%�4[5X
5W5V5S5859�4d�4%�49�4��4��4��4��4��4��4��4��4��4��4�u4�u4�n4�j4�c4�]4�X4�U4�T4�4&�4�T4�P4�J4�t4�t4�v4�v4��4��4��4�4�4��4}�4}�4|�4v�4u�4u�4u�4k�4f�4f�4d�4b�4\�4[�4Y�4R�4��4�*5I�4x�4��4��4��4��4�E5|@5x:5s15g05e,5d(5b%50�46�49�4C�4I�4�05�:5�;5�75�95�A5�A5�E5�K5�G5�95�95�H5�P5�V5�e5�6a6N6N6CE6ap6_w6Z|6U6S�6R�6W�6��5�~5�|5�y5�x5�s5�o5�g5�f5�f5�g5�f5�d5�d5�d5�K5�J5�55�W5�j5�p5�l5�r5�r5�n5�z5�v5�}5�}5�w5�w5�{5��5��5��5��5��5�W5�j5�B4�E4�D4�B4�C4�E4�H4�H4�L4�4� 4�4�"4�*4�+4�.4�<4�B4��4��4��4�    5     ��4��4��4��4��4��4��4��4��4�     5�5�5�5�5�#5�&5�*5�,5�-5�15�95�=5�:5�25�(5�&5�%5�$5�%5�%5�!5�5�5�5�5�5�5��4��4��4`5d5h5k5l5 n5!r5%v50|56{57{5:~5   n5`5:~5.�5.�5+�5'�5"�5�5�5��4��4��4��4��4�4�4�4
                   5198: �4#�4!�4!�4 �4!�4%�4��5��5��5�5�5�5�5��5��5��5��5�5D�5�6��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4  ��4��4��4��4��4��4��4��4��4��4��4��4��4��4�     5��4��4��4��4��4��4��4��4��4��4�X6N616266/6736:46G:6PL6PL6MQ6CW65W6+\6+\6(\6'\6%b6"g6j6j6g6�m4+.4/%49d45d4/c4*_4(_4!d4g4p4       q4o4�m4OF4HI4FJ4DK49d4   �T4�Y4�_4�c4�g4�j4�l4~m4}o4a74d@4iF4kM4mQ4sQ4uU4vU4xS4{Q4xI4X;4Z74a74��4��4��4��4��4��4��4�|4�y4�u4�q4�p4�m4�c4�^4�[4�Z4�[4�B4�I4�M4�O4�S4�T4$�4$�4 �4�4�4�4�4�4�4�4�4�4�4��4��4��4��4��4��4�}4�{4�y4�v4�s4�p4�n4�l4�k4�i4�h4�h4�g4�e4�b4�^4�4�4�4�4�4
                   5199: �4�4�4�4�4�4� 4�#4�%4�*4�*4�/4�34�:4�A4��4��4��4��4��4}�4��4�5�5�
5�5�5�"5�(5&,5<5C5�G5S5��4��4��4�5�5�5�5�"5'�5$|5#w5"q5"m5!i5 f5c5a5`5\5X5N5J5G5>525=05<95CH5FJ5HN5IQ5LX5LX5Ka5Lf5Kn5Ir5Gx5G|5`5[5W5U5R5P5N5I5F5B5 ?5
                   5200: Vi5Ul5Qo5Mr5Iv5Fx5Ez5D{5B{5:~5EU5Vi5�m4�m4�o4�o4�q4�q4�q4�&4!4%4(4��5��5��5��5��5�>4�34�04�04�/4�*4�14�84�:4�=4�>4lX5LX5�"555"�4&�4)�4Vi5Wh5Yf5ef5he5o_5R�5E�5C�5?�5:�57�5.�5{q5ux5m5l�5g�5^�5\�5W�5W�5R�5o_5qd5vj5{q5N�4Q�4V�4[�4^�4a�4b�4c}49�4N�4I�4O�4O�4O�4L�4I�4F�4@�4�E5}J5zM5uO5qT5oY5o_5        �>4�E4�K4�O4�R4�V4�V4�T4�[4�[4�^4�i4�j4�l4�v4R�5n�5n�5|�5y�5v�5u�5t�5n�5
                   5201: n�5k�5h�5a�5_�5[�5S�5I�5A&6;6    {q5�l5�i5�j5�c5�h5�d5�e5�d5��5��5��5��5��5��5��5��5��5z�5n�59d4/x4/x4�4�4�4�4"�4!�4!�4�4%�4&�4%�4(�4N�4L�4K�4H�4F�4F�4E�4C�4C|4By4@y4;z48z4/x4I4K4L4K
4a74b64]04V*4M!4I4I4G4C4>4>484
��3��3��3��3��3��3��3&�3�3�3�3
                   5202: �3
�3

�3�3�3�3�3�3�3�3�3 �3"�3&�3,�3�i6�j6�q6�q6�r6�w6�x6�w6�u6�p6�l6�j6�w6�z6�|6�~6�6��6��6��6�j6�j6�k6�i6�55�,5�+5�(5�"5�5�5�555�=5�B5�E5�F5�N5�N5�S5�S5�W5v�5{�5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5�6�6v�5�6�6�26�-6�-6�)6�%6�!6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6��6��6
                   5203: ��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5�j5��5v�5n�5��6��6��6��6��6��6        �y6�x6�x6�w6�u6&g6d6a6a6��6�y6[K6YJ6XK6TK6PL6
                   5204: �6�6�6�#6�'6�+6�.6�.6�.6�16�16�76�9696~;6~;6|<6{;6y96v86r96o96_G6_G6]G6[G6[K6[K6\N6^M6_N6_N6`R6_T6]T6[U6        [U6[X6^Y6^[6^]6^`6__6d]6he6he6bi6Ls6Ht6�y6�x6�w6�i6�U6�26�6�,6�26�86�;6�c6�b6�c6�c6�f6�j6 ��;��;��;��;��;��;��;��;��;��;��;��;��;��;�<�<�&<��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�<�<<�<�<�<�<�
                   5205: <�
                   5206: <�<�
<�
<�<�<�<�<�<�<�<�<�<�<�<�<�<�!<�&<�(<�1<�6<�9<�<<�C<sL:uO:zO:�k:�l:�l:�i:�b:�N:�K:�J:�M:�P:�S:�V:�[:�_:�f:�j:�n:�n:�s:�n:�n:�k:�k:�m:�q:�q:�s:�u:�w:�{:��:��:��:��:��:��:��:�:�|:�|:�{:�x:�w:�x:�v:�w:�{:�{:��:��:��:
��7��7��7��7��7��7��7��7��7�7�}7�{7�y7�s;�q;�o;�p;�s;�w;�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�B9�K9�R9��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7
                   5207: ��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:        ��:�;�;�;�;�;�;�&;�/;�y7�w7�s7$�/;�;;�H;�U;�^;�e;�i;�m;�p;�q;�q;�o;�l;�f;�^;�Z;�T;�N;�L;�L;�M;�Q;�S;�S;�S;�T;�W;�Y;�];�^;�`;�c;�f;�f;�e;�g;�g;�k;�n;�q;�t;�s;s'9�;9�B9�R9�W9�\9�`9�d9�j9�m9�p9�u9�u9�u9�v9�v9�z9��9��9{�9x�9t�9��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�X7�\7(�7+�7.�75�76�75�727.7*�7&�7&�7$�7"�7"�7!�7�7�7�7�7�7�7�7�7�7
                   5208: �7�7�7�7&�7��7��7��7��7�&7�7�7�7�%7�-7�17�37�27�07�77�77�;7�@7�J7�L7�M7�I7�H7�F7�@7�@7�A7�F7�H7�L7�O7�O7�S7�X7\�7[�7X�7R7P7N�7K�7H�7F�7<�7:�79�79�79�7?�7B�7C�7B�7?�7=�79�77�75�74�7-�7(�7�\7�Y7�Y7�W7�Q7�P7�P7�Q7�T7�V7�[7�[7�]7�a7�f7�i7�k7~k7}i7}g7d7�^7�\7~[7|[7x]7ta7jd7he7kl7kl7jn7iq7er7`r7]r7\u7\u7^�7^�7\�7�(=�+=�+=}*=}.=}.=�5=;=}>=vA=~`=�Y=�T=�O=�M=�K=�H=�E=�B=�A=�==�:=�7=�4=�3=�/=�.=�/=�/=�-=�*=�&=�"=�=�=�$=�%=�%=�(=r=x=|=~=�=�=��<��<��<��<��<��<��<��<��<��<��<��<��<~�<y�<u�<�
=�=�=�)=�5=�<=�B=�I=�L=�Q=�X=�[=��<��<��<��<��<��<��<��<��<��<��<�=�
=��<��<��<��<��<��<��<
                   5209: ��<��<��<��<��<��<��<��<��<��<�C<�G<�F<�H<�H<�N<�S<�X<�^<�b<�d<�g<�k<�q<�{<��<��<��<��<��<��<��<��<*�6)�6'�6$�6#�6!�6�6�6�6�6�6
�6
�6
                   5210: �6�6�6�67777 77777777�7�7�7�7�77�7�&7�&7�7�7�7�7�7�7�7�7�7�"7�%7�&7
A�6A�6>�6>�6:�69�6:�6;�69�66�64�62�6.�6.�6,�6)�6'�6+�6+�6,�6*�6(�6)�6*�6L�:M;E;EA;EA;@A;=A;8@;1?;,>;';;!8;7;4;3;3;2;0;0;�:L�:*;(;%;#;;;;;;;;;;
;      ;;;&;�:�: 0;0;
                   5211: /;    -;
                   5212: *;
*;(;);*;�:�:�:�:�:�:      W�;X�;Y�;Y�;X�;T�;S�;S�;S�;S�;P�;N�;M�;M�;M�;I�;H�;H�;H�;E�;D�;C�;B�;B�;?�;>�;>�;?�;?�;>�;>�;<�;$�;N�;
 �;�;�;�;�;�;�;�;�;�;�;&�;�< <�;7�;2�;1�;/�;-�;*�;$�; �;N�;Q�;U�;X�;X�;W�;     ��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;
                   5213: ��;��;�;
                   5214: �;
�;�;�;�;$�;$�;  �?:�>:�E:�E:�G:�H:�M:�M:�W:�W:�Y:�[:�\:�_:�e:�h:�u:�>:�>:�>:�:�:�:�:�:�:�h:�h:�i:�g:�g:�h:�m:�m:�n:�p:�r:�t:�u:��9�:�:�:�:�:�:� :� :�:�!:�!:�?:�:�:�:�&:�&:��9��9��9cT;d;;�<;��;j�;�U;�[;j�;j�;d�;cT;
                   5215: �<;�?;�?;�A;�E;�K;�K;�N;�M;�N;�N;�S;�V;�V;�U;�W;�W;�V;�U;�[;�^;�c;�d;�g;�i;�k;�o;�p;�p;�q;�q;�{;�};��;��;��;��;        ]�:]�:]�:[�:Y�:W�:U&;P&;N;N;J;G;D;D;C;@;?;;;5;5;4;0!;/$;-';));%0;&3;%5;$5;#7;#7;#;;"=;!>;A;A;B;B;D;F;I;     %�:&�:&�:(�:/�:1�:9�:=�:@�:F;B;=;";;;@�:B�:C�:F�:O�:]�:;
;
�:�:�:�:�:�:�:�:"�:%�:I;I;I;G;F;�@:��:��:�:�:�:�:�:�:�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�~:�~:�h:�?:�@:
                   5216: �@;�@;�@;�>;�>;�?;�<;�7;�6;�;�;��:��:��:��:��:��:�8;�@;�@;�8;�@;�@;%Q:&Q:&b:(c:(u:b:b:]:]:P:%Q:�:�x:�w:�t:�t:�n:�m:�h:�f:�f:�c:c:a:
                   5217: a:^:
]:
[:[:b:(u:&u:&}:(~:(�:%�:%�:      %�:$�:$�:�:�:"�:!�: �:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:
�:�:�:�:�:�:�:��:��:��:��:��:
                   5218: ��:��:��:��:��:��:��:��:�:�:Q[:RY:SY:SW:RV:RK:SJ:SG:RF:R?:T?:U=:S=:S;:R::R':T&:T
                   5219: :�:�[:�[:Q[:T
                   5220: :X
                   5221: :[
:d:g:i:i:�:%Q:&K:(K:'::�R:�U:�U:�X:        �X:�[:�_:�_:�[:}X:zY:w\:pb:pb:ne:oh:mi:ii:V�:V�:V�:S�:R�:R�:P�:P�:F�:C�:C�:C�:E�:E}:D}:>~:=}:3x:,t:(u:\E:�P:<>:\E:'::<>:�P:�R:T�:\�:^�:b�:e�:h�:j�:k�:k�:m�:q�:u�:|�:~�:��:��:ET;EA;L�:U�:T�:cT;ET;��:�&;�;�
                   5222: ;�;�;�2;�2;�2;�;;�<;�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�
                   5223: <�
                   5224: <�
                   5225: <�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<��;��;&<&<�;�;�;�;�;�;�;�;J<�P<�<�J<�R<J<�J<�R<�P<��;�
                   5226: <@�;?�;>�;=�;<�;W�;]�;c�;^�;_�;a�;f�;i�;j�;m�;m�;k�;m�;r�;u�;w�;~�;�;��;��;��;��;��;��;��;^�;_�;^�;[�;Z�;Q�;M�;L�;G�;C�;@�;Z�;[�;Z�;V�;T�;Q�;
                   5227: i�;g�;e�;e�;g�;f�;d�;`�;]�;^�;�<�<�<�
<�
<�
<�        <�<�<�<�<�<��;~�;{�;v�;s�;p�;m�;k�;i�;��;��;��;��;��;�c:�x:�z:�|:�}:��:��:��:��:��:��:��:��:��:     �e:�d:�b:�b:�d:�d:�`:�`:�d:�d:�c:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�e:�c:�*:�:�~:��:�*:�0:�0:8:8:'::o�:C�:��:��:��:�:�:�:o�:D~:�~:C�:D~:�~:��:�<��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�<�<�<�<��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�<�<q;u;�;D;`;b;e;i;m;q;     P�;R&;H';G';F%;F";E!;D;D;�@;�F;�Q;�X;�Z;�Z;�_;�_;�h;�h;�g;�h;�l;     �l;~n;us;qw;n};j�;[�;Y�;P�;T�:U�:X�:X�:U�:T�:��:��:��:��:��:��:��:��:T�:��:o�:p�:r�:s�:��:�:z�:v�:t�:��:��:D;$;$�:C�:$;$�:$�:$�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:fc;bd;]�:a�:b�:d�:d;d;fc;
                   5228: .d;&c;%c;"_;!^;_;^;P;O;I;bd;.d;D~:Dp:X>:�>:Dp:Go:Gm:In:Kl:Mm:Rh:Sd:Tb:S\:RZ:QV:PS:OH:SH:T>:X>:�u:�~:�@;�@;�/;�.;�/;�3;&8;7;4;4;7;
                   5229: 7;6;
4;0;�;&�;ET;DT;AU;>U;:V;  :V;6Z;3];0^;,_;&`;&�;�;�;&�;&�;�;��;��;��;��;��;��;��;��;�z;�{;�t;�q;�n;�m;�l;�@;S�:R�:�Z:�a:�a:�d:
�d:�j:�v:�z:�{:��:��:��:��:��:��:��:�:�:z�:x�:r�:S�:�R:�Z:�:�:!�:"�:"�:!�:!�:!�:!�:$�:%�:'�:�:�:�:�:�:�:�:�:�:%�:'�:'�:(�:(�:(�:$�:!�:�:�:�:�:�:�:�:'�:*�:/�:2�:7�:A�:A�:F�:K�:P�:T�:T�:T�:P�;P�;L�;L�;M�;N�;N�;$�;$p;$.;$;$p;$.;S�:S�:Q�:Q�:@�:%�:*�:-�:-�:*�:.�:.�:-�:'�:$�:"�: �:�:�:�:�:�:�:�:�: �;��; �; �;��;��;��;��;��;��;��;��;��;��;��;�;�; �;c�;��;e<d�;d�;c�;<e<�<<$J:EI:Dp:$�:$N:$N:$J:$�:$�:
-�;0�;3�;5�;7�;5�;5�;8�;:�;<�;=�;=�;>�;>�;A�;B�;B�;A�;B�;D�;F�;G�;J�;K�;O�;O�;O�;P�;S�;U�;V�;X�;X�;W�;X�;Y�;Z�;[�;_�;c�;g�;k�;n�;o�;o�;p�;r�;t�;v�;v�;x�;{�;}�;|�;~�;�;��;/�;1�;1�;1�;/�;-�;
                   5230: ��;��;��;��;��;��;�<�<�<�<    �<�<�<�<�<�<�<�<~<M<K<I<I
<K     <I<D<B<A<><<<=�;B�;B�;A�;A�;@�;>�;;�;;�;<�;<�;;�;1�;/�;~<|<z<y<y<v<t<t<y<y<t<s"<q"<o<g<e<c<b<c<b<^<^
<^ <\     <Y
                   5231: <Y<Y<X<U<P<M
<M<��;��;��;��;��;��;-�;-�;%�;%�;%�;D�;D�;b�;c�;j�;��;��;X>:W:~�9��9�&:�:�
                   5232: :�:W:^:j:p:v:~�9�:�:$J:"�9    0�93�96�9;:A:D:O     :T     :W:"�9#�9*�90�9��:��:��:��:��:��:��:��:��:��:��:��:��:��: ��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�:�Z:�^:��:��:�^:��:��:��:��:�;�;�&;�&;��:��:��:��:��:�:;;;;�U;�P;�K;�H;�B;�;;�7;�5;�5;�1;�+;�+;�';�$;�!;�;�;�;�;�
;�;�;��:��:��: �~;�|;�{;�|;�;��;�;��;��; ��;��;��;��;��;��;��;��;��;��;��;��;�};�};�{;�z;�y;�x;�v;�u;�r;�q;�n;�n;�j;�j;�e;�d;�^;�];�Z;�[;F;G;
H;I;
                   5233: P;    P;     S; S;S;T;V;�V;�Z;�Z;�Z;�^;�_;�i;�i;�o;�o;�o;�t;�u;�w;�x;�z;�|;�~;�~;�~; �;4�;5�;9�;9#<�/<��;+<�/<9#<+<��;��;��;��;��;��;��;�};�};�};�z;�u;�t;�t;�!<�<�<�<�t;�x;��;� <�!<�x;��;��;��;�a;�e;�t;�w;�};fc;�a;c�;bd;:m:8m:7g:5f:*H:*A:A:   A:1:!1:#0:$.:%�9(�9(�9(�9Q[:R^:O^:Om:Om::m:;:@:G:Q :T
                   5234: :(�9-�92�9;:�*;�*;�a;�Z;�T;�B;�6;�0;�*;�2;�t;�*;�2;
                   5235: ��:��:��:�:&�:�:�:�:�:�:�@;�9;�8;�:�:�:�:�:�@:A::m::q:7q:7:7:(:'�:�;��:��:��:��:��:��:��:��:��:��:��:��:��:��:�*;�&;� ;�;�;�;�;�;�;�    ;�;�;��:�*;�;�;%�;/�;.�;-�;-�;-�;+�;&�;#�;"�;!�;<<<<�;�;�;
                   5236: ��;��;��;��;��;��;&�;�;�;&�; �;0�;0�;d�;e<<#<<#<9#<�;�;u;d;@�;B�;=<=8<99<8J<"I<�F<8J<"I<�F<�C<�@;�p;�s;��;��:��:��:}:<~<��;��;�/<�4<�4<}:<�e:�[:�(:�*:�:�(:�:�:��9��9�9�9�9�9�9�9#�9(�9    ��9��9��9��9��9��9��9��9��9��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:r<<6C<6C<J<}:<r<<�~;��;��;��;��;��;.d;0�;nN<8J<�P<nN<�W=��=�+=�1=�8=�V=�W=~=� =�%=�*=�+=AK=FJ=ME=OD=QF=QM=UQ=XR=]Q=_L=b>=d:=g:=i6=l/=n-=r-=v.=z.={)=|!=~=3[=7Y=7U=8N=:L==L=AK=��7��7��7��7�88�88��7��7��7��7�88��7��7��7��7�8�8�8�8�
8�8�8�8�
8�
8�88�::�9:�9:�B:��:��:     �B:�K:�L:��:��:��:��:��:��:��7�8�8�8}
                   5237: 8u8�::�
                   5238: :��9�:�:�9:�
                   5239: :�:�:��9��9��9��9��9��9��9��9��9��9��9��9��9��9��7��7��7��7��7x�7|�7��7��7��7�c8�f8�c8�X8�X8�]8�c8�h8�h8�m8�r8�r8�r8uJ8wH8|F8�D8�A8�:8�78�88�88�Q8�Q8�c8��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7
                   5240: ��7��7��7��7��7��7��7��7��7�y7�s;�x;�{;��;��;��;��;��;�;�;�;�;�;}; w;$p;w�9x�9x�9t�9s�9u�9u�9w�9��9��9��9��9��9��9��9��9��9��9��9��9��9��9�}9�z9�{9��9��9��9��9��9��9��9��9��9��9��9��9��9��9�{9��9u:w:}
                   5241: :�:�:�:�:�
                   5242: :    ��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8�r8�c8��8��8��8]:`:^:Y:V:U:$N:$�:��:��:��:��:��:��:�:&z:�y:�v:�u:�d:]:��9��9]:K:&K:B:�B:��9��9��9��9��9
                   5243: �9�9�9�9�9�9"�9�G9�F9�>9�B9�F9�K9�K9�Q9�Q9�R9�$9�!9�9�!9� 9�9�9�9�9�9�9�9�9��8��8�B9�@9�?9�=9�:9�:9�79�69�09�*9�$9�R9�R9��8�9�9�G9��8��8x�8��8��8��8��8��8��8��8��8��8��8��8��8��9��9��9��9��9��9�p9�p9�R9�T9�{9�G9�T9w�9}�9��9��9��9��9��9��9��8��8��8��8��8��8�$9��8��8��8��8��8��8��8��7��7��7��7��7��7��7��7��7��7��7�7�7�7      �7�7�7��7��7��7��7��7��7
                   5244: ��7��7��7��7��7��7��7��7��7��7$.;�.;�/;��:��:$�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:
                   5245: �E8�C8�@8�<8�+8�%8� 8�8�88�68�68�D8�E8�J8�J8�E8�E88x8v
                   5246: 8u8��7��7��7��7��7��7�8�8�8�
8�8        �8�8�#8�%8�+8�-8�08�28�68�8�8��7��7     u8�8�8�8�8�8�&8�&8�8�8�8��7�&8�&8��7��7�8e�8c�8_�8[�8X�8U�8R�8N�8I�8E�8?�8?�8Ai8Dh8`[8`{8d~8e�8e�8f�8e�8?�8?�8Dh8Qh8Ta8T[8`[8�Y8�Y8�[8�[8�V8rW8�E8�E8�Y8i68i38k28l)8n(8n&8o&8p$8r#8r"8w!8w8y8y8|8~88rW8rB8nB8m@8j?8i68l�9m�9o�9o�9l�9l�9j�9j�9k�9k�9j�9k�9l�9k�9/�9.�9l`9mq9jq9k�9k�9l�9k�9N�9N�9N�9/�9.�96�99�9<�9?�9B�9D�9C�9B�9B�9G�9J�9M�9R�9V�9W9Z{9]t9^l9`k9dk9hg9jb9l`9��8��8��8��8��8��8��8��8��8��8��8��8u�8
                   5247: ��8��8��8��8��8��8��8��8��8��8s�8z�8|�8��8��8��8��8u�8y�8{�8|�8|�8~�8�8�8�8}�8x�8w�8t�8s�8        [�8]�8`�8d�8g�8m�8w�8{�8�8��8��8{�8{�8r
                   5248: 9n
                   5249: 9`9`9a9[�8]�8R�8R�8[�8�8��8��8��8=.9--9!#9D'9=.9    &�82�859598999= 9?!9D'99&�8!#999
99<�9t�9<�9<�9p�9k�9k�9S�9S�9S�9>�9>
                   5250: :<
                   5251: :t�9t�9r�9q�9o�9o�9q�9q�9o�9p�9p�9;�9;�9<�9<�9<
                   5252: :<�9;�9��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8e�8i�8m�8p�8t�8^�8X�8V�8R�8P�8P�8O�8M�8F�8@�8<�84�8-�8'�8t�8t�8(�8+�8+�88�89�8<�8?�8'�8(�8t�8t�8r�8r�8r�8g�8f�8e�8d�8d�8b�8a�8`�8`�8^�8f69`69_29[19X/9V+9Q'9M9J9F9
                   5253: f�8i�8i�8n9m9o
                   5254: 9q9t9w9y9y9f69M9J9F9K9N9Q9_�8`�8c�8f�8�8�8�8
                   5255: �8
�8 �8�8"�8�8�8�8�87�8�8�87�8"�8&�7(�7*�7+�7,�7.�70�73�73�7;�7=�7<�7;�7@�7$8%83�7&�7@�7[�7_�7\�7Z�7V�7T�7S�7P8P8J8H      8H8H8H8H8C8@8?8+8$8[�7a�7_�7^�7^�7_�7.�8'�8'9'�8(�8*�8+�8-�8.�8��8��8��8��8��8��8��8��8��8��8�8�8�8�8�8�8�8       �8
�8�8�8�8�8 �8 �8'�8'9�9��7��7��7��7       �Y7�X7�V7�T7�X7�\7�]7�\7�^7�X7�X7�W7�Y7
�^7�`7�b7�b7�g7�g7�h7�k7�l7�r7�r7�t7�}7�}7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�7�|7�|7�x7�t7�q7�l7�k7�h7�g7�\72�7,�7$�7"�7�7�7�7��7�7
                   5256: �7�7�7�7�7�7�7�7�7!�7$�7)�7;�72�7�7�7�7�7��7��7��7��7B�7;�7      )�7+�7+�71�72�75�7=�7A�7B�7d!8c8c8b8a8`8�8�8�8y8d!8`8m8r�7r�7x�7u�7q�7��7��7��7��7��7��7��7��7��7�8�8q�7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�99�?9�C9�D9�I9�L9�L9�M9�M9�R9�X9�&9�&9�'9�'9�&9�%9�*9�*9�,9�-9�_9�Q9�Q9�&9�-9�39�59�99�X9�U9�T9�V9�Z9�\9�^9�_9
��9��9��9��9��9��9��9��9~�9}�9{�9z�9x�9
                   5257: l�9o�9t�9x�9{�9~�9��9��9��9��9
x�9w�9w�9x�9x�9s�9s�9r�9q�9p�9n�9l�9k�9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9&�7�7�7�7�7�7�7�7�7�7
                   5258: (�7(�7+�7/�70�72�75�77�78�76�76�77�77�7;�7;�7<�7>�7@�72�75�7*    8
                   5259: 888�7�78�7��9��9��9��9��9��9��9��9��9��9��9��9��9��9�9��9��9��9��9��9
�9��9�        :�:�":�0:�(:��9�9
�9�#:�#:�:�:�
:�
:�
                   5260: :�    :�:�:�:��9��9��9��9��9��9�#:$8%88�88�8�     8�8�
8�S7�Z7�}7�&7�,7�37�97�B7�B7�I7�O7�Q7�T7�U7�S7��9,�9+�9'�9!�9�9�9�9�9�9�9�9�9��9��9��9��9��9��9,�9+�9��9��9\E:[9:]8:b7:h4:k1:o':u:w:z:}:�     :� :�:�:�P:<�9<�9;�9:�9ht9pt9Ms9ht9:�9?�9B�9D�9I�9N~9Ms9pt9p�9t�9t�95�8&�8-�80�81�83�86�86�85�8&�8�8�8�8�8�8+�8-�8~�9|�9v�9v�9w�9w�9x�9x�9��9��9��9�:�:�:��9��9��9��9��9��9��9��9��9��9�v9��9     ��9��9��9��9��9��9��9��9��9��9��9��9��9�u9�v9
��9��9��9��9�|9�{9�y9�x9�u9�u9�q9�r9�u9��9��9
�8       �8&w8�x8�x8�s8�n8�l8�i8�c8�\8�U8�S8�Q8?�8
�8�88�:8�<8�<8�:8�98�<8       �<8�=8�G8H8N8R8-Z8Bd8Dh8
                   5261: �9
                   5262: �9�9�9�9�9�9�9�9&�9)�9/�95�97�9:�9<�9$�9#�9
                   5263: �9��8��8��8��8��8��8��8��8��8��8��8x�8w�8u�8t�8t�8�Y8�}8�~8      �~8��8��8��8��8��8��8��8��8`[8r[8rW8.�83�8:�8=�8A�8E�8I�8Y�8YH98I97K95K94H9.I9.I9(H9'%9&$9%!9'!9'9Y�8Y9Y9X9W9W9W9Y 9YH9�8�8� 8�%8�48�48�68�68�28�68�,8�08�-8�(8�$8�$8�8�8��7��7��7��7�8�8�8�8�8'�8'�8^�8]�8\�8[�8[�8Y�8Y�8��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9
                   5264: ��9��9��9��9��9��9��9��9��9��9��9��9��9��9f69f_9/E9?19L9M9    Oc9K`9I[9HX9CO9AN99O97M9/E9f_9__9^`9Oc9� 9�D9�@9�C9�D9�A9�@9�&9�     9�     9� 9�     9�C9�;9�79�09�09�.9�+9�&9�R:�L:�G:�E:�B:�E:�B:�>:�>:�>:�::�;:�;:�9:�3:�3:�C:�C:�^:ht9h@9
                   5265: �h9�m9�o9�q9�s9�y9�z9�}9��9��9h@9kA9lC9pC9rE9uC9wC9wC9{Y9}Y9~V9Z9Z9�h9�h9��9|9u9pt9��9/�9/�9-�9/�9.�9-�9$�9�9�9�9�9��9��9(x9){9(}9$�9��9M9S9Z9]9c9q9$w9(x9�v9�s9�r9�p9�o9�g9�g9�b9�Z9�O9�M9M9��8��8��8��8��8�8�8�8�8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8
                   5266: 9999919198989�<9�<9�@9�B9�G9�I9�J9�    9
                   5267: 9�J9�J9�H9�D9�D9�D9�    9�     9�N9�R9�}9l`9lI9�}9��9lI9nI9nG9qG9qI9qI9�I9�G9�G9�H9�I9�I9�K9�K9�H9�H9�N9��9��9��9��9��9��9��9�9
                   5268: �9�9�9�9.�9M�9L�9N�9M�9M�9L�9M�9M�9N�9N�9N�90�9.�9
�8�8�8
�8�8�8�8�8��8��8��8��8��8��8��8��8;~7)�72l75t76x7;~7      �S7P7       O7
Q7U7Y7"[7%\72l7cq8]y8Z�8Y�8V�8R�8W�8W�8)Y8(U8(Q8'J8W�8K�8H�8A�8=�8:�85�85�81�80�8/�8,�8+~8,{8*s8*s8*m8+k8+g8)Y8       2O87Q89T8<X8C\8F`8Kf8Oh8Ti8Ti8[l8cq8'J82O8d!8d)8f+8g-8c28b28`28_/8[.8Z08Y68Y68V98;�7G�7P�7`8V98Q;8N=8L@8JB8HB8D>8@C8@C8AD8@F8?F87Q87Q84R82Q8/O8/P8.R8/V8/V8/X8,\8-8*8&8888,\8)V8'O8(E8&=8 18)8-8��7��7��7�7��7��7��7��7��7��7 ��9��9��9��9�~9�q9�q9�g9�h9�h9�_9��9��9��9�_9�V9�W9�[9�^9�a9�`9�^9�[9�[9�^9�d9�d9�f9�f9�c9�_9�_9�}9�}9�}9�~9��9��9��9��9��9��9��9��9��9��9��9��9��9
                   5269: p�9r�9r:s:u:v:�:�:�:�:�:�:�        :<>::!:> :>:<:<
                   5270: :Ms9Cs9Cp9Aq9@j9<e99_98X98X9;Y9?Y9EW9HT9
                   5271: HT9OQ9VB9Y>9^=9`<9b<9b>9c?9h@9]�8`�8b�8f�8l�8��8[�8Z�8Z�8Y�8Y�8]�8��8��8��8�8��8��8(x9&v9&s9(r9+r9.p9/m9.k9.h9.f92d93`95Z98X9��9��9
                   5272: ��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�m8�m8�[8�O8�O8�O8�88�88�M8�S8�\8�`8�m8�m8�k8�j8�h8�`8�[8        \�7]�7^�7a�7c�7g�7j�7n�7r�7r�7g�7h�7c�7`�7[�7[�7[�7��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9t�9��9��9�:�:�:��9��9.]9/�9�T9U9\9]9.]9��8��8
��8��8��8��8��8��8��8��8��8��8��8��8��8�8��8��8��8��8��8��8�8
��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8=.9HT9M9I9B9B9!#9�
                   5273: 9{�8��8��8��8��8��8��8��8��8�9�9�
                   5274: 9��8��8�
                   5275: 9�
9�
9�9�9�9�9�9�9�9�    9�     9�9�9�9�9�9�9�
                   5276: 9��8��8D'9J9X9`9�)929:9z@9wC9�
                   5277: 9�9�9�9� 9�)9��8��8��8��8��8��8��8��8��8��8��8��8�8��8��8��8�m8�t8�u8�u8�y8�z8�{8�8��8��8��8��8��8��8��8��8�|8�q8�m8
�9�9�9�98:d�9g�9g�9;::�96�96�9    6�9I�9J�9M�9N�9P�9P�9S�9T�9T�9d�9g�9i:]�8W�8cq8kw8oz8z}8�8��8��8��8��8��8�:�     :�     :�:�:��9��9�99�=9�F9�L9�O9�O9�R9�V9�Y9�]9�c9�d9�g9��9�s9�s9�b9�b9�^9�X9 &09!09 .9/93929190919J9E9E9B9A9=9=9:999,9,9
,9(9(9)9( 9("9#9%9&9'9!(9#*9&09
                   5278: 9�8�8�8        "�8%�8+�80�85�8>�8E�8E&9F9��8��8��8��8��8�8}�8x�8v�8u�8v�8v�8v�8t�8��8��8��8��8��85�89�8;�8A�8C�8F�8J�8R�8�$9��8�&9�&9�&9�$9��8�9
                   5279: �9�9�9�9�#9�)9�.9�/9�-9�-9��8��8�C8�I8�^8�k8�o8�q8�u8�y8�~8�68�=8�?8�?8�A8�A8�C8�I8�X8�^8aG8V98�$8�.8�8�8�8�$8�.8�88�[8�Y8�S8�R8�K8H8wH8sC8nE8iF8aG8B�7E�7G�7J�7q�7N�8O�8Jv8Fv8?a8-a8-a8,\8aG8`Q8\_8^a8^f8]f8Zr8Zr8`w8W�8W�8U�8S�8N�8�$9� 9�9�9�9}9y9��8��8f�8o�8o�8u�8t_9tS9vS9wQ9�Q9�p9�q9�s9�t9�v9}w9�_9�_9�p9}w9}`9t_9    (�8$�8$�8�8�8�8
�8
                   5280: �8�8
i8
                   5281: k8j8h8f8d8 d8!`8"]8&\8(\8,a8-a8��8��8��8��8i8N�87�8�@9��9��9��9�y9�w9�w9�{9�|9�}9�}9�N9�M9�P9�O9�M9�J9�J9�K9�J9�H9�F9�C9��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�|7�u7�r7�n7�g7�c7�_7�[7�[7��7��7�?8�:8�48
                   5282: )Y8S8M8L8N8Q8M8�H8�B8�?8�8�888  8(81898=8@8%H8'J8��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�,9�.9�49�;9�>9�C9�E9�J9�L9�N9�R9�[9�]9�_9�)9�)9�'9�'9�)9   �)9�,9�.9�.9�/9�09�09�/9�19�19�/9�.9�,9�$8�8�_8�Z8�O8�N8�H8�H8�I8�H8�=8�:8�48�.8�?8�C8�G8�I8�M8�R8�S8�T8�Z8�[8�_8��7}�7z�7v�7r�7     &09)59(99';9*;9(=9(@9)@9)C9
q9q9o9�n9�j9 �j9�a9�a9�[9�V9�Q9�M9�N9�J9 )C9+O9+O9*V9a9c9d9d9g9g9p9
q9 -�8,�8.�83�86�84�83�82�85�8��9��9��9�9�9�9��9��91�91�9/�9/�91�9,�9-�9,�9�9#�9%�9%�9*�9*�9-�9-�9.�90�91�9��9��9��9��9��9��9��9��9��9��9��9z�9��9��9��9��9��9��9��9d�9d�9k�9��9w�9v�9g�9k�9s�9v�9x�9x�9z�9.�9-�9.]9.I9YH9lI9t_9f_9�C8-8-8[8[8[8�Z8�U8�W8�T8�U8�T8�R8�N8�K8�I8�9�9��8��8��8�8�8�8
�8��8��8
�8�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+�92�93�96�9     �69�79�99�:9�?9�@9�D9�I9�O9�9�9�9�9�9�9�69�8       �8�8�899�8�8�8
�8��8��8
                   5283: ��8�8�8�8�8!�8"�8$|8&v8*s8;�9$�9$�9�9/E9.D9)C9
i68f58f48e48d58b68b28`28_08W08N*8K&8H8_�7l�7q�7r�7r�7t�7u�7u8�p9�q9��9��9��9��9��9��9z�9}w9�    9�&9�&9��8��8��8��8��8��8��8��8��8��8��8��8��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9�&:��8��8��8�9�9�9�9�9�9�9�9�     9�
                   5284: 9��8��8��8��8��8��8��8��8��8��8��8��8��8��8    ��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��7��7��7��7��7��7��7��7��7��7��7��7��7��7�69B9 ��9�|9�{9�z9�y9�w9�v9�j9�j9
                   5285: 
q9~9~9�9�9�9�9�9�9�9�9�9�9    R�7Y�7d�7f�7l�7q�7t�7�7��7��7��7;~7@�7C�7G�7L�7L�7O�7R�7     ��8��8��8��8��8��8��8��8��8��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��91�91�9:�9;�9@�9C�9H�9J�9T�9T|9Ux9Ux9X{9Y9Z�9Z�9_�9c�9d�9d�9b�9b�9j�9k�9k�9
                   5286: �8�8�z8�y8�w8�t8�m8�h8�g8�_8�_8�c8�g8�n8�u8�y8�}8�8��8��8��8��88�8�8�8�8�8��7��7��7��7��7Oc9Kg9Oi9Rq9Su9Ux9�^8�`8�d8�g8�i8�k8�q8�w8�{8��8��8��8��8��8��8��8��9��9��9��9��9��8�9�9�9u
9t9q9p9Y9�<9�=9�89�79�49�,9�'9�&9�&9�%9�#9�#9�"9�9�9�9�9�9�
9��8�<9i8g8[8��8�&9�9�    9�&9�%9�9�9�9�9�9�97�8o�8�,9�(9�'9�(9�&9�%9�#9�H9�_9�<9�H9��9��9�:�
:�#:�3:s�8l�8h�8f�8d�8\�8W�8��9��9F�<J�<K�<L�<M�<R�<U�<Y�<
                   5287: Y�<\�<^�<`�<c�<i�<n�<p�<r�<v�<v�<u=:�<B�<F�<u=q=l=i=g�<
                   5288: =�<;�<;�<>�<D�<I�<J�<F�<?�<:�<g�<`�<Y�<S�<N�<H�<A�<=�<i=h�<h�<��<��<��<�=�=�=i=��<�=�=�=4Z=[Z=.[=4Z=0Q<0�;jR<0Q<0�;l�;  �<     �<�<!�<"�<'�<�=�=��<'�<'�<&�<$�<"�<�<�<�<�<�<�<&=&===�=��<��<     �<��;�<�<��;��;��;��;�<�<��;��;��;��;�<��;��;��;��;��;��;��;��;��;��;��;��;�?<�y<�y<yy<}.<~?<�?<yy<Pz<
P+<R,<S/<T0<T4<V4<Y4<]0<_0<c1<g1<g.<}.<Pz<P+<h�<h�<i=Z=Z)=?�<h�<Z)=0)=0)=5 =6=7=:=;===;=<=<�<>�<>�<>�<A�<B�<@�<?�<�R<�<�;<     <R<��;�;R<�R<�R<�R<��;}�;}�;}�;}�;}�;}�;��;   ��;��;��;��;��;��;��;��;��;�R<�R<�?<�?<�<�R<�R<�;"�;"�;0�;!R<R<0Q<!R<.�;.�;0�;0�;&�;.�;��;&�;K�;K<
                   5289: �;$�;(�;1�;7�;;�;A�;C�;F�;K�;K<<<<�;�;�;�;��<��<�y<�?<�?<�R<��<h�<y�<yy<��<��<��<��<��<�z<�{<��<��<��<�{<��<��<��<��<��<��<��<��<��<��<��<��<�{<�z<��<�{<�A<�!<�<�A<�A<�<�<�A<�<�<�
<�<�<�<�<�<�<�<�<�<�<�<z<�{<�z<�A<B<z<�A<B<�E<�E<�A<�E<�@<�;<�-<�<�<�<�
<�E<�@<�
<�<�<��<�=�=�=�=�=�#=�#=�#=�=�=�&=��<��<��<��<��<�#=� =�=�
=�=�=�=}.<}�;:z<:�<
�<��<��<:�<
�<z<:z<p�<q�<s�<v�<v{<v{<�{<u�<q�<r�<s�<q�<p�<o�<p�<��<u�<�{<��<}�;K�;K�;K�;7�<7�<N�<V=B=B=B=:=:�<7�<7�<�<�<�<!�<!�<!�<O�<7�<'�<  �<�<�(=�(=�'=�(=�(=�'=�O=�=�(=?�<:�<:z<Pz<HV<WV<v{<p�<c�<I_<HV<c�<`�<\�<W�<U<Qo<Ke<I_<4Z=41=71=7'=?(=?&=A&=B=K=O=L=M=�=�'=��<��<�O=�N=Y= Y= [=.[=!R<!�<
�<��<�}<�}<�p<�p<�m<�m<�j<�j<�f<�f<�R<=�=
�<�<�<=�E<�{<
HV<IQ<QN<WM<]N<fW<kY<oX<uT<}S<�Q<�M<�E<u�<v�<F�<O�<S�<[�<`�<c�<d�<c�<(=K==(=�P=�K=�@=�+=�#=�\=�T=�Q=�R=�Y=�Y=�P=K�;K�;P+<P<K<(=0)=�{<�{<��<��<�=�=��<|�<y�<u=�=�=B<<��:��:�m:�m:��:��:��:�~:�~:�~:�m:��:��:�m:��:7;7�:7�:8�:��:��:��:��:��:��:��:��:��:
1�:1�:0�:/�:/�:/�:+z:)w:'w:#z:!:}:{:N@:OG:PG:QK:SK:SW:SW:S}:Q|:Q:Q:O:O�:N�:N�:N�:K�:K�:K�:H�:H�:B�:C�:C�:A�:@�:?�:>�:>�:1�:{:t:!f:*c:*c:.a:4_:7Z:9M:AF:DB:DB:H>:N@:�z;�Y;�Y;�Y;�G;�G;R;s;�G;�S;R;�{;�z;s;�t;�z;�{;.;;
                   5290: �:�:�:�:�:�:�:�:�:�:#�:'�:(�:+�:2�:2�:.�:.;;;;�:�:2�:2�:  �:��:�:�:�:
                   5291: �:�:�:
                   5292: �:B^;A\;BQ;@G;AC;�?;�c;�c;�g;�g;}i;}i;}n;zu;xy;xz;tz;q};
                   5293: q};p};o{;l{;c;b;`z;]{;Z{;W|;W|;U};O};L|;Hz;AC;wC;x?;�?;Hz;Gx;Hr;Gn;Cl;Ci;Eh;De;Eb;E`;B^;��9�:�
:�:�:�:��9��9��9��9��9��9��9�:�
:��9��9��9��9��9��9�(:�):�m:�Y:�B:�B:�(:�):�a:�a:�a:�m:C;D1;C6;A8;@8;>:;>:;@>;AC;.;C;-;,;;;B^;^;T;-;^;^;T;�(:��9:):):�(:��9�9�9:::2�:$�:$�: �: �:�:�:�:�:      �:�:1�:2�:�:�:�:�:{:=�;<_;H�;D�;@�;=�;�(:�:�:�(:�):��9��9��9��9
                   5294: 5�;0�;*�;$�;�;�;�;�;�;�;E�;A�;@�;A�;C�;B�;@�;A�;@�;=�;:�;:�;8�;9�;9�;6�;5�;5�;    �;,�;,�;,�;4�;5�;9�;:�;E�;�;�;�;�;�;�;�;�;�;�;�;�{;�c;�;�;�?;�;�;�;�;�9;�9;�Y;�z;�{;7�:8�::�::�:j�:8�:7�:]:/]:/Z:9Z:9Z::�:7�:/�:-�:�:a:b:]:�:a:2�:2�:��:��:��:��:��:��:&�:�:

                   5295: �:�:�:��:��:��:��:��:��:��:��:��:��:�:7�:7;.;;�:�:�:.;;;;S[:9Z:]:)::/:/:G:t~:�~:��:��:m�:��:��:g�:i�:l�:n�:p�:s�:t~:m�:o�:o�:q�:o�:o�:q�:p�:o�:o�:n�:m�:m�:l�:l�:g�:�B:�Q:�R:�X:~X:~^:~^:y_:wk:�:�B:wk:lk:lf:ff:e^:`^:_W:SW:b:�:j.:j&:i":c:b:N@:YC:_C:f>:h7:i1:j.:�B:�B:t~:wx:yu:zq:wk:�:�:�:��:��:�:  }�;t�;i�;c�;`�;]�;W�;P�;K�;K�;G�;A�;<�;:�;5�;E�;F�;F�;D�;E�;G�;G�;E�;C�;F�;G�;F�;C�;C�;E};Hz;�{;��;�;`;��:�;`;`�:`�:h�:i�:j�:m�:�:�:�:�:C;`;��:�
;�
;�;�;�;�;<_;._;.R;.R;.;�;�
;�
;;�;�;�;�;�;�;�
:�
:�
:�
:�:�:��9��9��9��9��9��9��9��9��92�:`�:�;�G;R;.R;
                   5296: =�;7�;3�;0�;.�;*�;(�; �;�;�;�;�;�;&�;&�;s;�-;�/;-;  -;/;.;.;&.;�-;�-;�*;�*;�(;�);�(;�&;�&;�(;�-;       �;�;�;� ;��:��:��:��:��:�/;�,;�";�;�;�;�;�;��:��:��:��:��:�:�;�;�;^;     �;�;�;�;�;�;��;��;�<�<�<�<�<�
<�
<�<��;��;��;�;��;��;��;��;��;��;��;��;�<��;��;��;��;��;��;��;��;��;��;��;�:�:�
:a:�a:g�:M�:M�:K�:
T;�T;�^;�`;�d;�h;�l;�q;�r;�w;�y;�~;��;��;�y;�m;�j;�f;�b;�_;�[;�U;�R;�M;�M;�D;�=;�6;�/;��;��;�{;��;�9��9��9��9b:`:b:k�9m�9     m�9p�9q�9q�9r�9t�9z�9~�9�9�9�9�9�9�9��9��9��9�9��;��;��;�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;_�;.�;&�;&�;��;��;��;��;��;9�9H�9�99�9T�9Z:_:e:g:0E:-:Y4:U9:QD:OK:MR:MR:DQ:>O:<M:6C:0E:-:5:8:>:D:O:T�9g:i:f:c:b#:b%:b):a*:_*:]):\-:\-:Y4:�:
�:�:�:�:�:�:%�:%�:'�:*�:*�:*�:*�:$�:(�:     (�:)�:*�:,�:-�:-�:,�:-�:/�:��:��:��:�:�:�:�:�:�:�:��:     /�:/�:/�:.�:)�:(�:&�:$�:�:��:��:��:��:��9��9��9��9��9��9��9��9��9��9��9��9��9��9�:�:��9��9��9��9�:�:�:�:�:�:�:
                   5297: �:�
:�:�
                   5298: :�:�:�:�:��9��9
                   5299: ��9��9��9��9��9��9��9��9��9��9
                   5300: 4�<1�</�</�<0�<0�</�</�<1�<3�<3�<c�<:�<9�<7�<4�<4�<X�:C�:E�:Yu:U�:X�:u:Iw:Ox:Qy:T{:Yu:�:u:E�:>�:;�:8�:8�:/�:
>9
                   5301: ?9  99
9
9
9

9     9
                   5302: 999999999999 9$9&9
                   5303: �9�9�9�9�9�&9��8��8��8��8
                   5304: ?9@9?9;9:9&4909�+9�#9�!9� 9�9�9�9&9*939:9
>9
                   5305: ��8��8��8��8��8��8��8��8��8��8��8��8&�8&�8&�8&�8&�8�8�8      �8     �8
                   5306: �8
                   5307: �893�82�8  ��8�8�8�8�8�8 �8#�8(�82�8/�8*�8&9%9#
                   5308: 99999999$9&9*9(�8*�8.�81�83�8*9/9/90909�79�A9�G9�J9�J9�9�9�
                   5309: 9�9�9�9��8��8��8�9z�9x�9w�9p�9p�9q�9r�9s�9s�9{�9��9��9��9��9��9��9��9��9��9��9�t9�k9�Z9�R9
                   5310: �9�9      �9�9�9��9��9�}9�y9�t9
                   5311: *g9%n9v9z9{9�9�9�9�9�9�R9�O9H9D9
                   5312: ?9
>9?9D9H9Q9T9V9Y9\9"^9'b9*g9�9�9�9�9�9*t8'k8#o8!p8p8CX89f85j8-s8*t8      p8m8i8f8`8]8Z8T8L83K85L87N8>S8CX8L8J8K8#M8'N84M85L83K8��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��9Ng9Lh9Kj9Ij9Hh9Jb9H`9QB9o49{m9Ng9     H`9G]9IY9NT9RP9QM9QK9PH9QB9o49q89t?9sN9sN9sT9v`9{m9��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8 ��8��8��8��8��8�8|�8z�8u�8u�8v�8{�8|�8|�8x�8w�8w�8{�8}�8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8�;�;�;�;�;�;�&;��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�;�;�;�;�;�;�;�;��:��:��:��:�;�;�;�;�;��:��:��:��:��:��:��:��:��:��:�~:�~:�|:�x:�=:�U:�p:��:��:��:�x:�r:�i:�c:�`:�_:�P:�O:�P:�S:�Q:�L:�L:�I:�E:�?:�=:X�:s�:s�:x�:;ED;C5;B4;<;`>;]?;Y>;X?;WB;HA;GD;ED;
WB;SE;QE;PA;O@;O>;M<;L<;L?;K=;I>;G>;HA;;p&;q(;r+;r-;q/;l/;l2;l2;i4;e6;d9;a;;`>;<;Q;V
;Y
;Y;Z;[�:[�:U�:V�:U�:X�::�;=�;S�;{�;`<[<X<     S�;V�;W�;[�;]�;^�;]�;_�;`�;`�;c�;f�;m�;m�;o�;q�;q�;p�;n�;r�;v�;X<W<S<K�;D�;4�;1�;1�;0�;1�;4�;7�;:�;v�;{�;S<�S<
<S<&
                   5313: <
<�S<�
                   5314: <�
                   5315: <�<�<�<�<&
                   5316: <��9��9��9��9��9��9��9��9��9��9��9|�9y�9w�9u�9u�9�m9�m9�m9�q9�v9�y9�{9�{9��9��9��9��9��9��9��9�<1�<�<�<�<�<1�<3�<4�<.�<'�<�<�<�<�<W�9m�9L:N:N:N�9U�9V�9W�9W�9j.:d-:]':V:S:O:K:L:�8�8�8�8�8�8�8�8�8�8�8�8
                   5317: �8
                   5318: �8�8�8�8*t8/�8.�88�8<�8B�8�8�8�8z8
u8u8p8B�8:�83�81�8"�8 �8 �8 �8!�8"�8!�8�8�8�8�8�8�8�8d�9m�9p�9v�9��9��9��9��9��9��9C�9d�9T�9L�9E�9B�9C�9��9�&:�:{  :y:t:g: U�;U�;Q�;P�;M�;M�;N�;S�;S�;@~;F~;H�;I�;M�;O�;R�;U�;��;@~;:�;4�;!�;�;�;&�;&�;��;��;��;��;��;�S9�S9�Q9�N9�J9�F9�t9�v9�y9�|9�|9�}9�}9�~9�9��9��9�9�}9�z9�v9�s9�s9�o9�k9�h9�`9�\9�U9�S9�>9�R9�F9�H9�B9�C9�>9w 9u!9i49i79g<9>29?!9?9=9;999492�8
                   5319: g<9`=9[>9Y@9V?9R39K,9G/9C,9>293�8<�8?�8B�8G�8L�8P�8R�8U�8X�8]�8_�8b�8c�8e�8
h�8h�8i�8j�8l�8l�8m&9n9s9u9v        9v9w 9e�8h�8 ::
 :%:�':!�9:(:':$:": :':':��9��9�9�9   �9�9�9�9�9!�9�':�%:�%:��9�@<�?<<<~5<|3<t3<m*<f%<_"<Z%<U"<P$<       P$<P<P<S<U<T<T<U<X<��;��;��;��;��;��;��;��;�&<�<�<�
<{�;|�;|�;|�;~�;��;��;��;��;��;��;��;��;��;��;     0E:-F:)I:&L:$R:#V:$Y:'X:'[:'[:![: [:]:]:]:
M:K:   J:K:N:�B: :":&:(!:*":,!:- :-:�B:�':       �2;�1;�1;�:;�=;�A;�A;�>;�A;�A;�D;�G;�L;�M;�M;     ��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�d;�Y;
                   5320: �Y;�U;�I;�D;�B;�<;�5;�2;�8;�2;u�:s�:X�:`�:u�:X�:H�:M�:G�:G�:E�:
                   5321: ��8��8��8��8��8��8��8��8�8�8��8��8��8��8��8��8��8��8��8��8��8�8
                   5322: �8�8�8&�8�8��8��8��8�V9�J9�D9�?9�<9�99�.9�.9�,9�,9�+9�&9�$9�%9�%9�!9�9�9�9�S9�W9�X9�W9�T9�S9�R9�W9�U9�S9�R9�U9�T9�T9�V9�V9�[9�[9�V9�9�9�9�9�$9�&9�,9�.9�39�59�=9�?9�?9�B9�F9��9��9��9��9��9
                   5323: ��9��9��9��9��9��9��9��9��9��9�9��9��9��9��9/�80�82�83�8>�8@�8@&9D9D9:&9:)9:+9@49
                   5324: 7<9169-39&29&/9'+9&)9$(9#%9&9@49?89=99::97<99�8�8�8�8�8�8�8�8�8�8�8 �8"�8$�8(�8(�8)�8+�8/�8
                   5325: �U8�[8�`8�f8�i8�n8�z8��8��8��8
��8��8�w8�y8�w8�s8�o8�k8�j8zk8sj8pg8mc8��8��8��8��8��8��8��8�I8�U8mc8p`8p]8s[8yX8{Z8|Z8~W8S8�O8�M8�M8�N8�R8�R8�P8�N8�O8�P8�P8�I8&�9$�9&�9!�9$�9"�9$�9&�9      �9$�9!�9 �9�9�9�9�9&�9��9��9��9�9     �9   ��<
�<
�<
�<
�<
�<�<&�<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<`�9k�9n�9p�9W�9Y�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
                   5326: ��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@�9E�9q�9p�9s�9
                   5327: `�9U�9Q�9J�9G�9E�9C�9@�9=�9<�9E�9q�9<�9=�9�<��<0S<1�<S<0S<�Z<�S<��<�Z<��:��:��:��:��:��:��:��:��:��:��:��:~�:~�:�:��:u�:x�:w�:v�:u�:x�:u�:u�:v�:x�:{�:~�:�;�    ;�
                   5328: ;�
;�;�;�;�;�;�;�;;�h:i:|l:nn:mk:kl:Zm:�^:�a:�f:�h:�h:Zm:Vj:Tg:Qa:P\:OX:MR:Y4:^7:^=:`>:f=:j>:j>:rC:xG:|K:�U:�]:�^:
                   5329: g�8b�8]�8X�8V�8R�8F�8E�8E�8B�8CX8Kb8Ps8Ps8T{8]|8b8l�8m�8g�8�2;�;��:��:��:��:��:��:��:��:��:��:�:�z:�u:�q:�l:��:��:��:��:�l:�p:�p:�y:�y:�x:�x:?�8=�8<�8:�88�83�8,�8(�8(�8(�8(�86}87�8>�89�87�88�87�86�83�84�85�89�89�8?�8��8&�8�8
�8�8�8�8 �8!�8"�8'�8(�8(�8+~8/|83}86}8*g9-e90_95Y98W9Ng9H�9F�9F�9E�98W9;[9=`9?d9Bd9Dd9Fb9H`9    =�93�91�9,�9*�9'�9!�9�9�9�h:��:Yu:Zm:��;��;��;��;��;��;
                   5330: ��;��;��;��;��;��;��;��;��;��;��;��;>,:60:41:0/:-,:((:%#:&�9'�9*�9,�9/�91�91�90�93�96�97�97�97�93�92�93�95�97�9;�9;�9;�9<�9@�9A�9C�9C�9@�9@�9C�9G�9I�9K�9K�9K�9K�9N:%#:!�9L:G:@":?':>,:�<�<
�<
�<�<&�<&�<��<��<��<~�;�;�;��;��;��;��;��;U�;X�;[�;^�;f�;i�;m�;r�;u�;z�;~�;��;��;��;v�;r]9tZ9pU9jM9hI9g<9�09�.9�V9�Y9�_9�b9�g9�i9w 9|"9�(9�/9�29�09    �i9�j9�c9�a9�a9~b9z\9v^9r]9D:K:O:!U:!X:#Y:&]:*c:&<:;:D:�=:&<:��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9     �S8�[8�_8�u8�8��8��8��8��8��8��8��8��8��8��8��8��8�U8�X8�Z8�[8�X8�W8�Z8�[8�[8�Z8�W8�S8��8��8��8��8��8��8q�9u�9��9��9��9     ]�8[�8\�8_�8d�8g|8iw8ip8jg8��8��8
                   5331: ��8{�8t�8h�8d�8f�8g�8d�8a�8]�8jg8le8mc8    >29;698?98C99I97N97P97T94Z9
4Z92U90T9'R9 N9E9B9<9;9
                   5332: :9
                   5333: 99/9*9�E:�I:�J:�L:�L:�N:      �N:�R:�S:�U:�Y:�]:�]:�Z:�]:�]:�]:�b:�l:�^:�W:�Q:�O:�M:�H:�E:1�9/�9.�9/9.~9.y9Sv9Qw9Pt9Nu9Ku9Gw9Gw9Fy9?z9>|9:{99}99}97�91�9r]9p_9pb9nd9li9jk9fk9em9em9co9`r9^q9Zt9Zt9Xu9Sv9
                   5334: .y93s91o92l91j91g91c95`94\94Z9
                   5335: �S8�R8�P8�O8�N8�K8�G8�E8�A8�<8��8��8��8
�<8�:8�98�;8�H8�S8T8S8P8      M8N8N8L8       �09�%9�9�9�9�9�9�&9��8�9�9
                   5336: ��8��8��8��8��8��8��8��8��8��8��8��8�9�
                   5337: 9�9?�8C�8F�8K�8L�8R�8R�8X�8[�8]�8d�8h�8m�8o�8o�8p�8r�8r�8o�8n�8n�8n�8m�8k�8e�8]�8X�8S�8O�8L�8G�8C�8C�8A�8>�8;�8:�89�8
\H8^N8`O8bP8eT8eW8dZ8c]8c^8da8gc8gf8jg86}8:y8;t8=m8>k8Bi8Bd8Ld8Od8Q`8\H8\9W9R9K9D9        /�8.�8-�8)�8(�8&�8"�8 �8�8X�8U�8X�8^�8a�8e�8b9\9g�8`�8X�8Y�8X�8d�9z�9t�9t�9��96(<9"<<$<?%<B%<E$<G%<G%<K&<P$<I_<C^<B[<?Y<?S< ?S<@O<BJ<CE<C?<B:<@3<;.<6(<ED;FN;DY; �';&;%;#;;;";#;&;DY;�\;&;<;�\;�';6(<0#<)<"<"<1�;0S<?S<1�91�90�9$�9$�9!�9�9�9�9�9�9�9�9�9�9�9�9��9��9�j9�o9�y9}9�9
�9�9�9�9�999�9!~9"~9$}9%|9*{9.y9��9�j9~�;}�;}t;�p;�a;�a;�c;�f;�c;�`;�\;�Y; ��;��;��;��;��;��;��;��;��;��9�x9�t9�o9�i9
                   5338: ��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8�8:�>:�B:�I:�N:�E:�B:�=:�9:�3:�1:�#:�:�:�:�:�:�
                   5339: :�:��9��9�$:�&:�):�+:�-:�0:�3:�6:�7:�8:
<"<�I8�E8�A8�?8�=8�:8�88�68�28�-8�+8�+8�.8�/8�*8�$8�8�8�8�&8�-8�08�08�28�68�98�<8�<8QB9P;9M<9I:9D99@49\9Z9\9\9^9g(9m.9o49�9�9�9�9�9�9�9�9�9�9��8��8��8��8��8��8��8�9�9�9�
9�9�9��8��8��8��8��8��8�9��8��8��8��8��8��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9u:]:�w:�B:��:�w:�>9�79�59�59�49�,9�$9�9��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8
`>;aB;cB;gK;iM;sM;uQ;yW;z[;y^;wb;tb;tc;tc;te;ug;xf;{d;b;�a;@~;@i;DY;�:�7:�L:�8:�6:�5:�1:�0:�1:�1:�,:�):�%:�!:�":�!:�:�:�:�:�:�:�:7<94@93D93G96L95P96S98W9        D:C:@:2:0:/: ,:"*:%#:>,:>0:>3:@6:A9:DB:$�9'�9,�94�9<�9h�8k�8l�8n�8r�8u�8{m9�m9o8w88��7\H8_F8b<8f/8h&8k 8o8 ��7��7��7��7��7�8��7��7�8 �8�8�8� 8�
8�8�8�8�8�9�
                   5340: 9�9�9Sv9Wy9^�9i�9t�9C�9@�9=�9;�99�99�98�96�94�94�96�97�96�9,�9*�9(�9&�9%�9$�9!�9.�92�93�92�91�99�9      �9�9�9�9�9�9�9�9�9�9&�9��9��9��9&<:�6:�%:�:�:�:�:�:;&;�';�;�
                   5341: ;�;�;��:��:��:��:��;�e;�e;�\;&
                   5342: <�;��;��;��;��;��;��;��9��9��9��9�j9�J9�?=�\=�
=�=�=�=�=�=�=�!=�!=�"=�$=�&=�&=�(=�4=�7=�;=�?=#1=#@=    �?=�?=�==�;=6=3=,=-=#1=#@=#�=QE=�B=�B=�w=Bq=AW=PV=QE= �=�=�=�=�=�=�!=�!=�&= �&=�)=�-=�/=�1=�:=�==�@=�B=P5=P3=Q3=Q,=T+=T(=Z(=Z&=[&=["=]"=]=_=`=b=b=c=c
=e=e =d=g�<QE=P5=�U=�V=�S=�S=�U=�U=�W=�U=�U=�v=#=====&=�<=�<�<�<�<�<�<   �<�<�<�<�<�<�<��<��<=�<9�<4�<4�<
                   5343: 4�<2�<1�</�</�<*�<)=$=$=#=�U=�0=�.=�/=�.=�,=�"=�=�=�=�=#="=#=$=!=!&=!&=�'=�U=        �=�
=�=�&=��<�&=��<��<��<
                   5344: �=�=�=�=�
=�=�=�=�=�=�+=�)=�%=�=�=�=�=
�=�=�#=�%=�!=�=�=�=�=�=�=�=�=�P=�^=P5=K5=E4=?1=:-=5,=1+=-'=*'=$'=!&=�}<�><��<��<��<��<�}<�><�?<��<��<�?<�D<�D<��<�=�(=�)=�,=�.=�0=��<��<��<
�0=�3=�7=�8=�==�>=�@=�A=�B=zH=uK=qQ=kW=k-=u-=t�<kW=j@=l?=k-=��<�=t�<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<�<�<�<;�<=�=K�<L=;�<<�<K�<�=��<�<L==�6=�t=�}=�0=�=�=�*=�*=�5=�6=�<�<�<�<
{<;{<<�<
{<;{<<�<;�<�<�<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<�J<��<��<��<�<�n<�R<�s<�o<�f<�b<�\<�Z<�W<�T<�S<�V<�V<�T<�U<�V<�V<�U<�V<�V<�V<�U<�|<�|<
{<
                   5345: ��<��<��<��<�<�|<�x<�u<�s<�s<�<��<��<��<o�<o�<
                   5346: �3=�4=�0=�+=�"=�=�=}=v=o=o�<��<o=o�<� =�3=��<� =�,=�,=�Y=�V=�M=�,=o�<o�<o�<a�<a�<'�<'�<&�<%�<�<�<#�<#�<o�<�<�<"I<"�<��<�F<"�<�<�<�<��<o�<"�<nN<o�<�6=�=O=N=Y=Y=�=�==3=4=O=��<��<��<�
=�
=�=�=�=�=�=�&=��<��<��<��<��<��<��=kW=^<=\<=\<<#<8<^<<8<��<��<��<��<��<��<��<��<��<��<o!=o=�Z=�Z=�V=iW=iW=hV=h>=o>=o!=�3=�Z=o�<o�<��<��<o�<��<6�<6C<s�<6�<r<<s�<s�<s�<    ��<��<��<��<��<��<��<�&=�"=�+=P*=K�<q�<�"=�+=q�<��<P*=P=L=o!=$!=
                   5347: $!=$=)=(=%=%&="="�<'�<'�<6�<��<�Z=�t=k-=@/=6�<t�<@/=7.=6�<;{<={<=\<m�<<�<^<�_<�<�<��<��<t�<s�<m�<+<7<�9<�;<�?<�D<�G<�H<�I<�P<�V<�s<�4<�s<�s<
                   5348: %`=)W=0L=4G=7E=9E=:B=:@=9==:8=:8=@/=#1=$!=    <_=;S=8S=8Q=4Q=4O=1N=1A=#@=�,=�+=�#=�"=��<��<��<�=�=�,=��<�=�=6�<6�<s�<t�<u�<t�<6�<��<�s<��<��<s�<��<��<��<��<��<Ks=KT=KT=L+=P*=��<�<�<�<o�<o�<m�<n�<q�<q�<�}<�}<�<8<�:<�<<�<<�><�<�<�.=-=1=15=:8=��=�.=�.=�.=�.=��<� =�!=�.=O=GO=KT=��<�<��<��<�!<�?<�t7�u7�v7yx7sw7gu7gu7nT7mR7hP7gN7eK7
                   5349: eK7iI7kG7qB7t@7�;7�97�77�77�97
�97�@7�E7�I7�T7�V7�W7�Y7�\7�b7�i7�n7�t7�y7�{7�w7�n7�l7�j7�m7    �77�47�47�47�07�-7�.7�-7�%7�m7�i7�a7�]7�[7�T7�Q7�N7�J7�H7�B7�A7�;7�77�%7�y7��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6&�6��6��6��6��7��7��7��7��7��7��7
��7��7��7��7��7�~7�|7�{7�z7�|7�{7�s7�m7��7��7��7��7��7��7��7��7��7��7�y7��7��7��7��7��7��7��7��7��7��7��7��7}�7�7��7��7��7��7��7��7�7}�7
                   5350: ��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7
                   5351: S�8K8Jz8Ju8Bp8>o87q81s8-t8&k8&k8*h8,d8,a8+]8(Q8,98-78/48028-)8/)81*83)84%83808:
8;8E8F8F8H8J8N8S8T8Y8p48o98l>8fK8^]8\a8]d8[e8Zf8Zi8Vu8Vy8V|8V8U�8S�80808385868:
8Y8\8]8^ 8`#8e%8i$8k&8k&8l(8l,8n38p48bz7c7d�7d�7d�7f�7n�7p�7q�7t�7v�7y�7~�7��7C�7H�7N�7]~7bz7C�7A�7A�7A�7A�7A�7A�7C�7    ��7~�7u�7q�7k�7[�7R�7K�7C�7C�7F�7H�7I�7G�7C�757575707!77
                   5352: 7�6��65�657��65�6��6��6bz7gu7��7��7��7��7��7�t7�v7�{7�z7�}7�}7��7��7��7<27@37C27D/7D,7G,7I.7P47P47T67U:7X@7ZC7_E7bJ7eK7C�7<27�H9�@9�@9�@9�:9�79�49�09�,9�"9�9�9999
                   5353: "959;9?9C9G9
G9J9�9�9�9�99&999
                   5354: J9N9
                   5355: U9[9c9i9
                   5356: k9o9w9x9x9�}9��8��8��8��8��8�&9�9�9�9�  9�9� 9� 9�9�9�r7s7t7s7u7u7y7y7y7 �7&�7&�7+�73�7<�7A�7C�7�7�7   �7��7��7�y7�y7�r7��6��6�6z�6x�6y�6y�6w�6u�6r�6p�6p�6r�6q�6q�6o�6o�6q�6o�6j�6i�6g�6c�6a�6^�6��6��6��6��6��6��6��6|�6��65�66�66�6|�6
                   5357: ^�6\�6[�6Y�6U�6N�6H�6B�6:�65�6��6��6��6��6��6��6��6��6��6��6�7s7s7s7q�6q�6o�6k�6g�6f�6e�6b�6^�6��6�7��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6&27&�7�>7�;7�:7<7;7;7776747.7,7,7/727576757!37&27�r7�>7999
9        999#�8&�8(�8)�8(&9)9(     9)9+9,!9+,9,09,59+89-<9-<9(B9$G9G9G9J9J9H9J98�87�84�83�8/�8-�8&�8"�8 �8�8�8�8�8�8S�8T�8U�8Z�8^�8^�8`�8a�8k�8
W�8U�8U�8T�8S�8Q�8P�8K�8E�8@�8>�8;�88�8�8�8|8z8!q8&k8     k�8i�8f�8f�8f�8c�8_�8[�8W�8�'8&8%888"8"8(8*808&k8[8V8T8R8�O8�O8�?8�;8�58&08&.8�*8�'8<27:277377375757L7M7U7Y7e     7s7�%7�97�7�%7�8�8�8�8�8�8�8��8��8��8��8��8��8��8��8��88�89�80�80�8'�8!�8�8�8
��8��8��8��8��8��8��8�8�8�8�8�8�8��8��8��8��8&27,17007537737}�7r�7r�7p�7m&8:
8989     888:�7:�7:�7=�7<�7<�7C�7m&8h8c8]
8]
8X8Y8�8�8�8�8�8�8�8�899
99p48t48v58}?8?8�<8�@8��8~�8x�8u�8r�8k�8�X8�[8�l8�q8�q8�t8�t8x8��8��8�@8�G8�M8�R8�T8�T8�R8�X8�!7�7��6�*7�!7�>7�?7�A7�C7�C7�@7�/7�*7�+8�#8� 8�8�8�8�8�8�8�8�8�8�8~
                   5358: 8~8{8v8q8m&8��7��7��7�8�8�8�8�8�8�8�$8�+8��6��6��65�60�6-�6+�6&�6(�6%�6#�6!�6�6�6
�6      �6�6�6��6��6��7�7�7#8$8%8"8�'8�8888��7��6��65�65�6��7��7��7��7   ��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6     �77�37�17�.7�+7�(7�%7�$7�$7�$7�7�7�7�7�7�7�
7�7�7��6��6��6��6��6��6��6��6��6��6��6��6��6��6�7�7�%7��6��6A 9A9?9< 99)9339-<9
W�8S�8Q�8Q�8P�8M�8J�8I�8F�8@�8>�8@�8A 9�n8�k8�b8�b8�a8�]8�Y8�O8��8�8�t8�q8�n8��6��6�!7�7�7��6��7��7��7��7��7��7��7��7��7��7�%7�$7�+8�.8�08�58�<8�@8�9\9��8��8�9��8��8��8��8X�8��8�8�8�8�8�8��7��7��7��7��7�8�8�8�8�8��7��7��7��7��7��7��7��7��7��71a7-7?a71a7-72767:7;7A7L
7�D9sN9�09�D9�9�39�09��9��9��9��9��9��9��9��9��9�9��9��9,O9+;9(;9''9#'9"9 999�8H�8NK91N91N9,O9�D9�G9
                   5359: �r9�s9�u9�z9�{9�z9�v9�v9�y9�{9�G9�r9��8��8�    9� 9�A9�09�&9�&9�$9�!9�!9��8�A9�G99�9i�97�99�99�97�9;m8<s88s88p8*q8)u8)u8"v8�e8�d8�Q8Q8<8;8
                   5360: )8978;m8
                   5361: )8(8-8),8*98*98978"v8�x8�e89�      9��8��8�89��8�8��8��8��8;m8^j8K�8D�8>�89�88�8%�8%�8"v8�2878�L8~K8 ~K8sL8r<8m<8l98b98a%8Q&8O8��7�8�8�8�28O8Q8R
8
                   5362: R
8T
                   5363: 8_8h8q8v8}8�8��7��799,O9*O9*V9�[9�[9�A9<�7<�7+�7+�7,�76�76�7:�7:{7?{7?a7�r9�r9��9��8��8��8��8��8��8��8��8��8��8��8��8��8�8�88&)8
                   5364: )8�e8�f8�f8�h8�h8�U8�T8�@8�?8�8Y8~K8�o8�s8�l8�l8�o8�s8�j8�k8Y8�28�08�D8�C8�Y8�Y8�X8�l8  Y8p[8p_8c`8dl8`m8\l8Uh8Ps84>8:!8O83K84>878@8?8f     897878�8%�8�8�8�8��7��7��7��7��7��7��7��7��7��7��7��7     ��7��7��7��7��7��7��7��7��7��7��79�99a94b93a91N91a71o7p7i7k7k7e7�e7�?7�?77 7'7-7�?7�77+7+7%7!7777�9��9��9�[9�7�7�7�7�7�7�7�7�7�7��7��7��7��7��7��7��7��7��7��7��7�7�7�7+�77878'8&�7�7
�7��7�7
                   5365: �7�7�7�7}7|7u7&t7k7k7��8��8��8�f8�o8��8��8��8��8�s8�l8�h8�y7�m7�b7�V7�Q7�Q7�L7�?7��7��7��7��7��7��7��7��7��7��7�}7�y7D�6A�6?�6?�6B�6E�6F�6C�6B�6C�6F�6D�6A�6?�6=�6=�6=�6�6�6�6H�6=�6�!8Ti8;!8=8A8J8N8S8Z8^8a8h8l8w8w8|88�!82O8<E8<A8==8=;8=98;689189(8:%8;!8��7�|7�7��7�[7�`7�d7�u7�v7�7�7    �7�7�7�7�7�|7�[7�7�7�F7�N7�S7�X7�\7�\7�i7�v7�|7��7��7��7��7R�7Ux7Vv7Xt7\t7ff7ge7og7qf7tf7�F7       �!8�'8�18�28�38�68�88�78�98�98�88�98�98�98�88�98�98�<8�=8�}8��8�=8�s8�}8�_7�a7�\7�F7�,7�'7�%7�#7�#7�#7�7�7�7�7�7�77�_7�_7�e7�q7�u7�x7�|7*�63�64�66�69�6:�6:�6;�6=�6?�6@7F&7H7H7I7K7N7N7E#7E#7B 7;797.7$7 7777!7#7(7)7-7   /71757:7:7     C7E7�K7�F7�B7�>7�=7�=7�B7��6~�6�6{�6y�6o�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6   ��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6=7@7
                   5366: B7C7D7A7@7?7;7/7,7,707�@7�@7�37�/7�,7�$7�7�7�7��6��6��6��6��6��6��6��6��6��6��6��6��6�6�6�67
                   5367: 7777
!7#7&7)7+7.797=7��6��6��6��6��6��6��6��6��6&�6�6f�6a�6_�6\�6W�6S�6O�6F�6D�6A�6?�6=�6<�6=�66�64�63�61�60�6/�6+�6
                   5368: ��6��6t�6m�6o�6m�6h�6f�6`�6c�6c�6f�6��7��7��7��7��7��7��7
��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7
                   5369: ��7��7��7��7��7��7��7��7�7�y7��7�#7�#7�#7�$7�$7�!7�!7�$7�$7�$7�%7��7��7��7��7��7��7��7��7��7��7��7��7�%7��7m�6��6��6��6
��6��6��6��6��6��6��6��6��6~�6x�6v�6m�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6�6
                   5370: �6�6��6��6��6��6��6��6  f�6o�6s�6w�6{�6~�6��6��6��6
��6��6��6��6��6��6��6��6��6�7�7�7�7�F7~A7y<7u;7r97m57i07g,7Z$7W!7T7N7m�6j�6h�6g�6i�6k�6m�6n�6m�6h�6f�6_�6Y�6X�6U�6R�6K�6H�6E�6?�6��6��6��6��6��6��6�7(�7'�7'�7#88�7�7�788888�8�8��7�8�7�7�7 �7'�7+�7(�7]7m7p7w7x7y7| 7�$7�$7�%7�$7�#7��7�7|�7k{7gz7]t7Zr7Yp7Yp7Wi7Rf7Qa7O^7L\7LZ7PY7QW7SW7UY7UW7TI7UH7VE7YC7]7��7��7��7?�6<�6:�68�68�66�6�!8�8�8�&8�n8�g8�c8�]8�V8�P8�N8�N8�P8�Q8�O8�P8�O8�J8�I8�F8�F8�A8�@8�?8�=8�=8�&8�8�8�
8�8�88S�7V�7Z�7[�7]�7_�7c�7d�7e�7f�7l8o
                   5371: 8q8r8w8;!868-8,8-8181808*
                   5372: 8*8,8,8-�7/�7/�7'�7G�7H�7L�7P�7S�7(�70�7;�7G�72l7U<7K17I07F17E17B17A-7A+7?)7E#7��6��6�&7�7�
                   5373: 7�$7K�6N�6V�6[�6]�6`�6b�6a�6a�6a�6d�6k�6k�6j�6m�6]7P!7=
                   5374: 7?�6?�6A�6K�6�*7�#7�#7�%7�#7�%7
                   5375: S�7_�7d�7f�7m�7y�7|�7~�7��7��7    ��7��7��7��7��7��7��7��7�&8��7��7��7��7��7��7
K�6E�6B�6=�68�67�66�60�60�6&�61�61�68�6Qt7Rw7Oy7N}7N�7D�7=7=�7�[7�@7
=7;7"?7)A7.E71J77M7<R7?Y7Ab7Aj7Dn7Qt7=�7�7Qt7Sp7Ts7Yp7G�7L�7L�7L�7K�7N�7N�7M�7>�7=�7=�7��7��7�7��7�}8�}8�|8�z8�y8�|8�~8�~8�8�}8�|8�~8�}8�8�8��8��8��8��8��8��8��8��8��8��8��8�6�6       �6�6�6�6�6�6�6!�6$�6'�6)�6+�6+�6,�64�6:�6?�6��7��7��7��7��7��7��7��7�G9�J9�L9�M9�Q9�R9�V9�Y9�[9�^9�a9�j9�m9�o9�r9�w9�{9�}9��9{t9~r9�r9�q9�o9�l9�l9�i9�i9�h9�e9�b9�\9�W9�Q9�Q9�89��9��9��9��9��9��9�9�9�w9�w9�w9{t9��9��9��9��9�89�G9&�:M�:
                   5376: ;�:
V;R;I;C;C;C;?;9;.;(;$;
;
                   5377: ;�:�:�:�:�:�:�:�:"�:%�:'�:&�:        M�:M�:K�:L�:M�:L�:M�:O�:N�:
N�:Q�:P�:N�:K�:M�:O�:Q�:S�:T�:Y�:Y;V;�$<s&<r<r<q<m<m�;��;�<�<�<�<�<�<�<�<�"<�$<��;��;��;��;��;m�;v�;}�;�;�;�&<�<�<�&<��;��;��;��;��;��;��;��;��;��;e�9_�9b�9b�9b:b
:c::&:$:$:%:(:(:):+
                   5378: :,:,:.:7:;:>:@:R�9e�9>?:;@:6<:.4:&'::a :?<:>?:c:a :w9s)9r-9r19s89q:9u<9v@9xC9uG9tG9rF9rG9rJ9rJ9qL9oL9nM9nM9oO9qO9rQ9rS9qV9qX9qY9sZ9s\9r\9o[9l\9i]9i]9ib9ib9hc9fc9b`9_`9V`9T_9S\9Q[9P^9M`9Gf9
Gf9D`9C\9CW9AU9>U9=R9>M9>H9;E96C93B9-<9A    9V     9Z9\9d9w9   �9��9��9��9��9��9��9��9       �9�9
                   5379: �9�9�9�9�9�9�9�9�9�9�9�9�9    �9��9��9��9��9�9   �79�69�69�99�:9�59�69�79�=9�=9�@9�E9�J9
                   5380: �j9�g9�m9�p9�q9�x9�}9�9�9��9��9��9�~9�|9�{9�|9��9��9��9��9�G9�?9�?9�@9�?9�<9�79X�:W�:S�:Q�:P�:Q�:S�:o�:��:��:��:~�:{�:y�:x�:t�:t�:t�:p�:i�:e�:b�:b�:]�:X�:S�:Z�:`�:g�:k�:m�:o�:��:��:��:��:��:k<r<�x<gz<fi<jb<l^<l\<k<�$<�\<gz<fi<�\<�\<�q<�r<�x<��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�8�8�8�8�8�8�$8�8�8�8�8�8�8�8�8�8�8�$8�W;�W;�R;�N;�I;�E;�C;�A;��;��;�|;�y;�t;�m;�i;�k;�p;�q;�p;�m;�p;�q;�o;�n;�q;�g;��;�A;�E;�I;�L;�N;�g;�q;�W;)�<!�<�<�<@<(?<(?<2?<3S<5Y<8\<@`<Bb<Ch<�<~<      }<z<w<s<n<j<e< `<@<Ch<?i<;m<1z<*�<)�<)�<�9�9�9�9�9��8��8��8��8��8��8��8��8��8��8��8��8��8�79�/9�%9�#9�!9�9�9�9��8�9�9
��:�w:�s:�o:�o:�l:�k:�h:�^:�Y:�T:�S:�I:�w:�:��:       �I:�G:�D:�B:�::�4:�3:�1:�%:�%:�$:�#:�$:�%:��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8{�8 {�8x�8u�8t�8m�8k�8i�8^�8W�8�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:
�:�:*�:/�:4�::�:
�:�:�:�:�:�:�:�:&�:"�:�:�:X�:X�:V�:T�:P�:M�::�:<�:>�:A�:E�:K�:P�:S�: ��<��<��<~�<z�<y�<u�<t�<u�<h�<l�<n�<q�<r�<p�<q�<u�<x�<z�<|�<��<��<��<��< l�<g�<d�<c�<c�<c�<d�<a�<Q�<u�<p�<l�<Q�<P�<g�<h�<��9��9��9��9��9��9�:     w�9~�9��9��9��9��9��9��9��9�:�:�:�:�:�:�":e�9m�9m�9w�9 �":�:}:z:p:o:m:m:h :h :c:
                   5381: �%;�';�+;�,;�2;�6;�9;�9;�6;�<;�<;�=;�A;�
;�;�        ;�;�;�;�;��:��:��:��:     �;�;�;�;�;�;�;�!;�%;�W;�W;�D;�+;�
;��:��:��:��:��:�&;�;�;     ')<"<#<#<$<&<'<'<#<k<I <D <B"<B"<A%<@)<')<,</<1<5�;7�;;�;?<C<H<L<S<X<Z<_<d�;h�;m�; #<#<#�;$�;&�;'�;(<*<,<�d:�l:�o:�r:�v:�w:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:o�:p�:q}:qw:qq:pl:pl:ne:qc:re:tc:wc:wf:wf:zd:{k:{l:~l:�d:��:��:��:��;�t;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�t;�q;��<��<��<��<��<��<��<��<�=�=�=�=�=�=�=�=�= ~=~
                   5382: ==~=}�<}�<|�<y�<u�<��<�=��<"�<"�<%�<=�=%�<&=!==��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�:�:
�:��:��:��:��:��:��:�:�:
                   5383: �:�:��:��:h�<gz<��<��<      �x<�<��<��<��<��<��<��<��<(u;�v;�u;�v;�w;�w;�x;�2;.;
                   5384: .;1;1;7;8;;;<;@;?;A;A;"C;%C;'J;'J;(R;*T;,];-`;/e;/g;,i;,k;.n;,u;(u;��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8�9�9�
                   5385: 9�9�
                   5386: 9�
                   5387: 9�9�9�9�9�9�9��8��8��8��8��8��8��8��8��8��8��8�9�9�9�9�9�9�9��8��8��8��8
                   5388: �b8�h8�q8�u8�}8�8��8��8��8��8�X8�T8�O8�O8�V8�W8�b8�:�:�:&y:&v:q:k:l:
m:l:i:g:e:c:_:Y:V:V:R:L:I:#H:%J:'Q:)T:1V:5W:6Y:6]:7_::_::_:9~::�:��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8�7:�7:�4:�C:      �9�9�9�9 �9"�9"�9'&:&:':&   :(::�7:��8��8��8��8��8��8��8��8��8��8��8��8��8�z8��8��8�z8��8)�<)�<"�<��<�<)�<)�<')<(?<@<�D<��;�;<#<�]8�`8�`8�^8�]8�X8�X8�X8�V8�U8�T8�P8�b8�]8�P8�z8l�<i�<f�<a�<_�<U�<T�<T�<B�<)�<Q�<B�<%�<fi<Di<Ch<��;�     <�<�
                   5389: <�Z<�\<
                   5390: ��;��;��;��;�;|�;z�;x�;q�;l�;
F�;J�;K�;L�;N�;Q�;P�;L�;K�;L�;O�;S�;R�;R�;W�;Z�;_{;e~;ey;rv;    l�;c�;[�;Z�;Y�;Y�;S�;O�;F�;rv;�t;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;     m�;m�;k�;h�;g�;i�;j�;m�;l�;��:��:�J:�J:�J:�I:
�}:�z:�x:�q:�i:�`:�Z:�X:�Q:�P:�N:�L:�J:��:��:��:��:��:�}:�9�9�9� 9�&9��8��8~�8}�8�8~�8}�8{�8��7��7��7��7��7��7��7��7��7��7��7{t9ib9w9�
9�
9�
9�9�9�49�89
�=�=�&=��<��<��<��<��<��<��<��<��<��<AK=CE=BB=@<=C;=F;=H:=H7=I2=L)=L$=L =L=J=I=F=A=B�<+�;,�;-�;&�;&�;     &�;'�;'�;&�;%�;#�;!�;�;�;(u;+�;     �;��;��;��;��;��;��;��;��;��;��;��;+�;/�;1�;4;8�; 8�;>�;>�;B�;E�;L�;N�;P�;R�;F�;D�;>�;<�;:�;7�;7�;7�;3�;3�;/�;+�;*�;)�;'�;�;
                   5391: 
                   5392: ;;;;;;#;%;);.;��:��:��:��:��:��:��:��:  �:�:�:�:�:�:�:�:�:M�9H�9H�9R�9R�9S�9T�9T�9Gf9{t9{w9ww9n9
                   5393: n9f�9f�9a�9a�9a�9a�9Y�9Q�9M�9    P�9K�9B�95�90�9+�9(�9$�9�9�9�9�9�9�9"�9H�9�9�9�9�9M�9P�9��:��:��:��:��:��:��:��:�7:::<:@:
E:V:Y';W*;W,;X-;W/;S/;H1;H1;F4;D4;D2;B2;A3;>4;;5;;5;77;89;6<;1>;0B;-C;-G;,H;+J;'J;V;V;Y;Y;Z ;Y!;Y#;Y%;Y';Y';cF;eF;gJ;eL;rv;
                   5394: \�9V�9U�9U�9T�9Q�9L�9G�9D�9C�9C�9A�9>�9=�9<�9>�9>�9=�9<�98�96�93�92�92�9/�9+�9*�9*�9*�9.�9.�9+�9&�9"�9P�9R�9T�9V�9X�9[�9_�9_�9`�9\�9[�9\�9
                   5395: �9
                   5396: �9    �9�9�9�9�9&�99x9�g;�e;�h;�f;�e;��;��;   w�9��9��9��9��9��9��9��9�9 ��9��9��9��9��9��9��9��9��9
                   5397: ��<��<��<��<��<��<��<��<��<��<�:�:�:�:�:�:�:�%:    �J:�D:�D:�3:�+:�):�":�:�:,<,&<.�;/�;0�;/�;/�;0�;3�;4�;3�;��9��9�}:�~:��:
                   5398: �d:�\:�[:�Q:�-:�-:�*:�*:�':�":\�9`�9a�9c�9g�9i�9m�9
                   5399: �%;�";�;�;�;�;�;�;�;�;�
;y;u;r;o
                   5400: ;h
                   5401: ;g;g;f;c;b;b;`;Y;        ��:��:��:��:��:��:��:��:��:>?:?A:>C:<D::U::U::_:=!="!="*=%+=%/='/=(2=&4=%7=%;=";=��:��:��:��:��:��:��:��:��:��:��:��:��:��:�]8�Z8�P8�<8�18�.8�*8�)8�$8�!8�8�8�P8��7��7��7�8��:��:��:��:�;�;�;�;�&;��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:     �$8�(8�-8�08�28�78�D8�K8�O8h\:c^:_\:TY:QY:IV:GX::U:a :e#:i$:m#:l':l':l+:k0:j4:k9:j@:kC:kG:kM:hO:gS:hU:iZ:h\:h\:ja:lg:mj:pl:��6��6��6��6��6��6��6
                   5402: ��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6R 7g87m:7D)7L.7R 7;�70z7cb7`k7Xh7Tr7Tr7Rp7Ql7Qg7Jg7Fo7Cz7B�7@�7?�7;�70z74v76s77p77m78k7;k7<h7@_7@\7>W7?P7?N7=K7?@7B77D)7m:7kG7iN7gV7c_7cb7��6��6��6��6��6��6��6
                   5403: o8j8b8\8V8P8K8G8C&8@8@8@�7A�7@�7A�7E�7G�7O�7O�7Q�7Q�7Q�7S�7T�7V�7Y�7\�7_�7d�7d�7f�7i�7l�7l�7q�7t�7x�7}�7��7��7��7��7��7��7��7��7��7��7�6,�6=7�7��6��6�777�6&�6��6��6��6�6�6,�6(7&7#7!7!7"
7"
77*7=7��6��6p�6p�6s�6t�6w�6s�6s�6x�6y�6{�6}�6��6��6��6��6��6��6��6��6��6��6��63 8888888?
8>
                   5404: 8@8@8    \H8NG8D>8<=8:683(82'81&83 8
                   5405: %�6)�6,�62�67�6<�6A�6D�6J�6N�6
                   5406: N�6L�6H�6B�6;�6<�6;�6:�69�67�6�6�6�6�6�6%�67�6,�6N�6N�6�6�6�6%�6�6�6�6W�6X�6W�6T�6N�6b�6d�6e�6g�6p�6R 7Z7\7`�6b�6�7}&7z%7v7r#7l17l17o47o77m:7��6��6��6��6��6{7�7�7
                   5407: e7i7
l7o7r7
u7��7��7��7��7��7��7��7=7B7D7I7e7�6�6
                   5408: �6�6�6&�6��6��6��8�8z8y8s8o8o8o8y8 |8(�8b�6Y�6X�6[�6Z�6Y�6X�6X�6U�6T�6S�6Q�6P�6Q�6
                   5409: Q�6O�6N�6E�6D�6C�6A�6@�6>�67�6N�6c�6o�6s�6D)7"
7!.8!8+�7,�7.�7/�7/�75�7@�7Q�7!8
                   5410: 888�7�7�7�7 �7"�7#�7#�7$�7'�7,�7+�73 8(8)8' 8(#8(%8&'8!.8�8& 8!8!.8%/8$X8 Z8[8^8`8d8i8k8o8
                   5411: ;�7;�7:�79�77�7.�7.�71�72�7/�7+�7�7�7�7��7e7"n7&p70z7
tx7t|7o7j�7g�7e�7e�7b�7]�7]�7^�7`�7d�7cb7ei7lo7qv7tx7��6��6��6��6�x6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6        ��7��7��7��7��7��7��7��7��7��7��7�7�7�7   �7
�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7
                   5412: �7�7�7  �7�7�7�7�7��7�7   �7�7�7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7f87]>7 ]>7V57R47Q37O.7M,7H+7F&7A$7��6��6��6��6��6�&7k-7f87     j�6n�6p�6q�6s�6t�6w�6z�6|�6|�6~�6~�6~�6~�6�6��6��6A$7J7D
7F     7F7F7E�6E�6X�6j�68888 8! 8#8$8$�7&�7)�7;�7R
8)�7;�7
                   5413: 4>8 $8 88888888SF7]>7f87m>7qC7sB7v@7{=7�;7�;7�<7�<7�<7�?7�?7�I7�K7�N7�Q7�T7�V7�i7�g7�e7|b7z_7t_7q]7jW7fV7`V7]V7XS7WN7WK7SF7�V7�g7�i7DY7:i7`7`70,7=7>7@7@ 7A$7SF7NI7JN7GU7DY7�7�7
                   5414: ��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6�7�7�7��6��6�%7�*7�7��6��6�7�7�
                   5415: 7�7�7�%7��6��6��6�7�
7�7�7�7�7�7�7�7�7�7�7�7�7�"7�%7�%7�$7`7e7l7p7�z7�$7�%7�(7�+717/73737477797
:7;7
=7>7A7A7D7D7F7
I7L7P7T7W7X7^7^7`7�z7�r7�n7�l7�l7�F7�G7�I7�H7�C7�D7�D7�27�07�07�7��6�    7�7�7�7�7�#7�%7�)7�-7�27�47�77�?7��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6�6�7�$7��6��6��6��6��6�6�7�&7��6�6�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6W�7J�7L�7O�7U�7��7g�7f�7_�7_�7_�7W�7U�7^�7w�7{�7�7��7��7��7��7��7��7��7��7��7��7��7!�7 �7�7�7�7�7W�7P�7P�7O�7M�7H�7E�7B�7B�7A�7=�7;�78�7-�7!�7��7��7��7�~7�z7DY7E`7Di7Fm7Gp7I�7N�7U�7i�6o�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6j�6i�6i�6�     8��7��7��7�8� 8!�7�7�7!�7)�7
88888�8�8�8�8�8�8�
                   5416: 8�8"�    8�     8�8�8�8�8��7��7��7��7�&8��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7tx7�o7��7��7�o7�s7�x7�|7�7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��6��6��6��6��6��6��6&�6�6�6�6�6�6�6��6��6��6��6�6�6�6�6&�6��6��6��6��6��6��6��6��67�6;�7R�7[�7_�7 �I7�N7�S7�V7�Y7�[7�\7�^7�a7�7�I7     �a7�f7�i7�l7�l7�k7�k7�g7�o7�8�08��7��7��7��7��7��7��7�6�6�6�6   �6�6��6��6�7�6&�6@7E�6
                   5417: �b7�`7�[7�P7�K7�H7�E7�C7�@7�=7�=7�>7�?7�D7�F7�Q7�y7�y7�v7�t7�s7�p7�k7�b7Ht6:�6<�6.�6.�6"�6�6�I7�E7�E7�>7�=7�<7�:7�57�47�57�47�07�*7�$7�$7�(7�)7�'7�(7�07
                   5418: ��7��7��7��7��7�n7�o7�l7�f7�a7��6��6��6��6}�6j�6j�6j�6j�6b�6b�6S�6C�6.�6        �%7�&7�(7�+7�.7�/7�07�57�=7
                   5419: �o7�p7�p7�i7�f7�e7�g7�c7�Y7�V7�b7�c7�j7�l7�m7�o7�i7�u7��7��7��7��7��7��6��6�7�7�7�7�7�7�7�777�#7�&7+7i�6h�6g�6c�6a�6b�6�o7�~7��7��7 ��=}u=     }u=}q=}l=}f=~`= ��=��=��=��=��=         ��=��=��=��=��=��=��=��=��=  �[=�\=�]=�a=�d=�i=�k=�q=�y=��=��= ��=��=��=��=��=��=��= +(>/)>2->5->8->;->>+>?(>@%>B$>B!>C>     6S>/P>-L>.I>.F>.C>-B>,B>)C>'A>'=>&;>%9>&7>'3>&1>&/>%+>"*> (>!&>#&>%&>&#>+(> ��>X�>Xs>Vr>Xo>Xh>Pd>Ld>Kd>Kb>J`>H^>HZ>GX>DV>AW>?U><V>     <V>6S>     ��>��>     j>k>l>s#>u">v#>     v#>u&>y*>|)>}*> }*>},>|0>}2>~1>�3>             �3>�5>�7>�8>�9>�<>�<>�=>�K>  a>c>c>e>j> C>E>F>J>O>R>S>V>\>^>a> �K>�r>�s>��>     ��>��>��>��>��>��>��> ��>��>��>��>��>��>��>��>��>��>��> �\>�Z>     �Z>��>     ��>��>��>��>��> ��>��>��>��>��>��>     ��>�\>     ��>��>     ��>��>��>��>��> �?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�
?�
?�?�    ?�?�?�?�?�&?�&?      �&?�&?     �&?��>��>��>��> ��>��>�? �&@�@     �@�&@�&@ �x@�\@�\@�R@�Q@�@�@�@     �@�@�$@�%@     �%@��@     �z@�x@     ��@�z@     ��?��?     �T?�R?�Q?�P?�L?�L?     ��?�^?     �^?�T?     �L?�M?��? 
                   5420: ��>��>��>��>��>��>��>��>��>��>     ��>��>��>��>��>��>     ��>��>             ��>��>��>��>��>��>��>��>��>  ��>��>��> ��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>     ��>�>�>�>
                   5421: �>   
                   5422: �>!?       !?�!?�#?�(?�/?�7?�:?�:?�7?�8?�;? �;?�>?�B?�B?�@?�A?�:?�:?�8?�6?�4?�0?�-?�+?�&?�#?� ? � ?�?�?�?�?�?�?�?�?�
                   5423: ?�?�
                   5424: ?�?�?��> �&@��?��?��?��?��?��?��?��?��?��?��?��?��?     ��?��?     ��?�@     ��?��?��? ��?��?��?��?     �3>�8>�8>�D>     �D>�E>�G>�G>�J> �J>�K>�Z> �Z>�Z>     �=>->     �\>�X>     �X>�=>     �0>�3>     !->�+>�$>�">�#>�+>�*>�(>�!>�>�>�>�>�>�>�>�>�>�>�>� >�&>�(>�'>�!>�>�>�>�>�>�#>�'>�*>         �*>�,>�+>�'>�">�">�$>�(>�,>  �,>�/>�2>�3>�2>�/>�0> Z?Y?U?U?W?U?!W? !W?%X?&[?)\?*]?.]?.S?KR?     KR?Lm?Mo?Pm?Sk?Wn?Zr? Zr?[w?\?[�?_�?a�?k�?k�?     k�?k�?     (�?&�?#�?�?�?�?�?�?�?�?~?z?     z?u?s?p?l?
                   5425: e?^?Z?   F�?A�?8�?5�?.�?(�?     k�?\�?[�?U�?T�?S�?R�?P�?N�?K�?H�?F�?     ��=��=��=�}=     ��=��=��=��=��=��=��=��=��=��=��=��=��=��=     ��=��=��= ��=��=     �}=�t=�q=�l=�h=�h=�n=�r=�t=�z=��= ��=��=     �>�>     9�>X�>V�>V�>     V�>W�>     W�>�>     �>�>'�>(�>*�>*�>+�>9�>             :�>:?2?/ ?$&? �>�>�>
                   5426: �>   ��>�>     :�>:�>     <�>:�>     �>,�>,�><�>     ��?��?��?��?��?��?��? �{?��?��?��?     �e?�|?�{? �f?�e?     ��?�f?     ��?��?     �?�?�?�?�?�?????      ?
                   5427: ??

??               �q?�7?�/?�+?�(?�%?�"?�?�?  ,L?�N?�R?�U?�W?�\?     ?*
?,L? 
                   5428: �\?�_?�a?�c?�d?�f?�l?�o?�o?�q?     �q?�q?     ��=��=��= v>W>     ��=}�=y�=w�=v> W�=��=     W>W�=V�=W�=W�= ��=��=             *%@+"@.!@2 @5@9@;@@@A%@  A%@O%@O@V@V@[@[@]@]@`@`@ *d@)]@(Y@'V@#V@ U@T@M@J@?@7@ 2@#1@&2@).@))@*%@ `@a-@_.@bn@     bn@Oj@     Oj@*d@     (�=��=     ��=��=     (x=)�=     )�=(�=     ��=��=��=��=��= ��=��=��=��=��=��=��=��=     ��=��=     
                   5429: k=m=m=l=n=   n="o=     ��=��=��=��=��=��=�~=�{=�w=�q=�n=�k=�g=�i=�h=�f=h=
                   5430: k=   "o=v=y= }="}=%|=(x= )>>     (�=)�=*�=*�=)�=)>     �>��=     >�>     :�>?�>A�>D&?E?G?G?H?I?I?J.? J.?KR?     Z?!?           k>Z>�Z>    6S>/S>0Y>*Z>+j>  k>    D&>C>     +>0>1>1>,>+>.>2>6&>;�=A�=D&>     �3>�4>�0>�(>�'>�)>�.>�/>�1>�.>�+>�#>�>�>�>�>">&#>">
                   5431: >>>>>">'>+>             k>�>        ��>��>             �?�?�?�?�"?�#?�"?�?�?  
�?�?�?�?�?�        ?�?�?�?�&?��>��>��>  �>?     ��>�>     �?b�?     @@@@�?$�?#�?�?�?�?�? b�?b@     *%@%@#@&#@@ b@`@     ��>��>     ��>�o>�o>�\>�[> ��>��>     �[>�\>��> ��>��>             t�?s^?w]?z]?}]?~\?}X?�W?�B?  ��?��?��?t�?     �t?��?     �B?�B?�F?�F?�R?�R?�c?�c?�c?�c?�t? ��?��?��? w-?J.?     :�>X�>X�>��>     ��>��>     ��>�?~??     ?z$?x$?w%?     w%?w-?     
��=��=��=��=��=��=��=��=��=��=��=��=��= ��=��=     ��=��=��=�}=�}= 1�?�?@ ��?��?     @@�@�@�@�@�@�@�@�@�@�@�@�&@��?��?     ��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?     ��?�?�?'�?     '�?(�?(�?&�?&�?'�?'�?)�?+�?+�?)�?*�?+�?+�?,�?/�?0�?1�?     t�?k�?     w-?x0?�0?�:?�:?�B?     1�?P�?Q    @^     @_@m@      m@mE@`E@_C@QC@ QC@Q)@L)@I*@C'@@'@=(@;'@5'@3&@0$@)"@'#@ "@ @@      @@        ��>�>t�>s�>p�>n�>     9q>8L>JK>LE>OH>SJ>UK>WJ>ZG>\F>^H>_H>`E>c@>c>>f;>f8>j6>k5>m6>n5>p3>q2>r3>v4> v4>vK>     vK>v]>^>��>     n�>d�>_�>^�>]�>Z�>V�> 9�>9q>     ��>��>��>��>��>��>��>��>     ��>��>��>��>��>��>��>��>��>��>��>��>��>��>     ��>��>��>��>��>��>��>}�>{�>��>��>}�>y�>w�>v�>s�>n�> v>v4>     )>W>     9q>)q>(H> (H>)H>)9>8>> <�>?�>@�>;�>;�>M�>M�>K>J{>Jw>Hs>Ds>Bn>Ak>@j><l>:j>;i>>i>Ab>A_><Z><V> ��>��>     ��>��>     �? �?�?�?�?!�?"�? �?$�?%�?%�?"�? �?�?�?�?�?�?�?�?     b�?b�?     Z�?\�?b�? �?.�?.�?D�?D�?Z�?     ��?��?��?��?��?��?     ��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?     ��?��?��?��?     ��?��?��?��?��?��?             ��?��?�@��?��?��?��?��?��?  ��?��?��? ��?��?     ��?��?     ��=�>�>�>�>� >�'>�)>�,>�7>�9> �9>�F>�G>�J>vK> �>�>�>�>     �>��=     ��=�>�> ��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=     � @�@�@�@�@�@�@�@�    @�@�@�@�@��?  @ @
                   5432:  @
                   5433: &@
                   5434: ,@    0@     2@     4@
                   5435: 6@    9@:@
<@
=@C@G@L@N@O@S@T@V@Y@[@^@"^@#\@$\@&^@    &^@&d@$c@#c@#e@ #e@(l@     (l@�l@�m@ �m@�j@�i@�g@�e@�`@�]@�\@�V@�L@�J@�G@�D@�@@�>@�=@�:@�7@�1@�0@�+@�&@�$@� @     �?�?     �2@�2@�%@�%@��? @�@�1@�2@     ��?��?��?��?��?��?��?��?��?��?��?��?��?�?�?�?�?�?     �~>��>��>��>��> 
��>��>��>�>�{>�z>�{>�~>�~>�|>�z>�{>�~> ��>��>��> ��>��>��>��>��>��>��> ��>��>��>��>��>��>��>��>��>��>��> b�?j�?j�?t�?u�?{�?{�?��?��?��?��?��?��?��?     �@�
@n@m@f@d
@b@ �T?�K?�K?�&?     �?�??�@? �@?�L?     �@��?     � @�@     �@�@     W�=)�=     (x=)t=+r=/q=0m=/k=(j=%h=$d=&a=)^=3[=     j>j
>�>�>�> �J>�K>�H>�H>�K>�L>     �L>�Y>�Y>�T>�S>�Q>�M>�K>     �>�%>�&>�(>�'> �'>�8>�8>�@>     �@>�@>�J> m@k�?     �
                   5436: @m@ 
��?��?��?��?��?�@�@�@�&@��?��?�&@�@ �@�@�
                   5437: @     ��?��?     �{?z?     (�?'�?     Z�?Y_?     Y_?�]?�_?�^?             �e?�G?�@?�;?�4?�1?�-?�(?� ?  �8?�;?�;?�*?�*?�?�? �t?�u?�H?�H?�B?�A?�9?�8?     �q?�q?�u?�u?�x? �x?�x?�{?�|?�?�?��? ��?��?��?��?��? ��?��?��?��?��?��?��? ��?��?��?��?��? ��?��?��?��?��?��?��?��?     D&>I>L>L�=I�=I�=N�=P�=R�=T�=W�=Y�=X�=Y�=\�=a�=b�=b�=d�=h�=m�=q�=r�=q�=r�=t�=x�=|�=��=��=     ��=��=��=��=��=��=     �
                   5438: @�
                   5439: @�@�@�O@�P@�h@ Tk@QC@     �h@�j@     �j@Tk@     YE?Y_?     ,L?:L?;F?YE?     
�?�?
�?�?�?�{?�s?�q?�n?�m?�j?�e?�\? �\>�r>�r>�u>             �u>�z>�}>��>��>��>��>��>��>          �J>�J>�W>�X>�\>�]>�\>�Z>�\>  
�8?�,?�+?�?�?�?�?�?�?��>��>��>��> �T>�T>�R>�Q>�O>�M>�L>�K>�I>�H>�C>�B>�@>�?>�<>�;>�:>�9>�9> �$>�T>     ��=�$>     �>�>�'> �2@�4@�4@�7@     �7@�7@�;@�;@�?@ �?@�?@�B@�A@�@@�A@�f@ ��?��?     �f@�h@     e&?�&?     YE?Y&?e&?e&?     "c@�f@     *d@"c@     Tk@(l@     �T>�U>�[> e&?X&?W�> �f?�8?     ��>��>     �8?��>     �x@bn@           P>
                   5440: Q>
N>N>P>R>   R>S>U>W>X>V>W>U>S>P>O>P>"N>%L>$J>%H>(H> �\>�[>�Y>�W>�Z>�X>�X>�Z>     �Z>�[>�V>�V>R>�P>&O>O>N>  N>     P>    )�=X�=     J>�=)�= G\>;U>     ;U>7X>1Z>,Y>"M>J>     .�=1�=9�=?�=C�= (�=.�=     )�=(�=     C�=A�=A�=H�=     ��=��=��=��=��= ��=��=��=��=     ��=��=��=��=��=��=��=��=     ��=��=     ��=��=��=��=��=��=��= ��=��=��=��=��=��=     ��=��=��=~�=��=��=��=��=     .�=.[=     I�=E�=C�= ��=��=��=��=��=��=��=��=��=�=�v= �v=�v=�x=�w=     �w=��=     ��=��=��=��=��= ��=��=     �v=�v=     ��=��=�v= ��=��=��=��=��= �v=�(=     �O=�w=     Z|=Z)=     ��=��=�}=~u=yq= yq=tq=qu=o{=     o{=i}=`~=Z|=     ��=c=c=K=     M=e=%j='m=.v=/x=3w=@�=     /�=+�="�=�=�=�=��= @�=4�=/�= ��=��=     (�= �=              �= �=�=�=�=
                   5441: �=�=�=��=       ��=��=�=�=�= �=     J>H>E><>             �,>�+>�,>�'>�>�>�>�>��=  <>�,>     ��=�~=�x=�q=�\= Z|=T|=N=G�=@�= ��@�"A     ��@��@     �#A��@     �"A�#A     - AA A�"A     -�@- A     ��@-�@           &A     )A    �@  �@     &A          )A�*A        �*A��@     ��@��@     ��@��@�@ ��@��@��@��@     z�C:�C     9C{C     {C|!C�"C ��Cz�C     �"C��C     :/C9C     :�C:/C     B$Ca#Cb%C $�C�CpC $CB$C     a�C$�C     b%Ca�C     pC$C     ��@��@     ��@��@     ��@��@     ��@��@           &AHA        OA  )A    FPAOA     ��A�
                   5442: B     �?B��A     ��A��A     ��A��A     �?B�?B     �
                   5443: B�?B �?B�?B     ��A��A�A �AA�A     BB&B%BBB�
                   5444: B     A�ABB     l�A:�A     moAl�A     <oAmoA     :�A;uA     ;uA<oA     v�@v�@     v�@<�@     E�@v�@     >�@E�@     <�@<�@     <�@>�@     9�Cz�C     z�C{�C��C 9/D9�C     �bB�bB     �bB�B     �B�B     �bB�bB     �B�B     �B�bB     �B��B     ��B��B     ��B�bB     bB�B     �bBbB     - A4 A     mA�mA     2mAmA     4 A2mA     �mA�"A     z�Cz�C     9�C9�C     9�C:�C     l�A��A     �?B9@B     9@B9�A     9�A:�A     |�@v�@     ��@|�@     {�@��@     v�@{�@     ��@��@     }B~B�B�B�B�B     QcBPB     PBtBtB}B     �bB�cB     �cB�cB�gB�hB�cBQcB     (�@.�@/�@9�@6�@ 
                   5445: �@�@�@�@�@�@�@ �@"�@(�@     6�@5�@1�@0�@6�@;�@@�@G�@     iAi�@     ��@��@��@��@�A�A�A�A     i�@��@     ��@��@��@��@��@��@��@ �AiA     �A�A     ��C��C��C��C     ��C��C     ��C��C     ��C��C��C��C     ��C��C     ��C��C     �nA��A     moA~nA     ~nA�nA     a�C`�C     ��C��C     `�Ca�C     a�C��C     ��Ca�C     ��B&C     B�BQ�B     B$CB�B     &Cb%C     Q�B��B     ��C��C     -�@i�@     iA4 A     }B~�A             ��A��A��A��A��A��A�B�B�B  ~�A��A     ��C��C     ��C��C     mA�A�A�A�A �nA�mA     �mA�mA     {�B{C     9�B{�B     9C9�B     9�B9�B     dB�B     �?B?BdB �B��B     ��B�?B     ��C�C�C �-A�*A     OA�PA�yA �yA�{A     �{A�-A     ��@��@     �-A�/A�,A�%A�!A�A     �%C��B     �(C�%C     �BG�B     F*C�(C             ��@��@��@��@��@��@��@��@��@  i�@i�@     ��@��@��@��@��@��@��@ i�@|�@     |�@��@     �"C�"C     ��B�"C     ��B��B     {�B��B     ��C��C     ~"A=!A     |�@~"A     <A<�@     =!A<A     ��@��@��@��@��@ ��@��@��@��@��@��@     ��B�%C     �%C�%C     ��B��B     �%C&C     ��B��B     -�@-�@     ��@-�@     ��@��@     g�AA�A     2mAglA     glAg�A     dBQcB     �B�B     B�B�B     QcBQ�B     BBABPB ��AE�A     ��A��A     �&B��A     F&B�&B     E�AF�A     -�@<�@     <�@i�@     �%C�%C     ��B��B     ~"A~nA     <QA=!A     <oA<QA     g�Ah�Av�Aw�A~�A ��A�yA     �#A~"A     �C&�C     &�C`�C     �AkA     kAglA     ��C��C     ��C�%C     �(C��C     ��B�cB     $�C&�C     ��C�oCpC ��C��C     ��CF�C     E�CF�C     E�CE�C     ��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A     �zA�{A     ��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A�~A�~A��A��A�zA     �"C�"C     �"C��C     �B�B�B�B�B"C     ��B��B��B "C�"C     bBFcB     $C"C"C ��A��A��A �&B�B     ��C��C     ��B�?B     �zA�jAkA 9�B:sB     :sB9@B     �#A�mA     �|@��@     ��@�~@�|@ ��@��@��@��@��@��@     �?�%?     �%?�#?�"?�"?�%?�%?�$?�&?             �&?�%?�&?�&?�"?�?�!?�#?�#?  
��>��>��>��>��>��>��>��>��>��>��>��>��>         ��>��>��>��>��>��>��>��>�?  �#?�?�?~?��>��>��>��>     
b?�b?�~?�~?             �&?�%?�%?�%?�!?� ?� ?�!?!?  �~?�s?�s?�??�??�&?     !?5?5?G?     G?H?
b? 
                   5446: ~!>~>�>�>�>�>�>
                   5447: >>~&>     ��=�>�>�>     �>�>�>�>�> �>�>�">~!>     ��=��=��=��=��=��=     ��=��=��=��=��=��=��= ��=��=��=��=��= ~&>�>��=��=     ��=��=     x3>v6>u9> ~!>x3>     
                   5448: R�>S�>T�>V�>W�>V�>T�>N�>M�>M�>     M�>M�>M�>L�>M�>R�>T�> T�>V�>X�>_�>     
                   5449: 0�>6�>9�>=�>?�>?�>C�>E�>G�>G�>     G�>G�>I�>K�>O�>R�>     �>�>�>�>�>�>�> _�>`�>_�> �>
                   5450: �>
                   5451: �>�>
�>�>�>!�>%�>'�>+�>   _�>[�>X�>X�>\�>]�>^�>\�>Z�>B�>=�>&�>�>�>     �>�>     +�>0�>     ��?��?��?��?��?�~?     �~?�~?     
b?
�?�?�?�?�?�?�?     
                   5452: �?  �?�?&�?��?��?��?��?��?��?    ��?��?��?��?��?��?��? �?�?�?�?�? �?�?      �?�?�?�?��?    8S?8�?     �G?�H?�G?�F?�E?�D?�@?!??     !??!Q?8S? ��?�\?     ��?��?��?��?��? 
                   5453: 8�?5�?2�?-�?*�?'�?"�?"�?�?�?     �\?�G?     =��?�?}�?{�?z�?y�?x�?v�?t�?p�?l�?h�?g�?g�?g�?c�?]�?]�?^�?]�?Y�?V�?R�?P�?Q�?N�?J�?H�?G�?E�?C�?A�?@�?>�?<�?:�?7�?5�?1�?/�?'�?$�?!�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?��?��?��?��? ��?��?     
                   5454: �?�?(�?(�?W�?W�?Z�?]�?b�?e�?     e�?h�?j�?m�?p�?r�?     r�?s�?t�?y�?{�?��?��? �@�@�@�@�@�?�?  �?�?�?�?�?
�?�?�? �?�?�?��?��?��?��?��?        ��?��?     �@n@     N@@     n@N@     @�@     ��?~~?{}?zd?             zd?�e?�R?�U?�U?�T?�S?�T?�e?  �e?�f?�l?�m?�~?�~?     ��?��?��?��?��?��?     ��?��?��?��?     ��?��?��? ��>��>��> 
                   5455: ��>��>��>��>��>��>��>��>��>��>     �>��>     ��>��>     &�>�>��>�>�>�>     
��>��>��>��>��>��>��>��>��>��>��>��>��> ��>&�>&�> ��>��>     {:?zd?     {%?{:?     ��?{�?w�? ��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>�}>�z>�x>�t>�r>�p>�n>�j>�i>�h> R�>V�>[�>`�>b�>e�>f�>g�>i�>m�>p�>x�>y�>z�>x�>t�>r�>q�>p�>q�>s�>u�>v�>v�>x�>z�>�>��>��> �o>�s>�t>�|>�~>��>��>��>��>��>��>��>��>��>��>��>��>��>��> ��>_�>     �h>�l>�n>�n>�n>�o>�o> 8S?;R?=P??O?BO?GP?JO?MN?PJ?VI?V8? V8?�8?     ��?O�?O�?I�?I�?8�?     �J>�h>     0�>.�>,{>&w>     Ft>Mx>Qy>Ru>Rm>Tg>]f>cl>hl>lj>ic>h]>m\>q`>wd>�b>�V>�S>�S>�V>�`>�b>�`>�]>�R>�P>�Q>�N>�J> &w>.n>3q>9u><v>Au>Ft> ��?��?��?��?��?��?��? ��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��? ��?��?     �@��?     �@� @�@ �@�@�@�@     ��=�)>�4>�?>�A> �%>�!>�>�>�> ��=�>�>�>�>�>�> �>�>�>�>�>�>��=��=     ��=��=��=��=��= �B>�A>�A>�A>�=>�9>�9>�;>�<>�;>�9>�4>�1>�/>�/>�4>�6>�1>�+>�(>�%> �A>�B>     0Z>0%>4 >3>     7Z>0Z>     �=>{?>u@>lA>iC>iE>gF>bG>YH>UH>RK> RK>KN>JQ>FQ>AR> AR>=Q><U>:X>7Z> 5>:>=>?>@>>>;!><$>F$>I">L>N>R>T>T>X$>     
                   5456: X$>\&>b%>l>r>u>x>w!>q$>n*>     n*>p.>s0>|/>-> 3>5>     ��=��=��=�=
                   5457: �=   
                   5458: �=�=�=�=       �=�=�=�="�= ",>->.>.>1> 1>2>3>�5>�9>�>>�A> "�=">     ">",>     �&?�%?     �>!�>#�>%�>%�>"??        ??????!?      
�?�?�?�?��>��>��>��>��>��>��>��>&�> &�>�>     �h>�i>�h>�f>�f>�i>     �i>�j>�j>�g>�f>g>f>d>d>  b>     _>
                   5459: ^>^>
a>c>a>]>\>\>`>   `>z>}>�>�>
�>�>
                   5460: �>�>��>��>��>��>��>��>       �c>�a>�a>�h>     
                   5461: �o>�j>�e>�e>�e>�b>�c>�a>�a>�c>     v�>y�>x�>y�>z�>}�>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��> ��>��>��>��>��> �`?�`?�_?�]?�W?�T?�R?�H?�A?�=?�8?}5?             }5?{3?w5?t5?s2?p0?k/?g/?v�>  ��>�&?�&?�`?     x3>{5>{9>�;>K> ��>|�>{�>{�>     K>_>zc>{t>�v>�y>�{>�~>��>��>��>��>��>��>��> ��>��>|�>��>��> {�>x�>y�> �b>�j>�j>�n>     �n>�o>�q>�r>��> ��>��>��>��>�~>�>�}>�~>�>�~>�z>�w>�q>�n>�h>�a>�`>�a>�^>�\>�R>�N>�M>K>             �%>�G>�K>�O>�S>�T>�V>�]>�b>  (?(%?"%?!??     �>  �>&?(?    �G?��>     {:?�*?�(?�&?�$?�#?     ��>��>��>��>��>��>��> ��>��>��>��>��>��>��>��>��>��>��>��>     ��>��>��>��>��>��>     ��>��>     
                   5462: ��>��>��>��>��>��>��>��>��>{�>     v�>v�>u�>t�>t�>s�>r�>q�>q�>m�>j�>g�>e�>a�>_�> ��>��>��>��>��>��>     ��>��>     (?8?     
                   5463: 8?G?G?Q?P?Q?S?U#?V)?V8?     ��=��=     ��=��=��=��=��= ��=��=��=��=     
                   5464: ��=��=��=��=��=��=��=��=��=��=     0Z>/]>,_>(`>$_>^>a> a>`>     �h>�G>�D>�?>�;>�:>�7>�4>�2>�+>�%>�">�!>�>     �>�>�>�>&>�=�=
�=>>>!>">$>)>->.>&>'>*>0>3>     P�>M�>M�>K�>G�>E�>E�>C�>9�>0�>,�> ,�>4�>4�>3�>3�>5�>4�>;�>=�>@�>?�>Fz>             ��>{�>r�>m�>j�>f�>]�>W�>P�>  Fz>Jy>Ny>Us>Wr>\s>^q>en>il>ki>mc>na>ra>u^>x]>{X>}Z>�X>     _b?`^?c]?dX?gX?gT?iT?jQ?mQ?mM?nM?nJ?pJ?qF?sF?sC?uC?u@?w@?w=?y<?}5?     
                   5465: ��?��?��?��?��?��?��?�~?�~?��?     ��?��?��?��?��?��?��? ��?��?��?��?��?b�?     b�?bi?_f?_b?     �S?�T?�R?�V?     �V?�\?     �]?�]?�[?�Y?�U?�U?�R?�R?�Q?�Q?�S? 
                   5466: �`?�a?�`?�`?�^?�]?�]?�\?�[?�]?     &�>  �>
�>�>�>!�>'�>,�>    P�>L�>I�>H�>C�><�>9�>8?     
�>�>&�>��>��>��>��>��>��>��>��>��>��> ��>��>     
                   5467: �b>�_>�_>�S>�Q>�O>�M>�L>�F>�I>     �I>�L>�P>�Z>�^>�g>�m>�q>�r>�q>n>&i>h>h>g>i>     i>m>r>v>v>s>o>m>m>  r>w>        w>
                   5468: z>
|>{>y>{>|>       |>"|>$}>(�>+�> _b?^b?]_?]X?[W?[R?UQ?UO?SM?SK?OJ?OH?'H?&F?G? 7Z>7s>Et>Fz>     F�?N�?T�?T�?Y�?b�?b�? E�?F�?     ��?��?�?�?}�?{�?v�?s�?l�?e�?c�?^�?[�?Y�?W�?U�?R�?M�?I�?E�?     �@�@��?��?��?��?��?��?��?��?��?��?��?��?��? ��?��?     ��=��=�=|�={�=y�=w�= ��="�=     "�="�=     z�=}�=��= ��=��=��=��=��= ��>��>��>��>��> ��=��=��=��=��=��=��= �\=��=     ��=��=�=�=�=�="�= "�="�=     "�="�=     �J>�B>     �4>�3>�/>�,>�&>�>�>�>�!>�!>�>�>�>�>     �B>�9>�<>�D>�H>�G>�D>�A>�:>�2>�3>�4>     �>�>�>�>�>�
>�>�>� >�(>�)>�(>�#>�>     "�?�?�?�?�?�?�?�?     F�?<�?5�?.�?+�?'�?%�?"�?     #�="�=     �B>�I>     ",>"u>$x>&w>     (�@(@     B�@>�@6�@ ��>��>��> ��>�x>     ��>��>     �x>�x>�Q> �Q>�U>     �U>��>��> ��>��>     .�?0#@     $@�%@     0#@$@     ��?�?�?.�?     �$@�#@     y$@�$@     {�@y$@     �#@��@     9"@7#@6%@7*@6,@67@6=@6E@8H@:L@<�@ @#@9"@ �"@@     
��@�A@�B@�A@�>@�;@�8@�5@�/@�-@�)@�&@�"@ �r?  r?
                   5469: v?u?       C�?�?     ��?�r?     u?Es?     Es?F�?B�?C�?     �?�?      �?�? �?��?        �w=�v=�v=ow=p�= p�=I�=Hr=Bq=     Y�>d�>k�>r�>u�>��>��>��>��>��>��>��>��>��>             j�>j�>h�>c�>^�>Z�>[�>Y�>Y�>  �?�?�?�?�? �&?�?     
                   5470: �?�?�
                   5471: ?z?y�>v�>s�>p�>k�>j�> ��>�&?     �@@     @(@     ��@�@     -�=$�=$�=�=             ��=��=��=�=�|=�|=�y=�w=�v=  �=�=&�=&�=��=��=��=         �v=�u=v=w=|=�=!�=$�=,�=  ,�=-�=     ��?�?     :@�:@     "�?":@     ":@:@     �?"�?     �:@��?     Y�>U�>P�>L�>K�>L�>     cz>�x>             L�>N�>U�>Z�>\�>_�>b�>d�>cz>  �u?�N?     �r?�u?             �N?�%?�%?�?�?�
?�     ?�?��>      ��>�?�?�?�?�?     �?�?�?�?�?�?� ?&!?&"?#?&?)?)?0?     0?7?<?
                   5472: <?
                   5473: _?   
                   5474: _?
Z?[?^?a?c?        f?     k?k?
j?
f?g?j?n?    n?r?u? ��>��>     �{?�}?��?��?��?��?��?��?     ��?��?��?��?��? ��?��?��?�?�? ��?��?��?��?��?��?��?��?��?��?��? �?�?     ��?��?     ��?��?��?��?��?��?��?��?��?��?��?��?��?��?�{? $5>5>"> B�=@>J>J>     ">>>�=�= J>F >F4>$5>     -�=+�=2�=2�=8�=8�=A�=B�=     9"@L"@     y+@|�@     L"@L+@[*@[-@     [-@y+@     �$@��?     ��?��?��?��?     ��?��?��?�"@     �"@�%@�$@�#@     �K?�@?�1? M?�?     �?�?
�?�?�?�?     &/?0?M? �1?&/?             �{?�t?�l?�Z?�Y?�Z?�T?�N?�K?  X?GW?     Iu?K�?     K�?;�?     ;�?8�?�?�?     �?X?     GW?GX?Iu? �;@�@     �|@�t@�r@�q@�m@�i@�f@�b@�`@�`@�\@�Y@�X@�T@�R@�Q@�H@�E@�B@�?@�;@ �@��@     �;@�;@     :@@     �@�@     �;@�:@     3?1?#?"�>#�>!�>"�>"�>     j�>3?     "�>)�>+�>+�>0�>3�>6�>8�>;�>?�>E�>L�>     �?�"?�)?�4?�:?�C?�K?�Q?�V?�Y?�Z? `J?_&?�? ar?`J?     �o?ar?     �Z?�n?�o? �g>�>>�?>�'>     >
L>     
L>g>g> �'>�%>�%>�>     g>f>�g> �>>     l�?��?     y$@m$@m @ m @l�?     ��?��?     ��?�v?     �u?��?��? �M?�M?�O?�N?     ��?��?��?��?     �v?�v?�M? M9@":@     @�?^�?     "�?@�?     �'>�'>     �g>��>��>��>��> �0>�1>�B>�A>�'> �{>�0>     ��>��>��>�{>     �>�>C�> <?�>     X?<?     C�>D�>     F1?GW?     D�>F1?     gJ>
L>     �=0�=;�= W�=T�=O�=M�=L�= L�=M�=J�=G�=I> ;�=W�=     I>H>I>P>S>T%>T->S1>[6>\<>cD>gJ>     >�=     z>z>w> fQ>ba>`f>_q>bt>cz>     cz>z>     w>g>     gJ>fQ>     l�?j�?K�? ��?��?     Iu?ht?hw?�v?     A�?K�?     @�?A�?     J�?L"@     C�?J�?     @
�?�?�?�?�?     ��?��?��? ��?��?��?��?     �&?�1?     
                   5475: �K?�M?�R?�Y?�[?�\?�X?�W?�X?�Z?     ��>��>��>�>>&~>     �>��>     &~>A~>     A~>C�>     q�=��=��=��=     �'>� >�>��=y�=y�=h�=i�=     ��=��=��= ��=�>     i�=i�=q�= y+@�)@     �)@�(@     �(@�+@�5@�5@�6@�;@     E!@m @     E�@E!@     ��=��=��=��=��=��=��= 
                   5476: /�=6�=8�=7�=8�=9�=;�==�=@�=>�=     >�=<�=;�==�=<�=:�=9�=7�=     7�=7�=:�=;�=     ��=��=��=��=     �=��=��=��=��= ��?��?��?�)@     J�?��?��?��?     M�>>�>=�> =�>=�>     ��>��>�?��>     ��>��>     �M?�0?     �0?��>     ��?��?     ��?��?�@�@�@�@�@�@     �@�@�@�@� @�$@�(@ ��?��?     E!@0#@     .�?;�?     =�>;U>     =�>=�>     �7>�8>     ��=�)>�*>�7>     
�>�>��=��=��=��=��=��=��=��=��=��=��= �8>�+>�*>�>�>�>     A�?�?�? M?LL?     $@�@     �@��@     �@�@     &/?�>     �>=�>     �w=�w=     �w=��=     q�=p�=     �>�>�>��>     z>�>     
                   5477: ��>��>��>��>��>��>��>��>�y>w>     ��>��>           �>     �>          �>�><>    =�>  �>    3?4%?     4%?%&?%0?0?     �>"�>     ��>��>     `J?PL?4%? ��>  �>    �>��>           �>     �>��>�>    �7>�Q>     fQ>{Q>z8>�8>     ar?Es?     >�@<�@�@ �$>">     $5>&~>     <?�@?     �p=�w=     �^=�c=�p= �o?��?     ��>��>��>��>     ��>��>     �,>�X>�U> ��?��?     ��>��>     �0>�,>o,>n(>d)>d#>Z#>Z!>\!>\>W>V>T>T>P>O>J> B�=P�=Q�=T�=V�=i�=     W�=^�=`�=a�=_�=_�=c�=h�=n�=q�=v�=w�=x�=y�=~�=��=��=��=~�={�=y|=zw=yq= �>I>     �"@�"@     �p=�w=�=��=��=��=     ��=��=     @�=L�=Y�=e�=g�=n�=o{= �{>d|>b~>A~>     Bq=@y=:y=:=     :=6=6�=3�=3�=.�=.�= .�=+�=,�= ��?�?     ��>e�>d�>D�>     F1?f0?g1?�0?     `'>�'>     �'>�&>�3>�;>�>>�>>�B> Ft>Ko>Ll>Kj>Hi>Lb>O_>Q^>R_>V]>Y_> Y_>[`>]_>\Z>ZV>^L>`K>`G>b?>c;>d8>c3>`*>`'>             a�=`>_     >_>`>_>^>]>Z>      `�=a�=     "�=`�=     Z>Y>W>U>T>">     -�=D�=D&> ��=��=��=-�=     �0>��=     �t=�r=�p=�q=�n=�n=�t= �t=�t=�}=�}=     ��=��=��=��=     ��=��=     �4>�>�    >��=��=��=  ��=��=��=��=��=��=��=��=��=��=��=         ��=��=��=��=��=��=��=��=��=          ��=��=��=��=��=��=��=��=�>  �>�>�>�>�    >�>  ;�=]�=]�=y�=     -�=-�=     -�=;�=     y�=��=     ��=��=     ��=��=     ��=��=��=�t=     ��=��=��=��=��=��=��= �t=�t=�x=�x=�v=�x=     �x=�v=�w=�z=�{=�{=�=��=��=��=��=��=     
                   5478: �~=�|=�y=�t=�n=�j=�g=�c=�]=�Y=     ��=�=�~= �,=��=     ��=�'>     a�=��=��= `'>\>Z> �u=�t=     Y=t=�u= k=�='�='�=5�= ��=��=��=�=��=z=      y=v=r=o=m=k=        ��=��=��=��=��= ,�=*�=(�=%�= �=�=     �=�=�=�=�=�=�=�=�=�=�= �=�=��= 5�=1�=/�=.�=,�= 
                   5479: ��=��=��=��=��=��=��=��=��=��=     ��=��=��=��=��=��=��=��=��=��=��=         �}=��=��=��=��=��=��=��=��=  ��=��=             ��=��=��=��=��=��=��=��=��=  ��=��=t�= ��=��=��=��=     ��=��=��=��=��=��=��=��=     t�=t�=��=��=     D�=E>e>k�=o�=v�=~�= 5>6>>>>!>!�=!�=!�="�=5�=5�=6�=6�=5�=7�=;�=>�=     ~�=~        >>->      >�=D�=     ��=��=     ��=a�=     ]f=ie=iW= a�=aq=`p=`n=_n=_l=]k=]f=     �=��=     �u=��=��=&�=�=&�=��=��=��=��=�=�=�=�=�=  �=~=~=�=        `�=a�=     a�=a�=     k=k=i=h=!d=%`=     kW=g\=a_=[a=Ud=Ri=Mo=F�=F�=E�=C�=B�=?�==�=<�=;�=8�=9�=5�= ]f=Me=Md=Dd=C`=<_=     �=k=k}=d|=az=^t=Ks= �+=�=     �=�=     #�=a�=     ;�=<t=Ks= �=��=z�=y�=     ��=��=~�= D�=I�=H�=I�=K�=L�=O�=R�=V�=V�=V�=W�=Y�=]�=_�=a�=b�=b�=     b�=a�=b�=f�=j�=p�=t�= �=-�=     ��=��=��= �~=��=��=��=��=��=     ��=��=��=��=�= ,�=/�=0�=2�=2�= 2�=9�=:�=>�=>�= ��@Q�@     �z@��@     Q�@Oj@     ��B��B     ��B9�B     �-C��B     :/C10C0.C/C�.C�-C     J�AJhA     JhAOgANNA ��A��A��Ay�Ax�A x�AJ�A     �<A�^A�^A��A     NNA�OA�;A�<A     -�C5�C     �D�D�D��C     �.D�D     5�C5�C'�C%.D     ��C-�C     =<C=C     =CZCZ�B j=C=<C     �=Cj=C     Z�B��B     ��B�=C     UAXA&cA+eAFeAHhAJhA J�AK�AD�AC�A     C�AB�A             B�A;�A9�A3�A0�A+�A'�A#�A�A  ��A��A��A&�A�A�A�A�A�A�A�AAsApAmAeA[A �A�A�A�A�A
�A      �A�A�A�A�A��A        [AUA     �BC=C �:C��B     =<C-<C     ��B�B     �:C�:C     -<C<C&9C�:C     �B�B     
                   5480: �B�B�B�B�B�B�B�B�B�B     Y�BZ�B     �BY�B     �]B��B     a�B;�B     LBhB     ;�B;B     ;BLBLB hBj(Bq+Bq]B�]B ��Ba�B     ��@��@     ��@��@��@��@     n�@n�@P�@ P�@Q�@     ��@��@��@��@��@��@��@��@�@y�@w�@n�@     *�@P�@     P�@NNA     UANAOAMAGA DA?A"8A'1A'+A&'A%A!AAAAA�@     �@�@�@'�@+�@*�@     �B�B�B�wB�jB�hB�dB�^B�]B�WB�<B ;B�B     �<B;B     ��A��A     ��Ay�Ax�A ��A��A     ��A��A��A��A     
                   5481: tCCu9Cx9Cy'C~'C~C�C��B��B��B     ��B��B     �:C�_C�_C ��B��B��B �_C�^C�CCtCC     I�Ba�B     a�B��B     tCCiCCi9CM:C     =C=CGCJCKCI        CD&CC�BC�BE�BI�B  M:CI5CG1C@.C;)C9%C:C=C     ��@�@     ��@��@     <A5A4A�A     �@<�@     �A��@��@ �AK�A     K�AK�A     K�Ar�AsxA ��A��A     ��A�A     sxA�xA��A��A     j=Cj�C     j�C5�C     -�C-<C     ��@��@     �@�@     ��C��C     �=C�tC     ��Cj�C     �tC��C     ��C�.D     v.Dz%D�D�D�DDxDr�Co�Cs�Cz�C��C��C��C     ��C��C��C��C��C��C��C �rB��B     ��B��B     ��B�rB     ��B��B     �rB�rB     ��B��B     �B��B     �]B�RB�<B�AB�@B�DB     �DB�FB�<B�;B�B �B�B     ��B��B��B ��B�B     ��B��B     �rB:sB     �D�D��C��C��C��C��C��C     ��C��C��C��C��C��C     ��C��C��C��C��C��C     ��C��C��C��C��C ��C��C     �D��C��C �.D�-D�+D �+D�$D�D�D�D�D     �C�C&�C3�C9�C ��C��C�C �A��@     ��@�@�@�@     &A        AAA      1�@-�@&�@$�@ �@�@     �@�@�@�@�@�@&A A�A�A�A     �@!�@$�@"�@(�@/�@1�@ �nAnA     nA�A     ��A��A�~A�tA�nA ��A��A��A��A��A �A��A��A��A     ��C��C��C��C��C ��C��C��C��C��C ��C��C��C j�Co�Ct�Cu�Cx�C��C��C��C��C��C��C��C     �D�DzDs�Cp�Cq�Co�Cp�Cv�Cw�Cw�Cv�C     v�Cp�Cp�Ct�C{�C}�C~�C|�Cx�Cv�Ct�Cn�Cj�Cj�C     !�B*�B*zB1�B;�B a�Ba�B     I�BH�BF�BC�B=�B5�B0�B.�B0�B-�B+�B&�B �B�B     �B�B�B�B�B�B�B"�B$�B&�B*�B,�B+�B*�B$�B�B�B!�B     LBMBM�AK�AG�AB�A     �B�
                   5482: BjBhB     ��A�B     �rB�RB�1B�+B     �+B�,B&/B,B%BB      BBB�A�A�A,�A9�A        Y�B��B     ��B��B     ��C��C��C�_C     �:C�@C�EC�RC�VC��C��C ��@��@��@��@��@��@     �A�A�A�A� A � A�A     �A��@     ��@�j@     ��@��@��@ 
                   5483: "c@l@m@q@v@z@}@�@�@�@     �@�@�@�@�@�@�@�@     ;BY;B     ,�AK�A     Y;B,;B     �A;B     ,;B,�A     �aB�rB     Y�BY;B             ;B�;B�BB�KB�TB�XB�\B�aB�aB  (B5B6B;B     5B5B1B,B(BB& B&B     wBsBqB
lBfB[BWBRBOBKBFBBB@BCB
                   5484: GBDB�?B�:B�5B3B3B
0B5B   &B(B     !�B|BwB �B�B     �B�B�!B�2B�<B ��@��@`�@_�@P�@ �@��@�@��@��@��@��@��@��@�{@�v@�m@     *�@(�@$�@ �@�@�@�@�@�@
                   5485: �@�@�@�@�@�@       &AB&AA@A  oAnA     A@ACSA4TA3\A"]A oA     �nA�iA�bA�\A&SAIA=A=A4A
0A
                   5486: 2A0A!AAAA       �-C�-C�7C�CC�NC�ZC�bC�vC     �vC�wC�wC�tC�tC (B%B
B
                   5487: BB�A�A�A�A�A�A�A�A�A�A ��@�A�A�A�A �A��@     �B�B�B�B     sKAaKAaAAA@A     1�@7�@=�@P�@     
                   5488: n�@nAsAnAnAi+Ak2Ap6At7AsKA     �#B�#B�B�B�B�!B�*B �*B�+B     �B�B�(B�(B�#B �aB�<B�;B�B     �SA�A     <QA6QA5SA
                   5489: SA�SA        oA"�A>�A>�AK�A ,�A"�A     
                   5490: "�A#�A!�A*�A,�A)�A*�A.�A.�A�A     ;B,;B     sTAsxA     sKAsTA     �#B�B�B��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A ��A�uA�uA �uA;uA     �B�&B�B��A     �<A�A�A ��A�B�    B�B�B      ��A��A��A��A��A��A��A��A��A��A��A ��A��A     ��A��A#�A&�A"�A"�A     �TA�OA�NA�UA�TA�KA     �KA�3A�0A�(A�$A�A     �SA�TA     SvCNqCKjCIbCJ\CHVCESCFNCIICJCCJ>CM:C     
                   5491: j�Cd�CY�CU�CS�CR�CR�CT�CU|CSvC     sTA~UA~KA�KA     �TA�uA     �C�C�C�C�wC�vC     ";="o=             ��@��@��@�A�     A�A�A�A�A      �A�A�A�A     �~A�A��A�wA�uA�yA�wA�pA�sA�pA�qA�jA�eA�^A�^A�TA�OA�RA�PA �A�~A     �HA��@     �PA�LA�KA�HA�CA�GA�DA�JA     �JA�KA�HA ��@q�@     q�@i�@     ,f@8-@     
                   5492: NQ@UY@di@mk@no@nv@s�@v�@~�@��@     @�@1y@     8-@NQ@     i�@e�@b�@Z�@U�@R�@K�@@�@     1y@,f@     uC�vC     �CC     �C�C     CuC     �vC�C     u�A|�A��A ��A�A��A��A��A��A}�A ��BOYB     'B�,B�1B�NB�bB �bB�oB�yB��B     �C�C     �C��C     ��C�vC     uC�C     (�B�B     [kB.�B      /BTRB     .�B(�B     TRBN_B[kB �XB&VBQB?B /B �B�B
�B�hB�XB ��B�C     �8C�7C     |C��B     �7CjC     �C�8C     ��B��B     ��B��B��B ��B��B     ��B��B     �TB�YB�ZB�SB�cB �cB�aB�iB�kB�fB�oB     �oB�uB�wB�tB�yB �yB�tB�uB �uB�zB�|B��B��B��B     ��B�TB     ��B��B     ��@�@�c@�\@�J@�A@�B@�7@�/@�)@�@ ��@��@��@��@��@ �@��@     ��A��A��A��A��A��A��A��A��A��A��A��A     ��A��A��A��A��A��A��A��A��A��A��A ��A�A     �A�A     �A�A�A�A��A��A��A ��A��A��A��A��A��A��A ��C��C     ��Cx�C     �BC�pC     �pC��C     x�Ct�C     y|C�kC�XC�VC�BC t�Cy|C             �B�B�B�B��A��A��A��A��A  ��A�B     ��A��A     ��A��A��A��A��A��A��A (�B& C     CCCCC�C�C�C�C�C�C�C     & C$C CCC ��B��B��B��B     ��B��B&�B  �B�B        ��Bv�B     ��C��C     ��C,�C     ,�C,�C     ,�C��C     ��@��@~�@ t�@��@     ��@��@��@��@��@��@��@ t�@t�@     ~�@t�@     p�@n@     ��@p�@     �A�A     ��@��@��@��@x�@t�@q�@ ��@��@��@��@��@ ��@��@��@��@��@��@     ��@��@     ��@�A     evDe,D     e,D�+D     �C��B     ��B�B     =CC     ��C��C��C��C}�Cu�C     u�Cw�C{�Cz�Cp�Cq�Cu�Ct�Cn�Cn�Cj�Cm�Co�Cv�Cx�C ��C��C     ��C��C     ~B}�A     �B~B     ��A��A��A ��A�B     }�A��A     }�A}�A     �.C�pC     ��B��B�C�C�.C �$C��B��B �BC�8C�)C�$C     3�Cu�C     2BD3�C     �fB�B     �B&B     wB�vB     �vB�pB�gB�fB     ��Bs�B     s�B.�B     [kB��B     X,De,D     ~B~(B     0'B1�A     1�A`�A     `�A}�A     ~(B0'B     �ZA�ZA     �ZA�RA�HA�;A�/A�A�A��@     �ZA�ZA     ��@�
A�A�5A�<A�HA�SA�ZA     �B�B     ~gB~(B     �fB~gB     �.C!C+!C +!C,5C     ,�C,�C     ,5C,�C     ~D�D     �D�AD     c.Dv-Dw)D�)DD~D     �A
�A�A�A     &2B�B�B 02B&2B     �A�A�A�A(�A/�A1�A �B�A     0'B02B     ��B��B     ��B+�B     +�B+!C     ��B��B     J�A�A     �ATRB      /B4B     4BJ�A     ��A��A     ��A�ZA     �ZA[A     ��A�B�B{&B'B }�A��A��A��A��A��A             >�C=�C<�CA�CA�CD�CBDS"DX,D  4D+D     
                   5493: +DD�C�C�C  �C�C�C�C�C    �C>�C     ��@}�@     ��@��@��@��@��@ ��@��@     }�@~�@     n�A�PA     ��An�A     �~A��A     �oC�7C     ��C��C�oC ��C��C     �8C�zC     �zC��C     |@�@�@"�@G�@ �@�@�@|@     1�@�@     G�@J�@>�@6�@1�@ 
                   5494: \A�A       �SA�TA�UA�VA�WA �WA
                   5495: \A   ��A�SA     ��A��A��A��A��A jCs�B     �$CjC     >�Cv�C     �)@�,@�'@�*@�,@ �,@�)@�)@�%@     �d@�`@�W@�L@�H@�H@�@@�<@�5@�4@�+@ ��@��@�@�d@     �+@�(@�)@ �w@�v@��@ �%@�w@     x�@��@��@         ��@��@{�@�A�A�#A�9A�DA�QA  �QA�VA�mA�kA     N@R(@W+@W3@R5@Q=@WA@XI@Q\@On@Z�@b�@     n@i@d@]@S@4@@ |@z@w@s@n@ b�@G�@     y+Dx�C     ��C�+D     x�Cy�C     �+Dy+D     y�C��C     v�B��B��B��B��B �A�A     �A
                   5496: �A�A��A��A��A��A��A��A��A��A��A��A��A��A�~A   �A�A�A�A     �A  AAA    A�A     &2B�uB     �B��A     �TB�)B�B ��A�B     
                   5497: �B1�B       2�B+�B     1�B2�B     ��B
                   5498: �B
                   5499: �B   �ZA~ZA     ~ZA}8A     }8A}�@     JIADFA=NA6KA             �HA{FAwHAuCA_9AZ<AZ@AUFAJIA          6KA5?A39A/5A+=A&;A!<A9A4A  .Ai�@     4A.A     e�Af�A     gmAlmAqmAykA~jA~ZA     }�Ae�A     f�AgmA     ��B��B��B C�B     �B�B     �B��B     �CC     �@�@�&@�?9@ 9@A@     �)@�@     A@=@     =@8-@     ,f@*e@,`@/U@,Q@.J@'?@ B@8@
                   5500: ;@�$@�"@�'@�$@�%@       �d@bc@     x@~@~@�@�(@ �(@�%@�)@�+@     1�B1�B     
                   5501: �B��B       02B1�B     ,�Cx�C     e�Aa�A`�A �Af�A     ��C�D     ~D�C     ��C��C��C ��C�BD     �+D+D     ��D�+D     ��@�@     jCJ5C     
                   5502: J5CG2C@'C:/C6-C9%C4C1#C+"C& C     �B�=B     ��A��A��A��A��A��A     �=B�bB     n�Ak�Af�Aa�A     �A!�A&�A6pA5UA6KA             a�A]�AU�AN�A6�A4�A0�A$�A�A  ��@��@     ��@��@     ��@��@     �B�A     ��A��A     J�Aa�A     zC�zC     CzC     �C�C     3�C�C�C �Ct�C     
                   5503: \ATAHA9A3A4A       p�@o�@     o�@b�@     �C��C     zC�C�C         ��A��A��A&�A�A�A�A �A$�A  $�A)�A,B2B4B �XB�QB�EB�=B     y|Cu}CryCsvCpqCrjCnfCl`Cl[CfWCnSCkLCaLCdECaBC]CC\8CT=CQ<CR8CJ5C ��B�vB     ��@��@��@��@�&A�A     �A�0A�TA�WA     �SA�QA     ��@��@��@��@     ��@��@     t�@o�@     �g@��@     vQ@�P@�X@�\@     NQ@dQ@oO@vQ@     �\@�g@     �@��?     E�?A@     2�B�B     z5C,5C     C{Cz5C n@q@w@�|@��@��@��@�r@     �r@�@     1�B~�B     ~�B�B     �@&�@��@��@��@��@��@��@��@��@��@ @�@7�@*�@�@�@ �w@�{@
                   5504: �@'�@1y@   gmAgjA_bA[XAYGAT@AS4A S4A}8A     ��@��@��@��@��@��@��@��@     �g@�r@     �@��@     �@z@n @["@K@B"@=@ ��?�@�@ �@�@�$@�K@�\@ �@
                   5505: �@�@�@�@AA
                   5506: A   
                   5507: A�A       ,�Cy�C     y�Cy�C     1�@.�@0�@3�@5�@ 5�@3�@6�@5�@6�@9�@     M.AD/A*/AAA 9�@9�@7�@6�@8�@:�@=�@@A@ABAJ)AM.A     zuCy�C     z5CzuC     ~gB~�B     zuC�vC     
�bB�hB�kB��B��B��B��B��B��B��B��B��B��B ��B��B��B .AAA
AA
                   5508: A   t�@9�@     M.AS4A     ��A��A��A��A��A��A��A ��A��A��A��A     SvCuC
                   5509: `ZJ`yJ_�J`�J
                   5510: ��H�*I
                   5511: ��I��I`�I_�I_?J`ZJ
                   5512: �*I��I
                   5513: eDHfIHfSHjYHoaHsjH|nH�vH�{H��H��H��H��H��H
                   5514: ��G��G��G��G��G��G��G��G�G�G�G&�G.�G9H=HD"HR.HW7H_=HeDH
                   5515: d]GtaG�aG�_G�bG
                   5516:        �bG�hG�vG�|G�|G�G��G��G��G
                   5517: ��J��J��J��J��J��J��J��J��J��J��J��J��J��J
                   5518: ��J��J��J��J��J��J�J�J�J�JmJZJ
                   5519: M�J8�J7�J��J��Je�JF�JE�J
                   5520: E�J��J��J��J
                   5521: ZJ�YJ
                   5522: �YJ�XJ
                   5523: �XJ9WJ
                   5524: �YJ�YJ
                   5525: 9WJ9jJ9�J9�J9�J
                   5526: qJPK
                   5527: ZJqJ
                   5528: `ZJZJ
                   5529:        qJ rJ&xJ0yJ6tJ;xJ>uJAwJJxJ
                   5530: JxJa�Jc�J��J��J��J��J
                   5531: ��J��J��J��J��J
                   5532: �YJZJ
                   5533: YZJ�YJ
                   5534: ZJYZJ
                   5535: �GiG�F�F
                   5536: G�G6�G
                   5537: !�G"�G �G �G}G~G�G�G
                   5538: 6�G!�G
                   5539: �FH�F
                   5540: ~NHvNHuH
                   5541: uH��G
                   5542: ��G��G��G��G��G
                   5543: �NH~NH
                   5544: ��G�NH
                   5545: �G�G�G�G�G
                   5546: �G�G�G
                   5547: �G�G
                   5548: �G
                   5549: �G�G�G
                   5550: ��G�ZG
                   5551: �ZG��F
                   5552: �G��G
                   5553: ��F�F
                   5554: 8�HC�HU�H_�Hd�H}�H
                   5555: �I�CI
                   5556: �CI9CI
                   5557: ~�H}I�I
                   5558: }�H~�H
                   5559: 8@I9#I8�H8�H8�H
                   5560: 9CI8@I
                   5561: �F�HF
                   5562: �HF9HF
                   5563: ��E�F
                   5564: :�E}�E
                   5565: }�E��E
                   5566: 9HF::F
                   5567: ::F8%F8
F8�E8�E8�E:�E
                   5568: F�F
                   5569: ��F�HF
                   5570: �F��F
                   5571: �F�F�FFF
                   5572: 9H;�G6�G
                   5573: FHEHCH<
H:H8H
                   5574: 8H9H
                   5575: 6�G6�G
                   5576: 6KH9EH><HK1HP1HT5H[3H^9H
                   5577: ^9H`=H
                   5578: b�H^�HX�HU�HQ�HJ�HD�H?�H=�H=�H>H<~H<yH9wH8vH9sH6qH2sH
                   5579: |�H|�H~�H|�Hz�Hv�Hu�H
                   5580: 
                   5581: u�Hs�Hs�Hr�Ho�Hm�Hj�He�Hc�Hb�H
                   5582: ��H��H��H��H��H��H��H��H��H��H�~H�~H��H~�H|�H
                   5583: �hH��H
                   5584: `=Hg;Hl>Hx2H6H�FH
                   5585: �FH�OH�YH�VH�WH�\H
                   5586: �\H�fH�fH�hH
                   5587: ��H��H
                   5588: 2sH1_H3UH8OH6KH
                   5589: QXFS�E
                   5590: ��E�XF
                   5591: �XFbUF`XFQXF
                   5592: S�Ea�E
                   5593: a�E��E
                   5594: �G�G'�G+H*H
                   5595: *H(H'H#H#!H
                   5596: #!H$'H"-H0H1H5H:H
                   5597: ��G�G
                   5598: �'H��G
                   5599: 
:H
5H2H .H*H(H$H!H&H�#H�(H�)H�'H
                   5600: 8H<H>H@HDHHHMHRHZH\H`HfHhHlHuH
                   5601: ~NH}�H
                   5602: 8�H7FH
                   5603: 7FH8H
                   5604: j�G|�G�G��G��G
                   5605: ��G��G��G��G��G
                   5606: ��G��G��G��G
                   5607: \�G`�Gf�Gj�G
                   5608: 7�GB�GO�GT�GW�GY�G\�G
                   5609: 8H7�G7�G7�G
                   5610: �FA�F
                   5611: A�FA�FB�FB�F
                   5612:        �F�F��F��F��F�F�F�F�F
                   5613: B�F�F
                   5614: �G H
                   5615: 
                   5616: ��G��G��G��G��G��G��G��G��G��G
                   5617: ��G�G
                   5618:  HH     H�H�
H��G�&H��G��G��G��G
                   5619: [KI�MI
                   5620: �MI�SI�XI�\I�^I�cI�dI�gI�mI�sI�uI�yI�}I�I��I��I��I��I��I��I��I��I��I��I��I��I
                   5621:        ��I��I��I��I��I��I|�Iy�IZ�I
                   5622: Z�I[KI
                   5623: !�G�G
                   5624: �YJ��I
                   5625: ��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I
                   5626: ��I��I��I��I��I��I��I��I��I�/J�0J�XJ
                   5627: �XJ�YJ
                   5628: �YG�ZG
                   5629: ��G�YG
                   5630: ��G��G��G��G
                   5631: ��G��G��G��G��G
                   5632: 
                   5633: ��G��G��G��G��G��G��G��G��G��G
                   5634: ��G��G
                   5635: 6�H6I�I�       I
                   5636: 5�H7�H
                   5637:        ��H��H��H��H�|H�xH�vH�tH�lH
                   5638: �   I��H
                   5639: 7�H6�H
                   5640: �rH�lH�kH&cHgH lHsHyH�H!�H5�H
                   5641: �lH�iH�mH�rH�oH�rH
                   5642: �YG��F�F
                   5643: �F��F��F��F��F��F
                   5644: Y�GB�G
                   5645: B�F�F
                   5646: B�GB�F
                   5647: ��G��G��Gt�Gs�GY�G
                   5648: b�G`=H
                   5649: �G�GB�G
                   5650: 6KH H
                   5651: Y�GZ�Gb�Gb�G
                   5652: �ZJ�?I
                   5653: �?I�       I
                   5654: F-I7-I6?I&@I&�I�IJ
                   5655: J J     ZJ
                   5656: 6�HU�H
                   5657: �[J�ZJ
                   5658:      ZJ�[J
                   5659: 9H6H1H*H
                   5660: �G6�G
                   5661: ��H7�H
                   5662: 5�H5�H4yH5vH5sH-nH'\HJHMHCH:H
                   5663: WI�H
                   5664: �8I�<I�?I�AI�EI�HI�KI�MI
                   5665: [KIJIcI
                   5666: cI`IZIWIWI
                   5667: ��H��H��H��H��H��H��H��H��H��H��H��H
                   5668: ��H��H��H�$I�&I�5I�4I�8I
                   5669: �H0�H2sH
                   5670: �DI�CI
                   5671:        �I�I�I�I�I�&I��H��H��H
                   5672:        WI�WI�UI�VI�MI�MI�PI�QI�YI
                   5673: �YI�ZI
                   5674: ��H�H
                   5675: �ZI�VI�RI�QI�PI�QI�OI�HI�EI�DI�GI�GI�DI�DI
                   5676: j�Gq�G~�G}zG�eG�_G�aG�^G�VG�TG�IG�FG�4G�5G�"G
                   5677: �"G�WG��G��G
                   5678: ��G��G��G��G��G��G
                   5679: ��G��G��G��G
                   5680: ��G��G
                   5681: QXFDWFC�FA�F
                   5682: �F�F
                   5683: F�E
                   5684: �ES�E
                   5685: �TF�SF�TF�XF�XF
                   5686: �F�TF
                   5687: ��E�F
                   5688: ��E��E
                   5689: ��E��E
                   5690: ��E��E
                   5691: 
                   5692: �hH�dH�dH�iH�eH�eH�gH�eH�_H�aH
                   5693: ��H��H��H��H
                   5694: ��H��H��H��H��H
                   5695: ��H��H��H��H��H��H��H
                   5696: ��H��H��H
                   5697: �aH�lH
                   5698: ��I��I��I��I��I
                   5699: ��I��I��I��I
                   5700: ��I��I��I��I~�I|�I
                   5701: |�Iy�Ix�Iu�Ir�In�Ik�If�I
                   5702: f�Ic�I`�I\�IT�IS�IP�I
                   5703: P�IL�IC�I@�I?�I9�I
                   5704: �DI��I
                   5705: 9�I9�I9�I9SI9CI
                   5706: ��F��F��F
                   5707: ��F�"G
                   5708: 7�G7�G7sG7-G7�F8�F
                   5709: 8�F7�F8�F8}F8VF9HF
                   5710: �TF��F
                   5711: AZJ@�IZ�I
                   5712: 
                   5713: �8I�5I�9I�9I�AI�AI�DI�EI�?I�?I
                   5714: �ZJAZJ
                   5715: ~�H��H��H��H
                   5716: ��H��H��H��H��H��H��H
                   5717: 9WJ9BJ9J:�I9�I
                   5718: �YJ9WJ
                   5719: �I�I�I
�I�I
                   5720: �I�I�I�I!�I"aIbIcI
                   5721: YJ�I
                   5722: AZJYJ
                   5723: �F��F
                   5724: �tI�lI�gI�dI�bI�dI�ZI
                   5725: 
                   5726: �I��I��I��I��I��I�{I�rI�rI�tI
                   5727:        �'H�&H�,H�-H�:H�;H�AH�<H�EH
                   5728: �EH�KH�YH�^H�aH
                   5729: b�G��G
                   5730: �E�E
                   5731: ��E�E
                   5732: ��E��E
                   5733: lZJ ZJ
                   5734: �NH��H��H��H
                   5735: �tI�wI�{I�{I��I
                   5736: ��I��I��I��I
                   5737: ��I��I
                   5738: YJ�XJ
                   5739: �FFHF
                   5740: ��EF�E
                   5741: �#EF#E
                   5742: ��E�#E
                   5743: ��C�>D
                   5744: �>D}>D}=D:<D
                   5745: :<D9/D
                   5746: �LDFMD
                   5747: F�D��D
                   5748: ��D�LD
                   5749: ��D��D
                   5750: ��D��D��D��D�UD
                   5751: ��D��D
                   5752: �UDVD
                   5753: �D��D��D��D
                   5754: VD�D
                   5755: �D�D
                   5756: �UD�UD�RD�RD
                   5757: ��C�UD
                   5758: �RD�>D
                   5759: b�DbXD
                   5760: ��Dc�D
                   5761: bXDbHD
                   5762: c�Db�D
                   5763: �ID��D
                   5764: ��D��D
                   5765: bHD�ID
                   5766: ��C�JD
                   5767: �JD�ID
                   5768: �ID��C
                   5769: ~�D��D
                   5770: ��D�7E
                   5771: �7E~7E
                   5772: ~7E~�D
                   5773: ��D��D
                   5774: �UD�UD
                   5775: ��D�RD
                   5776: �E>E
                   5777: b>Ea�E
                   5778: >Eb>E
                   5779: �7E�8E�:E:E
                   5780: ��E�7E
                   5781: :E>E
                   5782: }�D��D
                   5783: ~�D}�D
                   5784: ~�D~�D
                   5785: �CVD
                   5786: �D�D
                   5787: �D:E
                   5788: VDbXD
                   5789: b�D�D
                   5790: c�Dc�D
                   5791: �E�/E
                   5792: ��D�E
                   5793: �/Eb.E
                   5794: b.Ec�D
                   5795: }�D~�D:�D
                   5796: :�D:<D
                   5797: ~<E}�E
                   5798: :=E~<E
                   5799: :�E9�E
                   5800: 9�E:=E
                   5801: a�CbHD
                   5802: �LD�JD
                   5803: �#E�E
                   5804: �E��D
                   5805: c�D�D
                   5806: ~�D:�D
                   5807: :�D:�D
                   5808: :�D:�D
                   5809: ��D��D
                   5810: �E�E
                   5811: ��E�/E
                   5812: ~<E~7E
                   5813: :=E:�D
                   5814: b>Eb.E
                   5815: oHI
                   5816: �oHoH
                   5817: ��H�^H�^H�oH�oH
                   5818: I��H��H��H��H��H
                   5819: �YJ�CJ�J��I��I
                   5820: ��I��I�oI
                   5821: �oI�oIoIqI[pI\sI
                   5822: \sI�sI
                   5823: �sI��I��I�/J�YJ
                   5824: ;�F;&G-&G-9G
                   5825: -9G-pG<pG<�G
                   5826: ,}G,|Gy{Gx�F
                   5827: x�Fx�F��F��F��F��F
                   5828: <�G��G��G��G��G
                   5829: ��Gx�Gx�G-�G,�G,}G
                   5830: ��F��F��F�F�F;�F;�F
                   5831: �3G��F
                   5832: ��G��G�~G�}G�DG�3G
                   5833:        7�G1�G+�G(�G�G�G�G�G�G
                   5834: �G�G��G��G��G��G��G��G
                   5835: ��F��F%�F8�F
                   5836: �AF�jF�jF�|F
                   5837: �|F�}F��F��F��F��F��F
                   5838: ��Fe�FeBF
                   5839: �AF�AF
                   5840: eBF�AF
                   5841: ��F�G� G�!G�5G�5G��G
                   5842: ��Gt�Gi�G
                   5843: i�G<�G
                   5844: ��F��F��F
                   5845: ;�F��F
                   5846: :)I,)I,'I(I�*I�*I
                   5847: x�Hy�H��H
                   5848: ��H��H��HA�Hx�H
                   5849: ��H��H`�HX�HX)I
                   5850: X)I:)I
                   5851: ��H��H��H��H
                   5852: ��H��H��H��H��H��H
                   5853: ��F��F,�F-�Fc�Fx�F
                   5854: ,}G�{G
                   5855: �{G��F
                   5856: ��F��F
                   5857: ��F��F
                   5858: 
                   5859: YZJY7J;6J:J,J,&J�J��I��I��I
                   5860: ��I��I��I*�I+�I9�I9lI
                   5861: 9lI>pIBrIKvIRrIXrIi|I
                   5862: i|IrzIw|Iy�I��I��I��I��I
                   5863: ��I��I��I
                   5864: i�Gi�G
                   5865: ��F��F
                   5866: ��F&�F&G&�G�G��G
                   5867: ��G��G��G��Gy�Gi�G
                   5868: �%G{"Gw'Gq)Gn%Gk(Gj&Gd&G
                   5869: 
                   5870: �3G�3G�/G�1G�'G�&G�!G�#G� G�%G
                   5871:        �F �F �F"}F&|FM|FMyFWyF]zF
                   5872: d&GdGe�Fh�F&�F&�F�F
                   5873: ]zFjyF�yF�xF�xF��F
                   5874: ��F��F��F��F
                   5875: ��I��I��I��I��I
                   5876: �DF��F
                   5877: �FF*FF
                   5878: �DF�DF
                   5879: *FFvEF
                   5880: ��F�xF
                   5881: �xF�FF�FF
                   5882: vEF�DF
                   5883: ��H�jH�H�H��G��G
                   5884: ��H��H��H
                   5885: Z:HF:H:HMH�NH��H��H
                   5886: i�G[�G[HZ:H
                   5887: pH�oH
                   5888: �oH�uH�uH�{H�|H�H�H��H
                   5889: 
                   5890: l�Hi�Hi�Hg�Hj�Hi�Hh}He|HcvH^pH
                   5891: ��H��H��Hm�Hl�H
                   5892: ^pHalHbiHfhHicHlcHmfHkhHmlHmpHpH
                   5893: :)I9lI
                   5894: *I.*I�+I�cI
                   5895: �cI��I��I�4J�XJ
                   5896:        �YJ�?J��I�ItItIaIaI*I
                   5897: ��G��G��G�H�H�
H�H
                   5898: rHrHr�Gr�Gm�Gh�G_�Ga�Gc�GdeGe6Gd&G
                   5899: �HrH
                   5900:        ��G��G��G��G��G��G��G��G��G
                   5901: ��G��G��G
                   5902: ��H��H
                   5903: ��G�{G
                   5904: ��H�DH
                   5905: �DH��G
                   5906: ��F��F
                   5907: �F�F�F�F��F��F
                   5908: \AF]zF
                   5909: �AF�AF
                   5910: GAF\AF
                   5911: �AFGAF
                   5912: �cI��H��H�pH�oH
                   5913: 8@I4AI/DI*BI'DI"LI
                   5914: "LI\I\I`I
                   5915: `I�`I�cI�cI�cI�cI
                   5916: pH�OH�OH�H�H
                   5917: ��G�H�H�#H�0H�LH�OH�MH�FH�@H�?H�AH�CH&?HDH
                   5918: DH"AH%CH.CH7FH
                   5919: CFbBF
                   5920: �DFCF
                   5921: bBFeBF
                   5922: �cI�cI
                   5923: oH^pH
                   5924: *I II
                   5925: rHbH(HHH�H�H
                   5926: �H��G
                   5927: �oH�H
                   5928: ��H�oI
                   5929: Z:H[bHZ�Hv�H
                   5930: v�Hv�H��H��H�\I�sI
                   5931: ��H��H��H��H
                   5932: ��H��H��Hv�H
                   5933: �9F::F
                   5934: �AF�AF�9F
                   5935: \AF�AF
                   5936: �.D�.D
                   5937: �.D9/D
                   5938: :�D-�D�D�D��D��D
                   5939: ��D�.D
                   5940: ��D��D
                   5941: �/D�.D
                   5942: %.D�/D
                   5943: ��E��E�E�E9�E
                   5944: �9F��E
                   5945: ��E��E
                   5946: �.Dv.D
                   5947: �.D�.D
                   5948: �.D�.D
                   5949: v.DH/D
                   5950: H/D%.D
                   5951: �IE��D
                   5952: ��D��D
                   5953: ��E�IE
                   5954: �F��E
                   5955: ,�E*FF
                   5956: ��E,�E
                   5957: ��E��E
                   5958: �FF�F
                   5959: �2E��D
                   5960: ��D�HE
                   5961: ��D��D
                   5962: �HE�HE
                   5963: �HE�2E
                   5964: CF�E
                   5965: �Ec�E
                   5966: c�EbBF
                   5967: xVE,VE
                   5968: w�Dy:E
                   5969: ,VE,�D
                   5970: y:ExVE
                   5971: ,�Dw�D
                   5972: ��F��F
                   5973: }�E��F
                   5974: ��D��D
                   5975: d2Ed�D
                   5976: d�D��D
                   5977: d�Dd�D
                   5978: �2Ed2E
                   5979: ��DH�D
                   5980: H�DHHE
                   5981: HHE�HE
                   5982: ��E��E
                   5983: c�Ec�E
                   5984: c�Ec�E
                   5985: ��Ec�E
                   5986: ��E��E
                   5987: c�E��E
                   5988: �.D�uD
                   5989: �uDevD
                   5990: ��E�E
                   5991: �DF��E
                   5992: ��D��D
                   5993: �VD��D
                   5994: �VD�VD
                   5995: ��D��D
                   5996: ��D�VD
                   5997: ��D��D
                   5998: ��D�uD
                   5999: �/D��D
                   6000: ��C�BD
                   6001: �BD2BD
                   6002: 4D4DU4DX4DY0DX,D
                   6003: evDe�D
                   6004: �D4D
                   6005: e�D�D
                   6006: .�E/�E
                   6007: ��E�F
                   6008: TFTFT   FW     F\&FQ�EP�EC�E<�E3�E.�E
                   6009: /�E��E
                   6010: �FTF
                   6011: /�D/E
                   6012: 
.�E(�E)�E�E#�E�E�E~EwEwE�iE�fE�]E
                   6013: /E/aE
                   6014: ��D/�D
                   6015: ��D��D
                   6016: �]E�UE�LE�ME�KE�SE
                   6017: �SE�XE�YE�ME�WE�`E
                   6018: /aE/�E
                   6019: �`E��D
                   6020: ��D�D
                   6021: �D<E
                   6022: �;E��D
                   6023: <E�;E
                   6024: ��G��G@�G�G�G��G
                   6025: ��G4�F
                   6026: 4�F��F
                   6027: �AF��E
                   6028: ��E��E
                   6029: x�E,�E
                   6030: xVEy�E
                   6031: ,�E,VE
                   6032: y�Ex�E
                   6033: ��E�AF
                   6034: �AF��E
                   6035: ��E��E
                   6036: ��D��D
                   6037: ��D�D
                   6038: �D�D
                   6039: ��D��D
                   6040: ��D��D
                   6041: ��E��E
                   6042: ��E��E
                   6043: �F�F
                   6044: �F�F
                   6045: �AD��D
                   6046: eDHk=Hv>HwBH�CH�DH
                   6047: ,FDxHD
                   6048: y�Dx�D
                   6049: ,�D,FD
                   6050: x�D,�D
                   6051: xHDy�D
                   6052: d=E<E
                   6053: �Dd�D
                   6054: d2Ed=E
                   6055: x�Ex�E
                   6056: x�EvEF
                   6057: x�D��D
                   6058: �;Ey:E
                   6059: w�Dx�D
                   6060: �
                   6061: E�WE
                   6062: �WE�aE
                   6063: �aE�aE
                   6064: �aE�
                   6065: E
                   6066: �
                   6067: E�
                   6068: E
                   6069: H�DH�D
                   6070: ��DH�D
                   6071: c�E�E
                   6072: �E<E
                   6073: d=Ec�E
                   6074: d�De�D
                   6075: �IE��D
                   6076: ��D��D
                   6077: �IE�IE
                   6078: H�E��E
                   6079: GAFH�E
                   6080: �.D��D
                   6081: ��DH�D
                   6082: H�DH/D
                   6083: �E�E
                   6084: ��E�E
                   6085: ��E��E
                   6086: ,VE�WE
                   6087: ��D,�D
                   6088: �
                   6089: E��D
                   6090: ��G��G
                   6091: �IEHHE
                   6092: H�D��D
                   6093: ~E/E
                   6094: /�D1�D
                   6095: 1�DN�D�D~�D~E
                   6096: ��F��F
                   6097: ��G�_G��F��F
                   6098: ��F4�F
                   6099: y+DxHD
                   6100: ,FD,�C
                   6101: x�Dx�D
                   6102: y�D��D
                   6103: �BD�AD
                   6104: c�Ec�E
                   6105: ��D��D
                   6106: ��F��F��F��F��F��F��F��F��F��F��F��F��F��F
                   6107: ��F�vF
                   6108: �vF�xF
                   6109: ��E�;E
                   6110: ��Ey�E
                   6111: ��E�aE
                   6112: 2BD�BD
                   6113: ��E�aE
                   6114: ��D,�D
                   6115: ,�D,�D
                   6116: ��D��D
                   6117: H�EHHE
                   6118: �IE��E
                   6119: �VD�GD
                   6120: �GD,FD
                   6121: ��D��D
                   6122: ��EH�E
                   6123: c;F��F
                   6124: }�E��E��E��E��E��E�]E
                   6125: TFRFa-Fa5Fc;F
                   6126: ��E�HE
                   6127: ��E�HE
                   6128: �E�
                   6129: E
                   6130: ~E�E
                   6131: �aE/aE
                   6132: c;FgDFcGFhdFnhFkmFo�Fn�Fq�F}�F��F��F
                   6133: ��F��F��F
                   6134: ��C�GD
                   6135: �VD�VD�BD
                   6136: ��D�BD
                   6137: 2BD1�D
                   6138: �E��D��D��D��D
                   6139: ��D��D
                   6140: ��Ex�E
                   6141: �F�vF
                   6142: K�J�J�J�J�J"�J"�J#�J%�J$�J
                   6143: $�J��J
                   6144: P�JS�J
                   6145: ��J��J��J�J
                   6146: �J�K
                   6147: �[J�dJ�kJ�pJ�uJ�{J��J��J
                   6148: �J�J
                   6149: 
,&K+�J&�J$�J"�J�J�J�J�J�J�J�J�J`�J`<K`RKp�K}L�bL��L��L��L�+M�GM`RK`mK_�Ka�Kk�Kp�K
                   6150: �GM�\M��M&�M�M%3N+GN6ENF?NQ9NQ9N>(O�P  �P
                   6151: �P�P�P�P�P
                   6152: �P�P�P�P�P�P�P�P�P�P�P,�P0�P3�P6�P7�P6�P4�P6Q:Q<Q�+P�5P�;P�AP�FP�NP�VP�\P�`P�hP�tP}P�P�P>(O0�O:�O=�OA�OE�OH�OI�OA�O?�OC�OI�OL�OO�OQ�OQ�O
                   6153: Q�OL�OK�OM�OT�OX�OZ�O\�O^�Ob�Ob�Of�Oj�Oq�O~�O��O��O    ��O��O�P�P�P�P� P�'P�+P
                   6154: unQwwQzQ{�Qw�Qy�Qz�Qy�Q{�Q�Q<Q> QC&QC+QB3QJ=QVEQ]IQaKQf[QnfQunQ:KK�KN�JM�J9�J:KPK�PK�PK�PK�RKsRK`RK        d�Ke�Kd�Kc�Ke�Ke�Kb�K^�K\�KC{LyLx
                   6155: LxLyLzLzLz�KxLv�Kw�Ky�K{�K{�K|�K{�Ky�Kx�Ky�Kx�Kv�Kr�Kq�Kp�Kq�Kr�Kt�Kv�Kx�Kz�Kz�Kz�Kx�Kw�Kx�Kz�K{�K{�Kz�Kv�Ku�Ku�Ks�Kq�Ko�Kp�Kr�Kr�Ks�Ks�Kq�Kq�Kp�Kl�Kj�Kl�Kl�Ki�Kf�Kb�K`�K[�K]�K`�Ka�Kc�Kd�K    9�L1�L)�L!�L�L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L�M�M�M�M�'M�*M�-M�1M�6M�=M�BM�GM�FM�AMzAMu?MlCMQDM8CM\�K��K�Kt�K��K�K9�K8CM88M5/M4'M"MM�L�L�L�L�L       �L     �L��L��L��L�;L�:L�7L�5L�L{L:�K:�K:%L:SL9�L9�L9�L9�K:�K9�K9�K:�K
�OK�HK�EK�KK�NK�MK�EK�?K�<K�3K�(K�&K�&K.�K+�K&�K"�K�K�K�K�K�K
                   6156: �K�K�K��K��K��K��K��K��K��K��K��K��K��K��K��K��K�&K.K/�K\�K��K��K��K��K��K}�K}�K�~K�{K�uK�rK�kK�eK�_K�WK�SK�OK      J)LI�KDL@�K;�K8L3�K2�K.�K{LyLvLvLpLjLf$Lf$Lc$L_"LX'LR%LJ)L��J�&K+PKPK�OKxNKwPK,OK+PK+EM*�L*�L<LxL�L�iL�L�L�L�L��K��K.�K/+L2FL6uL*}L'�L"�L�L�L�L/�L/M/DM/DMCM�DM�EMvEMCEM+EMgDMrCM�BM�CMCM8CMb�Mb�M\�MZ�M[�MW�MX�MT�MWoM^nMdfMdUMcLMgDM�(N�'N�#N�N�N�N�N�N�N��M��Mx�Mi�Mb�M#�M��M��M��M��M��M��M��M��M��M�N�N�)N�4N�9N�=N�9N�9N|5Nw1Ng3NZ3NQ0NG.N<-N4,N,-N$&N#N!NN�N�"N�)N�(N9�M�M9�L:�L9�L9�L:M:;M:hM9�M9�M:K:K:4K9^K9vK9�K+PK+gK+�K+�K)�K)L)L*L*]L*�Lp�K�K��K��K��K��K�PK+EM�GMgDM/DM�:N�2N�5N�3N�,N�N
NtNjNbNVNR NR+NS2NQ9N�2N�8N�6N�:N<N5N1N.N(N(N!NN�N�N�N�N�N�N�%N�#N�(N�(N�*N�2Nb�M\�MY�MQ�MJ�MB�M<N��Q��Q��Q~�Q}�Q}�Qy�Qu�Qq�QN�QX�Q]�Qb�Q"�Q&�Q'�Q.�Q0�Q-�Q1�Q5�Q>QF�QN�Q'�Q.�Q1�Q0�Q'�Q$�Q"�Qb�Q��Q��Q��Q�P�P'�PF�PT�Pd�Pi�Ps�P�P�P�P�Ps�Pr�Pw�P{�P��P��P��P��P��P��Q��Q��Q��Q��Q��Q��Q��Q�$Q�)Q~OQsYQiYQ\\Q\\QUdQXhQNsQRvQSxQR}QS�QO�QL�QF�QF�QF�QB�Q=�QA�QA�Q=�Q8�Q.�Q)�Q#�Q�Q�Q��P��P��P�Q�Q�Q�$Q     ��Q�}Q�oQ�UQ�TQ�QQ
�P�P�2N�$O�$O�%O�%O�)O�)OG)O>(OgtPfmPfdPhdPg8Pf2P�XP��Pf2Pf(PfPg�OirOk*Om�No�N�P�P�P�P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P�~P�{P�~P�zP�uP�xP�qPtpPqtPkrPgtPo�N�O7�O�XP�O7�O�Q�6P�6Pf2P
)�Q)�Q�Q�Q�Q
                   6157: �Q��Q��Q��Q�vQ�sQ�sQ�sQ�sQ�oQgtPe{Q
                   6158: �oQ�fQ�eQ�SQ�SQ�LQ�LQ�Q�Q�Q
                   6159: e{Qk|Q�~Q�|Q�}Q�rQ�qQ�{Q�|Q��Q�P�P~PoP#nP$TP$NP�8P�8P�6P    $NP(NP*QP3JP2EP^5P7P�6P�8P�Q�
Q`�PY�PX�PM�PM�PM�PAQ<Q�UQ�\Q��Q��Q��Q��Q��Q��Q��Q��Q��Qp�Q�$Q�&Q�,Q�4Q�>Q�FQ�JQ�PQ�PQ�UQ�UQ�VQ�\Q�^Q�fQ�~Q��Q��Q��Q��Q��Q��Q�MQ�PQ"�Q �Q �Q�Q�Q�Q
                   6160: �Q
                   6161: �Q&}QxQ�qQ�jQ�XQ�WQ�YQ�VQ�FQ�GQ�BQ�GQ�CQ�MQE[Qb�Q�XP��P.:QE[Q��P.:Q�P�P�P�P�P  �P�$P$P)P
                   6162: ,P
                   6163: 2P4P7P:P:P$NP�+P�+P� P�P�P<N<N<�N4�N35O
35O4OO4�O0�O0�O2�O2P5P4&P,(P(0P"0P 9P 9P9P:P  �P�P�P�P��O��O��O�.O�$O�(No�N��Q��Q��Q�|Q�sQunQyqQ|oQ�oQ�pQ�oQ$�LP�NP�NP�JP�CP�=P�>P�CP�FP�FP�DP�@P�<P�7P�6P�8P�4P�.P� PPPPPPP%P("P/&P2*P5/P9.P;+P=)PA)PE*PH+PCQ=Q*Q�>Q��P��P�eP�eP�LP     BFQ8CQ/BQ$AQ>Q=QAQFQCQ�M!�N�NOO�OE[QMUQQ[Q\\Qh_QngQweQ�jQ�jQ�hQ�\Q�VQ�~Q     �~Q��Q��Q��Q��Q��Q��Q��Q��Q:=P��P��P7�O��O��O��O��O:=P�zO�}O�}O��N�N%�N/�N:�NA�NA�NI�N��N��N��N��N��N��N��N��N�N�N�N�LP�P�}O]gN�gN�OO]�M]gN�MO�M��M�MO�M]�M9�M��M.:Q/QyQz%Q�%Q�Q��PTQ�xQ�|Q��Q��Q��QCQTQ ��Q��Q��Q��Q��Q��Q��Q��Q�~Q:=P��P��P�eP]gN��NTQ]Q�eQ�nQ�tQ�Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��M4�M]�M��M4�M\�M�L�L�M�MxM7M�L�L�LP�LO�LOMOaMO�MO�M�L   �L�L�L!�L%�L,�L,�L2�L3�L;�L@�L@�LG�LL�LP�L$�J%�K�K
�K&�K�K�K��K��K��K�[K�K�K%�K�K�K�K�K�K�KKK%�K%�K4�K3�K%�KT�K4�KS�JUKUKTKTKWKZK`
K?&KCKEKFKHKJ�JL�JMKMKOKQKRKQ&KP�J�K�K�   K�K�K�K�K�K�K�K�K�K�K�
                   6164: K�K`
KbKeKiKnKqKrK
�K�K�K�K�K�K�    K�K�K�K�K�K�KrKuKxK|KK�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K��K��K��K��K��K@�K@�K?&K�L��L��L��L��L��L��L��L��L��L��L��L�AL�@L��K�oKBLSLTLdLdL�L�L,�oK�kK�fK�bK�`K�XK�XK�SK�RK�PK�LK�KK�GK�HK�KK�MK�LK�HK�GK�CK�CK�AK�4K�2K�0K�.K�-K�+K�'K�#K� K� K�K�K�K�
K�K�
                   6165: K�K�K�K�K�K��J�K�K�KLLLBL?&KAZJ��J�K��L��L��L��M�pM�oM�]M�\M�8M�7M�M�M�M�M��L��M��M�bM�M��L��L��L��L��L�L�}L�L�~L��L��L�~L��L�|L�iL�hL�`L�`L�_L�UL�VL�NL�ML�1L�1L�,L+LLLLL"L"L%L        HLB�L>�L:�L5�L5�L4HM4�M4�M%L#%L*+L89L:>L1QL$ZLgL"jL&gL*iL1dL6gL9lL9lL=lLBuL!:�K@�KC�KC�K?�K>�KD�KD�KJ�KI�KK�KH�KL�KW�KV�KZ�Kb�Kf�Ki�Kk�Kr�Kt�Kq�Kv|K~�K~{K�wK�~K�xK�oK�mK�rK�oK��L��Lm�Lk�LI�L9�L�_L�`LP�LT�LT�L`�Lb�L`�L`�Li�Lp�Lo�L��L�}L�sL�gL�gL�_L�_L@*L@�LBLBL3BL6;L;6L@*L?&K=�J;K8K3�J/K,&K�_L�DL�CL��K%�K%L@*L@�K4�K5�K5�K3�K<�K<�KA�KB�K�$S�%S�%S�-S�5S�:S�=S�AS�FS�NS�WS�]S�\S�]S�]S�]S�]S�]S�bS�gS�lS�oS�mS�jS�hS�hS�`S�[S�XS�SS�VS&�S�}S�|S�}S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S�S       �S�S�S�S �S�S�S�S�S�~S�S��S��S�S�zS�yS�yS�}S�~S�}S�{S�wS�tS�tS�vS�zS�}S�Sl/Tq2Tu9Ty?TBT�LT�TT�YT�XT�ST�QT�[T       �[T�eT�hT�iT�eT�`TaT`TcTcThT$hT-qT0yT7{T=�TA�Tf�Rh�Rn�Rs�Rw�R}�R��R��R��R��R��R��R��R��R�S�S�S�S�S�S�S�!S�!S�S�S�!S�!S�S�S�S�S� S       SSS S%S&YS_SdSjSnS�}S�S��S��S�}S�{S�uS�sS�pS�iS�iS�hS�fS�iS�lS�lS�<R�<R�9R�8R�<R�<R�BR�HR�JR�MR&UR_ReReR`R_R[RYR#_R*cR.dR.kR
                   6166: .kR/yR5RA�RK�RN�RT�RX�R_�Rf�R    SbSUeS[hS`nSgqSppSxnS�oS�sS�lS�jS�gS�hS�iS�cS�YS�SS�OS�HS�AS�=S�;S�8S�sS�vS�vS�yS�S��S��S��S�}S�}S�S�}S�Q��Q��Q��Q�RR�R�!R�'R�3R�:R�<R�7R�6R�;R�:R�5R�9R�;R�;R�>R�<R�8S�5S�.S�)S�$S%S*
                   6167: S1S5S7S4 S4%S6)S4/S43S7?S=ISCRSJVSMZSO`SSbS�VS�HS�CS�ES�LS�SS�YS&YS
                   6168: nSrSvSwSzSS�S&�S��S�~S�S �S"�S"�S+�S6�S?�SCTHTPT[Te#Th+Tl/T��R��R�*S�+S�5S�BS�DS�MS�PS�XS�]S��R��R��R��R��R��R�$S� S�S�S��R��Rd�QC�QC�Q?�Q8�Q6�Qq�Qf�Qd�Q6�Q3�Q'�Q{RtRkRYR(?R,<R7(R6!R:R:R:R@�QA�QC�Qd�Qd�Qb�QW�QU�QP�QLRGRFRB(RA5RB@RJ^RCpRDuRB}RB�RB�RRR{R�S�S�S�S�/S�*S�S�S�S�S�S
                   6169: #7S!1S2S#S"S,S(S,S&+S�/S&�R�R�R�R�R%�R-�R4�R7�R8�R:�R@�R�S��RM�RD�RC�RD�R<S7�R4S4S3S1
S26S.8S(8S#7S��R��R��R��R��R��R��R��R��R��R��R��R��R��R��R��R��R��R&�R{R{R&xR�tR�pR�pR�AR�AR�>R�2R�*R�.R�+R�'R�"R�R�Q&�Q/�Q1�Q6�Q�S�/S�/S�FS�FS��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S�wS�tS�sS�S�S�S�S�S�S� S�#S�!S�"S� S�S�sS�S��R��R��R��R��R��R��R�&S�    S�S�S��R��R��R��R��R��R��R��R��R��R��R��R�S�S�S�"S�.S�>S�CS�VS��Q��Q��Q��Q��Q��Q�R�!R�/R�5R�IR�MR�RR�^R�iR�qR��Rw�Rv�Rh�Rf�Rf�Rc�Rg�RD�RB�R��Q��QzR�Q��Q�Q�QR RRRR$R+R2"R<*R@-R@-RmR�GR�FR�GR�=R�FR�?R�8R�7R�/R�,R�%R�R�R{RzRmRiR�MR�7R�7R�DR�GR�GR��S��S��S��S��S��S$�S�S�S�S�S�S�S��S#7S$�Se{Qd�Qd�Q^�QH�QG�Q8�Q)�QzRz�Qt�Qm�Qi�Qd�Q
                   6170: ��S��S��S��S��S��S��S��S��S�S��S��S��S��S��S��S��S��S��S��S��S
                   6171: \�S^�Sb�SmuSrwSutSvqSyrS|uSrS
                   6172: �S|�Sy�Sv�Su�Sq�Si�Sc�Sb�S\�SrS�sS�vS�vS�sSA�Q8�Q/�Q�Q�Q�Q�Q�Q�Q�Q�Qp�Q^�QZ�QZ�QX�QV�QW�QW�QURP
RORK"RD*R@-R�~S��S�S�S�S �S�S
                   6173: �R�R�R�R�Rs�Qj�Qc�Q`�QZ�Q��Q��Q��Q��Q��Q��Q��Q�R�
                   6174: R�R�R�R�R�R
                   6175: l/Tq-TrTvTw�S|�S|�S�S�S�S$�S*�S0�S7�S9�S>�SC�S2�R/�R)�R)�R"�R�RsRmRR�RM�RI�RH�RG�RD�R>�R>�R7�R2�R�R�R�LR~|RuyRj�Rj�RU�RR�R�GR�MR�QR�RR�NR�LR�QR�qR�qR�tR�{R�}R��R��R��R��R��R��R��R        ��R��R��R��R&�R�R
                   6176: �R�R�R�R�R�R �R&�Rf�Rd�Q&�R)�R*�R*�R(S%S&YSOSTSSS 7S1DS=CSBASO�SK�SD�S;�S5�S/�S+{S&}S%wSoSlSnS\�SW�SS�SO�SBASFCSTGSULSYJS\QS\QS`QSaUSeXShVSlYSlYSy^S}iS|nSrS��R��R��R��R��R�R�lR�RR�CR�R��Q��Q  ��Q��Q�'R�7R�;R�MR�VR�zR��R
                   6177: ��R��R��R��R��R��R��R��R��R��R��Q��Qh�Rf�R��R��R��R��Rl�Rl�Rl�Rh�R��R��R��R��R��R��Q��Q��Q��Q��Q��Q�R  |RwRwRsRiR]RYRWRKR
GRBR%R$R�Q�Q&�R�R��R��R��R�R
                   6178: �R
�R�R�R�R�R�R�R�R�R�R�RR �R�R�R�R�R��R��R�S�S�S�Sh�Ri�R)�R#�R �Ri�Rf�Rb�R^�RY�RY�RR�RL�RF�R@�R<�R7�R3�R/�R)�R
                   6179: 2�R2�R1�R7�R5�R/�R,�R(�R)�R+�R+�R&�R�}S�tS�lS
��R��R��R��R��R��R�|R�rR�nR�mR�rR�rR�pR�<R�7R�3R�$R�R�R�R�R��Q��Q��Q|OS�LS�KS�DS�>S�8SjDSmHSpISqKSuJS|OSSbS[bS[VS_TS_ESfESjDSjDShASa>S]2SV/SKSESBS<�R;�R3�R3�R/�R+�RR�RT�RY�RV�RW�RX�RT�RU�R\�Ra�Rj�Rk�Rq�Rs�Rw�R|�R|�R|�R�R��R��R��R��R��R        �R�R��R��R��R��R��R��R��R��Q�Q �R�R�RG�RESESFSD)S>0S?6SC:SBAS�R�AR�S�S� S�SS��Rw�Rs�Rn�Rl�Rp�Ro�Rr�Rp�Rl�Ri�R��R��R��R��R��R��R��R��R��R��R��R��/��/��/��/��/��/�/z�/v�/s�/j�/d�/\�/Z�/Z�/[�/d�/5�/0�/,�/*�/&�/$�/!�/ �/G8.C8.@4.>3.:8./;.*:.%6.*��/��/
 �/6 \/W :/[ 6/] 0/] */[ $/Y /Y /V /E /9 /4 
/. �./ �.6 �.9 �.9 �.? �.A �.? �.@ �.I �.J �.L �.J �.F x.4 \.- R.# J.  F. >. 8.
 5.�4.|5.V3.Q3.L5.G8.��/��/��/��/��/UZ.U].Q_.F\.De.De.>e.:l.?m.Ek.Js.
                   6180: Js.No.Rs.Pz.U~.Y�.Y�.W�.R�.P�.P�.R�.W�.X�.V�.Q�.M�.M�.M�.G�.G�.I�.K�.P�.U�.U�.S�.M�.H�.F�.E�.D�.?�.:�.6�.3�.1�.,�.,�.0�.0�.-�.-�.5�.6�.7�.7�.9�.<�.=�.=�.B�.E�.D�.B�.D�.G�.K�.L�.        L�.L�.G�.H�.M�.U�.[�.`�.b�.-/%/"/// / //       / /&/&/'/&'/�+/       �+/�0/�5/�8/�</�>/�8/�7/�>/�>/�D/�D/�I/�K/�O/L/M/P/P/S/�U/�Z/�\/�^/�b/�d/�f/�i/�j/�v/�u/�x/�x/�}/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/b�.b�.Q�.N�.N&/K/H/D/?/7     /3
                   6181: /-/��-��-��-w�-s�-r�-n�-q�-p�-t�-x�-z�-z�-y�-s�-m�-��-��-��-��-��-��-��-��-��-��-��-��-��-��-m�-i�-j�-k�-p�-q�-%%6.$2.$-.&'. #...    .�-�-�-   �-�-&..�.��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-       q�-p.k.l.n
.o.k.c.^.^.].`!.`%.Y-.Z0.\3.c3.d5.b:.b?.cB._D.\G.WF.RH.RH.NL.JL.IO.IO.NT.OY.R[.UZ.�/�/!�/%�/��.��.��.��.T�.S�.�.�.�.�.`.��/��.��.��/��/`.%6.��/��/��/��/��/��/��/��/��/��/��/f�/e�/f�/k�/k�/x�/x�/��/�j.��.��.��.��.��.��.��.��.��.|�.�.z�.u�.u�.x�.x�.x�.v�.s�.o�.l�.j�.g�.b�.UZ.g^.h\.w`.w`.we.�n.�^.�j.�/}/ /*�/2~/0h/>c/�/�/�/�/�/
                   6182: |Z/]/{y/xy/tv/rr/np/hr/ft/i�/i�/j�/j�/e�/g�/j�/k�/l�/l�/m�/k�/>c/RZ/RR/`M/bT/qR/r[/r[/wY/|Z/;T/:Y/8Z/5X/0Z/-X/*T/(P/&O/%J/%G/!D/A/A/=/</?/  A/C/�D/-///./-/@:/9H/>P/;T/       �/�/�/�/�/�/&�/��/��/;T/>c/��.)�."//&//�.��.��.��.�H/�H/:/:/�//r*/y�.{�.x�.�j.�X.`.
�/�/�/�/�/��/��/�~/�|/�w/�a/�b/�H/��/��/��/Y�/Y�/Fy/E�/I�/G�/B�/:�/7�/7�/5�/3�/3�/4�/7�/7�/6�/2�/0�//�//�/(�/%�/$�/"�/!�/"�/"�/!�/�/�/�/|Z/}T/�S/�O/�G/~D/:/�1�1�1
�1�1�1�1
�1       �1�1 2            2222�2�2� 2�'2�42�:2-V1*Y1(Y1%X1#Z1#Z1"]1$e1#k1!s1!s1!|1#�1#�1#�1!�1!�1"�1!�1 �1�1(�1(�1!�1�1�1�1�10�0.1+1*1,%1,)1),1)01+41,91(;1(@1%G1$K1%O1-V1d�/f�/h�/g�/f�/g�/h�/f�/b�/d�/b�/a�/b�/a0`0Y
                   6183: 0U0S-0[-0b*0l+0p(0r'0t*0u/00|0x
0t&0s�/u�/y�/|�/�/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/bH0`L0\N0\R0^U0^Y0Ya0Va0Q`0Pa0Qg0Qg0Ng0Li0Ks0Sv0R{0$2020000%0000/50/:0-<0*A0)E0*H0-J00J02I01F00A06<0@30F)0G%0F$0B%0B$0B!0C0A0:08080:0=0=        0:08 05     0208L02M00P0-P0'K0 H0I0B0@0@07040
                   6184: 3060>0M0M0&R0�T0�S0�O0�O0�Q0�]0�]0�c0�g0�g0�h0�i0�h0�l0�l0�p0�p0 �/�/�/ �/!�/"�/$�/%�/&�/'�/'�/$�/$�/%�/(�/+�/,�/-�/1�/5�/5�/7�/7�/5�/�n0�l0�f0�a0�[0u/0v30u80q<0h@0eC0bH0�[0�Y0�X0�V0�R0�M0�C0�90�80�90�70�-0�*0�)0�%0�%0�'0�*0�+0�/0�10�40�20�-0�*0�#0�0�0�00�p0�p0�o0�p0�o0�n0��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/�L0�J0�I0�H0�G0�D0�>0�-0�)0�(0�)030    70
6020! 0"0   �u0�o0�j0�d0�]0�Z0�W0�R0�L0 "0$0%0)0,0003�/7&0<0A�/D�/F�/J�/T�/V�/Y�/c�/i�/w�/y�/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/�0
�0�0�0�0�0�0x#0n&0h+0b-0^.0\30`:0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0�|0�u0`:0Z=0X<0U90R90L@0L@08L0�e2�i2�o2�t2�t2�v2�y2�}2��2��2��2��2��2��2��2��2��2��2�2�u2�w2�u2�r2�o2�l2�l2zl2tl2lp2at2Xu2Xu2Kw2?�2I�2K�2�R2�U2�T2�T2�S2�c2�c2�c2�a2�e2�N4�L4�H4�D4�A4�<4�b6�V6�<6�(6�$6�6�6�6�6&&6�5�5�y2�2�5�5�5�5�5 �5$�5(�50�58�5@�5G�5J�5K�5H�5L�5Q�5U�5[�5_�5��2��2��2��2��2�y2��3��3��3�4�4�4�&4��3��3��3��3��3��3�3�3�3�3       �3 �3�3�3�3&�3��3��3�4
�4�44        444
44$�3,�33�3:�3D�3�]2�a2�f2�j2�l2�t2�t2�u2�w2�x2�v2�r2�n2�j2
�/5�#5�
5�5��4~�4|�4|�4x�4|�4�4��4��4�2�2�2�#2�72�=2�B2�J2�I2�E2�C2�C2�@2�<2�92�82�82�92�32�'2�"2�2�2�k2�m2�n2�o2�t2�w2�x2�t2�p2�k2�h2�g2�h2�g2�h2�k2_�5a�5d�5e�5h�5k�5s�5|�5��5��5��5��5��5�~5�~5�v5�\5�R5�N5�>5�/5�<4�54�,4�)4�'4�%4�4�4�
4�4��3��3��3��3��3�B2�K2�S2�Z2�_2�d2�b2�]2�U2�O2�M2�M2�P2�V2�]2
                   6185: �j2�d2�`2�]2�Y2�V2�S2�R2�L2�J2��2�~2��2��2��2��2��2��2D�3H�3N�3S�3V�3^�3i�3}w3�T3�H3�23�(3�#3�3�3�3�&3��2��20�e1�i1�n1�s1�v1�y1�~1��1��1��1�z1�u1�t1�w1�o1�h1�m1�f1�c1�_1�\1�[1�X1�S1�Q1�M1�H1�E1�A1�<1�91�61�31�01�(1�1�1�1&
                   6186: 1&1&1�1�1�1�+1�A1�S1�w1�w1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1�2�2�2 �2�2�2�2�2�        2�2�2��1��1��1��1��1��1��1��1��1��1�{1�n1`1R1L1D1E1   I1
                   6187: R1U1[1`1�_1�e1
��4��4��4��4��4}{4�u4�t4�p4�c4�_4�S4�N4�:2�=2�?2�C2�H2�J2�R2��6��6�s6�b6
                   6188: R{0L|0H�0E�0M�0N�0L�0E�0A�0?�0?�0?�0@�0E�0O�0Y�0a�0f�0f�0f�0    f�0f�0c�0]�0X�0V�0K�0G�0A�0A�0?�0:�06�06�06�08�0>�0;�0     ;�07�02�0/�0-�0,�0)�0*�00�0�1��0��1�y1�2��1�y1�1
                   6189: H�1J2M    2K2T2^2c2f2i2j"2�1�1�1"�1,�1/�1
                   6190: /�11�18�1:�1>�1?�1A�1E�1G�1H�1j"2Q$2Q$24&24&2)'22#2C2C2�:2        ��1��1��1��1��1��1��1��1�1�1c�1
                   6191: X�1Z�1[�1\�1\�1a�1c�1b�1dn1Yf1c�1c�1Z�1V�1V�1V�1U�1R�1Q�1R�1T�1V�1V�1T�1T�1V�1W�1X�1Yf1[]1[]1_]1d^1hc1ke1pe1vh1~i1�j1�o1�n1�q1�q1�p1�n1�n1�n1�w1��1��1��1��1��1H�1L2O�1V�1X�1Z�1[�1_�1`�1c�1c�1��1�2��1��1�2j"2X�1I�1I�1?�1A�1=�19�1611�1.1)x1!s1-V1=_1@K1QP1Oc1Oc1Re1Td1Yf1o>1mB1mF1iH1eK1eP1]P1\U1\U1[]1d�0d1c1g*1h01g21o>1]�0d�00�08�0:�0=�0?�0?�0D�0]�0
                   6192: o>1tC1u:1x91x31�31�<1�<1�(1�(1�.1�n1�(1�.1��0��0�(1d�0s�0s�0��00u/0        �1
�1�1�1�1�1�1�1�1�1#�1     ��1��1��1��1��1��1��1��1��1
                   6193: ��1��1��1��1��1��1��1�1�1�1�2�2�2�2�2�2$�1�1�1�2#�1$�1�w0��0
bH0xR0xU0}Y0|j0�j0�m0�c0�e0�h0�h0�l0�q0�q0�w0{�0x�0w�0v�0q�0q�0l�0f�0R{0��0��0��0��0�0{�0&v0�t0�o0�n0�q0�l0�k0�g0
"�0�0�0�0�0
�0
�0
                   6194: }0
r0        q0u0t0&v0
8L0;T0<X0:j08o00t0/x00�0/�0,�0'�0#�0"�0"�0"�0�1��1��1��1��1��1��1��1��1��1��1�m1�k1�X1�Y1�V1�S1�O1�M1�M1�M1�K1F1!H1�K1�L1�K1�J1�I1�H1�B1�A1�F1F1D1
A1
>1;1>1A1B1F1!H1"j1#�1#�1"j1#�1�?1�Q1�S1�\1�^1�1��1��1��1��1��1��1       ��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1�.1�.1�81�91�D1�B1�?1�?1�;1�:1�;1�:1�<1�<1�;1�G1�G1�G1�I1�K1��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0�0�~0�{0�y0�u0�p0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��011�0�0�0�0�0��0��0�0&�0�0&�0��0��0��0��0��0"�0!�0�0�0�0�01�w0�X0�Y0�Z0�[0�n0�s0�{0�}0��0��0��0��0��0��0��0��0��0��0��01!H111��0��00
0
                   6195: 00�0&�/��/�/��/��/��/��/��/��/T�/Q�/�/!�/%�/5�/B�/F�/T�/Q�/M�/H�/G�/G�/>�/&�/&�/0��/��/�/�/�/0000!0$0'02030I0O0Q0P0
                   6196: O0D0�60�90�80�>0�>0�;0�D0�D0�E0�E0�B0��/��/�B0�@0�:0�60�10�-0�*0�*0�+0�$0�"0�0�0�      0�0� 0�0��/T�/U�/Z�/\�/^�/`�/f�/�L0�A0�F0�H0�H0�D0�A0�?0�>0�&0n0k0c�/_�/_�/[�/[�/Q�/��/��/��/��/��/��/��/ ��/��/��/��/��/��/��/��/��/��/��/��/��/��/�&0�&00   0"0�d0�Z0�O0�I0�B03k0�d0�u03k0�d0�c0�a0�a0hG0fE0c@0`:0�a0�b0�d0�b0�\0�P0}J0{H0tH0mI0hG0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��03k03o0,o0+w0+w0+�0,�0+�0(�0"�0�0�0�0!�0%�0%�0
%�0!�0�0�0�0�0�0�0�0�0�0��0��0��0��0��0��0��0��0��0��0�}0�{0�s0�q0�l0�i0�a01,1,1G1H!1L!1Q 1T!1T!1Z 1^!1a 1e1g1g1h71q41mR1mR1mX1iY1id1id1dc1^f1Zh1Uf1Oi1Oi1Kn1Gr1As1:w1-s1(n1"j1E�0;�0<�06�05�0.�0-�0,�0-�0)�0%�0��0��0��0��0��0��0       ��0��0o�0h�0e�0a�0Y�0V�0N�0N�0I�0E�0�1��0��0��0��0 �S1�F1�91�.1�)1�,1�'1�#1�1;�0:�0916121.1$11E�0C�0>�0;�0111!1&1)1�(1�*1�*1�.1�61�61�81�81�<1�<1�@1�H1�K1�L1�N1�S1S�0T�0Z�0X�0[�0[�0^�0\�0l�0f�0u1r1
"�0&�0(�0'�0*�0+�0.�02�03�0D�0G�0S�0S�0r1p 1m1g1S�0��0��0��0
                   6197: �1�1�1�1� 1�&1�#1}"1} 1r1hG0hM0gO0eO0cO0aQ0        aQ0`S0aV0bX0`b0_m0_t0ik0��0xe1id1�S1�X1�Y1�^1�_1�c1xe1��2��2��2��2��2��2��2�2�z2�t2

                   6198: �2�2��2��2��2��2��2��2��2��2��2��2��2�e2�d2�b2
                   6199: �2�d2�b2[�2e�2f�2f�2b�2R�2[�2b�2_�2]�2\3Y3V
                   6200: 3T3O3��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2
                   6201: ��2��2��2��2��2��2��2��2��2��2��2��2��2��2�3�3�3��2��2��2
                   6202: ��2��2��2��2�3�3�3�3�3�3��2��2��2��2        ��2��2��2��2��2��2��2��2��2�3�3�3�"3�-3�63�E3
�E3�@3�;3�73�13�.3�.3�-3�*3�$3�3�3�3u�2v�2x�2{�2��2��2��2��2[�2d�2f�2f�2g�2m�2s�2u�2��2��2��2��2�3~3{3x     3t3p3n�2b�2u�2u�2w�2y�2��2��2��2     ��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2R�2d�2d�2c�2b�2]�2Y�2W�2\�2]�2]�2X�2V�2X|2Xu2��2��2��2��2��2��2��2��2��2��2��2��2��2��2�2 ��2��2��2��2��2��2��2��2��2�2��2��2��2��2��2��2��2��2��2��2��2�&3�3�3�3�3�2�2�2�2
                   6203: �2�2��2��2��2��2��2��2��23��2�24�2      4�2/�2*&3#3333   33��2��2��2��2�F3�E33�&3�.3�73�93�83
�83�63�23�.3�.3�33�63�93�@3�B3�D3�B3�E3�E3�F333��2�N2       �N2�L2J2I2
J2H2F2C2,;2,;2,A20C21G21I2-N2+T2+T2"�2"�2�2�2�2
                   6204: �2�2��2��2��2��2��2�c5�d5��4�5�5�65�75�5�5��4��4�75�c5�d5�R5�R5�5�R2�d2�k3��3��3��3��3��3��3�h3�j3�k3�k3�k3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�v3�v3�h3&�5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5�5&�5�c5�5��5��5�d5��5��5�3)�3)�3-4747!4R!4S'4a(4d&4l&4n$4y$4y$4}%4};4�<4UP4RQ4OR4IP4DR4@Q4<N47N4/P4*R4(Q4!Q4H4E4E4=4<4!4 4�3�N4]M4YN4UP4&�5�5�5�5�b6�a6�H6�H6��5�<4�<4�B4�E4�I4�I4�R4�R4�c4�y4�y4�y4�z4�34�14�24�.4�.4�.4�<4�t4�34�z4�t4!�3��3�k3�k3�k3�j3&U3%l3%m3!�3�h3�f3_3\3[3[3Z3&U3�j3�h3�h3�e3�g3�h3Le2N82O12S)2T"2U2W2\2]2^2_2�y2|r2|o2dl2cg2Le2_2c2c2j2w2�2�2�  2� 2�     2�&2�2�2�h2�D2�@2�#2�"2�2�N2�O2�P2�P2�O2�Q2�Q2�U2�Y2�\2�a2�e2�2�N2�e2�h2!�3,�3,�3)�3��3��3�3��3��2��2��2��2��2��2��2�3�3�3�3�3�"3�%3�&3�,3�53�53�83 �83�;3�C3�D3�O3�V3�]3�d3�j3��2��2��2�=3��2��2��2��2��2��2     �h3�`3�Y3�T3�Q3�N3�J3�A3�=3[m2Wo2Rq2Ls2Ft2@p2@p2Ih2Q$2     �h2�i2�l2�n2�i2�j2i2pi2dk2dk2[m2:~5a~5a~5a�5a�5`�5`�5`�5_�5a�5_�5`�5]�5\�5X�5T�5V�5Z�5]�5_�5��5+�5+�5:�5:~5Le2G�2�2�2�2��2��2��2��2��2��2��2��2��2��2�2�~2�~2�~2�2�2� 2� 2�     2�
                   6205: 2�
2�2&222
2!
                   6206: 2(&2/�1/�15�1?�1I�1R�1R�1Y2_2�2�2��2��2��2�2�2�2}�2|�2x�2w�2w�2{�2y�2��2��2r�2m�2j�2h�2h�2f�2c�2`�2Y�2Y�2N�2N�2N�2}�29'5?'5@$5F#5G 5N5N5V5W&5f5g05h~5a~5g05gA5hB5h~5:~5::59959'5��2��2��2��2��2��2��2��2��2��2��2�z2�w2�v2�s2�e2
                   6207: 3��2�3��2�2
                   6208: 3}�2��2��2��2�~2@3�739�2S�2V�2Y�2        �73�23�93�;3�>3?3}>3y13ZK3ZK3=H3<I3<I39I39=3@733353?39�2
                   6209: 313@3�3%p3
��3��3��3��3��3��3��3�3&�3&y3      z3
x3�3��3��3��3��3%p3D�3�]2�_2�a2�f2�i2�h2�j2��3��3�73��3��3@3%p3F�4F�4E�4E5J5L5N5N5       �4�4�4(�4)�46�47�4=�4F�4��4��4��4�4�49'5(525   15656585�75:M3:n3Fo3F�3W�3X�3]�3^�3e�3h�3m�3n�3m�3l�3l�3q�3n�3k�3i�3f�3a�3a�3l�3m�3p�3q�3q�3&U3+R31O34N3:M3F�4F�4V�4W�4�/5g05W�4��49�23�2I�2N�2.�2I�23�20�2)�2,�2.�2
                   6210: �J2�D2�A2�A2�A2�C2�D2�B2�C2�E2�E2�H2�B2�2�2�2h~5�~5��3��3��3��3l�3:M3<L3<I3q�3r�3t�3t�3t�3w�3{�3�3��3�3z�3v�3v�3v�3z�3y�3w�3t4t4w4y4y$4'}4.~40~45|4:|4;y4>x4Tx4�4�4Tx4S�4X�4X�4W�4W�4�4�4�4�4$�4'�4'}4-n24l2:k2=m2@p2�2-n2[�2U�2P�2L�2K�2?�2[m2Y}2\|2^2^2\�2]�2^�2Y�2]�2]�2c�2a�2]�2[�2?�2<�28�24�2��2�2�2)�2-�23�2-n24&2G52E52B72?:2<:25:21:2,;2G�1H2I2I2J2H2G52$�1,�12�15�1?�1G�1    �b2
                   6211: a2a2d2l2m2"m2%l2'm2'm2*n2-n2
                   6212: I�2I|2?l2Bd2;c28b24_22Z21X2+T2�.2�32�:2�;2�;2�;2�=2�=2�>2�@2�B2�G2{J2zL2{O2}R2}V2~X2�V2�W2�_2�_2��2G52M32R/2\*2b)2f+2n+2v+2/2�.2�.2    .�2*�2'�2%�2�2!�2�2�2"�2K4&o4��4��4�y4�<4�I4�H4�H4�I4�I4K4&o4�n4�m4�y4�z4�~4�4��4K494>4C4E4UP4Tx4'}4z4w4s4s4t4t4&o4��4��4��4��4�4�4�5��4��4�z4[�2c�2v�2��2��2
                   6213: \-3X)3O%3K"3H3F3C3@        3@3?�2     �=3�83�63}63x/3u+3p-3_.3\-3 ��3�4�4�4��3��3�4�4�4�4�4�4�4�"4�"4�.4�34��3��3��3�.2�02�12�42�62�52�32�.2�+2�(2�&2�2�2�2�2�2�2�2�2�     2G�1P�1^�1d�1m�1r�1��1��1��1��1��1��1��1��1��1��1��1��1�&2�2�2�2�2�2�2�2�2Q�4N�4K�4J�4H�4F�4H�4J�4N�4Q�4
                   6214: �6t�6r~6q|6p6o�6n�6l�6hx6gr6gr6ne6pg6tf6xe6�d6�c6�]6�Y6�W6�W6�X6�Z6�_6�b6�b6�a6�^6�W6�V6U6�V6�&6�6�
                   6215: 6�6�6�#6�&6�,6�.6�06�26�56�:6�?6�D6�G6�G6�D6�B6�B6�E6�E6�F6�M6�M6�N6&O6Q6      R6U6�+6�&6�6�&6�&6�&6�V6�Q6�N6�F6�C6�C6�C6�?6�>6�?6�>6�86�26�+6   w_5zy5q|5v�5y�5z�5|�5~�5~�5{�5w�5v�5o�5PM5US5YH5aE5aE5mY5w[5o�5R�5R�5^�3b�3g�3k�3n�3q�3}�3^�3�4��3��3}�3�3��3q�3�3��3��3��3��3��3��3��3��3��3��3��3��3�4�4�4�4�l5�k5�u5�z5�|5�5��5��5��5��5��5��5��5~�5�B5�l5
                   6216: w[5�P5�B5�D5�F5�I5�G5�D5�G5�K5�K5�O5�M5�M5�L5�K5�U5�U5�M5�L5�B5Zk4Yb4Yb4T�3e�3��3�t4Zk4T�3Z�3`�3b�3e�3e�3�]3�g3�v3�v3^$3�F3�]3^$3\!3[3Y3U3O3U6U6�l5��5��5��5��5��5w�5z�5t�5p�5o�5��5w�5X5@5@55+5G,5\x5;w5:[5-[5,X5X5_T5^w5\x5G,5G65_T5��3��3��3
�3  �3
                   6217: �3
                   6218: �3    �3�3�3&�3��3��3��3��3��3�w3�z3��3�y3��3��3��3�3�3�3�3��3�w3��3��3��3��385 C5&@5�<5�=5�;5�;5�?5�?5�@5�A5�?5�D5�D5�K5�L5�M5�M5�N5
                   6219: �N5�S5�\5�`5�a5�c5�h5�m5�m5�l5��4��4��4��4&�4�4        �4&�4�4�455     5555 5#5$5)5/52585�B5�%5�
5�5��4��4��4��4��4��4��4��4��4��4Ki3Nj3Ra3^�3Y�3N�3Ra3Sc3Rg3Wm3Uq3Zt3]r3^t3^t3_y3`{3a~3d~3k�3l�3o�3p�3p�3q�3q�3-6?6?!67#66/6�&6-6
6/6./6.96,:6,F6$G6#K6L6N6O6R6T6U685?5@5X5 �5�5�5�5�5��5��5�5�5��5��4�4       �4�4�4�4�4�4$�4'�4+�4/�41�43�47�4>�4B�4C�4G�4G�4G,5��4��4��3��3��3�344)4!"4:4
A4
A4<4�>4�54�34�34�54�*4�-4�-4�*4�*4�)4�+4�(4�4�4�4�4�&4��3��3��3)4)4!"4�H6��6J�6L�6M�6N�6N�6P�6P}6Q}6R{6Tz6Tx6Vx6Wt6Xq6Zq6[m6^l6^d6]c6^G6^G6�G6�H6mf4rm4vp4xq4|p4~q4e�4a�4^�4X�4N�4C�4~q4{�4z�4x�4w�4w�4z�4w�4u�4u�4w�4y�4|�4~�4�4~�4y�4y�4s�4n�4l�4h�4e�4
Q�4`�4a{4b{4bs4dt4gt4is4jo4ln4kk4li4mf4\N4aJ4`F4e>4h64h64�H4�H4�04   �L4�X4�\4�^4�b4�l4�o4�r4�u4 �u4�|4�z4�{4�z4�u4�v4�x4��4��4��4��4�}4�x4�t4�q4~q4�04�L4mf4h]4bU4\N4_�5?�5@�5B�5B�5>�5>�50�5 0�50�51�51�53�54�54�5!�5�5\x5]�5`�5_�5�H6�H6G6L6
                   6220: [s6Yp6Vo6To6Sq6Sv6Pu6Nu6Kt6Ix6Ix6I{6H}6E6F�6G�6H�6G�6L6N6T6Y%6^.6_26^36\56\86Z=6W>6TI6UN6XS6YV6\]6\_6[s6-6.�5-�50�5-�5/�50�5^56F56E76A76A/66/6_�5^56O5K5s�4s�4j5Z5O5u�4s�4e�4g�4k�4l�4l�4l�4q�4q�4s�4u�4O5V5aE5s�4�5�5�
5�5�5�5�5�5�5�5�5�
5�5�5�5��4��4��4��4��4��4��4��4��4��4��4��4��4��5�&6"�+6�*6�*6�'6�#6� 6�6�6�6�6�6�6�6�6�6�6�6�6�6�    6�6�6��5��5��5��5��5��5��5��5��5��5��5��5��4��4��4��4��4��4��4��4�5u�4}�4��4��4��4��4��4��4��4��4��4��4��4��4��4�~4�t4
                   6221: �t4�w4�z4�4��4��4��4��4��4��4=�3:�37�35�34�31�3/�3,�3+�3)�3#�3 �3�3�3�3�3�3�3�3�3�3|3dt3c�3|3!v3$r3&p3dt3c�3X�3V�3N�3N�3L�3=�3}�3v�3r4o4k+4h64\N4WJ4QD4O?4O84N.4�4�04�3�v3�]3�h3�e3�e3�n3
                   6222: �n3�v3�}3�3��3��3��3��3��3��3��3��3��3��3�3�3��3��3��344)4=�39�37�344R4N4
F4
A4
                   6223: k4i4e4_4[4R4O�4G�4!"4%24&24(=4:V4Yb4Zk4[l4T}4Q�4O�4��4�4�4�4�4|4
w4
                   6224: k4_T5�R5
                   6225: ��5��5��5��5��5��5��5��5��5��5��5��5_�5��4��4��4��4��4        �w3�j3�]3�U3�M3�L3�I3�D3�833(3       -30363;393e3e3|3BQ3FJ3IG3PP3VK3SE3UB3O53R23S23^$3R4
S4R4�X4�X4�Z4�[4�[4�Z4�Q4�F4�>4�;4�34�04�*4�t4�u4�L4�H4�B4�4�4       �`4�\4�[4�]4�c4�d4�e4�e4�f4�f4�o4�t4
                   6226: 
                   6227: k4k4j4�g4�e4�f4�h4�h4�f4�`4\-3S53ED3AJ3?N3>O39P37U35Y35_36b34c31b3._3,[3e3O�4��4�`4�g4�o4�r4�v4�|4��4��4��4��4��4��4w�5s�5j�5f�5d�5b�5[�5[6Y6V6L644T�3dt3�v3e�3d�3c�3^56^G6      [s6^w6ax6bv6bt6bq6dp6ep6gr6x�0t�0n�0l�0l�0j�0f�0e�0e�0g�0g�0g�0e�0h�0m�0q�0{�0x�0j�0l�0x�0z�0{�0z�0y�0u�0t�0s�0]�0^�0b�0f�0h�0j�0m�0o�0o�0n�0l�0j�0j�0f�0 �1 �14�16�12�1-�1-�1/�1��1�1�2��1��1��1��1��1��1��1�1
�1
�1 �1��1��1��1��1��1��1��1��1��1��1��1��1��1     #�1C�1E�1e�1e�1t�1t�1~�1~�1~�1��1��1;�0L1N1R1T1]1]1j�0p1}�0�
1fW1X_1$U1!I1!811�
1z1�*1w)1y01y01^D1fW1X_1H91=A18E15I11J1/K1$U1l�1q�1z�1}�1}�1z�1n�1i�1g�1e�1c2O�1X�1Y�1_�1b�1b�1l�1 �11�12�1>�1>�1E�1E�1O�1�1�1�&1�1�1�
1
                   6228: ��1��1��1��1��1��1��1��1��1��1��1��1��1}�1
l�1o�1q�1r�1u�1{�1y�1|�1�1�1��1��1�|1�|1�t1�t1�v1�y1fW1gV1oj1~`1�|1O�1E�1R�1Ki1X_1$U1&^1b1f1y1z1~1�1�1�1�1��1�{1�z1�Y1�S1�<1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1xe1{w1y�1~�1
                   6229: ��;��;��;��;��;��;��;}�;w�;u�;    ��;��;��;��;��;��;��;��;��;u�;q�;l�;g�;d�;b�;b�;bw;qD;v:;z1;bw;dp;h^;lQ;qD;     ��8��8��8��8~�8y�8s�8f�8]�8]�8Z�8!�g;�c;�[;�T;�L;�I;�H;�C;�9;�2;�);�!;�;�;�;�;�
                   6230: ;�&;��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:&�:�:�:�:�:�:�:�:$�:)�:��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8�=:�8:�4:�2:�4:�5:�8�8�8
                   6231: �8           99&
99&9� 9�*9�19�49�59& I<�L<�L<�O<�O<�N<�Q<�O<�J<�E<�?<�?<�6<�,<& "< < <& <�<�!<�(<�-<�+<�(<�#<�<�<�<�<
�59�79�:9�>9�79�79�19�,9�"9�9�9�9�9[�:c�:h�:q�:v�:y�:|�:�:��:��:��:z1;(;�";�;�;�;� ;�;��:��:��:��:
                   6232: �5:�5:�0:�(:�":�:�:�:�
:�:
                   6233: 8�97�92�9,�9#�9!�9�9!z9 u9p9o9}p9zl9ye9y^9vX9qO9nN9iM9eJ9cF9`?9_:9\69X69W99V?9WD9VJ9,�:�:�:�:��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�v9�s9�l9�m9�h9�k9o92�:0�:+�:*;$;"
;;;;;;!;#;';*;4;7        ;>;E;H;K;L;K;A;B;B;F';F';E*;;*;41;41;-7;+A;(L;-K;1K;7L;7L;?M;LE;NF;NJ;GR;GR;AU;9^;2\;.];+_;+_;)f; q;y;};�:��9��9��9��9��9��9��9��9&:       ::::�9"�9&�9'�9+�90�92�92�91�90�91�94�97�98�98�9�`=�T=�K=�F=
�_:�\:�Z:�V:�R:�O:�M:�I:�E:�F:�G:�G:�K:       �K:�P:�S:�S:�R:�M:�G:�B:�=:. #<* '<& '<% )<% )<! )< 2< 9< =< <<
                   6234:  @<
                   6235:  @< C< G<
                   6236:  I<
                   6237:  L< J< J<& I<
 �< �< �< �< �< �<$ �<& �<& <- x<2 q<1 l<2 c<4 ^<8 X<> S<��8��8��8��8��8��8��8��8�8�8
                   6238: �8�8�8�8�8t8&k8�e8�b8�`8�Z8�S8�Q8�P8Z�8S�8E�8?�8<�88�86�80�8.�8/�8.�8&�8!�8�8> S<H J<M C<P ;<S .<X #<[ <\ 
<\ �;] �;^ �;\ �;_ �;[ �;T �;R �;P �;P �;Q �;O �;N �;M �;J �;G �;D �;D �;: 
                   6239: <3 <1 <. #<�\:�]:�Z:�^:�^:�`:�a:�_:��:��:��:��:��:��:��:��:��:��:��:��:�{:�v:�i:�b:�\:�U:�O:�O:�P:�Y:�Y:�U:�U:�\:��:��:�z:�m:�a:�V:�M:�@:�1:�):�:VJ9UL9VP9XS9ZV9Y]9Xc9Xh9Zs9\z9[~9Z�9[�9]�9\�9[�9[�9Y�9Z�9`�9`�9c�9a�9[�9W�9W�9T�9P�9M�9F�9C�9C�9D�9F�9H�9K�9O�9Q�9S�9X�9_�9a�9d:e:g:h!:k*:k1:l8:j?:lJ:eU:]_:Yf:Wl:Xx:Y�:W�:W�:f8o8v8v8
s8
                   6240: s8u8&~8&~8��8��8�8�:&�:3�:?�:H�:U�:[�:$�<�<��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�};�v;�o;�l;�g;
                   6241: ��:��:��:�:
                   6242: �:
�:�:�:�:�:};�;��;��;��;��;��;��;��8��8��8��8��8��8��8��8��8��8��8��8|�8w�8f�:k�:z�:��:��:��:
                   6243: ��:��:��:��:��:��:��:��:��:��:�F=�@=�7=�.=�#=�=�=�=�=��<��<��<��<��< �< �< �< �< �< �<
 �<)�:.�:7�:F�:J�:Y�:f�:p9j9c9^9Y9W9S9L9B9:939�9�9�9�9��8��8��8��8��8��8��8
                   6244: p>8d=8X78R58J:8D?8=B80C8%C8E8E8J8R8U8V8      [8_8]8Y8Y8^8b8b8f8�P8�Q8�P8�L8�H8�E8�E8�C8uB8r?8p>8
W�:V�:R�:V�:W�:V�:S�:O�:M�:I�:F�:A�:<�:<�:8�:7�:6�:2�:       �9�
                   6245: 9�9��8��8��8��8��8��8��:��:��:��:�8�8��8��8��8��8��8��8��8��8��8��8��8��8��8��8� a=� [=� U=� M=� A=� 7=� 1=� &=� =� =� =� !=� 4=� @=� T=�:7�.7�7�7��6��6L�7J�7J�7K�7M�7P�7]�7d�7@8Fx8Gp8Gi8Ge8Ia8I]8BW89?8998?)8@%8d�7sx7yt7{i7U7�K7�@7�:7@%8A8F8M�7L�7
w�8r�8i�8k�8m�8n�8n�8q�8q�8l�8g�8e�8c�8c�8b�8_�8Y�8U�8R�8R�8T}8\|8\t8Ys8Uq8Ug8Se8Pg8Nm8J�8F�8F�8D�8?�8A�8@8��6��6��6��6��6��6��6��6��6��6��6��6��6��6u�;o&<h&<e<        e<b<_<[<^�;^�;i�;o�;p�;�^;�d;�f;�i;�n;�r;�s;�};��;��;{�;s�;.s�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�~;�y;�y;�u;�p;�j;�k;�c;�e;�];�^;�\;�X;�T;�M;�J;�I;�K;�R;�W;�X;�W;�X;�^;�;�;�;�;��;s�;o�;h�;_�;T�;J�;A�;8�;p�;s�; 8�;1�;(�;!�;�;�;�;   �;�;�;��;��;��;��;��;��;��;��;��;��;s�;m�;f�;`�;\�;Y�;T�;J�;C�;;�;6�;��;��;��;��;��;��;��;��;�;z�;u�;��;��;��;��;��;��;x�;s�;6�;2�;-�;(�; �;�;�;��;��;��;��;��;��;��;��;��;��;��<�z<�z<�y<��<��<��<��<�y<��<[B=HB=H?=?=*�<[�<[�<[==�<   �<�<�< �<)�<*�<,�<+�<*�<?===[=[B=�%=�%=�%=�O=[Z=W`=��;�<�&<�O<�O<vP<vP<kP<jR<l�;m�;��;�/<��;r�;q�;i�;h�;h<�*<�*<�.<�/<��;�#<�#<�*<h<d<d�;V�;U�;E�;E�;E�;u�;rf<�f<�d<�d<bg<rf<b�<bg<��<q�<q�<b�<�d<�z<��<��<��<��<v�<N�<vd<v�<N�<O�<O�<V�<Uw<Yv<^w<vd<�/<r/<r/<r<h<��;��;��;�<�<�<�<�<�*<�*<�*<�P<�P<�O<��;��;�V=�N=�E=�E=�[=�Z=�N=�H=�F=�E=*<*<E-<Fg<Fg<f<f<*<*<E-<Z=C=C=?=��;�<��;��;��;��;�O=�N=rf<r/<�*<�d<*<�*<'�;&<<*<��;�;bg<Fg<E-<r/<�Z=�Z=�Z=Z=�"<�#<��;�"<b�<b�<[�<��<�<f<�<�<��<*�<�<��<��<
                   6246: ��<��<��<��<��<��<��<��<�=�=�=[=��<�f<�f<�d<�d<�P<��<��<v�<v�<~�<}=\=\=V=V=~�<}=�"<�5<�5<�y<vd<vP<��<~�<��<��<��<��<��<��<��<��<��<��<��<�=��<��<�<�<�<�<=�=��<��<
[Z=]X=]M=\E=[;=[7=\0=],=^(=`$=a =`=\=}=}+=�,=�N=��<�%=�%=�=�=��<��<��<��<�=�Z=
�E=�==�6=�.=�,=�&=�!=� =�=�=�=�=�=�=�=�=�        =�=��<��<��<��<�A=�A=�N=��<��<��<��<�=��<��<��<��<��9�:�:��9�:�:��9��9��9��9%�9$:�1:�1:$:$+:�1:�:$+:+:1:�1:!�9%�9��9!�9��9��9��;��;��;��;�`;�~;�~;��;�`;�`;��;�`;�`;�`;�D:�:�C:�D:�:�:�:�:�C:d�:d;8�:d�:d;7;��:��:��:��:�;�;��:��:��:�&;�;�;�;�$;�%;�";�#;�';�';�&;��:��:��:��:��:��:��:�;�;�;d�:j�:��:��:��:��:��:��:k;d;�;k;j�:��:R:$:R�9R:%�9@�9@�9R�9�D:�[:S[:R:{:�:�[:S[:R:{:@�:@g:Sh:{g:H�:@�:@g:Sh:z�:H�:zw:z�:{g:zw:<_;k_;k_;�`;[�;Y�;R�;H�;
�`;�b;�f;�o;x;|};u�;k�;h�;g�;c�;_�;[�;��:��:&�:&�:�:�:�:�:�:��:��:��:�:��:��:��:��:��:�C:�e:��:�[:��:��:��:��:�e:��:�C:�C:j�:j�:G:H:R:��:��:��:��:��:�e:�e:�C:�1:�1:�1:�e:w;y;};�;�;��;�;�~;     C;J;Q;!X;$\;&d;&k;$p;w;�C;C;C;C;�`;�a;�N;�N;�C;{:|�9�:�:|�9��9��9��9@�:�:�:)h:@g:��:�m:�m:m:h:)h:Sh:R:R:|:|:|(:|(:{g:'�;�;E�;'�;�;�;�;�;�;�;�;�;w;bw;qD;C;?�:P�:P�:S�:Y�:Z�:f�:f�:f�:z�:
                   6247: C;"<;#9;%,;(';0!;9;>;?;?�:z�:z1;��:j�:H�:G�:@�:@�:�:��:��:��:k;k_;)h:)T:%T:$+:�:C;�C;�;G:H�9H�9|�9?�:@�:z�:z�:z�:z�:|�9|:p�9|�9|�9R�9p�9�`;�`;�&;�`;[�;\�;_�;_�;�e:�m:�m:��;_�;��8�19Y19Z�8�19Y19yf;y;��:��:�g;yf;y;�;��:��:��:�S:)T:�x:�S:)T:)z:)z:)�:��:�x:�/9�/9�19�19��8�/9��9�:�:�5:�=:�7:�6:�6:�2:�/:�.:�+:
                   6248: �+:�):�(:�(:�+:�+:�):�&:� :��9��9��9��9��9�`9�L9�L9�59_9�`9�81919_9& I<& a<�a<�v<�v<�w<�w<�<�<�<�<�<�<�<�':�:�:)&:)&:)):�S:�':)):)T:�`9�a9�a9�a9�a9�M9�M9�&9�%9�9�9�9Z�:��:��:��:[�:Z�:z�:��:��:��:��:��9�':|�9��9�':|(:��9�:��9��9��9��9�':�':zw:�x:�x:��:��9��9��9��9��9��9�:�:��9��9��98�9��9��9�p9��9��9�p9p9�:�:    �:�:x:w�9h�9hm9\m9\J9VJ9��9�9�:��9�9::�:�9�9*�9)�9g�9f�9)�9+�9f�9*�9+�9g�9��9Y�9X�9��9��9��9Y�9X�9yf;y;Z;Y�;Y�;K�;K�;�;};2�:K�:L�:x�:y;�<P<Z�;��;�<,�;,�;K�;K�;Z�;
                   6249: P<O<L<H<E<B<><:<8<7        <7 <8<8<5�;2�;,�;��9)�9*�9)&:��9��9>�8y�8,59,9,9<9>�8x9x99i99i99,59y�8x9��9��9��9�a9_9�9�9�9n�<��<��<��<��<�1=�0=�E=�E=�F=�l=�O=�O=�H=�&={�<u�<s�<r�<n�<Y,:�+:�_:�a:��:Z�:Y,:��9��9��9��9��9��9��9f�9g�9��9��9��9r�9��9r�9r�9p�9r�9��<�w<. #<. 5<= 5<> S<
 �<��<��<��<��<��<��8�P8��8��8��8��9�]9�]9+^9+^9+�9f*:)):f�9f*:Y1919�<�<��<��<
^x<\s<\o<_j<`^<\Q<[G<ZA<W;<V,<U <S<P<j�<c�<b�<a�<^x<n�<j�<�:�:��9��9�:��9��9�[9�Z9�]9�[9�Z9�x:�':�x:�x:Y,:Y�9f*:�*:�V:�}:u}:�V:�}:u}:)z:�:�:�:��:��:�V:�V:U:U:�:?�8@�8>�8?�8@�8m�8m�8��8��8��8��8��8{�8{�8{�8y�8u9�9�9�F9�F9�[9r�9u19u19u9�9,9,59+^9�Z9�C9�9��:�:��:��:��:W�:?�8��8f8@h8@�8��8�8�:�:�:Z�:Z�;Y�;��:��:�V:�:�V:�V:�:�V:,�;&�;$�;!�;�;�;�;�;�;�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��9��9�c9�a9,::�9Y�9Y,:,:��8�9��8��8��8��8��8��8��8��8u9w�8�V:�V:��9�19��9��9�/9�p9�}:��:��:��:��:f�:f�:u�:u}:��:��:�9��8��8��8Y19X�9X�9�9,:U:g�9i99x9�9p>8m�8��8��8��8��8��8��9�m9�m9�Y9�Y9�09�09�09�09�09�09�D9�D9�Y9�Y9�Y9��9��9��9��9��9�8�8��7$838�48�"8�8&8$8��7�8&8�48�08�08�.8�+8�+8�"8�"8��7��7t;7L:7�:7t;7L:7K�6K�6��6��6��6��9��9�/9�09�C9�C9�/9��9��9��9��9��9��9�C9��9��9f`7?a7d#7f`7b7d7c7d#7L
7M
7M
7R7b7� 7�7�)7�(7�G7�h7�.7�.7�.7�*7�)7� 7� 7�G7�\7�]7�c7�c7�p7�p7�q7�g7�h7NK9H�8p�8s9t!9vH9H�8Z�8fI9NK9vH9fI9Z�8o�8p�8� 7�7�7�&7��6�7�7�%7�%7�G7�G7�G7��6��6��6��6�&7��6��6��6��6��6b�7b�7p�7o�7��7�8�8q8q8q8f 8f 8b�7o�7��7��7��7�f8�y8��8�|8�|8�|8�f8�f8�f8�y8�|8�}8��8��8��8��8��8��8��84~7B}7B{7F{7F~7Z}7Z}7[�7d�7L�74�74�7'�7'�7&�7&�7'�75�74~7��9��9i�9��9n9?n9?�9!�9"�9�9�9�9�9n9?�9@�9`�8^j8yh8�g8^j8yh8��8��8�g8��8��8��8��8��8s�8r�8`�8)z8*$8*$8@%8@8?{8)z8Y�8P�8P�8K�8`�8Z�8Y�8I�9J29J29b29b09u19r�9b�9b�9P�9O�9I�9t;7tJ7hK7gl7Zm7Z}74~74:74:7L:7f`7gs7mt7b�7<�7mt7o�7�09��809�09��8�8�809��8��8��8��8��8��8��8�/9�9��8��8��8��8��8��8��8��8��8��8��8d#7� 7�.7�h7}j7}s7mt7?19J29n909I�9?�909?19�8�8�8��7��7��7��7��7��7��7��7��7��7��7$8*$8�f8�48)z8"z8"z8�y8h7p�6v�6|�6��6��6��6��6��6��6��6�&7b7h7yh8v<8s<8q8�S8�V8�V8�S8�V8�g8�"8�.8�C8�S8�C9�C9�D9zE9{G9vH9p�8��8&88�7�7�7'�7'�7a�8c�8
                   6250: ?19?+9C!9J9O9R9V9\9a�8a�8Y�8Z�8
97�97�G7�G7�G7�6
97��6
                   6251: �6
                   6252: �6�6��8��8��8��8�|8�|8��8��8��8��8��8��8��8��7&�7��7��7��9��9��9fI9in9i�9�S8�S8�V8�V8�S8�S8�f8M�8N�8F�8E�8F�8F�8F�8a�8M�8��9��9�9��9��9�~7�G74~7�~7
974:7��9��9��9��9"�8"z8M�8"�8"�8�8��8��8�~7��7��7��7��7��7��7��7��7��7�p7��7��7��7��7��7H�6K�6�6H�6��6��6��6��6�V6��6��6�6��6��6��6��6��6��6��6��6�6��6��6�6�6U6�6H�6G�6I�6H�6G�6G�6G�6I�6I�6J�6J�6E�6F�6F�6C�6G�6G�6F�6I�6I�6F�6�6�6    �6
                   6253: �6
                   6254: �6�6I�6��6b�6��6��6b�6H�6�6=�=+I=&K="L=J=L=M=M=R=U=V=V=X=�V=�S=�T=�W=�W=�T=�S=�Q=�K=�D=�@=�?=�?=�<=�8=�5=�6=X=Z=]=�=�=*=+*=�=*=+*=+I=+"<)<8�;p�;)<*�;8�;8�;u�;u'<w*<f)<e <+"<w*<w-<s-<s)<n(<f)<�D<�<�<�<)<+"<*D<�<�<*D<�D<�*=��<��<��<��<��<��<��<��<��<��<�=�6=�5=�3=�.=�+=�*=�'=�=�=�=�=�$=�'=�*=�+=�*=u�<��<8@=8�<6�<t?=8@=6�<u�<6�<6�<�*=�+=.=}1=|6=|9=x<=t?=�D<�D<��<��<��<u�<t\<tG<�G<�C<�D<t\<tG<s�;s�;^x<Wy<Xv<+w<,I<,I<*
                   6255: <7    <��<��<�<�<�D<�<�D<�D<��<�<��<��<�v<�J<,I<�v<�J<J�<�<j�<V�<W�<J�<8@=0@=0@=�A=��<6�<��<��<��<��<��<��<��<��<��<��<��<��<��<0�=0@=t?=sE=rI=sR=sX=t^=Zb=WP=�O=6�<5�<5�<5]<5]<t\<��=�6=+I=+�=�;!<!<5<5<�5<8�;8�;�<��<��<��<��<�o<�p<�v<�v<�<�<��<��<��<�o<�c=��<�<�<c=�<��;w?=v�<v�<��<w�=w?=�J<�6<�6<� <� <�<�<��;��;��;��;��<�=s�;s<5<6�;s<5<�o<�i<�i<�*<w*<J�<I�<B�<A�<H�<Kc=f)<fh<fh<e<*<*<*D<��;�<�<�<�
                   6256: <s<)�<v�<*=)�<w?=Y>=X*=+*=56<5<5<56<��<5�<v�<uh<fh<�<�<56<5]<tG<s<)�<*�<*�<*<��<*�<��6��6h7f�6b�6H�6M
7 ��=��=��=��=�=�t=�i=�`=     
                   6257: � T=� n=� �=� �=� �=u �=q �=i �=` &>Z >     � 
>�         >� >� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� z=� p=� g=� a=      h!IBh!�A     4!\@5!W@5!P@4!I@2!B@+!?@+!1@)!�?&!�?"!�?!�?!�?!�?!!�?#!�?)!�?*!�?*!�?'!t?         Z >Q >H #>3 =>% P> i> v> �> �>  � �>� �>� �>� �>� �>� �>� �>� w>� m>� k>� e>� `>� Z>� R>� ?>� 2>� '>� >� 
> h!�@i!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@|!�@r!�@e!�@\!�@U!�@N!�@H!�@C!�@?!�@:!�@6!q@2!c@4!\@     h!�Ah!�@      �>��>��>��>��>��>��> *'!t?'!i?(!`?&![?"!S?!E?!:?!2?!+?!%?!$?!.?
!1?  !1?     !'?     !?!?!?&!?�        ?� ?� ?� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>      h!~Ci!�B     i!�Bh!IB     h!NDh!�C     h!�Ch!~C     
                   6258: ��=��=��=��=��=��=��=��=��=��=     �l>�_>�U>�L>�B>�5>�0>�(>�>�>��=��= �=��=��=��=��=��=��=��=��=��=��=��=     ��=��=     ��>��>��>��>��>��>��>��>��>��>��>��>��>��>�w>�l>     ��=��=��=��=     �@k@     L�@�@     LA@L�@     A@LA@     k@A@     �@�@     �@��@     ��@�k@     �k@k@     `s>`)>     �t>�u>�s>`s>     �2>�t>     
                   6259: `)>_*>g)>o#>{>>�>�%>�(>�.>     �.>�2>�2> �'?�'?     �'?�z?     �z?�y?     �y?�1?     �1?�'?     ��@��@     L�@L�@     L�@^�@^�@��@     ��@]�@]�@L�@     ��>��>     ��>��>     ��>��>     ��>��>     ��>��>     �>?     ��>��>��>�>     ??     ?�?�?�?     �?��>     �4@��?     �3@�4@     ��?�
                   6260: @     ��?��?     ��?��?     �
                   6261: @�3@ A??     A�>A?     �>A�>     �q>�p>�s>s>     s>�>     ��>�q>     B
                   6262: A
                   6263: A     C�@B
                   6264: A     �@C�@     
                   6265: A�@ A?Al?     Al?l?     l??     ��@��@     ��@�]@     d@�@     �@��@��@��@     �]@�\@�c@d@     ��@��@     ��@��@     ��@��@     ��@��@     �@�@     L�@�@     L�@L�@     }�=��=     �H>^G>     ��=�H>     �H>�H>     ^G>]�=     ]�=}�=     Al?xl?     B�?Al?     �?B�?     xl?~l?     ~l?�?     FA
                   6266: A     B
                   6267: AAZA AZAZA     ZAFA     A�>`�>     x?A?     w�>x?     `�>w�>     �@��?     ��?�?     �?@     @�@     �?�?     �@        A          AB
                   6268: A     C�@�@     s> >      >�=�=�=     `s>s>     P%>`)>             �=�=>">&>,>;>C!>P%>  �v=��=     ��=��=     }�=}�=w�=w�=y�={�=|�=|�=|�={�=|�=~�=}�=~�=�=~�=|�={�=}�=|�=w�=v�=s�= s�=x�=|�=~�=     ~�=�}=�{=�x=�x= �;A�&A     �A�:A     �:A�;A     ��@�A     �&A��@     �4@�I@     �I@]H@]A@LA@     LA@L@M�?M�?     M�?_�?_�?��?     ��>��>     ��>�'?     �'?��>     ��>��>     �@�@     ��?��?     �@��?     ��?��?     �>�>� > >     �H>�>     �q>�H>     H>�I>     �I>�E>�A>�@>�9>�4>�0>�+>�'>�%>�#>�>     >H>     �>�>�>�>�>�>&> &>>     �@��@     �    A     A      ��@�        A      ��=��=��=��=     �>��=     ��=��=��=��=     ��=&�=�=
�=�=�=�= e@�e@     �@e@     ��@��@     �e@��@     `s>`�>     x?xl?     �?l?     B�?�?     �A�UA     �A�A�A�A     �HA�A     �UA�ZA�XA�\A     �\A�]A��VA�OA�KA�JA�HA     ��@�I@     �3@�]@     l?�k?�g?�g?     �g?�>?     �>?�>?�? ��?��?��?�?     ��?��?     @�@�
                   6269: @�
                   6270: @     �?@     ~@B@     �?~@     B@B�?     ��?�g?     ��?��?     �;A��A     LtALA     LA\A]%A�&A     ��A��A|�Aw�Aq�A q�Ah�A     h�Ac�A`�A`A`|A]|AW�AT�AQ{AQvALtA �>��>     ��>�P>�I> H>I>\> ��>��>     \>�>     �?x?     w�>��>     ��>�        ?      �    ?�?  B@Cc@     Cc@c@     c@@     @B@     �A��@�    A
                   6271: A     FA�FA�:A�:A     N�>_�>_�>��>     O�>N�>     ��>_�>_�>O�>     N�>N�>     ��=��=     NO?N;?     L�?NO?     �>?��?     ��?^�?^�?L�?     N;?b;?b>?�>?     ��?��?     �>�>     ��>��>     �>��>     �>�>     �H>��>     ?]>>H>     >H>^G>     N�>Oe>Mb>Ka>Gb>E`>B_>?]>     �H>�H>     O&?�>     O�>O&?     �>�>     �>N�>     e@Cc@     ~@�@     �@�D@     �D@�e@     ��>��>     ��>�>�v>�q>�f>�`>�T>�S>     0>1H>>H> ?]>\>             >>>>>>#>*>->  ->0>     z?�?     �z?z?     �?�?     ��?�z?     [A�[A     ~�A[A     �[A�{A     �{A��A     
                   6272: ��A��A��A��A��A��A��A��A��A~�A     ��A��A     A@@     �?M�?     NO?O?     O?(?     O&?N;?     (?�>     z?O?     L�?J�?     J�?�?     ��?��?     �>?�>?     �AA     A_A     �]A�]A�WA�TA�UA�UA     _A]AZA&]A�]A �l?~l?     �?�l?     �:A��A     ��A��A��A��A��A��A��A��A             ��A��A��A��A��A��A��A��A��A  �'?(?     �A��@     �@A     D�=]�=]�= 0>;>@
>@>?�=B�=C�=D�=         A[A  [AAZA     �    A�A  �A�[A     ��@��@��@��@     �A��@     ��@��@     C�@Cc@     AZA@�A     �AZA     
                   6273: @�A;�A1�A*�A#�A�A�A�A�A�A     d@c@     ��?��?     M�?N�?M�?J�?     L�@LA     7fA3fA1gA/fA-bA,^A*]A'^A!bAbA`A `A_A     LtAIsADjAAhA=gA7fA     ��>�>?     �k@�j@     �@�k@     �@@�@     �j@�@@     ~�Az�Ax�Ax�Aw�At�Ap�Ak�Af�Ac�A_�A _�A[�AV�AS�AN�AG�AD�A D�A@�A     ��@��@     ��@�j@     ��>��>     ��>��>     ��?��?     ��?�y?     @@     �?��?     ��?�@     ��?��?     ��>��>     �t>��>             ��A��A��A��A��A��A��A��A��A  ��A��A��A��A     �A��A��A��A��A �r?��?     �l?�r?     g�=ja>     X�=g�=     ja>ab>L_>G\>     H�=L�=N�=U�=X�=X�=     �v=�t=�w=�x=     ��=��=�{=�x=�v= �O=��=     �x=�%=     W`=Wc=Ui=So=Rs=Pz=Q~=N�=P�=N�=P�=T�=Y�=Z�=     Z�=Y�=U�=R�=M�=I�=     �Z=��=     ��=u�=     f=i|=ls=tn=wj=�e=�`=�V=     u�=f�=f= ��=��=     �,>�9>�A>�H>�L>�T>�T>�L>�O>�O>�N>�R>     �R>�S>     ��=�,>     v�=��=     g�=v�=     �S>�W>w\>q`>     q`>ja>     �>�>�$>�,>     ��=��=     ��=&>     ��=��=     �=Z=     -�=�=             Zz=U|=Q�=O�=N�=K�=H�=E�=-�=  [B=Zz=     ��=��=��=��=��=��=��= ��=��=     �N=��=     �=��=     ��=��=     v�=u�=     ��=��=     f=a�=_�=_�=_�=]�=]�=Z�=     -�=->     ��=��=     s�=m�=`�=\�=V�=R�=O�=K�=E�=D�=D�= Zz=`x=gx=i}=j�=n�=s�=~�=     HAFPA     G�@I�@     I�@HA     G�BF&C     F&CF*C     F�AF&B     FwAE�A     FPAFwA     ��CF�C     F�CF�CFMD F�CE�C     F�BG�B     FcBF�B     FMCF�C     F*CFMC     F&BFB     FBFcB     ��=��=��=��=��=��=��=��=��=�=�z=�t=�s=�q=�l= �o?�o?�q?�p?      �?��?     ��?��?��?��?      n? �?     y�?zo?     ��?��?y�? zo?�o?     �p? n?     �j?�k?     ��?��?��?��?��?��?��?��?     �k?��?     ��?��?�j? ��?��?     �j?�j?     & �A �A �A��A     % �@& $A     ��@ �@ �@% �@     & $A& |A     & |A& �A     ��A��@     ��@��@     R �@R [@U Z@ � (A� �@� �@� �@� �@� �@� �@� �@� �@� �@� �@Q �@     Q �@R �@     U Z@� [@     � [@� [@� \@� [@     � [@� �@!�@!�@     !+A� +A� )A� )A     � )A� (A     !�@!+A     �?@�?     @�?@T@;O@7H@     2@�?     
                   6274: 7H@5D@0C@0=@/=@->@&9@:@6@2@     ��A��A��A��A��A��A��A��A��A��A��A��A     ��A��A�A ��A��A��A��A     �A&B     ��A��A��A��A     &B�A�A��A��A��A��A��A     1W@W@     �D@��?     $�?,�?,@ �W@�D@     ,@)@'@#@@ @@&@#)@$3@%6@'>@*@@-K@/O@1W@ ��?$�?     W@�W@     $�@$�@�@�@     1W@1Z@4^@;b@@m@Bo@Br@C|@I�@I�@J�@M�@P�@P�@R�@ X�@3�@3�@$�@     R�@U�@W�@X�@     �@W@     �o?��>     ��>��>�p? ��>��>     ��?��?��?��?     �@~@     s�?v�?z�?{�?|�?~�?��?��?��?��?��?��?     ~@@w&@w�?s�? ��?�@     �S@�O@�M@�P@�P@��?     R �@E �@D �@ �@ �@��@��@          �?/ �?0 �?3 �?6 �?9 �?< �?> �?> �?  > �?B �?C �?A @? @? @E @I @K @O @Q @R @T @W @     
W @\ @` #@b )@e 1@e 5@c 9@e ;@d >@a @@] A@[ A@Z C@ Z C@X D@V H@T I@T M@U Q@T V@U Z@     
��@�z@�w@�s@�l@�f@�b@�^@�\@�Y@�T@�T@�S@ ��@��@��@��@��@��@��@��@��@��@��@��@     ��@��@��@��@     ��@��@             �zA�nA�fA�aA�WA�SA�QA�KA�GA  �A�A��@ ��@�zA     �GA�BA�BA�<A�;A�5A�4A�1A�*A�)A�%A�A� A�!A�A�A     0�?�?j?�k?     .M?0�?     �j?�>?     W?)T?.M? �>?�<?�8?�1?�.?�0?      :?A?X?[?W?    & �A% B     ��A��A��A ��A��A     % B  B &B &B B B��A��A��A��A��A��A     % �@C �@D �@Q �@     a $A& $A     � (A� (A     � (A� (A� $Aa $A     � 
>� >� >Z >     �A��@     %A�A     $�@%A     ��@�@     y�?��?     �S@�W@�[@�[@�[@�Z@~^@ ~^@{_@y\@y�?     So?[n?[j?[e?Yc?Y^?[Z?`Y?`D?pE?p9?|:?     ��?��?��?��?��? �j?�l?�o?�}?��?��?     a�?T�?So? ��?~�?~�?o�?o�?a�?     �E?�L?�V?�Z?�j?�j?�i?�j?     |:?�E?     #.?#p?     �q?�3?     �3?�/?#.? #p?�q?     pKAUKAUIA4IA     p�@pKA     4IA4�@     4�@7�@     7�@P�@P�@p�@     ��?��?     �D@�D@     ��?��?     ��>��>     �    ?�     ?      ��>�?�    ?      ��>��>     �r?�q?     �q?��?     ��?��?     #.?#?     So?#p?     #?B?A?Q?O�> O�>T�>[�>^�>     ^�>a�>d?e?i ?q'?x/?|:?     pKAq�A     4�A4IA     b�AR�AQ�A4�A     q�Ab�A     ��?��?��?��?     ��?��?��?��?��?��?��?��?             ��?��?��?��?��?��?��?��?��?  ��?��?��?��?��?��?     �=>��>     �7>�5>�5>�8>�=> �2>�1>�2>�8>�6>�4>�:> �:>�7>     ��@��@     0�?0�?     0�?�?     �?��?     � r?� �?� �?� [@      n? o? q?K p?K r? K r?� q?� s?� r?     ��@��@     �A�A     y�?\�?]�?0�?     0�?\�?\p?zo?     ��@��@��@��@     ��@��@     ��@��@     ��@��@��@ ��@��@��@��@     !;B!�A     !�A7!�A8!�Ah!�A     h!IB]!IBV!CBQ!BBG!AB<!;B9!8B3!5B-!2B(!5B$!:B!=B!=B!;B     4!\@� [@     � r?� s?� u?� t?� x? � x?'!t?     �zA�}A��A��A     ��A�[A�[A�GA�GA ��A��A     ��A��A     � �>� �>a �> �>     h!�@c!�@_!�@[!�@Y!�@U!�@U!�@T!�@T!�@U!�@V!�@X!�@\!�@5!�@6!�@ 6!�@!�@     Q@O@H@>@9
@0@     0@,@     $�?`�?     `�?a@     a@^@\@W@T    @Q@  $�?$�?     %|AoA     $�A%|A     oAo�A     _�A$�A     o�A_�A     %|A%,A     %,Aa-A     a-Aa/Ap/AoA     �B@�n@�m@ �m@~m@     ~m@ol@oB@~B@~@ �@�B@     c |A& |A     a $Ac |A     � �A� )A     � ;B� �A     !+A!�A     � :B� ;B             !;B!:B       !:B&!:B� <B� :B� :B� :B� :B    �W@��@     ��@�m@     �D@�Y@�X@��@     �B@�D@     y�?\�?[�?@�?     �?�?     7�@7H@     ��@��@��@7�@     �    ?�2?�3?      �|A�A     %|A�|A     %A%,A     R�@R�@     Q@R�@     �|A�{A     c |Ab B     5 B/ B% B b Ba BW BO BJ BC B; B5 B     �>�>#�>#?     ��>�>     p�@��@��@��@     ��@��@     ��A��A��Aq�A     � >A� (A     � �A� �A� �A� �A     � �A� >A� >A .M?2G?7B?AA?E=?J9?M1?T?Y?[?a?a�>f�>i�>w�> w�>��>     ��A�|A     $�A$�A#�A #�A��A     � >A� ?A� TA� TA� �A � �A� �A� �A� �A� �A 
� ;B� 9B� /B� -B� ,B� *B� (B� %B�  B� B� B� B� 
B � 
B{ Bu     Bq Bl Bh Bb B      ��@�@�@4�@     4IAIAGA�GA     �GA��@     �j?�d?�d?�j?     X�@\�@f�@f�@g�@h�@k�@ k�@n�@o�@v�@v�@{�@|A |AaAa-A R�@`�@`�@�@~m@ �A�A�A}A|A a�?`�?     #�?#p?     $�?#�?     ��A��A     ��>��>��>��>��> s�?n�?o�?m�?j@f@c@ c@a@     2@0@
                   6275: 0@+@�(@�@�@   �@�@�@�@�@�@�@��?��?��?��?��?��?��?��?��?��?��?��? 7�@7�@     
�D@�C@�=@�:@�6@�2@�3@�1@�+@�(@�%@�"@�@ #�?��?     ��A�GA     4�A�A     ��@��@     b�Ab�A     b�A]�AX�AR�A     R�AM�AG�AB�A=�A3�A&�A#B BBB&B     �>#�>!�> !�>(�>0�>9�>?�>E�>I�> I�>J�>O�> �E?�D?�>? �??�B?�>? �>?�A?�>?�C?     �C?�E?�A?�C?�?? 
��A��A��A��A��A��A��A��Ax�Ar�Al�Af�Ab�A j>t>>�>�>!�>     �=>�A>�I>�P>�W> �W>a>j> ��Ao�A     M�>|�>     LL?M�>     �/?�L?     ��>�/?     |�>��>     �L?LL?     (@M~@     M~@^~@     ^�@Y�@T�@P�@O�@F�@B�@ ^~@^�@     u"Av�@     v�@��@��@��@     �BA�=A�5A�1A~3A{'Au"A �HA�JA�HA�BA     {�>s�>     s�>q`>     ��>{�>     M=@M9@     ^<@M=@     ^�?^<@     M=@M~@     ^<@�<@     �~@^~@     �<@�~@     u�?^�?     u�?u�?     K�?u�?     u�?��?��?��?     �@@�?@�<@�<@     ^�@b�@l�@q�@r�@ r�@v�@v�@ u"AsAjAe
A[    ASAIAI�@  =�>s�>     {�>|�>     LL?K�?     ��?��?��?��?     u�?��?     �~@��@��@��@��@ �/?�1?�.?�,?�.?�1?     �0?�1?�.?�.?�/?�3?     �1?�1?�.?�.?�,?�-?�0? �3?�1?�1? ��?�N?�L? ��>��>     ��B �B �B4 �B     4 �B5 "C     �C��B     ��B��B     4 �B4 �B     5 "C !C C�C     � �C� ,C     � ,C� ,C     � �C� D� D� D� D � ,C� 8C� <C� @C� CC� IC� NC� PC� UC� ZC� ^C� ^C� \C� \C� YC� ZC� YC� \C     � \C� ^C� cC� eC� hC� mC� rC� sC� xC� {C� }C� �C� �C� �C� �C� �C     � �C� �C� �C� �C� �C� �C� �C � �C� �C     � D� �C     ��B�RB     �RB��A     4 nB4 �B     5 B4 nB     !�B7!�B6!�Bi!�B     !yC!C     h!~C6!}C6!yC!yC     !C!�B     ��B�C     �CRC     ��B��B     R�B��B     QNCR�B     RCQNC     r �Cr &C     r &C� 'C     � 'C� +C� ,C � �C� �C� �Cr �C     �D�D�D SD�D     R�DSD     D 'Cr &C     E �CD 'C     r �CE �C     � �B� �B� �B� �B     � �B� sB     � sB� 
B     � :B� �B     � �B� 'C     4 �BC �BD �B� �B     D 'CD "C5 "C �D��C     ��C �C �CE �C     E �CD 2D     ��C��C     ��C�C     ��B��B     �C��C     �D��C     ��C��C     SDR�C     R�CRC     � C� C� C� ,C     � ,C� ,C     � �B� �B     � �B� C     !�B!;B     � �C!�C     !yC� yC� �C � C� C� C!C     �RB�RB     ��B�RB     �RB�NB\MBZHBRIB RIBR�A     !�C5!�C5!�Ch!�C     R�BQ�B     Q�BRIB     4 nBC oBC rB� sB     E �CE �C     �C�C     �C�OC     �OC�PC     �PC�C     �C��B     �C�C     ��B�C     ��B��B     ��B��B     �C�C�C ��C�LD     vZDu�C     u�C��C     tCGC     t�B��B     GCG�BI�BI�BL�BM�BO�BO�B     O�Bt�B     �CtC     /�C4�C9�C9�C<�C>�C=zC:qC6nC1[C1RC.LC,FC-=C)5C(,C&$C&C&C%C     Q�C/�C     %C*C+C<C             <C>CCCECG CI"CN$CP(CQ*C  Q*CQ�C             "�C#�C$D$
                   6276: D'D*D* D+(D,/D ��C��C     ��C��C��C"�C     ��C��C     ��C��C     �OC�PC     �PC�SC             ��C��C��C��C�xC�qC�dC�XC�OC  ��C��C��C��C��C��C��C��C     �SC��C     ��As�A     s�As�Ai�A ��A��A��A��A     i�Ah�A             AB?B<!B;,B91B69B6CB5HB5OB  5OB6VB8^B8bB     8bB�cB     �BAB     �cB�B     ��A��A     ��A�\A     �]A�gA�kA�oA�tA�wA�|A��A��A��A��A��A��A��A��A��A     ��A��A��A��A     �%B%$B     5uB�vB     �vB�aB�aB �aB�%B     %$B'-B'3B*:B,>B ,>B.CB/HB1KB4IB6KB     6KB7VB9]B9aB7hB5nB5uB ��B��B     ��B�C     �C��B     tBt&B     ABtB     sOB5OB     t&BsOB     tBs�A     �%Bt&B     ��A��A�B �B�%B     �VD��C     u�Cu�C     ��C8�C     8�C8�Cu�C ��A��A��A ��A��A             ��A��A��A��A��A��A��A��A��A  �,D��C��C ��C��C��C��C��C �&B��A��A �%B�%B�&B         �A&BBB!B B!B% B%$B  
                   6277: ��A��A�A�A�A
�A�A�A�A�A     5�A6�A     ABAB@�A>�A>�A=�A9�A5�A     6�A;�A;�A@�A@�AC�AC�AF�AF�AO�AO�Ai�A     �A`A     5�A1�A*�A�A�A�A�A 7fA6�A     �cB�cB     ��B�cB     �cB��B     ��CE�C     �PC��C     FMC�PC     �>D�+D�,D E�C��C     ��C��C     �BFB     r�A��A     ��A�B     F�Ar�A     �B�B     �UC��C     ��Cu�C     u�CuTC     uTC�UC     ��C��C     8SC7C     7CGC     uTC8SC     tCuTC     �C�C     �C�PC     �C�C     �B�B&�B��B��B��B��B��B��B��B��B�C     ��B�B     ��B��B     ��C��C     �C%C     /�C,�C,�C��C��C��C     �UC�C     �C7C     8SC�SC     �B�cB     �cBFcB     r�A��A     ��A��A     r�Ar�A     ��C��C             "�C!�C �C#�C(�C+�C,�C,�C/�C  Q�CQ�C     Q�CPQD     ��B�vB     4�B4�B3�B7�B4�B5�B6�B4�B-�B)�B&�B)�B*�B/�B     /�B5�B8�B=C<C 5uB7}B5�B4�B     ��A��A     �B�B     ��A��A�B �B�B     ��C��C     �bB��B     t�BtbB     tbB�bB     7�B)�B)�B&�B&�B$�B$�B $�B"�B!C7C7C -�B7�B7�B �B�B!�B$�B'�B)�B-�B 7�BO�BO�B �BA��A     r�ArxA     rxAu"A     F�B��B     �CF&C     FwArxA     �bB�aB     -�B0�B2�B5xB5nB7kB8bB sOBtbB     ��B�cB     �B�cB     �A�A
                   6278: �A�A��A��A       �cB�cB     8SC8�C     �%B�bB     �&B�B     �_C�^C�[C�]C     �]C�OC     �C�C     �OC�C     �
                   6279: C�_C �C�        C�
                   6280: C     ^�Bm�Bm�B mKC_KC^IC"KC     "KC"C     "�B^�B     "C"�B     m�BmKC     o�Bk�Bf�Bd�B     d�B`�B[�BV�BP�BJ�BE�B<�B     <�B/�B     n�Bo�B     4�Bn�B     _�A_
B     _
B^7B     ^7B#7B     #7B#B     #B#�A     ��B�B     OC�MC     QNCOC     �BQ�B     �MC��B     �sC��C     ��C�]C     �_C�sC     
��C��C��C��C��C��C��C��C��C��C��C��C��C 
��C��C��C��C��C��C��C��C��C��C��C��C��C !sC!�C     !�C!�C     �sC!sC     !�C�C�C�C�C�C�C�C�C�C�C�C�C��C��C��C     �CR�C     yD�C     r�B�JC�MC�OC     ��C��C��C��C��C��C��C��C��C��C��C��C��C|{CxlCuiCngCkeCibCi\ChXCbNC[BC\;C[6CZ/CV,CQ*C     o�Bq�Br�B �wB�vB�zB�zB     �zB��B     ^wB�wB     ^�B^wB     ��B��B��Bm�B     _&B_B     _B_>B     �A_&B     _>B,>B     �HB�zB     �
B�B     �B�B�HB �wB�
B     �C��B     ��B��B     ��B��B     ��B�C     �HB�HB     HBbBbB�B     �HBHB     ��B��B     ��A�B     �
B_
B     r�B��B     ��C�MC     OC�C     ��C��C     �C��C     ��C�MC     ��C��C     ��C��C     �MC�MC     ��A�B�!B�HB     ��C��C     ��CQ�C     ^wB^7B     ��Ca�C_�C!�C     !sC"KC     mKC�KC�MC ��B��B     ��B��B     ��B��B     ��B��B     %�C^�C^�C  "DDD        DD�C�C�C�C�C�C�C�C�C�C"�C$�C%�C%�C  ./D,(D-!D+D(D&!D#"D "D     ^�C^�D     �fB��B     neB�fB     n�BneB     %�C%�C$�C"�C!�C ��C��C     ��C^�C     �
                   6281: C"C #bB#7B     "�B#bB     �`B�5B     #bB�`B     �5B�B     �B#B     ��A�B     �B_B     _&B_�A      "D mD     �5D�-D�*D�D�D�D�D�D�D�D�D�D�D�D�D�D��C��C��C��C��C��C��C��C��C��C��C��C��C��C     �`B��B     �5B�5B     �fB�5B     HBRIB     "�B��B     ��A�B     �5B�B     �rD��C     ��C�[D     neBn>B_>B ]=_=      _=\=�V=    ��=��=��=w�=     Z�=v�=w�=��=��=��=��= ��=��=     Z�=Z�=     w�=X�=Z�= �>�>     ��>�j>�i> ��>��>     �>��>     �i>h>     h>�>     �l>�l>�i>xk>     xk>w�=     hg>h{>     h{>g�>g�>b�>Z�>U�>N�> N�>I�>     j>i>k>n>r> s>$t>'n>)j>,g>hg> x�>w�>     W??+?+�>�> �>X�>X�>x�>     ��=��=     ��>�>�|>�|>     �|>��=     ��=�i>     ��=��=��=��=     ��=h�=     h�=X�=W�=I�=I�= w�=��=     ��=��=     I�=w�=     P%>O>P>V
                   6282: >Y>]�=_�=b�=c�=e�=h�=l�=o�=q�=     q�=��=��=��=��=��=     ��=�.>     x�>xk>     w}>�|>     x�>w}>     ��>x�>     ��>��>��>��>     h(>h�=     w}>h{>     hg>h(>     0�=t�=     ��=0�=     t�=v�=v�=v�=u�=r�=q�= o~=r�=u�=w�=w�=u�=t�= t^=qb=ld=nk=nr=nv=o~= Z�=Zb=     �=+�=     &>&>> >>>>>>�=�=�=�=�= h(>+(>+&>&>     +�=I�=     �=��=     ��=��=     ��=�=> 
&>,>0>2>
                   6283: 3>;>>>
                   6284: C>    F>F>D>�D>�W>    �7>��=     c=�d=     �d=�c=     �c=�~=�~=��=     ��=��=     Kc=c=     x�>^�>^�> ��>�>?     �??��>     �=��=     Z�=�=     ��=�d=     Kc=Zb=     o~=�}=��= ��=��=��= �=h>     ��=��=��= ��=��=     xk>Xl>Wg>h>
                   6285: g!�Jg!�Jg!]Jg!,Jg!�Ig!�I
                   6286: h!VHi!FHh!*Hh!Hi!�Gi!�Gh!�G
                   6287: g!Kg!�Jg!�J
                   6288: g!�Ih!�Ig!�Ig!jIh!@Ig!#Ih!I
                   6289: h!�Gi!�Gi!kGi!?Gh!Gh!�F
                   6290: h!Ig!�Hh!�Hh!�Hh!�Hh!mHh!VH
                   6291: h!2Eh!ND
                   6292: i!-Fi!�E
                   6293: h!�Fi!-F
                   6294: i!�Eh!2E
                   6295: H�FG&G
                   6296: G&GG�G
                   6297: rHnHk   He
                   6298: H`    H[HX&HPHJHGHFH
                   6299: t�GrH
                   6300: G�Gt�G
                   6301: U�HT*IF*IF-I
                   6302: �-H�3H�4H�<H�;H�@H
                   6303: �@H�DH�ZHoH�sH�yH�}H��H��H��H��H��H
                   6304: rHvH�#H�#H�&H�-H
                   6305: ��H��H��H
                   6306:        �-H�.H�4H�4H�FH�OH�LH�NH�`H
                   6307: �`H�aH�eH�cH�gH
                   6308: �gH�hH
                   6309: ��H��H��H��H��H��H
                   6310: ��H��H��H��H��H��H��H��H��H��H��H��H��H��H��H��H��H
                   6311: �hH�~H
                   6312: �~H��H
                   6313: t�G��G��G��G
                   6314: ��G�iH�hH
                   6315: ��G��G
                   6316: ��F��F��F
                   6317: ��E��E�F��E��E
                   6318: ��E��E
                   6319: ��F�F
                   6320: ��F��F��F��F
                   6321: �F��E
                   6322: ��E�zF
                   6323: �zF��F
                   6324: lZJlAI
                   6325: lAI@I>I�>I�3I�3I�)I�)I
                   6326: �YJ�ZJ
                   6327: �ZJlZJ
                   6328: �)I��I
                   6329: ��I�ZJ�YJ
                   6330: H�FH�F��F��F��F
                   6331: ��F��F��F�&G
                   6332: �&GG&G
                   6333: ��E��E
                   6334: ��E��E
                   6335: ��E��E
                   6336: ��E��E��E
                   6337: U�Hl�HlAI
                   6338: ��H�)I
                   6339: ��E��E
                   6340: ��E��E
                   6341: ��E��E
                   6342: HFIF�F�F�F
                   6343: ��F��F
                   6344: ��F��G
                   6345: F�EG�E
                   6346: ��E��E
                   6347: G�E��E
                   6348: F#EG�E
                   6349: FMDF�D
                   6350: GEF#E
                   6351: G�DGE
                   6352: F�DG�D
                   6353: �J�J��I��I��I��I��I
                   6354: J�J�J�J�J
                   6355: �nH�mH�qH
                   6356: �qH��H��H��H$�H#�H
                   6357: #�H%�H%�H7�H8�H>�H>�H
                   6358: >�HE�H
                   6359: E�HE�HN�HNISIU;Id<IdLI
                   6360: dLIdhIZhIY|I
                   6361: Y|IV|IW�IS�IQ�IL�IJ�I8�I7�I �I     �I
                   6362:      �I�I�I�I��I
                   6363: ��IJ
                   6364: ��I��I
                   6365: ��I�{I�YI�-I��H��H��H�nH
                   6366: � �J� �J� �J� �J� �J
                   6367: � �J� �J� �J� }J� tJ� hJ� `J� YJ� QJ� FJ� DJ� HJ� FJ� >J
                   6368: 
                   6369: g!�JY!�JX!�J!�J!�J!�J!�J!�J� �J� �J
                   6370: � �J� �J� �J� �J� �J� �J
                   6371: � >J� >J� <J� <J� J� J� J� 
                   6372: J� J� �I� �I� �I!�I!�I!�I!�I9!�I;!�IY!�IZ!�Ig!�I
                   6373: ��J��J
                   6374:        4J8J?JIJWJaJgJgJ
                   6375: rJ
                   6376:        
                   6377: rJ�sJ��J��J��J��J��J��J��J
                   6378: ��J��J��J��J��J
                   6379: JJJ
                   6380: /J0J,J-J4J
                   6381: �
J��I
                   6382: ��J��J��J�J�OJ�+J�
J
                   6383: vGu�G7�G7�G
                   6384: G�FH�FW�FW       GU
                   6385: GU GW GZ*Gf*Gf?Gu@GvG
                   6386: 7�G+�G*�G��G��G��G��G
                   6387: ��G��G
                   6388: ��F��F
                   6389: ��FG�F
                   6390: ��G��G�pG�MG�#G�G��F
                   6391: 
                   6392: ]     Ke �Jj �J~ �J� �J� �J� �J� �J� �J� �J
                   6393: � �J� �J� �J� �J� �J
                   6394: vG�G��G��G�dG�eG
                   6395: �PH�PH
                   6396: 8`H7KH7�G9�G;�G8�G7�G
                   6397: �eG�|G�|G��G
                   6398: ��G��G��G��G��G��G��G��G��G��G��G��G�"H�#H�PH
                   6399: �PH�OH�VH�UH�[H
                   6400: �[Hv[Hv_HdaHa_H8`H
                   6401: !H!�G
                   6402: !�G+!�G,!�GZ!�GZ!�Gh!�G
                   6403: h!VHZ!VHY!]HK!]HJ!GH!FH!H
                   6404: � �G� �Gh �Gh �G, �G
                   6405:        , �G+ �G �G �G��G��G��G��G�OG
                   6406:        I -GI >Gg ?Gg KGv LGv �G� �G� �G� �G
                   6407: �OG�<G�+G
                   6408:  G G G- G: $G
                   6409: : $GC .GD 3GI -G
                   6410: �NG�NG�dG�eG
                   6411: ��F�"G�$G�-G�-G�NG
                   6412: R�F��F
                   6413: ��F��F
                   6414: ��F��F
                   6415: G�FR�F
                   6416: ��J��J�PJ
                   6417: ��J��J��J��J��J��J��J��J
                   6418: 
                   6419: ; K; �J2 �J2 �J* �J) �J��J��J��J��J
                   6420: �PJ�J
                   6421: �J�J�J J  J
                   6422:          J* "J, J: J: J> J@ �IC �Io �I
                   6423: o �Is �Iu �Iv �It �Iy Jz J| !J )J� ,J� 7J� >J
                   6424: ��J��J
                   6425: , PH, ^HJ _HJ uHh vHi oH� pH� �H
                   6426: � �H� �H� �H
                   6427: ��I��I��I��I
                   6428: ' �I# �I �I �I �I �I��I
                   6429: [ �IX �IS �IO �IL �I
                   6430: L �IH �IE �I. �I+ �I' �I
                   6431: � <I~ <I| ?Iy ?Ix JI
                   6432: x JI} NI} \I{ `I} hIx hIx nI
                   6433: x nIr oIo yIk yIk �I
                   6434: k �Ig �I^ �I[ �I
                   6435: �PH, PH
                   6436: ��I�gI�EI�CI��H��H�PH
                   6437: � �H� �H� �H� �H
                   6438: � �H� �H� �H� �H� �H� �H� �H� �H� �H� �H� �H� I� )I� <I
                   6439:        t*J�)J�-J�-J�0J�0J�3J�2J�5J
                   6440: �5J�9J�7J�;J
                   6441: �;J�<J�@J�@J�LJ�LJ�QJ�PJ
                   6442: d�Js�JsCJ
                   6443: ��Js�Js�Jd�Jd�J
                   6444: ��J��J��J��J��J
                   6445: sCJt*J
                   6446: ��J��J��J��J��J��J
                   6447: , PH+ :H :H "H+ !H, �G
                   6448: � �G� �G� �G� �G
                   6449: � �G� �G� �G� �G� �G� �G� �G� �G
                   6450: � �G� �G� �G� �G� H� H� 
H� H� H� H� 'H
                   6451: � 'H� -H� 3H� BH� HH� JH� OH� SH� TH� ]H� ]H� �H� �H� �H� �H
                   6452: ��I�J
                   6453: �{I�}I�}I��I�|I��I��I��I
                   6454: t*Js�I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I�{I�{I
                   6455: ��J��J��J��J
                   6456: ��J��J
                   6457:        [ �Ib �Im �Ir �It �It �Is �Ir �Io �I
                   6458: ��I��I
                   6459: � <I� ;I� =I� 9I� 9I� 4I� 4I� !I� !I� )I
!(I
!!I!"I!I!I!I!I!IY!IZ!Ih!I
                   6460: 8`H7hH�iH�pH�qH
                   6461: �HH�5H�H��G��G��G
                   6462: ��G��G
                   6463: �nH�HH
                   6464: �NG�OG
                   6465: %� �F� �F� �F� �F� G� G� 
                   6466: G� G� G� G� &G� ;G� BG� GG� NG� UG� WG� [G� `G� dG� iG� sG� xG� ~G� �G� �G� �G� �G� �G� �G� �G� �G� �G� �G� �G� �G� �G
                   6467: I -GJ �FQ �FQ �F
                   6468: Q �F� �F
                   6469: � �F� SG
!SG!iG!iG!�G
                   6470: !H!H�  H� &H� 'H
                   6471: � �F� �F
                   6472: 
                   6473: �sI�FI�I�I��H��H��Hu�Hu�HE�H
                   6474: �{I�vI�sI
                   6475: (!�Fh!�F
                   6476: � �F(!�F
                   6477:        d�JU�JU�JE�JE�J8�J7�J�J�J
                   6478: �J�J�J
                   6479: �J
                   6480: �J
                   6481: 
                   6482: �J��J�      K
                   6483: 4J4J8J 8J"<J&=J'AJ9@J;>JU?JVDJ
                   6484: VDJsCJ
                   6485: ��J�0K
                   6486: �sI�sI�oI�oI�kI�kI�aI�\I�[Iz=IkHIdLI
                   6487: ��FE �F
                   6488: E �FQ �F
                   6489: ��K��J
                   6490: �6FS6F
                   6491: f�E��E
                   6492: ��E��E��E�*F
                   6493: R�Ef�E
                   6494: �*F�6F
                   6495: S6FR-F
                   6496: R-FR�E
                   6497:  <FD =FD IF
                   6498: E �F �F �F��F
                   6499: D IFE �F
                   6500: ��F�bF
                   6501: �bF aF <F
                   6502: !�D'!�D(!tD!tD!]D
                   6503: !]D!ED
                   6504: h!2E8!2E7!*E!*E!�D
                   6505: !ED8!FD7!MDh!ND
                   6506: �6F��F
                   6507: R�FS6F
                   6508: i!-F6!-F6!$F(!$F
                   6509: !$F!�E
                   6510: G!�Ei!�E
                   6511: !�E7!�E7!�EF!�EG!�E
                   6512: (!$F!$F
                   6513: ��D�;D
                   6514: �;D ;D @DE ?D
                   6515: D �DD �D& �D& �D
                   6516:  �D �D��D��D��D��D��D��D��D��D��D��D��D��D��D��D
                   6517: & �D" �D �D �D �D �D �D �D
                   6518: E ?DD �D
                   6519: (!�F(!$F
                   6520: � �E� �E� IFD IF
                   6521: p �Et �Ey �E} �E� �E� �E� �E� �E
                   6522: � �E� �E� �E� �E� �E� �E
                   6523: � �E� �E� �E
                   6524: 
 �ED �EE �Ep �E
                   6525: 
                   6526: � �E� �E� �E� �E� �E� �E� �E� �E� �E� �E
                   6527:  <F �E �E
 �E
                   6528: �D�;D
                   6529: 
                   6530: ��D��D��D��D��D��D��D��D��D��D
                   6531: ��D��D��D
                   6532: ��D��D��D��D��D��D��D��D
                   6533: ��Dw�Dq�Dn�Di�Df�Dd�D`�D^�DX�DR�D
                   6534: E �FE �F
                   6535: ��F��F��F��F
                   6536: ��E��E��E��E��E
                   6537: ��D��D�E�E�XE�YE��E
                   6538: 6f�Eg�Eg�Ee|EhyEhvEiqEgnEerEcqEbmEaiEafEbcEb`E`]EaVE_OEaIE_EEa?E`>E^<E^:E`8E`4Ed3Ef/Eg'Ei%Eh!EgEjEkElEnEoEsEtEtEuExEz�D|�D~�D��D��D��D��D��D��D��D��D��D
                   6539: ��E��E
                   6540: �*F�*F
                   6541: ��E�*F
                   6542: D 2DE ?D
                   6543: � �D� �D
                   6544: � ND� OD� UD� VD� ]D!]D
                   6545: !�D
                   6546: !�D
                   6547: � �D� ND
                   6548: 
                   6549: !�D� �D� �D� �D� �D� �D
                   6550:        � �E� �E� �E� �E� �E� �E� �E� �E� �E
                   6551: � �E� �E� �E� �E� F� F� F� 
F� 
F� F� F
                   6552: � F� F� F
                   6553: � F� !F� &F� .F� 3F� :F� BF� MF� SF� [F� `F� bF� eF� eF� fF
                   6554: � fF� mF� pF� rF� tF� uF� vF� vF� yF� {F� zF� |F
                   6555: � |F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F
                   6556: � �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F� �F
                   6557: � �F� �F� �F� �F� �F� �F� �F� �F
                   6558: "p �Eo �Eo �Eq �En �Ei �Ef �Eg �Ec }Ec uEc jEf _Eg ZEf PEg BEh =Ei 8El ,El &Ek $Eh E` 'E\ 'EY %EU $ER #EN EH EC E@ E> E= E; E8 E
                   6559: � sE� �E� �E
                   6560: 8 E7 E; �D> �D@ �D> �D9 �D5 �D/ �D) �D& �D
                   6561: D �D� �D� �D� �D
                   6562: � �D� sE
                   6563:  �E ^E
                   6564:  ^E4 `E5    E8 E
                   6565: 
 �E �E �E
                   6566:  �D ^E
                   6567: ��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D
                   6568:  �E��E
                   6569: � sE� sE� |E� }E� �E!�E!�E
                   6570: !$F� #F� F� F
                   6571: !�C!ED
                   6572: � ND� :D
                   6573: � :D� D
                   6574: G!�E6!�E6!pE !oE
                   6575: !�D
                   6576: D 2D� 4D� :D� :D
                   6577: R�ER�D
                   6578: �*F�bF
                   6579: t�E8�E
                   6580: u&Et�E
                   6581: v#Eu&E
                   6582: 8�E9#E
                   6583: 9#Ev#E
                   6584: 8xF@wF
                   6585: 9�F8xF
                   6586: @wFpwF
                   6587: pwFn�F
                   6588: n�FV�F
                   6589: V�F9�F
                   6590: �LD�]D
                   6591: �]DvZD
                   6592: �F��F
                   6593: �uF�F
                   6594: �~F�uF
                   6595: �F�F�   F�
                   6596: F�F
                   6597: ��F��F�~F�~F
                   6598: 5PD,PD+OD�ND�LD�LD
                   6599: ,/D-7D/BD2HD5PD
                   6600: ��E�E
                   6601: �E�E
                   6602: �E��E
                   6603: ��E�&E
                   6604: �&E��D
                   6605: 5PDPQD
                   6606: Q�E,�E,�E��E��E��E��E
                   6607: ��D�]D
                   6608: QEQ�E
                   6609: PQDQE
                   6610: ��E��E��E�E
                   6611: �E:�E9�E@�E
                   6612: 8xF�yF�zF�zF
                   6613: @�E@wF
                   6614: 9YD9XD�WD�VD
                   6615: vZD9YD
                   6616: �F+F+FQF
                   6617: Q�F+�F+�F��F��F
                   6618: Q:FQ�F
                   6619: QFQ:F
                   6620: �TD�,D
                   6621: �VD�TD
                   6622: �E�E
                   6623: ��E�E
                   6624: �E�E
                   6625: GE�E
                   6626: �ND�>D
                   6627: �>D�>D
                   6628: ��D��D
                   6629: ��D��D
                   6630: �TD��D
                   6631: ��D�ND
                   6632: ��C�>D
                   6633: �NDFMD
                   6634: t�Eu�E��E
                   6635: �E9�E8�E
                   6636: �F�F�Fv�Ev�E@�E
                   6637: ��E�F
                   6638: u&E�&E
                   6639: ��E��E��E
                   6640: �E��D
                   6641: ��D�       E
                   6642: �   E�E
                   6643: G�D��D
                   6644: v#Ev�D
                   6645: v�D��D
                   6646: �   E�     E�E9E
                   6647: 9E9#E
                   6648: ��E�       E
                   6649: 9�F��F
                   6650: 9YD9�D
                   6651: 9�D9E
                   6652: �   E�     E
                   6653: v�D9�D
                   6654: vZDv�D
                   6655: v�Dv�D
                   6656: �uFuvFswFpwF
                   6657: �F�F
                   6658: �~F��F
                   6659: ��Fn�F
                   6660: Q�EQF
                   6661: Q�FR�F
                   6662: 
�F��F
                   6663: R�F
�F
                   6664: ��Eg�Eg�EQ�E
                   6665: QE�E
                   6666: �E��E
                   6667: �1F��F
                   6668: e�Fb�Ff�Ff�Fe�Fg�Fh�F
                   6669: h�Fh3Fv3Fv0F�1F
                   6670: �1F�1F
                   6671: ��Fe�F
                   6672: R�DN�DN�DP|DOyDLxDGwDAmD=nD:mD7jD1gD,bD(bD#dD!fDlDvD
                   6673: vDxDyD
                   6674: �.E�iD
                   6675: R�E��E
                   6676:        �iDnDsDzD�D
                   6677: �DD{DyD
                   6678: ��E�.E
                   6679: ��F�;F
                   6680: 
                   6681: �F�F�F�F�F�F�F�F�F��F
                   6682: �;F�:F�5F�2F�.F�*F�'F�#F�F�F�F�F
                   6683: ��F��F
                   6684: ��F��F
                   6685: �rD�uD�vD�wD�uD�sD�oD�iD�dD�_D�^D�aD�cD�eD�dD�`D�`D�\D�[D�[D
                   6686: ��D�D�D~�D~�D��D��D��D��D��D��D��D��D��D��D
                   6687: ��D��D��D��D��D��D��D��D��D��D��D��D��D�D�tD�rD�rD
                   6688: 
                   6689: �[D�]D�aD�dD�dD�`D�^D�_D�cD�eD
                   6690: �eD�iD
                   6691: �2E�2E��D��D
                   6692: �.E�.E�0E�.E�2E
                   6693: Q:F�;F
                   6694: ��FR�F
                   6695: ��E��D
                   6696: ��D��D�D
                   6697: X�EW�E=�E=�E��E
                   6698: �D�D<�D<�Dw�Dw�D��D
                   6699: 
                   6700: ��D~�D}�Dy�Dy
                   6701: EvEwEvErEpE
                   6702: pEs Eq#Em*Ei*Eh/E
                   6703: h/Ec:EdBEeMEcXE^bE\hE[qE\{E[�EX�E
                   6704: �1F�0F�.F--F-+FR-F
                   6705: ^�DY�DV�DT�DQ�DN�DM�DM�DN�DO~DOyDNuDIqDDqD?oD<mD:gD8]D7SD6ID5BD49D24D./D
                   6706: ��D��D
                   6707: �E��D��D��D��D
                   6708: ��E��E��E
                   6709: ��E��E��E��E�yE�oE�lE�^E�UE�NE�ME�JE�AE�8E�3E�0E�,E�"E�E�E�E�
                   6710: E�E
                   6711: �jD�iD�mDmD
                   6712: &��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D�|D�vD�mD�jD
                   6713: mD�D
                   6714: �Fh�F
                   6715: �F�F
                   6716: e�F�F
                   6717: �F�F
                   6718: �jD�fD�cD�_D�\D�WD�VD
                   6719:  mDmD
                   6720:        �VD�SD�PD�ND�ID�DD�=D�9D�5D
                   6721: �F�E�E"�E(�E,�E/�E1�E5�E9�E<�E=�EB�EH�EK�EM�EM�EK�EH�EI�EL�EL�EK�EN�ET�EV�EX�E
                   6722: ��E�1F
                   6723: X�E��E
                   6724: �E�SD
                   6725: �SD�SD�VD�VD
                   6726: �E�E
                   6727: �F��E��E
                   6728: ��E��E��E��E��E��E��E��E
                   6729: �F��F
                   6730: ��E��E
                   6731: ��E��E��E��E
                   6732: ^�D_�D_�Db�Dg�Dl�Dr�Dw�Dz�D|�D~�D�D
                   6733: �D��D��D��D
                   6734: PQDhPDhRD�SD
                   6735: �K��J
                   6736: *��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J�qJ�qJ�pJ�mJ�lJ�kJ�jJ�ZJ
                   6737: �PH�PH7PH7kH8kH8}H�~H
                   6738: ��G��G��G��G
                   6739: ��G��G��G��G��G��G��G��G
                   6740: ��G��G�H�H�
                   6741: H�
                   6742: H�H�H�&H�&H�PH
                   6743: ��Ge�G
                   6744: e�Gu�Gw�G��G��G��G
                   6745: I5I;I@IFI
                   6746: FININIO$IS(IX(I]+I`3I
                   6747: �
J�J�J[J[J J&J
                   6748: `3Ie6Ij<IjDInHInPItQIy]IveIvkIzlI|uI�xI��I��I��I
                   6749: ��I��I��I��I��I
                   6750: &J�I�I@II
                   6751: �FH��G
                   6752: �G\�G]�G��G��G��G��G��G
                   6753:        cEHZEHZHHFHDH�EH�GH�FH�FH
                   6754: �HHcEH
                   6755: ��G�G
                   6756: �LI�MI
                   6757: �PH�vH��H�I�LI
                   6758: 
                   6759: �MI�MI�IItIItLIfMIf�I7�I6�I��I
                   6760: �FH�QH
                   6761: �QH�PH�MHgMHgOH,NH+PH
                   6762: +PHPH�PH
                   6763: 
�GX�G��G��G��G
                   6764: ��G�G
�G
                   6765: ��G��G
                   6766: �G�F
                   6767: �YI�ZI��I��I��I��I��I��I�J�J�J�J�/J�/J�CJ�DJ�mJ�mJ�{J��J
                   6768: �LI�PI+QI,IIfIIgLI�KI�NI
                   6769: �NI�LI
                   6770: ��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J��J
                   6771: ��J��J��J�K
                   6772: �K��J��J��J��J��J}�Jw�Js�Jn�J]�JW�JO�JI�JG�J?�J5qJ1pJ/vJ+qJ)lJ gJnJlJ\J�[J�VJ�WJ
                   6773: �WJ�BJ�+J��I�yI�MI
                   6774: �LI�YI
                   6775: fZGXZGV�F
                   6776: 
�F
YG
                   6777: 
YGfZG
                   6778: 
&J
+J�+J�@J
                   6779: �@J�AJ�aJ�`J��J
                   6780: �YI�YI�lI�mI��I��I��I��I��I��I��I��I��I�I
&J
                   6781: �I�I��H�QH
                   6782: cEHbgH`�H`�H`�H`3I
                   6783: II�I�I�I�I
                   6784: fZGe�G
                   6785: �I�I�I�LI
                   6786: 
�G
YG
                   6787: ��F��G
                   6788: j�Jo�Js�Jz�J}�J��J��J��J��J��J��J
                   6789: ��J��J��J
                   6790: �J6�J
                   6791: T�JY�JSK
                   6792: 
&J&J
                   6793: �K�WJg!�Og!�Of!yOg!;Og!Og!7Nf!"Nf!�Mg!�Mg!�Mg!�Mg!�Mg!oMg!Mg!�Lg!~Lg!Kg!YKg!Kh!�Kg!�Kg!�Kg!Kg!Og!�Ng!�Ng!hNg!7Ng!~Lg!lLg!CLg!Lg!�Kh!�Ki!Qg!�Ph!�Qh!\Qi!Qi!Pg!�Og!�Pi!P�O�HO�nO�nO�hO�hO�oO�nOb;Od3OeOrOsOO�O�O�HO�nO�nO�kO�bO�]OzVOrYOnSOgLOeEObBOb;ONIOPDOU?OW=OY6OW2O�,O�FO�EO�KO�KO�PO��O   �9O�6O�/O�(O�+O�)O�#O�)O�,O�,O�,OW2O_0Og4Ok1Oq3O|0O�9O     ��O��Oq�Op}Ol|OkpOVpON\ONIO��O��O��O��O��O��O��O��O��O��O��O��O��O��OUmLU�LU�LQ�LM�LI�L�<L�<L�@L�?L�CL�CL�CLFL   KLLL[LaLeLhLmL$nL(jL.jL3oL3oL5lL<qLNfLQjLUmL�oL�NL�ML�@L�@L�<L��L��L��L��L��L��L��L��L��L�L�wL�oLI�LG�LC�LC�LG�LK�LI�LA�L5�L$�L �L�L�L�L�L�L�L
                   6794: �L�L�L�L��L
                   6795: ��K��K��K��K��K��K��K�K�K
�K    
�K�K�K�KLLLL�L�L�L�L�L�L�L�L�L�L�L�L�L�L     �L�L�L�L�L�L�L�L�L�L�L�L��K��K��KQ LOQ VOO XOP kOQ mOQ xON zON �OJ �OJ �OL �OL �OJ �OJ �OH �OJ �O
" �O �O �O �O �O �O �O �O �O �O dO cO
 LO
 LOQ LOJ �O7 �O7 �O" �O�
Me
M
                   6796: UL�L�=L�>L�dL�dL�oL�pL��L��L    ��L��L��L��L��L��L��L��L�&M�&M�M�
MUmLUL��L��L e
M9
M:�L=�L=�LA�LC�LG�LI�L�
M�IM�IM�xM�xM�qM�sM�yM�yM�M��M��M��M��M�bN�ZN�LN�LN�3N�,N�1N�,N�/N�,N�"N�"N�N�N�N�N�N�N�N�N�N�N~�M}�Ms�M^MMMBM:M5M��M��M��M��M��M��M��M��M��M��M��M�N�N�N�N �N�N�+N�8N�EN�EN�TN�[N�bN�bN�cN�eN�cN�bNs�Mt�Mt�MrSM8SM8]M^M5M5M*M'+M)4M73M85M85Md5Me
M�eN�bN�eN�eNkNhNiNoNoNlNmNrNtN!yN�N�N#�N(�N3�N9�N�O�     O�O��N��N��N��N��N��N��N��N��N��N��N��N�N       �N
�N�N�N�N�N��N�uN�kN�eN8ODO�DO�HO
                   6797: 9�N7�N9�N:�N3�N-�N(�N(#O'O8O!O!�OJ!�OL!�O� �O� �O� �O� kO� iO� KO� KO� KO� GO� @O� /O� *O� %O� O� O!O� O� OL!�O� �O� �O� �OULU�K�L��L��K�L�L�L��K��K��K��K��K��K��K��KU�K��K��K��K!Og!Og!�OL!�O��L�M(M(CM'CM'RMRMWM�ZM�YM�RM�QM�MM�KM�LM�OM�RM�UM�XM�XM�XM�\MWMXM�XM�WM�ZM�\M�nM�zM��M��M��M��M��M��L��L(M(CM�bN�fN�fN�jN�jN�nN�fN�mN�gN�mN�vN�vN�uN�wNswNswNs!Ns!Ns�M�nO��O��O��O��O��O��O��O��O��O�yO�sO�nO
                   6798: ��O��O��O��O��O��O��O��O��O��O��O��O��O�<L�1L�0L�(L�'L�L��KU�K�M�M        ^MlM~M��M�M�M�M�M�M�
M�M�M
                   6799: M
                   6800: *M+M0M5M�M��M��M��M��M��M��M��M��M��M��M��M�
M
                   6801: wL
                   6802: bLbLNL NL!BL5BL8:LE9LFLbL��L        �L
                   6803: wLB�L(�L'�L%�L&&M&&M(M(MbLa L[:LbDL]fL^oL\zLd�L]�LP�LN�LS�LX�LR�LI�LB�L�1O�-O�)O�$O�O�O�  O��N��N��N��N��N��N�aN�N�KO�KO�bO�SO�NO�JO�HO�3O�1O�bO�SO�_N�KO�-N�<N�BN�?N�LN�LN�TN�\N�\N�_N�N�N�N�'N�'N�(N�-N�eN�bN(CM0CM9GM>JMBQMMWMO\MMhMLmMNyMQ}MT�MS�MV�M[�Mc�Mr�My�M|�M��M��M��M��M��M��M��M
��M��M��M��M��M��M��M��M��M|�Mz�Mu�MsNsNnNkNj Nj NjNeNgNi Nn!Np'Nr-Nq5Nq7Nx>N}DN�DN�CN�CN�EN
                   6804: �EN�LN�VN}]N~aN{gN�sN~�N{~Nu�Nu�Nl�Ni�N_�NY�NM�N<�N9�NBqNBwNswNb;O^7OY9OW/OO&ONOGOKOO
                   6805: ON�NJ�NK�NJ�NF�ND�NG�NC�NF�N8�N6�N*�N)qN)qNBqN�oL�jL�jL�pL�oL�oL�LU�KG�K�K�K
                   6806: wL�vL�XL�XL�XL�AL�AL�)L�'L�L�L�&L��K��K��K
                   6807: ��K��K��K��K��K��K��K��K��K��K}&Lw&LsLlLa�K_&LbLbLbLU�KX�K^�Kf�Kk�Ko�Ks�Ks�K��K��K��K��K~�K~L}&LU�KU�K�KU�K��K�KbO
                   6808: cO    qO&qOyOyO�yO��O��O8O78O8.OW-OW2ONIOAMO:LO5QO5QO.QO+OOSOROTOTObO'N'N6'N7!N7!Ns!NBqNAlNBdN9VN3UN.\N)]N'[N(VN#MNGNAN9N/N'N�2N�/N�)N�"N� N�)N�/N�4N�;NCN@N&*N %N
                   6809:  NN�1O�/O�*O�"O�O�O O�&O�0O|0Ow8Ow8O~\O}bOzeOtiOooO`mO]pO]pO[tO`xOb~Oa�O]�O[�O[�O[�OX�OT�OO�OK�OG�OC�O�,O�)O�O�
O��N�ON�2N��M��M��M�NsNxNzN�N�      N�N��M��M��M��M��MNN!N'N.N4N<NB
                   6810: NG�MONXN[        NcNi NmNsN
C�O;�O@�O9�O7{O3vO(qOhOgOvO�wO��O��O     �L�L�+L�ML�RL�ZL�ZL�WL�XL(�M(�M/�M/�M2�M2�M7�M7!N�M(�M
                   6811: 'NNN�M�M�M��M��M&�M�MQ LO� KO� �OJ �O��O��O��O��O�}O�bO�KO
 LO" �O��O�2N�5N�;N�9N�;N�9N�ENB�L@�LG�LIMSMZ
MiM
iMoM�"M�2M�AM�HM�IM�NM�XM�`M�WM�XM�dM�dM�nM��M��M��M�M      �M �M
�M�M�M�M�M�M(�M
                   6812: (�M*�M�M�M�M�M��M
                   6813: N
                   6814: NN�SO�[O�\O�SO�SO�WO�gO�gO�jO��O��O��O[�O(�M(�M7�M8�Mt�M��K��K]�OW�ON�OH�OC�O��O��O��O��O��Oz�Oh�O]�O��O��O��L��L��L��L��L�M�
M�zL�zL�oL�rN)qN��O�rN��O��ObO�O�O�O�O      �O&�O��O��O�_N lN
 sN �N. �N6 �N= �NF �NJ �NU �N[ �N^ �N^ �Nj �Nn �Nu �Nz �N� �N� �N� �N� �N� �N� O� O� O��K��K�rN��M
��O��O��O��O��Ov�Oa�OW�OM�OD�O>�O:�O5�O       5�O1�O-�O/�O(�O,�O&�O"�O�OCMEMI"MH,MC7M>7M;GM;GM3HM0MMAWMH`MLhM}&L}5L�5L�fL�fL�xL�xL�{L�|L��L��L��L��L��L��L��L��L�L
                   6815: �L�L�LLhMHrMC�M?�M;�M4�M0�M1�M1�M-�M(�M�L!�L%�L2�L8�L:  MCM@!LFLLLL
                   6816: LW�K[�K[�Kg�Km�Ku�K|�K|�K~�K~�K�6Ld6Ld!L@!L�&L�L�
L�L�L�L�6L        ~�K��K��K��K��K��K��K��K��K
                   6817: ��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K�&L        S lKX mKZ �Kf �Kf �Kj �Kr �K� �K� �K�nK�mK nK �K1 �K5 �K7 �K7 �KA �KA �K> �K> �KI �KJ mKS lKd bL, bL, \L  KL  DL DL >L >L 6L�6L�L�L�
                   6818: L 
                   6819: L �K
 �K �K �K �K �K
 �K �K
 �K �K��K��K��K�uK�nK� �K� Lt Lt MLt MLb NLc TLd bLR #KS KY     K]      K� �J� kK� lK� �KS lKR #K� �K� �K� �K� �K� �K� �K� �K� �K�M�M�:Mt;Ms9Md8Mb>Mb>M]DM_LM]PMYUMZZMUYMS]MS]MScMOdMLhMz�L��L��L��L�MCME
MKMNMP�LZ�L]�Lc�Ld�Lq�Ls�Ly�Lw�Lz�LR #KI "KI K; K� DM� MM� EM!IM!NM!NM!^M!ZM!fM !fM!tM !xM!!}M!�M"!�M)!�M4!�M@!�M
                   6820: @!�MD!�MK!�MN!�MJ!�MK!�MF!�MH!�MM!�MQ!�MQ!�MY!�MZ!�M\!�M_!�M`!�M`!�Mg!�M� }M� |M� qM~ sMy wMu tMr tM� N� 
                   6821: N�     N� N� N� �M� �M� �M� �M� �M� �M� �M� �M� �M� �M� �M� yM� {M� xM� }M� M� M� M� 
                   6822: M� M
                   6823: r "My !M� M� &M� M� M� M� M� M� Mg!7Nc!5Na!.N_!/N\!4NL!.NJ!/NG!4NC!4ND!+N>!&N=!"N;!!N6!,N.!.N,!%N+!RN+!RN!QN!KN� JN� iN� jN� fN� gNr tMs ZM    � M� 
M� M� M� $M� /M� 4M� 2M� =M� =M� CM� DMs ZMr "M� gN� gN� bN� bN� UN� UN�  N� N� M� �L� �L� �L� M� �L� M� M� M@!L;&L:+L;1L:7L
:7L77L73L52L5,L1+L0!L     L�K��K��K��K��K��K��K~�K~�K��K��K��K��K��K
                   6824: �K
                   6825: �K�K�Ku�Kv�K~�KU�K��K��K��K��K��K��K��K� DM� �L!�L!~L
                   6826: !zL
                   6827: !zL$!zL&!~LT!|LU!�LU!�Lg!~L�<M�NM�OM�VM�WM�XM�\M�]M�pM�qM��M��M��M��M  �M�M�M�#M�)M�)M�1M�5M�<Md�Ma�Md�MaMY|MQtMLhM��M�M|�Ms�Mn�Md�M
                   6828: ��M��M��M��M��M��M��M��M��M��M��M��M��M��M��M��Mg!KW!}KV!�K!�K!�K!�K� �K�6L�aL�cL�jL�zL�L�|L��L��L��L��L1xL9qL@mLAfLCNL@KL==L:7L��L��L��L��L��L��L��L��L��L��L��Lz�Lz�Lw�Lo�Lk�Ld�La�LV�LN�LA�L7�L4�L4}L1xL�nK�mK�hK�mK�eK�[K�XK�XK�:K�6K�/K�/K�&K�K�K�K��J
                   6829: # �M" �M( �M) �M9 �M> �MB �MM �MU �MW �MW �M[ �Mm �Ms �Mr �Mr tM� N� N� Ns Nt �Mo �Me �M] �M^ �M\ �MY �MY �ML �MJ �MF �MF �M+ �M+ �M# �M�&L�L�L�L�L�L��L��Lr "Ml !Md M`  M^ M_ M( M& �L��L��L��L��L��L��L��L��L��L��Ld bLe kLc �Lc �Li �Li �Lr �Lz �Lw �Lw �Ls �Lw �L� �L� �L� �L� �L� �L� &M� M� �K� �Kh!�KW!�KU!�K!�K!�K!�K� �K� �K!� O� O� 
                   6830: O� O� O� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� �N� ~N� �N� gN1xL0|L0�L3�L)�L�L�L~�KIK|GK|0K|0K�0K�0K�/K�-N�N�N�N N N N N       N
                   6831:  N
                   6832:  N
 &N N 
N N N N  N N %N %N! %N  *N% )N& 0N& 0N0 1N1 >N4 ?N4 BN9 BN9 BN9 JN= KN> UN@ VN@ `NJ aNO eNS rNU NZ �NZ �N_ �N\ �N^ �N^ �N[ �Nb �N_ �N] �N_ �N^ �N�<M) >M) ZMs ZM��M��M��M��M# �M  �M! �M �M% �M, �M1 N8 N7 N; *N8 1N9 BN��J�K�K�&K�'K�#K7$K83K83Kt4Ku0K|0K��K��K��K��K��K��K��K��K��K��K��K��K�ZK�K�K�K��J  � M� �L� xL� xL� bL� bL� VL� UL� �K� �K� L� L� 3L� 5L� WL!WL!aL!dL!kL
                   6833: !nL
                   6834: !zL�      K�KU�K��KH+PHJQHJQBFQ�zO�1O�1O\O\�N��O��O��O�zO\�N\�M��M��M\�M��MI�NT�N\�N��O��O��O��O�ZQ��P��P�5P�6P��O��O�WQ WQ ]Q�\Q�ZQ��P�WQ��O��P��OH+P�ZQIHJQ�WQ�bQ��P��P��P��P��P��P��P��P��P��P
��P��P|�P}�Ps�Pp�Pr�Ph�Pc�Pb�P\�PT�PP�PP�PP�PL�PG�PG�PA�P@�P0�P,�P-�P-�P-�P.�P0�PKuPJpPLoPM-PI(PI"PCP5P5�O
��O�%P�&P�KP�]P�bP�kP�vP��P��P��P��P��P��O��O��Q3�Q��Q��Q��Q��Q3�Q4�QB�Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q��Q�iQ�QQ�P�P�P�P-�P�=Q��Q��P�=Q��P��P��P��P��P��P��Q��Q��Q��QM�Q3�Q
                   6835: ��Qp�Qp�QB�Q@�Q%�Q$�Q&�Q&`Q�bQ��P��P��PB�PD�P��P��P�P�=Q�>Q�;Q;Q      LQ LQLQkQMmQ��Q��Q��QMmQKxQN�QN�QG�QC�Q@�Q@�Q��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P�P&�P(�P(~P5~P7{P>{P?nPEoPEoP]pP]Q["QV-QO@QPMQQZQNeQMmQ]pP^rP^rP]Q��O��O�P�P�P�P�P�+P�2P�4P�6P�7P�:P
                   6836: ;PAPAPEP#FP#IP(IP(MP7MP7FPEFPEoP]�O^P^0P]pP^P^0P<GL@JLDLLJJLPLL  PLLTRLSWLV\L`_LshL|_L�_L�kL�kL�sL�vL�zL��M��M���L��L�L�L�L.�L/fL2]L4UL7XL>WL?QL<NL;KL<GL= LALDLOLS�KX�K_�Kf�Ki�Kn�K�L�L�L�L�L�L�L�L�L�L�&L�L <GL:@L:8L65L60L=,L=L=L=     L�K�K�YJ�K�5L�7L�AL�AL�<L�AL�ALCLEL��L�L�vL�gL�`L�WL�WL�SL�HL�<L�5L�L��LELULXL\LzL�L�K�K�K�*K�=K�?K�LK�XK�YK�_K�bK�oK�sK�xK��K��K��K��K��K��K��K��K��K��K��Kg�KU�KT�KIzLHLBuLIzL�K�K�K�K&�K,�K-�K/�K3�K5�K2�K�5L�0L�)L� L�L�L�L�
L�
                   6837: L�&L�L�
                   6838: L�L�L�L�K�K�K
�K�K�K�K�K2�K/�K(�K$�KLLLL*L4LDLFLEL�K�K�K�K�K�K=    L=L9L6�K2�KY�K��K�KY�K�L�L�L�L�L��L��L�~L�~L�yL�~L�{L�{L�wL�sL�nL�eL�cL�`L�^L�KL�?L�-L�'L�L�L�L�L�L�L�L�L�L��K��K��K��K��K��K��K��K��K��K��K��K��K��K�K�K�K��K�KIzLUzLXwL]yLkuLozLozL~L�zL��L��L�}L��L�{L     B�KK�KN�KL�KU�KZ�K`�Ke�Kk�Kk�Kr�Kw�Kw�Kx�K~�K�L�L�L�L�L�L�L�bQ��P8 Q�Q�cQ�bQ8 lP8 Q��P��P��P��P�xP�wP�pP�nP�vP�uP�oP�pP�lP8 lP��O��O�P�P�P�P�P�Ps
PrP^P��O��O��O��O��O��O��O+Q�3Q�<Q�NQ�PQ�NQ�PQ�PQ�SQ�ZQ�cQ�fQ�iQ�oQ�oQ     �oQ�qQ�wQ�~Q��Q��Q��Q��Q��Qd�Q@�Q]QcQkQtQ{'Q+Q��Q��Q��Q��Q��Qd�Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q^0P�2P�;P�;P�?P�?P�CP�EP�\P�\P�YP�WP��P��P��P��P��P��P�rP^rP     �WP�\P�`P�pP��P��P��P��P��PB �QC �QG �QJ �QP �QR �QV �QX ~Qg ~Qw gQw ZQ} ZQ~ UQ� UQ� QQ� OQ� KQ� GQ� 8Q� 9Q� 4Q� 4Q�  Q�  Q� Q� #Q� )Q� 0Q� 9Q� MQ� WQ� ^Q� _Q� jQ� qQ� {Q� |Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� �Q� Q� Q� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P     i!QV!Q-!Q,!Q!Q
!Q� Q� Q� QC!�PN!�PZ!�Pg!�P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P� �P!�P!�P!�P'!�P-!�P;!�PA!�PC!�P�bQ�bQ�oQ+Q�'Q�Q�Q�Q��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��O��O��O��O��O� P�P�P�*P�4P�:P�GP�JP�PP�WP �Q��Q��Q��Q��Q��Q��Q8 Q� Q� Q�  Q��Q��Q��Q��Q��Q��Q��Q�)R��Qd�Qd�R� Q� Q� Q� Q8 SP� SP
� SP� XP� \P� gP� sP� }P� �P� �P� �P� �P� �P� �P� �P8 lP8 SP� P� �Oi!PZ!PZ!PK!PK!'PK!'P;!(P:!2P-!2P-!P� P� P� P� P� %P� %P� +P� +P� .P� 7P� <P� CP� IP� NP� SP8 SP7 �O�KKKK�K�K�#K�]K�\K�eK�eKgKlK+lK+fKffKhdKseKYK�KseKu�K��K��KY�KYK6�J9
                   6839: K@KC        KL     KOKT�J_KeKd
                   6840: KgKj�J        K�JSKXK\K_K�K     KK�K� K�;K�;K�dK�dKseKYK�KE�TM�TP�TT�TT�TZ�Ta�Ta�Tk�Tr�Ty�T|�T��T��T��T��T��T��TG�TK�TN�TU�T[�T_�Tb�Th�To�Ts�Ty�T}�T��T��T��T��T��T��T��T��T��T��T��T�T�T�T�T�T�T%�T0�T;�TC�TE�TA�TG�T��T��T�yT{mTvbTw^Tz`TgT�`T�WT{QT{GT;T�5T�.T�'T3~T<TI|TOTOTV�T\zTcvTlvTtzT|~T��T I�TP�Te�T��T��T��T��T��T��T ��T��T��T��T��T��T��T��T��T��T��T��T��T�T�T�T�T�T#�T'�T/�T6�TD�TI�T��T��T��T��T��T��T��T��T��T�T�T(�T.�T.�T6�TD�TK�TY�Te�Tq�Tx�T~�T��T��T��T��T��T��T
                   6841: �T�xTT{ToToTyTzT$vT/|T/|T3~T��T��T�}T�T�{T�T� &U� �T� �T� �T� �T� �T� �T� �T� �T� �T� �T� {T� bT� JT� @T� 4T� ,T� T� 
T� T� �S� �S� �S� �S� �S� �S
                   6842: � �T� �T� �T� �T� &U� �T� �T� �T� �T� &U��T��T��T��T��T��T��T��T��T��T sT bT qT �T �T �T �T
 �T �T �T       �T �T, �T8 �T? �TE �TR �T` �Te �Ti �T       � jS� rS� sS� uS� |S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� ~S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� S� S� zS� sS� hS� dS� eS� eS� jS� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �Sy �Sw �Ss �S i �Ts �T� �T� �T� �T� �T� �T� �T� �T~ oS� iS� iS� hS6 mS< oSA qSG eSJ ^SQ bSW bS^ gSi lSp mSq dSu bSy iS~ oS
� S� �S� �S� �S� �S� �S� �S| �Sw �Sq �Sp �Sv �Sw �Se �Sk �Ss �Sz �S~ �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� |S� ~S� yS� S
w �Sp �Sm �Sj �Sg �Sg �Sj �Sm �Sg �Sb ~SY �ST �SP �SA �SA �S< �S3 �S0 �S/ �S4 �S4 �Ss �Sm �S_ �SS �SH �SF �SH �SG �SL �SO �SU �SV �SN �SM �SM �SQ �S] �S` �Se �S4 �S+ �S+ �S( �S" �Sh!eRh!�Q
�XT�`T�gT�pT�wT�|T��T��T��T��T��T��T��T
�}T�uT�rT�gT�pT�uT�yT�~T��T��T��T��T��T
                   6843: ��T��T��T��T��T�xT�tT�uT�pT�}T �S �S �S% �S+ �S4 �S9 �S@ �S> ~S8 vS6 mSP �SO �SG �SD �S= �S8 �S8 �S; �S; �S= �SD �SJ �SN �SH �SH �S@ �S; �S4 �S0 �S) �S* �S* �S3 �S< �SC �SF �SL �SM �SM �SG �SA �S!�S!�S!�S
                   6844: !�S!�S!�S!�S!�S&!�S&!�S!�S        !�S     !�S
!�S!�S!�S!�S7!�S0!�S.!�S*!�S"!�S&!�S!!�S!!�S)!�S/!�S.!�S%!�S$!�S)!�S,!�S0!�S1!�S6!�S7!�S!�S!�S!�S!�S
!�S
!�S!�S     !�S!�S!�S!�S!�S!�S!�S%!�S$!�S!�S!�S
                   6845: � hS� lS� vS� {S� �S!�S!�S!�S!�S
!�S

!�S!�S!�S      !�S!�S!}S!zS!zS!{S!tS!!sS&!wS)!{S� VS� dS� fS� iS� hS� hS   � hS� kS� cS� ]S� ZS� NS� NS� JS� VS" �S �S" �S& �S% �S �S �S �S �S �S �S �S �S! �S! �S �S% �S$ �S  �S �S�'T�!T~T�T�T�*T�6T�CT�IT�OT�XT     5!�S8!zS<!|S@!�S?!�S7!�S8!�S?!�SB!�S)!{S.!{S2!zS5!�SB!�SL!�SP!�SS!�SW!�SY!�S]!�S^!�S^!�Sa!�Sc!�Sa!�Sf!�Sg!>Sh!�Rh!eR@�RF�RO�RW�R\�Rb�Rd�Rd�R^�RX�RW�RO�RM�RE�TG�TFfT8fT8\T8ST8ST>STIVTNOTQOTUXT
                   6846: xYTXT�UT�[T�UT�PT�JT�=T�>T�;TUXT]XT]]Tc[TeWTkWTuRTxYT�oT��T�;T�oTG�TG;T%T(T.T$-T23T23T52T77T8ST2T+T*T+T%TG;TN;T�=T�=T�BT�CT�BT�IT
                   6847: �IT�JT�FT�?T�4T�,T�.T�&T�&T2T�Q�R��R��R��Ru�RnzRirRkkRqjR�UR|BRx4R[R[RS�QA�Q�R��RC�SF�SF�SF;TG;T�R�R��R�R�Q��Q�kR��R��Q�kR��R��R��R��R��R��R��R��R~�Rr�Rm�Ri�Rd�Rd�R    �R�RYSoSrSuS}S|S�S�S�Sz�S��S}�S��S��S��S��S��S�~S�mS�\S�PS�@S�,S�"S�S�S��R��R��R��R��R
                   6848: �SS
                   6849: S}S�S&�S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��Sz�S�S�S�S%T!TTTTTT&T�S�S��S��S��S��S��S�S�S�S�S�S"�S'�S.�S.�S6�S0�S+�S%�S�S�bS�T�T�;T��R�bSz�Sx�Sy�Sv�Sn�Se�S_�SX�SS�SM�SF�S�bQ��Q0]T/&T2%T2�S2�S5&T8T>&TATATE&THTM�S^T`T
                   6850: `TbTe�Si�Sk�Sn�Sr�Su�Sw�S{�S|CTIBTHWT@WT@TT;TT9WT9aT9aT6bT5]T0]T{�S|CT��R��R��R��R��R��R��R��R�S�S�
                   6851: S�S��S��S��S��S��S��S��S��S��S�uS�pS�&S�S�1S��S��S��S��S�&S��R�S�S�    S�S��R��R��R��R��R��R��R��R�S��R��R��S��S��S��S��S��S��S��S��S4TBTcTdTmTuT3~T4XT3VT3.T4-T4TuTz!T}&T�'T*�S*�S4T4�S/�S.�S-�S-�S*�S*�S.�S4�S8�S=�SA�S     A�SG�SQ�SY�Si�Sq�Sz�S{�SxTxTwTuTtTuTI�TJ�TE�TE�T>�T<�T8�T2�T2�T+�T+�T$�T �T�T�T�T�T�T#�T#T(T+qT+mT0jT~aT�aT�jT�kT�sT�tT��T     0jTNjTOaT^`TbTThTTiWT}VT~aTC�R8�R'�R%�R�R{R�{R�QR�QR�R�R��Q��Q��QaR``RSaRR|RD|RC�RB�QB�QK�QKRaR)YT0jT�oT�oT�kT�lT�pT�pT�pT�jT�iT�fT�jT�lT�sT�sT��T��T��T��T��T��T�wTkTkT)YTC�RDS�/S��R��R�wR�NR�MR�R�R��Q,S(S SSSSS
S
S�S�S�S�"S�(S�&S�/S�/S�+S�-S�$S�)S�(S�.S�.S�/SDS?S;S3S0S/
S,S
T%�S%�S'�S(�S)�S)�S1�S;�SE�SE~SPqSP_S)YT#ZT"WT&UT"ST#>T=T3T,T+T"T"T!T!TTT
TTTT�0S�/S�5S�9S�BS�ES
                   6852: P_S\_S]=Sc=Sh9Sv5S}*S�/S�-S�0S�ES�MS�US�VS��S��S��S��S��S��S��S��S�T�T�.T�/T�7T�7T�@T�AT�GT�HT�NT�VT�jT�qT�qT�vT�vT��T��T��T��Q�Q
                   6853: �Q/�Q:�Q-BR(8R$4R"*R'RRRRRRR$R$R*R�(R�,R�,R�)R�.R�0R�/R�1R�*R�)R�1R�2R�/R�2R�,R�&R�%R�R�"R�R�*R�)R�&R�&R��Q  :�Q8�Q5�Q.�Q&R))R-1R/:R-BR!SSSSSS&S�S��R��R�R�R'�R'�R*�R*�R*�R'�R'S'S#S!ST�T�bS�`S�aS�^S,_SP_Su
                   6854: So
                   6855: Se    S`S\
SVSVSKSDS�Su
                   6856: S�R�SaR�R�R�R�R�kR%iR%�R��R��R��R
                   6857: �/S�1S�6S�:S�FS�LS�DS�ES�HS�ES,S,-S,XS+fS%hS"nS&sS&vS$yS%�S+�S1�S0�S,�S,�S!�S"�S"�S)�S2�S0]T0T-�T.�Tu
                   6858: SvSv)Sw3SGSzPS{US�YS�fS�{S��S��S��S��S��S��S��S��S��S��S|�S{�Sw�Sw�S�S��S��S��S�S~�S{�S|CT}RT�ST�XT�XT�XT��T��S��S��S��S��S��S��S
                   6859: ��S��S��S��S��S��S��S��S��S��S�S��R�&S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S@�Q:�Q*�S�S�S��S    
ZSeSoS�S�S�S�S%�S*�S!S
ZS�XT�XT��S�XTnRmRkRmR`R�dR�eR�rR
�rR�vR�wR�|R��R��R�|R�sR�hR�^R�ZR�YR�)R-BRnRTTT")T$/T'/T'T4T�*T�-T�-T�)T)T&T'T$T#TTTTTTTTT�XT�aT�`T�*T�*T�R�R�R�R�R�"R�"R�!R�#R�#R�$R�&R
                   6860: nRxR�R�R�R�R#�R&�R'�R'�R
                   6861: �*T�T��S��S��S��S��S��S��S��S9 �QC �QH �QM �QR RZ 
                   6862: Rb     Rh &Rm �Qu �Q~ �Q� �Q� �Q� �Q� �Q� �R� �R� �R� �R~ �Rw �Rs �Rs �Ro �Re �R\ zRS gRU ^RQ ZRP SRE BRF 8R@ 3R@ .RC ,RD (R= !R= R8 R8 �Q9 �Q� �Q� �Q� �Q� �Q� R� R� *R� /R� 5R� 3R� 6R� 6R� >R!AR!DR!@R!CR!@R!CR!CR!JR!JR!PR!SR!YR!bR!oR!{R!�R
!�R       !�R!�R� �R� �R� �R� �R� �R� �R� �R
                   6863: � �R� �R� yR� wR� qR� mR� mR� tR� sR� |R� |R� ~R� �R� �R� �R� �R� �R� �R� �R� �R� �R� �R� �T� ;T� ;T� �S� �SgWSe^S^fSXfSSkS
                   6864: SkSY{SX�SS�SN�SP�SO�SJ�SD�SA�S
ZS[S8ZS:XSSXSgWS�VS�TgWSqXS�XS�WS�VS�VS�TxT0 �QB �Q9 �Q5 �Q1 �Q0 �Q0 �Q0 �Q+ �Q( �Q  �Q �Q �Q �Q �Qj 2Ti �T�T��S �S .Tj 2T��T�T��S �S   �S �Sj 2Tt 4Ts �S; �R> �RE �RF �RI �RM �RP �RT �RX �R[ �R\ �Ra �Rc �Re �Rl �Rk �Rp �Rs �R    �R �R �R" �R" �R. �R2 �R8 �R; �R6 mS6 \S6 HS* ?S( 8S( 0S# $S$ S# S' S( S% �R% �R# �R �R �R �R �R� �R� hSe �Sc �SR �SR �SP �S �R �R �R �R �R �R��R�@R�?R�*R�)Rd�Rc�R7�R6�R1�R*�R�T�T�T�T��R�
                   6865: S�S�(S�-S�IS�RS�VS��R�RS��S��S�T�T��R��R��R��R��R��R    ��R��R��R��R��R��R��R��R��R��R��RA �SR �S �S �S �S  �S" �S+!VR'!XR#!XR!!PR!LR!JRh!eRb!iR`!hR`!_R_!XR[!VRW!ZRS!YRK!URD!RR9!GR5!HR1!NR/!UR+!VR�XT�YT�2T�T �S �S �S �S �S �S �S��S��S��S�|S�hS�cS�aS�RS��R��R��R��R��R��R �R �R �R �R �R� hS� �R+!VR+!nR(!nR)!�R)!�R)!{Sd�Rq�Rq�R��R0707070035050414511004640000030000040000011764430332042471200002300000000255mapdata/counties.x2 8 0
                   6866: 2 9 6184
                   6867: 2 10 12868
                   6868: 3 7 13876
                   6869: 3 8 38744
                   6870: 3 9 113000
                   6871: 3 10 151516
                   6872: 3 11 163016
                   6873: 3 12 170052
                   6874: 4 6 175196
                   6875: 4 7 177776
                   6876: 4 8 197904
                   6877: 4 9 213732
                   6878: 4 10 233712
                   6879: 4 11 245552
                   6880: 4 12 259340
                   6881: 0707070035050414521004640000030000040000011764070330024256100001700000134354mapdata/statesNt�9r�9r�9r�9q�9o�9m�9k�9h�9f�9d�9d�9e�9h�9j�9i�9h�9f�9g�9g�9f�9`�9Y�9Q�9M�9J�9J�9K�9P�9R�9T�9T�9S�9O�9M�9M�9L�9G�9F�9F�9G      :G:G:D:A:A!:B(:A+:?/:=3:=6:>9:F?:NA:TC:YB:]B:`@:b>:c<:c::V::O;:H::C6:B3:D0:J-:Q,:Y-:_1:c5:i8:l8:n<:oB:qH:sL:�&�s7nl7fj7`l7\h7We7Oe7Dd7@b7>^7;\76\7&U7L7H7H7�87�47�27�27�07�-7�)7�(7�(7� 7�7�7�7�7�7�7�7�7t7R74�6#�6
                   6882: �6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6}�6v�6k�6a�6Y�6K�6?�61�6$�6�6�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6{�6y�6w�6t�6n�6k�6g�6b�6\�6U�6P�6L�6I�6E�6@�6>�6;�65�62�64�63�6/�6/�64�65�64�6/�6-�6-�6+7'7'7*7+7+'7%07$37#87$A7"H7#L7'P7/V75X7:Y7@X7CV7DS7CN7@K7;G76B74=72874276.78,7<-7?,7B+7D+7E-7D37D67E77I97J<7J>7ND7NF7MK7NM7QT7UW7^X7a[7e_7g`7k^7m_7od7rf7~k7�p7�s7�x7�|7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�7�7        �7     �7�7�7�7�7�7�7�7�7�7�7�7 �7'�7+�7.�72�7:�7?�7E�7P�7U�7Y�7[�7]�7_�7a�7d�7e�7c�7b�7b�7b�7b8a8h8i8h8d8a8T8O8I8H8I8J
8J8I8M8L8O8V"8^$8`'8c+8h/8n28v98z;8};8�:8�<8�B8�G8�J8�J8�K8�Q8�U8�]8�^8�\8�[8�Z8�V8�N8�M8�N8�O8�P8�O8�K8�J8�J8�I8�F8�B8�?8�;8�:8�;8�;8�98�38�+8�,8&-80818
083848688898<8;8�<8�>8�A8�D8&F8F8F8F8J8Q8T8W8Z8[8^8_8a8b8c8c8e8g8g8e8     ]8Z8V8&U8�X8�X8�V8�V8�W8�X8�X8�Y8�[8�_8�a8�b8�e8�h8�l8�m8�n8�o8�q8�t8�u8�w8�x8{8|8
                   6883: |8y8t8 q8'q8-q85s88s8<o8Fi8Gh8Lg8Sg8Xe8\c8`b8d_8g^8j`8q^8s\8w[8}[8�]8�]8�\8�Z8�W8�X8�Z8�Z8�Y8�Y8�Y8�\8�_8�a8�a8�a8�`8�^8�Z8�W8�U8�T8�V8�Z8�a8�d8�f8�f8�h8�j8�i8�i8�j8�m8�r8�t8�u8�t8�s8�u8�|8��8��8��8��8��8��8��8��8��8��8��8��8�8�8�8�8�8�8�8�8�8�8�8�8�8�8!�8$�8*�8-�83�8;�8=�8?�8D�8E�8D�8E�8K�8M�8P�8S�8U�8W�8Z�8\9b      9j9m9r9r$9s'9
vA=rB=o@=m==k5=j/=f+=`'=`=a=e=l=r=nu�<q�<l�<k�<j�<e�<c�<a�<_�<[�<V�<S�<S�<R�<J�<F�<@�<>�<==>=<=8
=6=5=3=0=*=%=!=== ===
&=
�<�<�<
                   6884: �<�<�<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<�&=�=�=�
                   6885: =�=�=�=�=&!=�$=�'=�3=&==@=A=B=D=J=P=V=[= �[=c=e=c=b=e=e=c=b=g=�i=�i=�h=�`=�_=�`=�j=�o=�{=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=�>�>�>�>�>�>�!>�!>#>&>
                   6886: (>.>
1>2>4>;>=>=>C>G>"M>"P>#U>%W>(X>([>#i>%k>'j>+i>/i>5l>7n>7t>6y>6|>7~><|>@z>Cz>Fy>Iv>Js>Ls>Mv>M}>L�>L�>I�>G�>G�>I�>L�>Q�>T�>W�>Z�>Z�>Y�>X�>Z�>Z�>X�>T�>Q�>K�>G�>H�>K�>M�>K�>I�>D�>B�>B�>B�>?�>;�>7�>6�>6�>5�>4�>2�>/�>.�>+�>'�>(�>)�>+?-$?0-?9F?@W?Hd?Jl?Lt?Ox?P{?R�?S�?R�?Q�?S�?Q�?Q�?P�?P�?O�?M�?K�?H�?F�?       �&F�?F@B@A"@0N@.U@,Y@*a@'i@#s@�@�@�@
�@�@
�@�@�@�@�@�@!�@%�@'~@'v@(r@.t@/y@,�@*�@'�@'�@)�@,�@2�@<�@N�@V�@X�@Y�@T�@Q�@L�@D�@>�@>�@C�@G�@H�@I�@G�@E�@B�@?�@:�@7�@3�@.�@+�@'�@%�@$�@!�@�@�@�@�@�@
                   6887: �@�@�@&�@�@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�A�A�%A�5A�GA�^A�tAx�Aj�Ab�A_�Ab�Ac�Aj�Ak�As�A}�A�}A�vA�rA�bA�MA�IA�IA�MA�SA�[A�eA�rA��A��A~�A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A}�A�A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A~�A~�A�A��Az�Aw�At�Ap�Am�Am�Ap�Aq�Ah�Ad�Aa�Ab�A^�AW�AT�AR�AS�AV�Aa�Ac�Ae�Aj�An�AoBmBiBe�Aa�A^�A^&BbBc  B`B]BXBSBN�AI&BDB=B9B4B1B7BABFBGBC B@B=B9B5B2"B2(B5)B:(B=,B;/B85B57B4;B7>B8CB7GB3CB1CB-EB(MB(PB$NB:B�DB�JB�MBQBUBYB&`BfBiBwB{B�B�B��B�|B�tB�oB�kB�hB�iB�jB�jB�eB�aB�aB�eB�gB�eB�bB�[B�XB�VB�UB�ZB�^B�cB�hB�lB�sB�wB�|B��B��B��B�|B�{B�{B�~B��B�B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B�B�zB�uB�qB�qB�qBtB}xByzBtxBqwBmyBj�Bg�Bc�B\�BW�BO�BL�BG{B?xB,sB$qBoBqBtBqBkB�fB�cB�cB�aB�]B�ZB�\B�^B�WB�YB�YB�XB�SB�NB�JB�GB�IB�NB�PB�NB�HB�IB�FB�AB�BB�AB�=B�<B�?B�QB�UB�UB�VB�\B�aB�cB�bB�cB�gB�jB�lB�pB�uB�xB�}B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B��B�C�C�C�C�C�
                   6888: C�
C�C�C�C�C�C�C� C�"C�&C�)C�.C�2C�4C�6C�8C�>C�@C�EC�RC�SC�WC�]C�aC�gC�oC�sC�yC}C�C��C&�C�C�C�C �C(�C-�C5�CN�CQ�CY�C[�C^�Ce�Ci�Cn�Cs�Cy�C~�C��C��C��C��C��C��C��C��C��C��C��C��C��C��C��C��C��C�D�D�
                   6889: D�D�D�DD!D"D%D)D-D w�?p�?m�?g�?_�?Z@V
                   6890: @Q
                   6891: @M@M@F�?
                   6892: �-D1D&7D-<D1ED5MD9PD>UDD]DI`DNbDQeDWfD]gDbiDfnDioDmmDpnDrsDuwDzxD}wD~zD�}D�D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D�D�D�D�D�D�D�DE#E&E-E0E1
                   6893: E.E-E)
E(E+E2E6E4E5E8EG EG#EE(EF,EK-EJ6EJ:EN9EP<EMAEIGEIOEJ[EK_ENgENkELER�EM�EX�E\�E]�EZ�EL�EI�EJ�EN�EI�EG�EJ�EF�EF�EFF9F4F-F/F*F$F!FFFFF$F�'F�(F�$F�)F�.F�7F�;F�?F�FF�KF�MF�PF�UF�[F�fF�kF�tF�vF�zF�}F��F��F��F��F��F��F��F��F��F��F��F��F��F��F��F&�F&GGGGG $G"*G,3G-:G3AG8EGNLGPRG\WGd]GD
}3�3  �3�3�3��3��3��3��3��3��3��3��3��3�}3�x3�r3�n3�k3�h3�g3�g3�h3�g3�c3�\3�Z3�Y3�Y3�V3�T3}L3wF3sB3r=3q93p23n03`-3[,3Y+3X-3X13]23`63a83^93\:3[>3X:3V73S83Q:3P=3QC3QI3LH3KG3JC3K?3M;3L93K63J43K23K.3A+38,3v&��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�3�3�3�3�3�3��3�3�3�3�3
�3�3�3�3�3�3�3�3�3"�3!�3�3�3�3�3�3�3�3!�3#�3#�3 �3�3�3�3�3�3�3�3�3�3!�3%�3'�3'�3(�35484>�3D�3D�3E�3F�3J�3J�3H�3L4P4T�3U�3T�3T�3Q�3M�3L�3M�3Q�3T�3V�3Z�3]�3_�3f�3h�3h�3e�3a�3`�3`�3f�3h�3h&4i4i4h4k4p4w4z4{4z�3s�3q�3q�3u�3y�3}�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�&4�&4�4�&4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�!4�4�4� 4�'4�,4�/4�24�74�:4�<4�=4�:4�74�74�/4�-4�'4�%4�4�4�4�4�(4�*4�(4�$4�4�4�4�4�%4�'4�*4�$4�"4�#4�%4�,4�-4�04�.4�.414}44z44z,4y*4t,4s/4p24m54k44h14e04b/4]/4U04R-4L/4G/4B,4<(45"4.4)4'4!4!4" 4$$4)%40/43244645;48>4<A4=D4=G4;G48H44D4(34$-4)4%4 444444444&4�4�4�4�4�4�
4�4�4�4�444 4!4#4%4%4(4+414444494
=4C4F4G4P4R4U4W4[4]4a4b4$f4%h4$j4#j4 j4h4g4j4n4r4s4#{4+|46�47�47�43�41�4/�4+�48,33,3//3,23(23"132343=3�@3�E3�H3�R3�N3�J3�I3G3C3C3E3I3L3N3 Q3S3�T3�V3�\3�a3(��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�&4�4��3��3��3��3��3��3��3�
                   6894: 4�4�4�4�4�4�4�4�4�4�4� 4�4�4�4�$4�+4�54�<4�?4�D4�G4�H4�G4�K4�L4�K4�F4�D4�D4�G4�J4�M4�P4�T4�S4�S4�O4�M4�L4�N4�N4�P4�S4�T4�T4�Q4�M4�I4�H4�I4�N4�P4P4}O4}G4�14�)4�"4�4�4�4�4�44~4~
44�4�4��3��3��3��3��3��3�3w�3v�3u�3s�3q�3i�3g�3f�3d�3b�3`�3_�3\�3V�3S�3V�3W�3U�3R�3P�3N�3P�3Q�3Y�3^�3e�3k�3t�3w�3z�3{�3z�3�3��3��3��3}�3w�3o�3l�3j�3d�3^�3W�3V�3W�3W�3T�3L�3I�3F�3@�3?�3C�3G�3F�3@�3:�3:�38�3/�3-�3'�3'�3*�3,�3+�3%�3�3�3�3�3�3�3�3�3�34!4#4!
4
444 4'4*4*4%4$4 #4 +4-/41043.45"49"4=4@$4@'4>'4:'48*4:04874=@4=D4:F48D45?4194.<4'84$94!<4!@4&F4(I4(L4(T4*[4,\40[42]42_4-c4,e4-h4544�42�40�4-|4*|4)z4*s4'o4%l4%i4%d4#`4`4_4Z4U4S4S4V4V4T4I4D4B4B4@4>4;47434/4)4'4$4
%4&4(4.414,4�,4�-4&64�:4�?4�A4�@4�94�44�14�.4�-4�24�34�74�;4�?4�B4�G4�K4�M4�T4�Y4�^4�g4�k4�p4�s4�v4�|4�}4��4��4��4��4��4��4��4��4�z4�v4�s4�l4�f4�a4�\4�Y4�V4�R4�O4�L4�G4�E4�D4�E4�?4�>4�A4�B4�?4�;4�74�54�14�/4�04�44�34�.4�*4�%4�%4�$4�!4�"4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�
4�
4�        4�4�4�4�4�
                   6895: 4�    4�4�4�4�4�4�4�4�4�4�&4�'4�*4�04�64�54�44�74�;4�=4�=4�@4�E4�D4�F4�O4�S4�K4�I4�K4�M4�a4�l4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4~�4z�4t�4h�4b5a5\5P
5F5=565/5*5(5(5* 5- 595<5=#52%5+'5%,5!253565<5D5M5!R5[5e5j5!k5"n5r5x55�5�5$��3��3��3��3��3��3��3��3��3��3��3{�3v�3q�3l�3i�3g�3h�3i�3p�3t�3y�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3
                   6896: ��3��3��3��3��3��3��3��3��3��3NK�2@�2<�28�2+�2%�2!�2�2�2
                   6897: �2�2�2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�"3�%3�*3�.3�13�43�73�<3�>3�@3�G3�J3�L3�Q3�V3�[3�b3�g3�l3�s3�|3�|3�{3�z3�z3�~3&�3�3
}3
                   6898: Kw2=y26|2)}2!�2�2!�2'�25�2?�2L�5�5�5�5�5��5��5��5��5��5��5��5��5��5��5�6�6�6�6�6�        6�
6�6�
6�6�6�6��5��5��5�&6�6�6�6�6�6�6�
6�6�6�6�6�6�$6�'6�+6�/6�36�66�:6|C6vM6tN6qN6nL6mL6jR6gX6c^6Zg6Xl6Wq6Xt6ax6b{6`}6[}6Y6V�6T6Sz6Qy6Oz6L�6B�6A�6�H3�N3�W3�Y3�\3�]3�a3�c3�c3�b3�_3�Y3�U3�R3^�a3�g3�k3�m3�l3�n3�q3�p3�p3�w3�y3�}3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3~�3{�3y�3w�3u�3q�3k�3g�3d�3b�3Y�3V�3S�3P�3O�3Q�3_�3`�3d�3g�3l�3p�3s�3w�3{�3~�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3D&+�4,�4)�4$�4 �4�4�4�4}4x4
y4w4
                   6899: t4m4f4_4Z4�U4�R4�N4&M4&I4�I4�G4�D4�B4�A4�>4�<4�94�34�14�14�/4�)4�(4�&4�4�4�4�4��3��3��3��3��3��3�4�4�
                   6900: 4�4�
4�
                   6901: 4�4�
                   6902: 4�4�4�4�
                   6903: 4�
                   6904: 4�4�4�
4�4�4�
4�4�4�4�!4�$4�&4�)4�+4�-4�04�34�94�<4�A4�H4�L4�O4�R4�Z4�_4�b4�f4�o4�t4�u4�u4�s4�j4�f4�a4�^4�Z4�W4�S4�O4�M4�J4�D4�<4�94�74�74�54�24�.4�&4�!4�4�4�4�4�        4�4�4�4�4�4�4�4�"4�!4�4�4�4�4� 4�4�4�4��3��3~�3|�3z4w&4u&4q4q4u4w 4{     4}4}
4{44�4�4�4}4|!4{"4y"4x 4w4t4s4q"4p#4m"4l4n4m4m4j4g4e4f4f!4f%4i+4l04q44}B4�I4�L4�O4�X4�[4�^4�_4�_4�\4�Y4�W4�T4�O4xI4uE4j:4g54b.4_'4^!4^4]4\4X4U4T4U4U4U
4T 4Q     4O     4K
4K4I4I 4J4J4I4G4D�3A4>4<4<4<4:4846454>"4A%4A(4C,4J04I64N=4S:4V:4X;4[<4^@4_E4`J4_M4^R4`Y4b\4c`4cc4cf4eh4lg4og4ok4nm4jm4fo4ep4ev4f{4c}4a{4`y4_s4\o4[k4[g4\a4\\4WX4UV4TS4TN4WK4VH4TG4OF4KE4EF4BF4?B4=?4=949848847647/43+42'41%4/%4*%4&%4$$4' 4(4(4&     4)4-4/424341�30�3-�3,�3,�3+�3(�3'�3)�3+�3,�3+�3)�3'�3#�3�3�3
                   6905: �3�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3u�4�s4��4��4��4��4��4��4�4y�4u�4�3��3��3��3��3y�3Z�3J�39�38_38,3
}3
~3 o3$l3#j3
#j3'o3)v3+~3*�3)�3(�3%�3"�3�3�3�3�3�3�3�344[4�4�4�4�4>5g5p5�5�5"636U36�26�,6�"6�6�6�6�6�6�6�6��5��5��5��5��5��5��5��5��5��5��5��5��5��5�5�5�5�5�5��5��5��5��5��5��5��5��5��5��5�~5�~5�{5�y5�{5|5z5x5s5k5f5b5^5[5        X5U5O5
F5A555/5%5�!5�555&5�5�5�5�5�5�5�5�
                   6906: 5�5�5�5�
                   6907: 5�    5�5�5�5�5��4u�4p�4i�4f�4c�4b�4_�4]�4X�4U�4R�4Q�4N�4H�4E�4@�4;�44�4/�4)�4$�4!�4!�4"�4'�4'�4+�4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��4��3��3�a3�R3�H3 ��6�{6�U6�R6�*6�*6c�5%�5�5��3��3��3�4�&4�-4�q4��4��4�5�5�55�e5�{5��5��5��5�6�16�X6��6��3��3��3��3��3O3E*3C/3>63:735931<30?3-F3,L3+S3*]3'c3#j3�6w6a636L��4�5�5�
5�5�5�55�W5�j5�p5�l5�r5�n5�z5�v5�}5�w5�w5�{5��5��5��5��5��5��5��5��5��5��5��5��5z�5n�5|�5y�5v�5u�5t�5n�5k�5h�5a�5_�5[�5S�5I�5A&6;696562616266/6736:46G:6PL6MQ6CW65W6+\6(\6'\6%b6"g6j6j6g6k6
x6}66��6��6��6A��;��;��;��;��;��;��;��;��;��;��;��;��;�<�<�&<��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�<<�<�<�<�<�
                   6908: <�<�
<�
<�<�<�<�<�<�<�<�<�<�<�<�!<�&<�(<�1<�6<�9<�<<�C<�sL:uO:zO:�k:�l:�l:�i:�b:�N:�K:�J:�M:�P:�S:�V:�[:�_:�f:�j:�n:�s:�n:�n:�k:�k:�m:�q:�s:�u:�w:�{:��:��:��:��:��:��:��:�:�|:�|:�{:�x:�w:�x:�v:�w:�{:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�;�;�;�;�;�;�&;�/;�;;�H;�U;�^;�e;�i;�m;�p;�q;�q;�o;�l;�f;�^;�Z;�T;�N;�L;�L;�M;�Q;�S;�S;�S;�T;�W;�Y;�];�^;�`;�c;�f;�f;�e;�g;�k;�n;�q;�t;�s;�q;�o;�p;�s;�w;�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�7�}7�{7�y7�w7�s7s'9�;9�B9�K9�R9�W9�\9�`9�d9�j9�m9�p9�u9�u9�u9�v9�z9��9��9{�9x�9t�9y�&7�7�7�7�%7�-7�17�37�27�07�77�;7�@7�J7�L7�M7�I7�H7�F7�@7�@7�A7�F7�H7�L7�O7�S7�X7�\7�Y7�Y7�W7�Q7�P7�P7�Q7�T7�V7�[7�]7�a7�f7�i7�k7~k7}i7}g7d7�^7�\7~[7|[7x]7ta7jd7he7kl7jn7iq7er7`r7]r7\u7^�7^�7\�7[�7X�7R7P7N�7K�7H�7F�7<�7:�79�79�7?�7B�7C�7B�7?�7=�79�77�75�74�7-�7(�7+�7.�75�76�75�727.7*�7&�7&�7$�7"�7"�7!�7�7�7�7�7�7�7�7�7�7
                   6909: �7�7�7&�7��7��7��7��7%~`=�Y=�T=�O=�M=�K=�H=�E=�B=�A=�==�:=�7=�4=�3=�/=�.=�/=�/=�-=�*=�&=�"=�=�=�$=�%=�%=�(=�+=�+=}*=}.=�5=;=}>=vA=r=x=|=~=�=�=��<��<��<��<��<��<��<��<��<��<��<��<��<~�<y�<u�<�
=�=�=�)=�5=�<=�B=�I=�L=�Q=�X=�[=0�C<�G<�F<�H<�N<�S<�X<�^<�b<�d<�g<�k<�q<�{<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<��<�=�
=EA�6A�6>�6>�6:�69�6:�6;�69�66�64�62�6.�6,�6)�6'�6+�6,�6*�6(�6)�6*�6)�6'�6$�6#�6!�6�6�6�6�6�6
�6
                   6910: �6�6�6�67777 77777777�7�7�7�7�77�7�&7�&7�7�7�7�7�7�7�7�7�"7�%7�&7%��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�;
                   6911: �;
�;�;�;�;$�;$�;$p;$.;$;$�:$�:$�:$N:$J:"�9F"�9#�9*�90�93�96�9;:A:D:O      :T     :W:^:j:p:v:~�9��9�&:�:�
                   6912: :�:�:�:�:�&:��9��9��9��9��9��9��9��9��9��9��9��9�9�9�9�9�9#�9(�9-�92�9;:@:G:Q        :T
                   6913: :X
                   6914: :[
:d:g:i:�:�:�(:�*:�0:8:'::<>:\E:�P:�R:�Z:�^:�!<�<�<�<�<<e<<#<9#<+<�/<�4<}:<r<<6C<J<�J<�R<�P<nN<8J<"I<�F<�C<�^:��:��:�*;�2;�t;�x;��;��;� <�!<�+=�1=�8=�V=�W=��= 3[=7Y=7U=8N=:L==L=AK=FJ=ME=OD=QF=QM=UQ=XR=]Q=_L=b>=d:=g:=i6=l/=n-=r-=v.=z.={)=|!=~=� =�%=�*=�+=@��7��7��7��7��7��7��7��7��7��7��7�7�7�7�7�7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�8�8�8�8�
8�8�8�8�
8�88�Q8�c8��8��8��8��8�9�G9�T9�{9��9��9��9��9��9
                   6915: �9�9�9�9�9"�9p�&7�,7�37�97�B7�I7�O7�Q7�T7�U7�S7P7    O7
Q7U7Y7"[7%\72l75t76x7;~7@�7C�7G�7L�7O�7R�7Y�7d�7f�7l�7q�7t�7�7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�8�8�8�8�888 8(81898=8@8%H8'J82O87Q89T8<X8C\8F`8Kf8Oh8Ti8[l8cq8kw8oz8z}8�8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8
                   6916: �}9�~9��9��9��9��9�#:�3:�C:�^:    ��8��8��8��8�<9�H9�_9�}9�}9-:�<B�<F�<O�<S�<[�<`�<c�<d�<c�<`�<\�<W�<U<Qo<Ke<I_<HV<IQ<QN<WM<]N<fW<kY<oX<uT<}S<�Q<�M<�E<�@<�;<�-<�<�<�<�
<�<�<�<�<�<�<�<�<+�\=�T=�Q=�R=�Y=�Y=�P=�K=�@=�+=�#=� =�=�
=�=�=�=�=�=��<|�<y�<u=q=l=i=g�<`�<Y�<S�<N�<H�<A�<=�<;�<;�<>�<D�<I�<J�<F�<?�<:�<@�<�<�
<�<�<�<�
<�<�<�<�<��;��;�;�;�;�;�;�;�;�;�;�;�;�;�;$�;*�;0�;5�;:�;<�;A�;G�;K�;P�;W�;]�;`�;c�;i�;t�;}�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;&�;.�;_�;��<��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�y;�m;�j;�f;�b;�_;�[;�U;�R;�M;�D;�=;�6;�/;�,;�";�;�;�;�;�;�;�;�     ;��:��:��:��:��:��:��:��:��:�:��:�:�:�:
                   6917: �:�:�:
                   6918: �:�:�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:&�:�:�:�:�:{:t:!f:*c:.a:4_:7Z:9M:AF:DB:H>:N@:YC:_C:f>:h7:i1:j.:j&:i":c:b:`:b:k�9m�9p�9q�9q�9r�9t�9z�9~�9�9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9�99�9H�9.��<��<��<��<��<��<�Z<�S<�
                   6919: <�<�<�<�<&
                   6920: <�;��;��;��;��;��;��;�e;�\;�';�;�
                   6921: ;�;��:��:��:��:��:��:�w:�B:�':�%:��9��9��9�j9�J9�9�9�
                   6922: 9�9:�<9�<7�<4�<4�<.�<'�<�<�<�<�<�<
�<
�<�<&�<&�<��<��<��<��<��<��<��<��<��<'�9�9��8��8��8&�8�8
�8�8�8�8 �8!�8"�8'�8(�8+~8/|83}86}8:y8;t8=m8>k8Bi8Bd8Ld8Od8Q`8\H8_F8b<8f/8h&8k 8o8w88��783K85L87N8>S8CX8Kb8Ps8T{8]|8b8l�8m�8g�8`�8X�8Y�8X�8U�8X�8^�8a�8e�8b9\9Z9\9^9g(9m.9o49q89t?9sN9sT9v`9{m9�m9�m9�q9�v9�y9�{9��9��9��9��9��9��9��9��9��9��9��9��9��9��9-��7��7��7��7��7�8��7��7�8�8�8�        8�
8�8�8�8�8�8�&8�-8�08�28�68�98�<8�<8�:8�98�;8�H8�S8T8S8P8       M8N8N8L8J8K8#M8'N84M85L83K8�
=�=�=�=�=�=�=�!=�"=�$=�&=�(=�4=�7=�;=�?=�?=�==�;=6=3=,=-=#1=#@=#�=$�+=�)=�%=�=�=�=�=�=�#=�%=�!=�=�=�=�=�=�=�=�=�=�=�=�
=�=�=�=�=�=�
=�=�&=��<�&=��<��<��<
                   6923: �!<�?<�D<��<��<��<��<��<�=�,=��6��6��6��6�7�%7�y7��7c��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�8�8�8�8�8�8�$8�+8�.8�08�58�<8�@8�G8�M8�R8�T8�T8�R8�X8�[8�l8�q8�q8�t8x8��8��8~�8x�8u�8r�8k�8i�8f�8f�8f�8c�8_�8[�8W�8S�8Q�8Q�8P�8M�8J�8I�8F�8@�8>�8@�8A        9A9?9< 99)9339-<9(B9$G9G9G9J9H9J9N9
                   6924: U9[9c9i9
                   6925: k9o9w9x9�}9*��8��8��8�8�t8�q8�n8�k8�b8�b8�a8�]8�Y8�O8�?8�;8�58&08&.8�*8�'8�888��7��7��7�y7�r7�>7�?7�A7�C7�C7�@7�/7�*7�!7�7�7��6��6C3K84>8:!8O8Q8R
8T
                   6926: 8_8h8q8v8}8�8��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7�}7�y7�m7�b7�V7�Q7�L7�?7�77+7%7!777 7'7-72767:7;7A7L
7H�6=�6�6�6��7��7��7��7��7�8�P8�z8��8��8�9�9K��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6{7�7�7}&7z%7v7r#7l17o47o77m:7kG7iN7gV7c_7cb7ei7lo7qv7tx7t|7o7j�7g�7e�7e�7b�7]�7]�7^�7`�7d�7f�7i�7l�7l�7q�7t�7x�7}�7��7��7��7��7��7��7��7��7     "�[=�\=�]=�a=�d=�i=�k=�q=�y=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=}u=}q=}l=}f=~`=     
�@��?��?��?��?�f?�8?��>��>�\>�X>�=>-> *��=��=��=��=�}=�}=�t=�q=�l=�h=�h=�n=�r=�t=�z=��=��=��=�$>�T>�U>�[>�\>��>��>��>�?�??�@?�L?�M?��?��?��?��?��?��?�@�@�$@�%@��@     ��@�z@�x@bn@Oj@*d@"c@�f@�h@�j@Tk@(l@�l@�m@     �->�+>�$>�">�#>�+>�*>�(>�!>�>�>�>�>�>�>�>�>�>�>�>� >�&>�(>�'>�!>�>�>�>�>�>�#>�'>�*>�,>�+>�'>�">�">�$>�(>�,>�/>�2>�3>�2>�/>�0>�3>�4>�0>�(>�'>�)>�.>�/>�1>�.>�+>�#>�>�>�>�>">&#>">
                   6927: >>>>>">'>+>0>1>1>,>+>.>2>6&>;�=A�=D&>I>L>L�=I�=I�=N�=P�=R�=T�=W�=Y�=X�=Y�=\�=a�=b�=b�=d�=h�=m�=q�=r�=q�=r�=t�=x�=|�=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=       (��=��=��=��=��=��=�~=�{=�w=�q=�n=�k=�g=�i=�h=�f=h=
                   6928: k=m=m=l=n="o=v=y= }="}=%|=(x=)t=+r=/q=0m=/k=(j=%h=$d=&a=)^=3[=   �m@�j@�i@�g@�e@�`@�]@�\@�V@�L@�J@�G@�D@�@@�>@�=@�:@�7@�1@�0@�+@�&@�$@� @�@�@     G\>;U>7X>1Z>,Y>"M>J>H>E><>�,> 8�,>�'>�>�>�>�>��=��=��=��=��=��=��=��=��=��=��=��=��=��=~�=��=��=��=��=��=��=��=��=��=�}=~u=yq=tq=qu=o{=i}=`~=Z|=T|=N=G�=@�=4�=/�=+�="�=�=�=�=��=��=�~=�x=�q=�\=     �,>�+>�,> 3>�@E�@v�@{�@��@��@��@��@-�@<�@i�@|�@��@�~@�|@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�@�@�@�@�@�@�@ �@"�@(�@.�@/�@9�@6�@5�@1�@0�@6�@;�@@�@G�@ 9/D9�C9�C:�C:/C9C9�B9�B:sB9@B9�A:�A;uA<oA<QA=!A<A<�@<�@>�@     E�AF�A     E�CE�CF�C V�@n@N@@�@� @�@�@�@�@�@��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?�?�?}�?{�?v�?s�?l�?e�?c�?^�?[�?Y�?W�?U�?R�?M�?I�?E�?F�?<�?5�?.�?+�?'�?%�?"�?�?�?�?�?�?�?�?  �?�?&�?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?{�?w�?    �#�="�="�="�="�=">",>"u>$x>&w>.n>3q>9u><v>Au>Ft>Mx>Qy>Ru>Rm>Tg>]f>cl>hl>lj>ic>h]>m\>q`>wd>�b>�V>�S>�S>�V>�`>�b>�`>�]>�R>�P>�Q>�N>�J>�B>�9>�<>�D>�H>�G>�D>�A>�:>�2>�3>�4>�3>�/>�,>�&>�>�>�>�!>�!>�>�>�>�>�>�>�>�>�
>�>�>� >�(>�)>�(>�#>�>�>�>�>&>�=�=
�=>>>!>">$>)>->.>&>'>*>0>3>5>:>=>?>@>>>;!><$>F$>I">L>N>R>T>T>X$>\&>b%>l>r>u>x>w!>q$>n*>p.>s0>|/>->     >�@<�@�@�@��@ �,=��=     ��.D�-D�+D�$D�D�D�D�D�DzDs�Cp�Cq�Co�Cp�Cv�Cw�Cw�Cv�Cp�Cp�Ct�C{�C}�C~�C|�Cx�Cv�Ct�Cn�Cj�Cj�Cd�CY�CU�CS�CR�CR�CT�CU|CSvCNqCKjCIbCJ\CHVCESCFNCIICJCCJ>CM:CI5CG1C@.C;)C9%C:C=C=CGCJCKCI        CD&CC�BC�BE�BI�BH�BF�BC�B=�B5�B0�B.�B0�B-�B+�B&�B �B�B�B�B�B�B�B�B"�B$�B&�B*�B,�B+�B*�B$�B�B�B!�B|BwBsBqB
lBfB[BWBRBOBKBFBBB@BCB
                   6929: GBDB�?B�:B�5B3B3B
0B5B5B1B,B(BB& B&B(B%B
B
                   6930: BB�A�A�A�A�A�A�A�A�A�A�A�A�A�A
�A      �A�A�A�A�A��A��A��A&�A�A�A�A�A�A�A�AAsApAmAeA[AUANAOAMAGA DA?A"8A'1A'+A&'A%A!AAAAA�@�@�@'�@+�@*�@(�@$�@ �@�@�@�@�@�@
                   6931: �@�@�@�@�@�@��@�@��@��@��@��@��@��@�{@�v@�m@
                   6932: `ZJ`yJ_�J`�J
                   6933: ��H�*I��I��I`�I_�I_?J`ZJ
                   6934: -d]GtaG�aG�_G�bG�hG�vG�|G�|G�G��G��G��G��G��G��G��G��G��G��G�G�G�G&�G.�G9H=HD"HR.HW7H_=HeDHfIHfSHjYHoaHsjH|nH�vH�{H��H��H��H��H��H
                   6935:        `ZJZJYZJ�YJZJ�YJ�YJ�XJ9WJ
                   6936: 9WJ9jJ9�J9�J9�J
                   6937: 9WJ9BJ9J:�I9�I9�I9�I9SI9CI8@I9#I8�H8�H8�H7FH8H7�G7�G7�G7�G7sG7-G7�F8�F7�F8�F8}F8VF9HF::F
                   6938: 
:�E}�E��E��E�E�ES�Ea�E��E��E��E��EF�E
                   6939: ::F8%F8
F8�E8�E8�E:�E
                   6940:        lZJ   ZJ�[J�ZJAZJYJ�XJ�YJ9WJ
                   6941: :�E9�E:=E:�D:�D:�D:<D9/D
                   6942: !��H��H��H��H��H��H��H��H��H�DH��G�{G��F��F��F�xF�FF�FF*FFvEF�DF�DFCFbBFeBF�AF�AF�AFGAF\AF�AF�AF�9F
                   6943: �9F::F
                   6944: �9F��E��E�IE��D��D��D�.D�.Dv.DH/D%.D�/D�.D�.D`�J`<K`RK`mK_�Ka�Kk�Kp�K}L�bL��L��L��L�+M�GM�\M��M&�M�M%3N+GN6ENF?NQ9NbQ9N>(O0�O:�O=�OA�OE�OH�OI�OA�O?�OC�OI�OL�OO�OQ�OQ�OL�OK�OM�OT�OX�OZ�O\�O^�Ob�Of�Oj�Oq�O~�O��O��O��O�P�P�P�P� P�'P�+P�5P�;P�AP�FP�NP�VP�\P�`P�hP�tP}P�P�P     �P
                   6945: �P�P�P�P�P�P�P�P�P�P�P�P�P�P,�P0�P3�P6�P7�P6�P4�P6Q:Q<Q> QC&QC+QB3QJ=QVEQ]IQaKQf[QnfQunQwwQzQ{�Qw�Qy�Qz�Qy�Q{�Q�Q9�J:K:K:4K9^K9vK9�K:�K9�K9�K:�K:�K:%L:SL9�L9�L9�L:�L9�L:M:;M:hM9�M9�M5�(N�'N�#N�N�N�N�N�N�N��M��Mx�Mi�Mb�M\�MY�MQ�MJ�MB�M<N5N1N.N(N!NN�N�N�N�N�N�%N�#N�(N�*N�2N�8N�6N�:N�2N�5N�3N�,N�N
NtNjNbNVNR NR+NS2NQ9N$9�M�M��M��M��M��M��M��M��M��M��M�N�N�)N�4N�9N�=N�9N�9N|5Nw1Ng3NZ3NQ0NG.N<-N4,N,-N$&N#N!NN�N�"N�)N�(N�(No�N�O7�O�XP��P.:QE[Qb�Q��Q��Q9�M��M�MO�M]�M��M4�M\�M&&�Q��Q��Q��Q�RR�R�!R�'R�3R�:R�<R�7R�6R�;R�:R�5R�9R�;R�>R�<R�<R�9R�8R�<R�BR�HR�JR�MR&UR_ReReR`R_R[RYR#_R*cR.dR.kR/yR5RA�RK�RN�RT�RX�R_�Rf�Rh�Rn�Rs�Rw�R}�R��R��R��R��R��R��R��R��R�S�S�S�S�S�S�S�!S�!S�S�S�!S�S�S�S�S�  S       SSS S%S*
                   6946: S1S5S7S4 S4%S6)S4/S43S7?S=ISCRSJVSMZSO`SSbSUeS[hS`nSgqSppSxnS�oS�sS�vS�vS�yS�S��S��S��S�}S�}S�S�}S�S��S��S�}S�{S�uS�sS�pS�iS�iS�hS�fS�iS�lS�lS�jS�gS�hS�iS�cS�YS�SS�OS�HS�AS�=S�;S�8S�5S�.S�)S�$S�%S�%S�-S�5S�:S�=S�AS�FS�NS�WS�]S�\S�]S�]S�]S�bS�gS�lS�oS�mS�jS�hS�hS�`S�[S�XS�SS�VS�HS�CS�ES�LS�SS�YS&YS_SdSjSnSrSvSwSzSS�S&�S��S�~S�S��S��S�S�zS�yS�yS�}S�~S�}S�{S�wS�tS�tS�vS�zS�}S�S�}S�|S�}S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S��S�S      �S�S�S�S �S�S�S�S�S �S"�S"�S+�S6�S?�SCTHTPT[Te#Th+Tl/Tq2Tu9Ty?TBT�LT�TT�YT�XT�ST�QT�[T�eT�hT�iT�eT�`TaT`TcThT$hT-qT0yT7{T=�TA�T��Q��Q��Q��Q��Q��Q�Q�Q��/��/��/��/��/��/�/z�/v�/s�/j�/d�/\�/Z�/[�/d�/5�/0�/,�/*�/&�/$�/!�/ �/$&��/��/
 �/6 \/W :/[ 6/] 0/] */[ $/Y /Y /V /E /9 /4 
/. �./ �.6 �.9 �.9 �.? �.A �.? �.@ �.I �.J �.L �.J �.F x.4 \.- R.# J.  F. >. 8.
 5.�4.|5.V3.Q3.L5.G8.C8.@4.>3.:8./;.*:.%6.$2.$-.&'. #...   .�-�-�-   �-�-&..�.��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-��-w�-s�-r�-n�-q�-p�-t�-x�-z�-z�-y�-s�-m�-i�-j�-k�-p�-q�-p.k.l.n
.o.k.c.^.].`!.`%.Y-.Z0.\3.c3.d5.b:.b?.cB._D.\G.WF.RH.NL.JL.IO.NT.OY.R[.UZ.U].Q_.F\.De.>e.:l.?m.Ek.Js.No.Rs.Pz.U~.Y�.Y�.W�.R�.P�.R�.W�.X�.V�.Q�.M�.M�.G�.G�.I�.K�.P�.U�.S�.M�.H�.F�.E�.D�.?�.:�.6�.3�.1�.,�.,�.0�.-�.-�.5�.6�.7�.7�.9�.<�.=�.=�.B�.E�.D�.B�.D�.G�.K�.L�.L�.G�.H�.M�.U�.[�.`�.b�.b�.Q�.N�.N&/K/H/D/?/7       /3
                   6947: /-/%/"/// / //      / /&/'/&'/�+/�0/�5/�8/�</�>/�8/�7/�>/�D/�I/�K/�O/L/M/P/S/�U/�Z/�\/�^/�b/�d/�f/�i/�j/�v/�u/�x/�}/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/=0�0.1+1*1,%1,)1),1)01+41,91(;1(@1%G1$K1%O1-V1*Y1(Y1%X1#Z1"]1$e1#k1!s1!|1#�1#�1#�1!�1!�1"�1!�1 �1�1(�1(�1!�1�1�1�1�1�1�1
�1�1�1�1
�1 �1�1 2            2222�2�2� 2�'2�42�:2.d�/f�/h�/g�/f�/g�/h�/f�/b�/d�/b�/a�/b�/a0`0Y
                   6948: 0U0S-0[-0b*0l+0p(0r'0t*0u/0v30u80q<0h@0eC0bH0`L0\N0\R0^U0^Y0Ya0Va0Q`0Pa0Qg0Ng0Li0Ks0Sv0R{0d8L02M00P0-P0'K0 H0I0B0@0@07040
                   6949: 3060>0M0&R0�T0�S0�O0�O0�Q0�]0�c0�g0�h0�i0�h0�l0�p0�p0�p0�o0�p0�o0�n0�l0�f0�a0�[0�Y0�X0�V0�R0�M0�C0�90�80�90�70�-0�*0�)0�%0�%0�'0�*0�+0�/0�10�40�20�-0�*0�#0�0�0�00|0x
0t&0s�/u�/y�/|�/�/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/$B%0B$0B!0C0A0:08080:0=0=  0:08 05     02020000%0000/50/:0-<0*A0)E0*H0-J00J02I01F00A06<0@30F)0G%0F$0B%0 �/�/�/ �/!�/"�/$�/%�/&�/'�/'�/$�/$�/%�/(�/+�/,�/-�/1�/5�/7�/7�/5�/9�u0�o0�j0�d0�]0�Z0�W0�R0�L0�J0�I0�H0�G0�D0�>0�-0�)0�(0�)030   70
6020! 0"0$0%0)0,0003�/7&0<0A�/D�/F�/J�/T�/V�/Y�/c�/i�/w�/y�/��/��/��/��/��/��/��/��/��/��/��/��/��/"��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/�0�0�0�0�0�0x#0n&0h+0b-0^.0\30`:0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0�|0�u0`:0Z=0X<0U90R90L@08L0       �e2�i2�o2�t2�v2�y2�}2��2��2��2��2��2��2��2��2��2�2�u2�w2�u2�r2�o2�l2�l2zl2tl2lp2at2Xu2Kw2?�2I�2K�2�:2�=2�?2�C2�H2�J2�R2�U2�T2�T2�S2�c2�c2�a2�e2��b6�V6�<6�(6�$6�6�6�6�6&&6�5�5�5�5�5�5 �5$�5(�50�58�5@�5G�5J�5K�5H�5L�5Q�5U�5[�5_�5a�5d�5e�5h�5k�5s�5|�5��5��5��5��5��5�~5�v5�\5�R5�N5�>5�/5�#5�
5�5��4~�4|�4|�4x�4|�4�4��4��4��4��4��4��4}{4�u4�t4�p4�c4�_4�S4�N4�L4�H4�D4�A4�<4�54�,4�)4�'4�%4�4�4�
4�4��3��3��3��3��3��3��3�4�4�4�&4��3��3��3��3��3��3�3�3�3�3   �3�3�3�3&�3��3��3�4�44        444
44$�3,�33�3:�3D�3H�3N�3S�3V�3^�3i�3}w3�T3�H3�23�(3�#3�3�3�3�&3��2��2��2��2��2��2�y2�2��]2�a2�f2�j2�l2�t2�t2�u2�w2�x2�v2�r2�n2�j2�d2�`2�]2�Y2�V2�S2�R2�L2�J2�I2�E2�C2�C2�@2�<2�92�82�82�92�32�'2�"2�2�2�2�2�2�2�     2�2�2��1��1��1��1��1��1��1��1��1��1�{1�n1`1R1L1D1E1   I1
                   6950: R1U1[1`1�_1�e1�i1�n1�s1�v1�y1�~1��1��1��1�z1�u1�t1�w1�o1�h1�m1�f1�c1�_1�\1�[1�X1�S1�Q1�M1�H1�E1�A1�<1�91�61�31�01�(1�1�1�1&
                   6951: 1&1&1�1�1�1�+1�A1�S1�w1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1��1�2�2�2�2�2�#2�72�=2�B2�K2�S2�Z2�_2�d2�b2�]2�U2�O2�M2�M2�P2�V2�]2�h2�g2�h2�k2�m2�n2�o2�t2�w2�x2�t2�p2�k2�h2�g2�h2��2�~2��2��2��2��2��2��2��6��6�s6�b6)R{0L|0H�0E�0M�0N�0L�0E�0A�0?�0?�0@�0E�0O�0Y�0a�0f�0f�0f�0c�0]�0X�0V�0K�0G�0A�0?�0:�06�06�08�0>�0;�07�02�0/�0-�0,�0)�0*�00�0�2��1�y1�1��0    �2j"2Q$24&2)'22#2C2�:2
��0��0�(1�.1�n1�w1��1��1��1��1��1��1�20�08�0:�0=�0?�0?�0D�0]�0d�0s�0��0 $�1�1�1�2�2�2�2�2�2"j1#�1#�1$�1��0��0��0��0��0��0��0�0{�0x�0w�0v�0q�0l�0f�0R{08L0;T0<X0:j08o00t0/x00�0/�0,�0'�0#�0"�0"�0!�0�0�0�0�011!H1"j1�u03k0�d0�c0�a0�a0�b0�d0�b0�\0�P0}J0{H0tH0mI0hG0fE0c@0`:0?��0��0��0��0��0��0��0o�0h�0e�0a�0Y�0V�0N�0I�0E�0C�0>�0;�0:�0916121.1$1111!1&1)1�(1�*1�.1�61�61�81�<1�@1�H1�K1�L1�N1�S1�X1�Y1�^1�_1�c1xe1id1dc1^f1Zh1Uf1Oi1Kn1Gr1As1:w1-s1(n1"j1�e2�d2�b2
                   6952: �2�2�24�274�2/�2*&3#3333        333�&3�.3�73�93�83�63�23�.3�.3�33�63�93�@3�B3�D3�B3�E3�F3�E3�@3�;3�73�13�.3�.3�-3�*3�$3�3�3�3~3{3x       3t3p3n�2b�2_�2]�2\3Y3V
                   6953: 3T3O3��2��2��2��2��2��2��2��2��2��2��2��2,�b6�a6�H6��5��5�d5�R5�5��4�z4�t4�34��3��3�v3�h3�`3�Y3�T3�Q3�N3�J3�A3�=3�83�63}63x/3u+3p-3_.3\-3X)3O%3K"3H3F3C3@    3@3?�2<�28�24�2<$�1,�12�15�1?�1G�1P�1^�1d�1m�1r�1��1��1��1��1��1��1��1��1��1��1�&2�2�2�2�2�2�2�2�2�2�2�     2�     2�
                   6954: 2�
2�2&222
2!
                   6955: 2(&2/�15�1?�1I�1R�1Y2_2c2j2w2�2�2�        2�     2�&2�2�2��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;}�;w�;u�;u�;q�;l�;g�;d�;b�;b�;bw;dp;h^;lQ;qD;v:;z1;c&z1;(;�";�;�;�;�     ;�;��:��:��:��:��:��:��:��:&�:�:�:�:�:�:�:�:$�:)�:.�:7�:F�:J�:Y�:f�:k�:z�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�:
                   6956: �:
�:�:�:�:�:&�:3�:?�:H�:U�:[�:c�:h�:q�:v�:y�:|�:�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�{:�v:�i:�b:�\:�U:�O:�O:�P:�Y:�Y:�U:�U:�\:�]:�Z:�^:�`:�a:�_:�\:�Z:�V:�R:�O:�M:�I:�E:�F:�G:�G:�K:�P:�S:�S:�R:�M:�G:�B:�=:�8:�4:�2:�4:�5:�5:�0:�(:�":�:�:�:�
:�:��9��9��9��9��9��9��9��9&:        ::::�9"�9&�9'�9+�90�92�92�91�90�91�94�97�98�98�97�92�9,�9#�9!�9�9!z9 u9p9j9c9^9Y9W9S9L9B9:939�9�9�9�9��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8~�8y�8s�8f�8]�8Z�8S�8E�8?�8<�88�86�80�8.�8/�8.�8&�8!�8�8�8�8
                   6957: �8           99&
99&9� 9�*9�19�49�59�79�:9�>9�79�79�19�,9�"9�9�9�9�9�
                   6958: 9�9��8��8��8��8��8��8��8��8��8��8��8��8��8�8�8
                   6959: �8�8�8�8�8t8&k8�e8�b8�`8�Z8�S8�Q8�P8�Q8�P8�L8�H8�E8�E8�C8uB8r?8p>8d=8X78R58J:8D?8=B80C8%C8E8J8R8U8V8    [8_8]8Y8Y8^8b8f8o8v8v8
s8
                   6960: s8u8&~8��8��8�8�8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8��8|�8w�8w&�`=�T=�K=�F=�@=�7=�.=�#=�=�=�=�=��<��<��<��<��< �< �< �< �< �< �<
 �< �< �< �< �< �<$ �<& �<& <- x<2 q<1 l<2 c<4 ^<8 X<> S<H J<M C<P ;<S .<X #<[ <\ 
<\ �;] �;^ �;\ �;_ �;[ �;T �;R �;P �;P �;Q �;O �;N �;M �;J �;G �;D �;: 
                   6961: <3 <1 <. #<* '<& '<% )<! )< 2< 9< =< <<
                   6962:  @< C< G<
                   6963:  I<
                   6964:  L< J< J<& I<�L<�L<�O<�N<�Q<�O<�J<�E<�?<�?<�6<�,<& "< < <& <�<�!<�(<�-<�+<�(<�#<�<�<�<�<�<��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�};�v;�o;�l;�g;�c;�[;�T;�L;�I;�H;�C;�9;�2;�);�!;�;�;�;�;�
                   6965: ;�&;��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�z:�m:�a:�V:�M:�@:�1:�):�:�:�:�:��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�v9�s9�l9�m9�h9�k9o9}p9zl9ye9y^9vX9qO9nN9iM9eJ9cF9`?9_:9\69X69W99V?9WD9VJ9UL9VP9XS9ZV9Y]9Xc9Xh9Zs9\z9[~9Z�9[�9]�9\�9[�9[�9Y�9Z�9`�9`�9c�9a�9[�9W�9T�9P�9M�9F�9C�9D�9F�9H�9K�9O�9Q�9S�9X�9_�9a�9d:e:g:h!:k*:k1:l8:j?:lJ:eU:]_:Yf:Wl:Xx:Y�:W�:W�:V�:R�:V�:W�:V�:S�:O�:M�:I�:F�:A�:<�:8�:7�:6�:2�:0�:+�:*;$;"
;;;;;!;#;';*;4;7        ;>;E;H;K;L;K;A;B;B;F';E*;;*;41;-7;+A;(L;-K;1K;7L;?M;LE;NF;NJ;GR;AU;9^;2\;.];+_;)f; q;y;};�;��;��;��;��;��;��;� a=� [=� U=� M=� A=� 7=� 1=� &=� =� =� =� !=� 4=� @=� T=Dw�8r�8i�8k�8m�8n�8n�8q�8q�8l�8g�8e�8c�8b�8_�8Y�8U�8R�8R�8T}8\|8\t8Ys8Uq8Ug8Se8Pg8Nm8J�8F�8D�8?�8A�8@8Fx8Gp8Gi8Ge8Ia8I]8BW89?8998?)8@%8A8F8M�7L�7J�7J�7K�7M�7P�7]�7d�7sx7yt7{i7U7�K7�@7�:7�.7�7�7��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6���;��;��;��;��;��;��;��;��;��;��;��;��;�;z�;u�;o&<h&<e<b<_<[<^�;^�;i�;o�;p�;s�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;�~;�y;�y;�u;�p;�j;�k;�c;�e;�];�^;�\;�X;�T;�M;�J;�I;�K;�R;�W;�X;�W;�X;�^;�d;�f;�i;�n;�r;�s;�};��;��;{�;s�;o�;h�;_�;T�;J�;A�;8�;1�;(�;!�;�;�;�;       �;�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;x�;s�;m�;f�;`�;\�;Y�;T�;J�;C�;;�;6�;2�;-�;(�; �;�;�;�;�;�;��;
                   6966: ��;�"<�5<�y<��<��<��<��<�A=�N=    _�;��;��;��;��;�;'�;E�;u�;H�9|�9��9��9��9��9��9!�9%�9@�9R�9p�9p�9|�9|�9|:|(:{g:zw:z�:z�:z�:z1;A�l=�O=�H=�&={�<u�<s�<r�<n�<j�<c�<b�<a�<^x<\s<\o<_j<`^<\Q<[G<ZA<W;<V,<U <S<P<O<L<H<E<B<><:<8<7 <8<8<5�;2�;,�;&�;$�;!�;�;�;�;�;�;�;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;��;p�9r�9r�9u19u9w�8 ��6��6��6
                   6967: �6�6H�6K�6��6��6L
7M
7R7b7h7p�6v�6|�6��6��6��6��6��6��6�&7��6��6��6��6��6��6��6��6b�6H�6   ��=��=��=��=�=�t=�i=�`=     � T=� n=� �=� �=� �=u �=q �=i �=` &>Z >Q >H #>3 =>% P> i> v> �> �>��>��>��>��>��>��>     �h!IBh!�Ah!�@i!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@�!�@|!�@r!�@e!�@\!�@U!�@N!�@H!�@C!�@?!�@:!�@6!q@2!c@4!\@5!W@5!P@4!I@2!B@+!?@+!1@)!�?&!�?"!�?!�?!�?!�?!!�?#!�?)!�?*!�?*!�?'!t?'!i?(!`?&![?"!S?!E?!:?!2?!+?!%?!$?!.?
!1?      !1?     !'?     !?!?!?&!?�        ?� ?� ?� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� �>� w>� m>� k>� e>� `>� Z>� R>� ?>� 2>� '>� >� 
>�      >� >� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� �=� z=� p=� g=� a=      h!NDh!�Ch!~Ci!�Bh!IB 4��>��>��>��>��>��>��>��>��>��>��>��>��>��>�w>�l>�_>�U>�L>�B>�5>�0>�(>�>�>��=��= �=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=     �2>�t>��>��>�    ?�?�l?�r?��?��?�@�D@�e@��@��@�     A�A�[A�{A��A      ��=&�=�=
�=�=�=�=�=>">&>,>;>C!>P%>`)>_*>g)>o#>{>>�>�%>�(>�.>�2>�2> �HA�A��@��@��@�j@�@@�@��?��?��?�y?�1?�'?��>��>��>��>�>�v>�q>�f>�`>�T>�S> H�S>�R>�N>�O>�O>�L>�T>�T>�L>�H>�A>�9>�,>�$>�>�>�>�>�>�>�>&>>>>>>>#>*>->0>;>@
>@>?�=B�=C�=D�=D�=E�=K�=O�=R�=V�=\�=`�=m�=s�=x�=|�=~�=�}=�{=�x=�x=�w=�t=�v=�x=�{=��=��=��=��=��=��=��=��=��=��=��=     M��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A|�Aw�Aq�Ah�Ac�A`�A`A`|A]|AW�AT�AQ{AQvALtAIsADjAAhA=gA7fA3fA1gA/fA-bA,^A*]A'^A!bAbA`A_A]AZA&]A�]A�]A�WA�TA�UA�UA�ZA�XA�\A�]A��VA�OA�KA�JA�HA )��A��A��A��A��A��A��A��A��A��A~�Az�Ax�Ax�Aw�At�Ap�Ak�Af�Ac�A_�A[�AV�AS�AN�AG�AD�A@�A;�A1�A*�A#�A�A�A�A�A�A��A��A��A��A �S>�W>w\>q`>ja>ab>L_>G\>     �N=��=��= I�@HAFPAFwAE�A G�@I�@     F�AF&BFBFcBF�BG�BF&CF*CFMCF�CE�C F�CFMD     ��=��=��=��=��=��=��=��=��=�=�z=�t=�s=�q=�l= R�AM�AG�AB�A=�A3�A&�A#B BBB&B�A�A��A��A��A��A��A��A��A��A��A��Ao�A_�A$�A#�A��A��A     U�2>�1>�2>�8>�6>�4>�:>�7>�5>�5>�8>�=>�A>�I>�P>�W>a>j>t>>�>�>!�>(�>0�>9�>?�>E�>I�>J�>O�>T�>[�>^�>a�>d?e?i ?q'?x/?|:?�E?�D?�>?�A?�>?�C?�E?�A?�C?�??�B?�>?�<?�8?�1?�.?�0?      :?A?X?[?W?)T?.M?2G?7B?AA?E=?J9?M1?T?Y?[?a?a�>f�>i�>w�>��>��>��>��>��>��>    Lh!IB]!IBV!CBQ!BBG!AB<!;B9!8B3!5B-!2B(!5B$!:B!=B!=B!;B!:B  !:B&!:B� <B� :B� :B� :B� :B� ;B� 9B� /B� -B� ,B� *B� (B� %B�  B� B� B� B� 
B{ Bu    Bq Bl Bh Bb Ba BW BO BJ BC B; B5 B/ B% B  B &B &B B B��A��A��A��A��A��A��A��A��A��A��A��A��Ax�Ar�Al�Af�Ab�A]�AX�AR�A  �HA�JA�HA�BA�=A�5A�1A~3A{'Au"AsAjAe
A[        ASAIAI�@          R�DSDR�CRCQNCR�BQ�BRIBR�A  F��A��A��A��A��A��A��A��A�A�A�A
�A�A�A�A�A&BBB!B B!B% B%$B'-B'3B*:B,>B.CB/HB1KB4IB6KB7VB9]B9aB7hB5nB5uB7}B5�B4�B4�B3�B7�B4�B5�B6�B4�B-�B)�B&�B)�B*�B/�B5�B8�B=C<C>CCCECG CI"CN$CP(CQ*CQ�CQ�CPQD
                   6968: g!Kg!�Jg!�Jg!�Jg!]Jg!,Jg!�Ig!�Ih!�Ig!�Ig!jIh!@Ig!#Ih!Ig!�Hh!�Hh!�Hh!�Hh!mHh!VHi!FHh!*Hh!Hi!�Gi!�Gh!�Gi!�Gi!kGi!?Gh!Gh!�F
                   6969: h!�Fi!-Fi!�Eh!2Eh!ND
                   6970: 
��F��G��G�iH�hH�~H��H�)I��I�ZJ�YJ�ZJlZJ
                   6971: G�E��E��E��E��E��E��E��E��E�zF��F��F
                   6972: F�EG�E
                   6973: FMDF�DG�DGEF#EG�E
                   6974: ��K��J��J��J��J�J�OJ�+J�
J��I��I�{I�YI�-I��H��H��H�nH�HH�5H�H��G��G��G��G��G�pG�MG�#G�G��F
                   6975: ��F��FG�FR�F
                   6976: 
                   6977: R�F��F��F��FE �FQ �F� �F� �F(!�Fh!�F
                   6978: R�FS6FR-FR�ER�D
                   6979: R�F
�F��Fn�FV�F9�F��F
                   6980: PQDQEQ�EQFQ:FQ�FR�F
                   6981: ��Fe�F�F�F��F��F��FR�Fg!�Og!�Of!yOg!;Og!Og!Og!�Ng!�Ng!hNg!7Nf!"Nf!�Mg!�Mg!�Mg!�Mg!oMg!Mg!�Lg!~Lg!lLg!CLg!Lg!�Kh!�Kg!�Kg!�Kg!Kg!YKg!Kh!�Qh!\Qi!Qg!�Pi!Pg!�O9]�OW�ON�OH�OC�O;�O@�O9�O7{O3vO(qOhOgOvO�wO��O��O��O��O��O��O��O��O��O��O��O��O��O��O��O��O��Ov�Oa�OW�OM�OD�O>�O:�O5�O1�O-�O/�O(�O,�O&�O"�O�O�O�O �O&�O��O��O��O��O��O��M�
M�zL�oL�L�L��K��K��KU�K��K��K��K�KU�Kg!�OL!�O� �O� �OJ �O7 �O" �O��O��O��O��O��O��Oz�Oh�O]�O�U�KU�KX�K^�Kf�Kk�Ko�Ks�K��K��K��K~�K~L}&Lw&LsLlLa�K_&LbLbLa L[:LbDL]fL^oL\zLd�L]�LP�LN�LS�LX�LR�LI�LB�L@�LG�LIMSMZ
MiMoM�"M�2M�AM�HM�IM�NM�XM�`M�WM�XM�dM�nM��M��M��M�M     �M
�M�M�M�M�M(�M*�M�M�M�M�M��M
                   6982: N
                   6983: NNN!N'N.N4N<NB
                   6984: NG�MONXN[        NcNi NmNsNxNzN�N� N�N��M��M��M��M��M��M��M�N�N�N�'N�'N�(N�-N�<N�BN�?N�LN�TN�\N�\N�_N lN
 sN �N. �N6 �N= �NF �NJ �NU �N[ �N^ �Nj �Nn �Nu �Nz �N� �N� �N� �N� �N� O� O� O� O!Og!O��O�rN��M��MU�K��K\�M��M��M��O��P�WQ�bQ]�O^P^0P]pP^rP]Q["QV-QO@QPMQQZQNeQMmQKxQN�QN�QG�QC�Q@�Q@�Q�YJ�K�K��K�KY�K��K2A�TG�TK�TN�TU�T[�T_�Tb�Th�To�Ts�Ty�T}�T��T��T��T��T��T��T��T��T��T��T�T�T�T�T�T�T%�T0�T;�TC�TE�TM�TP�TT�TT�TZ�Ta�Tk�Tr�Ty�T|�T��T��T��T��T��T��T_��T��T��T��T��T��T��T��T��T��T��T��T�T�T�T�T#�T'�T/�T6�TD�TI�TP�Te�T��T��T��T��T��T��T��T��T��T��T��T��T��T�T�T(�T.�T6�TD�TK�TY�Te�Tq�Tx�T~�T��T��T��T��T��T��T��T�}T�T�{T�T�xTT{ToToTyTzT$vT/|T3~T<TI|TOTV�T\zTcvTlvTtzT|~T��T��T�yT{mTvbTw^Tz`TgT�`T�WT{QT{GT;T�5T�.T�'Tb&�'T�!T~T�T�T�*T�6T�CT�IT�OT�XT�`T�gT�pT�wT�|T��T��T��T��T��T��T��T��T��T��T��T�xT�tT�uT�pT�}T�uT�rT�gT�pT�uT�yT�~T��T��T��T��T��T��T��T��T��T��T��T��T��T��T sT bT qT �T �T �T �T �T �T        �T �T, �T8 �T? �TE �TR �T` �Te �Ti �Ts �T� �T� �T� �T� �T� �T� �T� �T� �T� �T� �T� &U� �T� �T� �T� �T� &U� �T� �T� �T� �T� �T� �T� �T� �T� �T� �T� {T� bT� JT� @T� 4T� ,T� T� 
T� T� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �Sy �Sw �Ss �Sm �S_ �SS �SH �SF �SH �SG �SL �SO �SU �SV �SN �SM �SM �SQ �S] �S` �Se �Sk �Ss �Sz �S~ �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� |S� ~S� yS� S� �S� �S� �S� �S� �S� �S| �Sw �Sq �Sp �Sv �Sw �Sp �Sm �Sj �Sg �Sg �Sj �Sm �Sg �Sb ~SY �ST �SP �SO �SG �SD �S= �S8 �S8 �S; �S= �SD �SJ �SN �SH �S@ �S; �S4 �S0 �S) �S* �S3 �S< �SC �SF �SL �SM �SG �SA �SA �S< �S3 �S0 �S/ �S4 �S4 �S+ �S+ �S( �S" �S �S" �S& �S% �S �S �S �S �S �S �S �S �S! �S! �S �S% �S$ �S  �S �S �S �S% �S+ �S4 �S9 �S@ �S> ~S8 vS6 mS< oSA qSG eSJ ^SQ bSW bS^ gSi lSp mSq dSu bSy iS~ oS� iS� iS� hS� kS� cS� ]S� ZS� NS� NS� JS� VS� dS� fS� iS� hS� hS� lS� vS� {S� �S!�S!�S!�S!�S
!�S!�S!�S !�S!�S!}S!zS!zS!{S!tS!!sS&!wS)!{S.!{S2!zS5!�S8!zS<!|S@!�S?!�S7!�S8!�S?!�SB!�SL!�SP!�SS!�SW!�SY!�S]!�S^!�Sa!�Sc!�Sa!�Sf!�Sg!>Sh!�Rh!eRh!�Q,� S� zS� sS� hS� dS� eS� eS� jS� rS� sS� uS� |S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� ~S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� �S� S� S/!�S.!�S%!�S$!�S)!�S,!�S0!�S1!�S6!�S7!�S0!�S.!�S*!�S"!�S&!�S!!�S!!�S)!�S/!�S!�S!�S&!�S&!�S!�S     !�S     !�S
!�S!�S!�S!�S!�S!�S
                   6985: !�S!�S!�S!�S!�S!�S!�S!�S
!�S
!�S!�S        !�S!�S!�S!�S!�S!�S%!�S$!�S!�S!�S��Q�kR��R�bS�T�;T�oT��T�Q��Q�bQ��Q8@�Q:�Q8�Q5�Q.�Q&R))R-1R/:R-BRnRxR�R�R�R�R#�R&�R'�R'�R*�R*�R'�R'S'S#S!S
ZSeSoS�S�S�S�S%�S*�S.�S4�S8�S=�SA�SG�SQ�SY�Si�Sq�Sz�S{�SxTwTuTtTuTz!T}&T�'T0707070035050414071004640000030000040000011764410330024256100002100000000240mapdata/states.x2 8 0
                   6986: 2 9 2744
                   6987: 2 10 5444
                   6988: 3 7 6108
                   6989: 3 8 14280
                   6990: 3 9 21900
                   6991: 3 10 25600
                   6992: 3 11 26404
                   6993: 3 12 27448
                   6994: 4 6 28664
                   6995: 4 7 29940
                   6996: 4 8 34752
                   6997: 4 9 39396
                   6998: 4 10 42748
                   6999: 4 11 43364
                   7000: 4 12 44640
                   7001: 0707070035050414541004640000030000040000011757050330024242200001600000741464mapdata/world��P��2����֋��Ë�����$�(�'��˥�ˏ��ʱ���"���{��ʭ������M���R���$Jм�Cи�0�’�u��8�
                   7002: ������ϥ���y���]����������␼�w��� ������ԏ��L�����Ϣ��ϵ��Ϟ���o���7���&���ԍ�ϻ�z�`�^��?�Ì)ϔ�!�`�#�@�4�-�K�?�P����L��������P���)���'�v�2�R�d�9΍�%κ�����2���k��͸��� ���:�z�f�\ͫ�V��^͊�Y͓�E�k�+�G��6�ͮ�        ����L��̕��̆���F�~���p��y̓����v��j��K�?�6�+����̎���Ð�����������������?���Y���1�l�̐R�ِC˱�0ˍ�ˑ��=������ҏ��~���[���Վ�ʡ�����*�-��G˳�\ˮ�hˏ�h�d�[�5�W�(�O�&�A�ڍ7�\�4�&�.˨��a�$�(����^�Ά��p��^��͋�Ά��p��^���g�b�C��0�����I�V�=���6Р�+�e�+�v�)м�Ь��%�"а��Q����ϰ��b��I��3� ������#���В�%�v�/�6�9��E�-�B���CЊ�=�?���   M�&�B� �F���CЩ�@��<�7�?���6Й�4�i���H�z�C�6�?�����J�O�<����R���D��9�S�3��5���4І�;�;�B���@Њ�0Ѓ�.�I�"�,��5���'��+������й�#У�0м�@Г�E�Y���H��F�����H�b�E���9���4м�?д������Ͻ�ϔ�ρ��T��'����ϵ�Ϩ��Y��+������ϛ��m��E������ϊ��Q�����   жЁ�M
���&��&,Ђ&1�>&=�&�&)�͵
�z
�V
/�C
;�
J��R��d��{��|Μr�Bq��~Ψ��z��G��2�����
                   7003: �Ζ
                   7004: ��P
                   7005: ���    �Τ     ��d     ��7     ��     ������������϶φ&�b<�dQ�G[�o�����ρ��F������"�˝��Y����ˠ��`�̷�p,�C>�+T�h�L{�0�����Y���������̧��d
                   7006: �Y/�NͲ`�og�Li�5f��gͲw�y��\��!���
���
�͵
�l��kˆ��H��#����˝���������`�ʒ�ʬ��
                   7007: ��'��7�)_�dl����O"��!�m!˴ ��~ �����N�ʞ�ʥ��K�ʴ��A���  ˔����
                   7008: �\�p&˵�^ �� !�� /�w #��˃�H�l���)���(�N�
)8γ(��q(�ͬ(���O)�̨(t�([̛'.��&�Y&���%��s%���$�˄$��!$�˳#y��"s˥"h�5"W�%"R�V"K˨"1ˣ"�O"�d�Q)5�v)&Ѐ)��a)��P)��P)��1)Z�$))�)�J)�F)�)��)��@)��)����(��)p�8)N�
)��ͬ(���(��G)��f)��~)��~)s�M)t͙)q͓)[�_)H�L)3͗)��)��*���)��O)�c�I/D�//<�
/F��.�?�3B�<3C�M3B�p3BФ3E��3�H��2>��2<��2?�3�Z,Α68�06,��5Σ5��h5��(5��,5�\53Ξ5OΩ5U�^5Z�5e��4w�(5��05���4�Ζ4��h4��\4��?4u�>4o�#4t�4p��3Y��35ζ32ή3Eέ3K�m3M�03H��2?ή2>�h2/�@2�W2�J2
�2��1�ʹ1�͉1�͛1��M1��1��0+�X18Ά1E�x1R�<1q�.1��O1��q1��v1��a1��b1�Δ1���1���1��02��b2���2��3�V3#π3B�{3?�D3I�3W�3XϮ2Z�z2k�82w��1���1��<2��X2�Ϟ2���2��Q3��i3��=3��03���2���2�Ϸ2�Ϯ2�Ϛ2&ж2$��26��29��2F��2��Α=��V=���<�Ύ<��"<���;�·;z�      ;`��:P�:O�&:RΚ9O�09GΖ8=�85η7:�e70��6,Α6�  ��7D��D�     5��6D��D���C���C�ίC�ΔC��xC��@C��C��&C���B���B��"C��C���B���B���B�ήB�΄B�΀B��cB��[B��2B��B���A���A���A���A�ήA��gA��aA�ΗA�ΊA��JA��>A�ΈA{�eAk�#Af��@m��@n��@n��@jε@l�r@v�$@o��?iΙ?h�T?i�?qα>��]>���=�Α=�
                   7009: ΅G΂G�bG
                   7010: �7G��G��G��  G��!G��EG��rG�͆G΅G�
                   7011: EO�K>��J&��J�rJ���I��\I���H��I#�IIH�[IZ�I_ͰH\�&HO�sG@̓G��G���G�̽G�̊G�VG�̵F��F�̝E��4E���D��E�KE�wE1�fEV�~Ef͈Et�~E�͏E�͢E���E�͊E��=E���D���D���D��E��DE�͎E���E��&F��;F��OF�iF΂F!ΏF-ΎF8�aFB�MFE�'FN�FS�Fe�#Fu�9F��tF�ΠF�ΟF��TF���E�λE�ΰE��eE��&E�ΪD��7D�
                   7012: ��D��6D����Q�ͰQ��}Q��Q�ͩPv�+Pq��OźOu�OmͲNu�:N���M�ͶMp��Mt͎Mk�YMZ�-MS��LL�aLQ�'Ld�L^ͳKS�iKO�K�k��Xj�rXq�X{͍W����V�͛V��/V���U�ͮU�ͼU�͓U�&U���T�͐T��hT��3T���S�͊S��S�ͤR��UR��R���Q���Q�
���_���^
                   7013: ��]ͭ\�B\�
�B\���[�̶[�[�I[�[ͶZ#͈Z.�9ZC��YW͞Ya�gYi�Yk��X���\f���e��de�e���hc��_cv̬ci��ce�1dt�`d}�6d��&d�̶c��~c��hc��ˉd��]d���c��mc��Hc&̛c ��c3��cM̒cq��b��1b��sa��a�̩`��r`���_���gm���l��(l�l*�'lO�6l]�lc�Hki�jmˣie�=id��hP˂hS�hTˏgn�;g���f�ˣf��`f��af��\f�p�=tqʊso��rs��qv�Gqp�~p�� p���o��uo�ʻn��-n��gm�
                   7014: ��R���zy�#yz�1xu�\wxʚvwʋvy�avn�)up�=t����`�ߒJм���
                   7015: ��������&����֏�������������������L�әVѫ�a�U�[��OѲ�I�5�OѺ�\�k�B�ޖ1Ѭ�,ѻ�!���Ѽ��Њ���b���
���a������������ߔ��Ô��{���,������ɓ�Ђ�����+�Қ�{��sҟ�w�n�e�M�P��N��Zҫ�d�h�K�%�D��CҶ�9҄�R�)�J�Ŝ)Ҕ��̜���������œ��x���A���*���
                   7016: ���Û��q����u���j��_�F�U�4�W���Yѫ�bт�d�m�T�R�K�4�U��F��H���N��K�ٙL�ә��#�q�  �1�����һ���|��������ҧ���n������ҫ���T��J�6�K�\�(�y����ϣ�ӭ��ӎ�Zӕ�(ӧ��ѣ��������Σ��|���Z���A������w���-���Y���J������Қ���2X�u�k�,�w��tҍ���N������{��ҟ�ӛ�2�b�.�A���%����ҵ��ҋ���w���F�w�#�w�頋ҵ��ҍ��Ҍ��Ң���ū��䫱����ث�ғ���?���ߪ�҄���2�������ȩ�҈���w���X���(�o��N�ܨLҙ�Q�A�L���Xҿ�}ҩ��ү��ҏ��Ґ���~��q���$�����ݴ�Ҿ��Ү��҆��ҝ��Ҧ���`���&�Ӷ�ӏ��]�&�
�,�ʲӑ���\������ﱴ���̱�ҳ��ғ���z���a������ҫ���v���p�c�E�\��WҾ�VҺ�X�|�`�4�`�ۮX�u���- ��4Ӱ�JӇ�]�K�_��Q���>ӿ�+�z�)�E�2��S���r�׹��ݹ�ӻ�|Ӑ�h�Z�i��_Ӽ�Aӌ��g���4���i��и����&�����и�҄���'���ط��`�����Ҭ���s���R���7�l��X��V�ߵ]ҧ�kҕ������?���������
                   7017: `���jҀ�~�”�a���������Ґ���*���⿓Ҵ����ҵ��қ���i���X���<���"������ ���������о�ھC��o�پ�ӷ���|���+�v�ܽaӧ�G�b�/��!��ә��G�
                   7018: �&� ����"�ўɤ�7ɭѹȶє���o���}�
�=�)���>���Y��DŽ�8Ⱦ҉��Ҍ��E� �  ����������҈ǩ�;ǝ�     ǩ��ƭ�wƦ�?ƍ�ơ��ŽҎ���D���0�������>������ҧÆ�a�`�����+��~�k�5�W��E���6���,���#�Z�'�-�C���\���_ї�D��9���+��������ѡ������P���ͩ�͎�e͂З�jЯ�f�k�r�0͎��̿Н̹�a̚А̐Ё̎�K̚�(̞��˿�h����������4���MѨ�j�Pʁ�&ʞў�����P�����у���N���0���:���1���0���������ф���V���������ј���6�������vӼ�FӸѹҫ�=ҪѴѥ�Dѵ��ишК�~������Һ�!ҕ�0Ҿ�@���MҦ�]Ҧ�f�����3���ݙ��ݻҘ���^���%�������m���-������қ���L�����ҽ���}���U���ڻ��ٳ��ٱ��٣ҥّٞ҆�F�}�&�n�&�f��k�T�cҁ�R҄�>�o�+�f�2�E�.��0��7���9һ�1Җ�.�r�)�Z��=���
���       ���
                   7019: �'���������ѧ�
                   7020: қ�Ҁ��y���r���P���0����ъ��R�,��>���N�u�U�=�l���������y���������s���N���;����������x��+����������������������߾ѻ߿ѣ���m���:�����7������ё�ҙ���������'�)�=��C���A���Eҝ�:�z�.�B����$������f��݋������Х��^���L���������з���v��?������Б��v��~���`��Ѕ��У��`�'�
                   7021: ����ѡ���s�������н�Ж��?�s��q�
                   7022: �u���|И�g�b���0���Qл�cЪ�rЁ����.��B��,��*��3��� ���)������������������Hа�I�V���        =�?�N�)�W���bЃ�h�N�p�;��-����Х���K�F�M�&���4�i�I�;�S�]�b�7�l�������������}���B�����������������ж��Е�yБ�bЍ�a�Z�k���h�m�g��`���Wп�H�z���?���Hа�������������     ������������aЌ�J�O���<��R�����E�Y�H����F���HМ�H�b���?д�I���MЪ�K�F��=�&I��Q��\��sл{О�Й�Ь�Ь�Ч�������в�Ї��I��9��%�����������     ���(��������������������ָ�ָ����������������"��&��5��H��X��Z��R��(�
P�A%L�B%H�J%F�j%=֙%1ֻ%6��%M��%U��%W֕%W�]%T�F%P�A%���0(��6(��,(��(��(���'���'���'���'�՟'��r'��V'��K'��h'�Հ'�՝'�ծ'���'���'���'��(��(��0(�K��(=��(���'Կ'ԭ'ԩ')ԭ'3Է'5��'5��'E��'K��']Կ'fԛ'm�v'Z�y'X�T'V�9'L�!';�'+�' �+'�3'�p'Ԟ'ԯ'��'���2'��:'�'
                   7023: ��&��&��&��'�)f��(q��(qԿ(lԠ(rԑ(�x(��a(��A(��(���'�Ԭ'��|'��R'��'���&���&���&���&���&��'��'��.'��Q'��]'��_'��x'�Ԣ'v��'a��'K�(3�(�*(��(��*(��5(��I(w�f(^Ӌ(LӐ(9Ӝ(
                   7024: ��(���'��)'��2'�  i�]'o�S's�'n�'g�']�!'\�1'b�G'i�]'�
K�e)<�e)�j)��y)��v){р)J�r)�Q)��K)��*)��)��-)d�Q)�6լ)3ը)5ե)9թ)?՞)CՆ)F�~)N�p)P�^)P�?)Q�)V��(S��(K��(�=��(2��(.�)1�()6�2)<�I)<�e)9�{)5ՙ)3ի)6լ)��Ӿ*�ӷ*Զ*Ը*!ԙ*1Ԧ*>ԥ*FԂ*E�r*<�V*8�Q*+�V*�m*�*Ԅ*ԛ*ԫ*�Ӿ*����+���+�ӽ+�Ӡ+��|+�c+�U+"�?+#�$+� +�5+�!+
�+� +��+��+��+���*���*��+��++��I+��m+�ӊ+�Ө+�Ӷ+���+���+��+-
                   7025: �'-�5-� -"�-,�-9��,D��,H��,A��,1Ӹ,-��,!��,��,�-
                   7026: �'-�+-�"��/��      /��/��"/��@/��F/��=/�3/�/$��.:��.R��.[Ҵ.fҙ.i�u.q�S.r�=.a�M.N�\.;�a.)�O.�T.�n.ґ.��.��a.��u.�х.�ѧ.�ѳ.���.���.��/��/����/�Ю/�Љ/��m/��l/��d/��M/c�I/�wF��.X��.oи.���.���.�О.�Ќ.�Ш.��~.�� .��.��.��-ѽ-2��-Aѹ-Rѡ-e��-jѨ-l�}-|��-���-�Ѵ-�ё-��v-�љ-�љ-�ё-�х-��~-��g-��g-��~-�Ѩ-�ѷ-���-��.��.��.�$.�.�
."�.2��-A��-H��-MҶ-MҘ-8ґ-#ҕ-ҍ-�w-�o-�M-�7-;�8-`�9-h�9-h�-zҶ,�Җ,�Ҵ,���,���,�ҷ,�Ң,�қ,�҆,��x,��_,��`,��],��a,�H,��6,��,���+��+�
                   7027: ,�,��+��+1��+4��+2��+/Ӯ+<Ӻ+?ө+?ӊ+A�g+K�s+TӞ+hӧ+yӷ+�Ӭ+�Ӏ+��(+��+���*��+��+���*�Ӌ*�ӡ*�Ә*�ӂ*�Ӄ*��n*��Q*��;*��*���)��)��)ԩ)4Ԏ)E�x)[�5)f��(�
                   7028: ��(��
)��6)��V)t�e)T�k)K�e)�E��3Kб3Zг3f��3q��3wС3v�f3��V3��?3��3x��2p��2jй2_и2S��2H��2�#F��2Yв2]б2`В2j�W2j�2j��1k��1rБ1{І1�Ј1�У1�Т1�Љ1��u1��h1��H1��1���0���0���0��1��1���0���0�Ф0��q0�$0��/���/���/���/���/���/���/�       ѱ=
ѧ=њ=�Т=�Ь=���=���=���=��=��=��=ѱ=���ݵ�zݱ�pݳ�hݳ�\ݳ�Wݯ�Qݬ�Vݳ�Uݹ�S�ÎO�ƎL���C���D�ԎJ��L�ߎV�܎[��f�܎r�̎�����ݿ��ݻ��ݵ��.��-��/��(������%�
                   7029: *�/�/�.���Q*��/�.��/��0��1��3��/۵/۟3ۈ,ۈ+�w'�d�^ �P#�E�9�*������
                   7030: �����������������ڼ�ڱ�ڥ�ڜ�ژ�ڄ����{��{��w��m��q�ڃ�ڊ�ڈ�ڃ�ڈ�ڒ�ڣ�ڷ��������������������������(��A��T��iہہ�y�}�ے۫ۼۼۺ��"��%��&��)��&��,�*�����p(��l(��i(��Y(��U(��](��e(��v(�܇(�ܛ(�ܨ(�ܰ(�ܽ(���(���(���(����(���(����(���(���(�ܶ(�ܙ(�܄(��p(��p(�M��'��'���'�ܻ'�ܶ'�ܮ'�ܙ'��|'��n'��g'��Y'��Y'��z'�܂'��n'��Y'��U'��e'��~'�ܓ'�ܪ'���'���'��(�� (��(���'���'���'r��'t��'��'{�(w� (��1(�B(u�<(b�5(b�%(f�(a�(a�1(c�J(i�R(m�a(h�l(a�k(Z�g(Q�g(M�](O�l(V�~(f܍(uܠ(zܟ(�ܑ(�ܑ(�܉(�܆(�܂(��x(��p(��U(��L(��:(��<(��<(��7(��7(��+(��!(��(��(�(�(���'��'�'��/2ܨ/3ܖ/8�t/E�f/T�_/\�I/a�2/`�/Z�/Q��.Q��.Kܨ.Mܜ.Tܜ.�Tܜ.Vܜ.Yܠ.\ܨ.gܵ.w��.���.���.���.��/��!/��2/��O/��</��/��/&�/�/2�-/,�>/,�Q/B�:/n�%/��/���.���.�ݱ.�ݬ.�ݬ.�ݳ.���.���.�ݱ.�ݚ.�݇.��z.��[.�E��.ܽ.ܹ.ܬ.�ۢ.�ۓ.�ۃ.��x.��v.�ۃ.�ۘ.�۬.�۱.�ۦ.�ۑ.��}.��p.x�d.i�[.^�K.R�0.H�.@�.1��-%��-!��-۽-ۨ-
                   7031: ۚ-ۋ-�x-��j-��S-��>-��'-��-���,���,�ڷ,�ڏ,��l,��j,��p,��|,�ډ,�ڤ,�ڿ,���,���,���,��-}�4-v�<-{�Y-��x-�ڍ-�ڨ-���-���-��.��.��6.��@.��Q.��h.�ځ.�ڞ.�ڳ.���.���'/�%/}�6/{�K/v�b/v�z/sڋ/sړ/uژ/~ڞ/�ڞ/�ڞ/�ږ/�ڑ/�ڋ/��{/��d/��]/��</��-/��'/�Ucگ/fڪ/gژ/j�z/o�_/r�F/w�0/z�#/|�/|�/{��.���.�ڹ.�ڨ.{ژ.vڏ.kډ.hژ.fڭ.g��.k��.q��.o��.h��.`��.^ڿ.\ڤ.\ڋ.V�}.O�{.J�v.Iڔ.Jڪ.Gڵ.Cڳ.>ښ.<�.6�l.*�h.%�[.�W.
                   7032: �M.�M.�W.
�h.�t.#�v.%ڇ.0ڜ..ڬ.+��.'��./��.1��.8��.?��.D��.J��.L��.Q�
                   7033: /R�0/H�>/<�4/,�/!�
                   7034: / �/!�</#�H/,�O/3�Q/9�_/B�v/F�t/M�]/S�K/Y�F/\�H/Z�[/Q�r/Nڋ/Nڞ/Qگ/[ڳ/aڱ/cگ/�.~�l.{�p.}ځ.ډ.�ڍ.�ڃ.��h.��S.��8.��.��.���-���-|��-nڻ-aڵ-[ڵ-Tڷ-L��-G��-F��-I��-R��-V��-Z�.Z�.R�.Q�%.S�-.X�'.Y�6.Z�I.]�_.f�d.o�h.w�j.~�l.Z�h-[�a-\�S-U�J-Q�K-L�Y-O�d-T�j-[�j-����+���+���+���+���+�ڹ+�ڪ+�ښ+�ڀ+��p+��j+��l+��l+��x+�ڇ+�ڙ+�ڮ+�ڲ+�ڽ+���+���+���+���+��,��,��,���+���+���+���+��܄)��|)��z)��t)��n)��r)�܀)�ܓ)�ܢ)�ܲ)�ܹ)�ܹ)�ܻ)�ܰ)�ܮ)�ܶ)�ܲ)�ܨ)�ܦ)�ܞ)�܍)�܄)� ���(���(���(��)��)w�)n�)o�!)h�1)a�D)h�J)s�N)u�a)s�e)j�])m�c)z�x)�܄)��~)��a)��a)��a)��N)��5)��#)��<)��:)��%)��)��)��)���(����(���(���(��)��)��')��/)��#)��!)��))��<)��@)��3)��)��)���(���.��.,��. ��.�/�;//�I/;�S/2�z/܄/܎/ܰ/�    �۹/�ے/��k/��S/��D/|�N/s�z/mۡ/e۫/�
                   7035: ۹/ے/�p/��S/��I/��g/��k/�ڄ/�ڡ/�ڦ/��ڹ/�ڵ/�ڗ/��k/��;/��/���.���.���.���.���.�z�ݨ2�ݩ2�ݷ2���2���2���2�ݯ2�ݚ2�݅2��r2��`2��[2��2�݉2m�y2b�h2b�W2o�M2j�B2S�@2L�^2L݃2=݋2&݁2�j2��G2��42��)2��2��!2��#2��2�2}��1���1���1��
                   7036: 2��2���1���1���1���1���1���1���1���1���1�ܳ1�ܚ1�܉1�܇1�ܨ1���1���1���1�ܵ1�܇1��{1��n1��j1��l1�܃1�܇1�܃1��y1s�f1[�b1H�n1B܁1;ܒ13ܚ1'ܚ1*܅1-�l1#�f1�f1 �S1+�)1+�1*��0$��0ܯ0�ۜ0��y0��}0�ۍ0�ۤ0���0���0��1��1��+1��'1��.1��I1��K1{�<1h�1`��0U��0Tۿ0Mۢ0Jۑ0K�0Q�v0]�l0l�f0��b0��`0��Y0��O0��K0��K0�M0�K0�F0�.0�0�0��/��/'��/����2���2���2���d3��f3��f3��`3��S3��A3��*3��3��3��3��3��3��:3��C3��[3��d3�q��2u��2y��2���2���2���2���2���2���2�ݳ2zݠ2hݔ2Yݏ2Xݔ2dݨ2kݵ2q��2�;��2,��2��2 ��28��2M�3k�3v�3v�3s�3n��2i��2c��2R��2Aݻ2���3��3&�
                   7037: 3�3
��2��2��2��2���2���2���2��3��
                   7038: 3��3��3�
t�3u�3��3��3��3��3��3��3���2���2��3t�3t�3���}2��p2��f2��\2��n2�܇2�ܐ2�ܐ2�ܐ2�ܐ2�܉2��}2�
��B2��@2��>2��:2��82��82��C2��W2��`2��`2��[2��S2��B2�Qf�#2g�2h�2m�2o�2h�2f��1o��1t��1m��1[��1Rܽ1Zܫ1gܦ1rܠ1zܪ1�ܭ1�ܢ1|܍1j܅1S܁1H܏1:ܢ1ܷ1ܪ1ܚ1܉1�ۃ1��x1��d1��W1�@1�.1�1
��0��0��0ܽ0�۽0���0���0��1��1��61��D1��B1��I1��Y1��l1��f1��r1��r1��h1�ۃ1�ۚ1�۵1���1���1���1�ۢ1�ۑ1�ۏ1�۠1�ۯ1�۷1���1���1���1���1���1��2��2�2
                   7039: �2�,2�)2&�)29�#2L�'2Z�#2f�#2�>�C29�82.�:2%�<2�@2�K2�S2�[2�^2�^2�[2�S2$�S2&�S2"�[2"�b2+�j27�j2:�\2=�K2>�C2�,��2        ��2     ��2��2���2���2�۽2�ۨ2�ۘ2�ۋ2��}2��h2��W2��C2��.2��#2��2��2��2��2���1���1���1���1���1���1��2��2��)2��C2��S2��W2��S2��\2��v2�ہ2�ۃ2�ۘ2�ۯ2���2���2���2&��2��2����2���2���2���2���2���2���2���2���2|��2w��2|��2���2���2���2���2���2���2���2���2���2�<��02��,2��!2��2��2��2���1���1���1���1���1���1�۹1�ۭ1�ۨ1�۞1pۏ1rۇ1v�1t�l1m�b1f�b1`�Q1Z�@1S�:1O�<1I�<1H�S18�U1)�W1!�`1%�v1+�1&ۃ1�1ۋ1ۤ1۵1��1"۳1%ۤ1)۵1+��1*��1,��14��1=��1G��1O��1S��1T�2Y�2a�2h�2q�2v�!2��.2��<2��<2��02�,H�1H��0C��0<��0;��02��0.��0%��0��0*��01��00۳0(۬0*۞0ۖ0ۖ0
ۏ0ۅ0�x0
                   7040: �l0��h0��y0�ڏ0�ږ0�ژ0ۢ0ۿ0��0���0���0���0���0�1�1�'1�)1�)1&�.1/�218�617�'1<�1G�
                   7041: 1H�1�%v�0v�0u�0s�0d�0U�0G�0:�01��/&��/��/ �0&�0/�02�)0 �'0�0
                   7042: �0��/���/���/��
                   7043: 0�0�+0�<0&�I04�M0@�K0D�D0E�80E�+0J�%0U�'0^�.0c�-0m�0v�0�n�h0p�j0s�j0{�f0��[0��M0��F0{�@0r�<0j�<0f�B0e�K0g�U0k�b0n�h0�Q��/S��/R��/R�0Z�0d�#0j�%0l�0k�0g�0h��/_��/X��/Q��/�ܰ/ܹ/��/      �0��/���/���/���/���/���/��0��0��0��0���/���/�۹/�e۫/e��/V��/?��/��/۹/�(�ڦ/�ھ/��/���/���/�ھ/���/���/���/��0�/0�_0�_0��=0��30��=0��G0��L0��Z0��x0��x0�ڟ0�ڨ0�ښ0�ښ0�ڟ0�ځ0��x0��_0��G0��Z0��_0��G0��G0��V0��80��%0��0���/�ڹ/��䰊䪊䨊䨊#䦊+䜊1䍊;䁊H�t�I�f�Q�a�W�S�N�M�B�M�4�M�%�B�!�/�"��������������������҉��Ή��lj�㵉�㪉䦉䜉䓉䉉�z��t��x�䅉�ぉ��~��ド�㇉��|���h���h���p���l���f��c��[��Q�&�J���F���B���J���S���]���S���H���O���U���M���F���>�v�F�f�U�V�c�E�h�0�|�-㏉#㓉㠉㵉��É��Љ��܉��䉸�퉴����������������������!���#���#���)���+���-���/���1���2���4���4���6�q�:�a�<�U�<�E�B�;�D�:�:�4�%�+�����
                   7044: ������>�!�a�)�v�%����≊☊⢊      ⨊�����؊������������
                   7045: ���������������#���8���@�y�B�h�D�`�U�V�U�E�Q�7�a�+�p��r�
�x���x��������������ऋ�ঋ�ࢋ�ऋ�ఋ�ଋ�����ঋ�࿋��ڋ���w���m����r��|���������ދ��̋�⹋�☋�⃋��v���h���W��Q��M�'�F�4�B�E�>�Z�:�w�)����������܊��Њ�㽊�㷊�㱊䰊����j���z��䅇�䕇n䛇^䮇I���%�އ  �������)���@���a���|��㑈�㠈��������������܈��҈�ň(䰈D䞈d䙈{䏈�䏈�䜈�䰈��""���(���'�������x�
�n��j��n�&�}������r���f���d���d���t��߁��ߓ��ߞ��߬��߳��߻���̍��Ѝ��̍��ȍ�����߹��߱�
ઍઍ&਍'���&���"�����pm��i�-�d�8�[�:�W�J�O�O�H�Q�E�W�A�a�<�p�7���1���3ଌ/์+�Ό1��D��E��=��9��<�'�A�'�<�:�H�@�U�@�S�F�S�M�[�a�[�t�\���]���x਍�ํ��֍��w��s�
                   7046: �w�)�y�K���_���U���D���:���F���]���f���`���Y���[���f���}�������y���h���Q���:���B���G���:���0���@���Q��S��@�
�6��@��@��0��)���������!��#��,�#�9�!�A��F��T��Y��c��e���]��P��L��L�ڍT�ԍj�ڍs�֍v�̍��Í�ᨍ�ᕍ�ᑍ�����j���_���Q���@���+������      �ތ�Ō%⮌2☌;⃌G�j�V�S�h�1�r������蚣�ޚ������&������q�&�z��}����蚂�ښ}�ǚl���i�ؚl��q�&�l��q�&���_E�H�E�F�>�@�6�'�+��3���3��,�؜%�Ü䚜��v���O���/������������ܛ仛
                   7047: 䚛�v�+�U�#�B��)�5��,����������ܚ��ؚ��ޚ��ޚz�ޚ]�ښO�ؚA�Κ#�֚;�֚P�ښa��U��?���*�
                   7048: �������������)���>���]���e���e���p��⅛�⍛�✛�⮛�⻛p���]���H�؛E��R���V��O�#�Y�F�Y�e�g�p�l�[�|�M�|�l��⋜�⢜�ⱜ�⽜��ʜ��؜�����%��E���E���+���֜+���8�؜P��i�������#���/���>���K�      �H�(�I�E�H���{�B�x�G�k�G�������~�G���%�K��)�%��/��8��?��<�$�2�.�?�G�X�G�_��O���[���r��υ��ϒ��ϋ��~�Ѕ��~�.�~�=���"k�G�h�K�e�U�b�d�b�r�eކ�rކ�{ސЅޣЂ�|Ѕ�rЎ�iЕ�rЛ�nТށИސЎ޲Ў��В��Т��Ш��в������л���������������������Ѹ�ѫ�Ѣ�ђ�х�����~�G�e���e���u���_���_���K���8���"���)���,���2���?ޭ�<ސ�%ސ�%�n�<�n�?�d�5�U�%�K���
                   7049: 
                   7050: �[��V��L��J��9���7���;���R��]�
                   7051: �[�����.���.��.��.�L��[.��@.�0.0�%.P�.]�.O�0.h�).��.���-���-���-�ޯ-�ޖ-��v-��[-�D-�%-(�-(��,?��,F��,Z��,t��,{��,���,���,���,���,��
                   7052: -��2-��W-�߁-�-'��-7��-P��-o�.�.��.��
                   7053: .���-���-���-���-��-�-�-)�t-)�S-=�>-I�-H��,E��,D��,D�,R�,\�,|�,��,��,��,��t,��t,�p,&�|,B�t,[�Y,n�M,~�@,��%,��,���+���+���+���+�:���+���+���+���+��,��:,��U,��U,��F,��4,��,&�,���+���+���+��+��+��v+��_+��Y+�a+3�c+P�|+<�+9��+/��+�+��+��+�
                   7054: ,*��+4�',R�S,s�W,��W,��Y,��l,#�l,C�J,3�8,'�-,��+��+�+��+��+��S+��++��+���*�*�*#�*7�~*I�|*l�*��*��*�A��@2��B2��@2��@2v�B2Y�C2:�S2�Y2&�\2��^2��[2��Q2��B2��82��<2��'2��2���1���1���1���1���1��1��1��{1��j1��U1��M1��M1��`1��t1u�1^�1U�1U�f1C�d1#�`1�`1)�p1-�1�1�1��t1��1��1��1��1��1��1u�1l��1\��1M��1G�1B�1=�12�1&�1��1��1���1���1���1���1���1�����1���1���1���1��1��1��1��1��1x�1j�1^�1R�1L��1M��1G�28�2#�2!�2��1�1�1��1��1G�1��1��1�2�2��2��!2��!2��2���1���1���1���1��
                   7055: 2��
                   7056: 2���1���1���1��
                   7057: 2��2��2��%2��'2��)2|�,2��)2��2��2��2��2���1���1��2�2v�2o�!2`�82W�C2G�G2C�W2P�W2h�Q2v�S2h�d2S�t2V��2g��2s��2��}2��2���2���2���2���2���2��2���2���2���2��3��'3��%3��3��3��3���2~��2s�3p�,3W�E3G�^3>�w3'�3��3��3��^3
�W3�^3%�l31�Y3:�>3/�*3!�3��2��2��2"��2#�2��2      ��2��y2��p2�ߏ2�߃2��w2�ߒ2�߳2���2�߻2�ߦ2�ߒ2��w2�ߏ2wߐ2qߋ2k߁2h�n2j�Y2x�Q2k�G2O�>21�)2'�2 �2�2-�429�G2>�d2Bߋ2;ߖ2'ߒ2ߒ21ߞ2F߯2I��22��2��2߻2�޳2�ީ2�ޖ2��y2��h2�[2��S2��I2��j2�މ2�ޜ2�ޤ2�ޏ2�ޜ2�ި2�ީ2�ީ2zި2lަ2[ޤ2Lޞ2Fލ2Z�}2m�w2}�[2��M2c�[2U�`2F�h2:�`23�M2-�M2-�[22�n2+ށ2ޞ2ޞ2ޞ2     ަ2�ݨ2�,��^2��W2��W2{�U2s�S2u�G2u�<2r�.2i�)2Z�!2H�2<�2%�2�
                   7058: 2�%2��42��@2��G2��I2��<2��*2��#2��@2��<2��,2��*2��G2p�@2b�M2c�j2p�2��2��2��2��2��2�2-�2J�2d�2r�2v�r2��d2��^2����1���1��1��1��1��1��1��1��1��1n�1^��1Z��1^��1m�2��2��2���1���1���1�
��2��2��2��2��2��y2��n2��l2|�2x�2�2��2��2�
                   7059: I�2M�2T�2X�2_�2\�t2W�n2T�p2O�2I�2�<�2<�2@�2@�2C�l2D�S21�G2�G2'�\26�t28�2<�2�)�2+�2*�2'�2!�r2�d2�[2�`2�r2�}2)�2�
                   7060: ��\2��U2��K2��G2��I2��[2��^2��^2��\2��\2�
                   7061: nߨ2l��2u��2���2���2���2�߹2�ߩ2pߢ2nߨ2�
                   7062: {�3q�3c�.3a�G3g�W3h�U3q�O3t�E3{�03{�3�
6�:39�:37�431�#30�3*�3#��2��2
�3
                   7063: �3�'32�836�:3�)�p3:�r3:�p3;�h3B�[3;�W3*�Q3 �M3�E3&�>3��43��.3��.3��63��@3��G3�W3�d3)�p3���3�3��3���2���2���2���2���2���2���2��3��3��3��3�
��t3��w3��w3��w3��p3��d3��[3��W3��U3��`3��n3��u3��t3���%3��3��#3��%3��!3��3���2���2���2���2���2s��2U��2(��2޿2���2����2��3�3�3)�36�3=�3D�3L�03]�C3c�K3j�E3h�63^�3v�3w�.3��@3��83��%3�
�}3�3�3'ށ3)�{3)�p3(�f3�[3�I3&�Q3�l3�}3�}3�%�7x(�5x �5x�;x�Ax��Ax��Ex��Xx��ix��wx�mx�qx�x�x!�x(�ux)�Xx"�Ex%�7x����-���)���)���'����x��e��Q��G�
                   7064: �>�
                   7065: �7��&���,��:�ډ4�։'�؉'�ʼn)賉袉草�|�
�f��]��c���t���]���O���J���<���:���1���#������������������+���:���6���1���)�~��i��X�&�;��+�ڈ%�ֈ������������������������������ڈ��ֈ��ˈ�����淈�梈�效�摈�扈��v���h���h���j���l�  �x�瀈�r��h���Q���<���<���<���5���3���-���-���/���-���+����w��l��[��M���M�އ8滇-擇$�e��L��:��-�$��$��5��@���F��R�چW�φ]���d渆i榆d拆[�v�O�a�C�a�-�e��k��p�
                   7066: �t���t���t���x���v���~��囆�崆�帆y幆p忆[彆W崆N崆<�ņL�ɆZ�͆^�܆^��Z��Z�!�T�5�H�D�0�[�$�i��z��x��p���g���W���[���j���N�䰈��Ɉ��������/��L�    �p�&叉C勉[�l�i�M�s�#��������������������؈�҈�҈�҈3�؈@�ɈI�Јj�ڈ��Ԉ��������������房�������������#���6��B��F��B��<�&�3��'�*�#�*�1�0�<�8�4�F�6�T�4�Z�B�P�J�T�_�F�c�8�]�1�]�i燉�碉�翉��Љ��҉��ʼn�繉��É��ɉ��މ�������������)��<��M�#�_�1�p�D�|�J��:���-���
��v��낗f뇗_덗A뛗*릗몗�ꪗ�꬗�ꦗ�ꤗ�ꮗ�갗��3�갗X�җP�ԗ9�ޗ)�����&�������������+���5���L���P���@���c���x�y邘b镘:騘鿘�Ԙ�ޘ���͘��Ϙ������蘫�똎��m��D��.�'��1���3��:��L���U���c���t���|��燙�瑙q留X眙D砙0痙%瞙碙�殙�淙���潙�湙�洙�沙o淙��&o淙���淙�濙�潙��Vo淙^濙i�ؙg��E��>��8�)�6�Y�6慚6浚5�֚*����!�
�F���c���x��卛�噛�夛�嬛��қ��䛨���������2���@���B�y�8���+�������y��`��R�'�m�@��S��a���|��勜�嘜�宜��Ŝ��ɜ�応��Ԝ������������<���I����&��"��/�8�%�K��l�
拝�}���_���]���z��圝�彝��ܝ����
                   7067: ������>���K��勞��Ş��������8���Q���l��偟�凟�剟�堟�ڟ��)�D�D�`�f�t�����)���������&��������������)���1���)���f�t�x攠�歠�潠�濠�毠筠0罠E�ĠX�̠a�Ԡo�᠅�����������������������2���E���O���b��灡�疡�礡�緡��Ρ�緡�瞡"蒡M蔡{訡��¡��ڡ����o��M��.�
������4���W���}��眢�籢詢/袢,�v�<�S�b�I���E���K���M���I���I���A���6��#�
                   7068: ��%���<���Z���g���d��w��������������������������������,�e�C�H�S�*�h��l��{�鞢�諢�询��ۢ������������.�~�6�j�U�L�^�J�`�L�O��O�,�`�&�w�E蔣T赣g�ƣh�ᣂ��{�֣p�ģc豣{諣�赣��ƣ��Σ���
                   7069: ��8��G��]�*�Y�<�e�`�v�}��锤�锤�酤��}��餤�������������.��O�9ꔥ6ꧥ,귥'�¥)�ʥ��)�ʥ*�Υ1�ߥF���s�8�|�\��ꁦ�ꠦ��¦|���w�,�����碝�ߢ�绢�眢��{���b���K���8���4���!������롄�ء������(�v�,�h�C�o�d�n狢n筢q�֢��颕����0w�,�y�f�{ꯧy��_�.�F�j� ꫨ �̨����0��q�&꟩걩&��
                   7070: �      ��7���X��郪�魪��㪠��������;��d�_�u�7邫(钫饫�豫��ȫ�����     ���(���P���k��萬�責��Ĭ��Ӭ��������N���u��詭��ۭ�����������*�����1���T���s��肮��|��肮�藮�躮���x�&�h� �O�=�<�L�,�c�$�~�1蝯衯踯�ӯ)��'���$�$�"�P�)肰2茰<藰<蝰E贰B贰E�հ_���m�������A���]��舱�花�茱�莱錱 錱�� 錱"銱醱�k��N�G�-�l�������(���(���$���������E��j����/���A���T���\��m� 낱P뗱z럱������h��G��)�+��H���_�����>��������l���O��8���:���a���������y���a��Q�)�A�D�,�g������������������/���U���p���������|��~���������������B��j���������������+��D��f�����������������������%��8��Q��|�����������|���|���z�
                   7071: �x�#�l�/�W�D���6W�D�Q�a�Q�v�Q��T��Y��W��`���d���h���|���������'��6��2��4��Q��h��p��p��l��r����������{���v���x���7��?��Z���^��o���|���~������������������9��\������������������'�4�6�W�I�z�Y���L$#�7$6�$N�$c��#���#���#���#���#���#��#��#  �#"�o#:�N#K�+#X�#j��"w��"���"���"��"��"��"�o"+�_":�N"K�H"]�B"x�7"�,���(���(��(��(��[(��7(��(��(��(���'���'��'��m'��J'�B'4�7'O�"'q��&���&��&��&��&"�&;�&8��&I��&m�'��)'��'��'��'��'��'�;'0�c'C�'X�'g��'���'���'���'���'���'���'�&���'���'���'��'��'��'��'��n'��T'~�-'~�'o��&\�&N�&H�r&;�W&9�D&=�)&C�&C��%=�%8�%-�o%=�;%L�%c��$~��$���$��$��$��$��$��$��t$��k$�a$ �_$�[$�I���"���"x��"j��"_��"S��"K��"B��"?��"I�"L�"S�"[�"Q�v"<�v"2�~"0�"7�"<�"<�"+�"�"�"��"��"���"���"���"���"���"���"���"���"z�#p�#a�+#S�@#I�T#B�g#E�x#E�#8�#&�#&�#2�#=�#G�#T�#Y�#^�#p�#p�#�#��#��|#��g#��P#��D#��D#��1#��'#�� #��#
�#�#�       #!�#0��"=��"I��"[��"t��"���"���*��v*��p*��_*�W*)�a*>�|*i�*{�*��|*��j*u�Q*q�#*k��)i��)k�)q�z)r�[)w�3)~�)���(�N��0��0l�0d��0X��05��0��0���0���0���0���0|��0[��08��0��0���0���0���0���0{��0]��0<��0��0���0���0��1��1��1��1t�1a�#1H�.1%�<1�@1��S1��b1��t1��1��1~�1j�1K�12�1�1��1���1��1���1���1���1���1���1��2��2��42s�42_�42F�825�82&�22�'2��2��'2��*2��,2��'2��2��2r�2W�2<�2&�2�2��2��2��!2��42��@2��Kd��n񗏄�����׏�����������+��+�1�=�7�)�(��,���!���Տ������������������}���v���n���f���`���W���U���Q���M���B�{�8�o�!�b��[��Y��E���C�ߎ<�̎7�!���}���t���`���G���@���F���S���W���Y���`���f���}�����������ʎ��Ҏ��֎�������������!�.�5�E�7�Y�@�j�T�n�^�y�d������%������������������������������#���'���#���%���%���
`�f�i�g�k�b�b��Y�{�I�z�>��@�N�`���@��ə�����𙙰�v���]���Y���U���H���F���>�t�3�G�3��/���#���
                   7072: �������☤�ɘ��{�t�\�a�J�[�3�@�)�� �!�������������ؗ��ϗ��˗}�ɗbTe:�����힗�훗�헗�틗�홗z힗p홗]헗Q틗0턗�|��l���e���a���W���P���P���N���N�f�N�:�U�$�a���p���v���$      ����������
                   7073: [�a�]�U�Q�R�<�U�+�]�0�e�J�g�[�a�J�g�[�a���!q���X��E�ښR�ǚE�9�0�#�&�|���������e���]���F���@�t�6�`�1�[��G������������
                   7074: ���
                   7075: ������������癰�ܙ��ə��ə��/�V�(�C�%�C��C�
�C���D���F���N���P���F���H���N���?���$������������*�DZ/�C�I�N�]�g�N�}�7��� ���
�������ް��˰������|���q���i���N���5����������߯��į
��%�c�'�A�,�"�P�����h�X���Jz럱�륱�륱�륱�륱찱"캱:�ɱ_�䱆�챭����1�+�5�V�J���^��킲�ퟲ���������ϲ�ղ�ݲ.�ٲ �Ӳ�ò�����흲�핲��~���m��q�Iq��eB!=�m�%�e��a��J��9�:�1�n�7���N���a���i���e���q���|�%鱗U�²������²�ﲲ�����'���L���b���r����𗲦�������w���m��c��V���
��lڵ�yڹ�fھ�Q���6ڳ�ږ��}��k�    �g�(�x�Eڔ�`ڱ�l���Q���V���[�����
                   7076: a���R���H���,����������#���B���Q�����8e���2��������ߖ��f�"�%�5���L߫�b�}�o�Y�y�'��������ߖ��h���>������&��������5���P��������������I��k����������&�&�$��@�/�s�C��L���L���?��N�G�`�^�|����������#��5��R�u�f�i��T��;��1����
                   7077: �&�9���Z���������������_���9�����������������u�  �\�-�G�H�?�e�.�������������������������8h�a�O�c�2�g��k���e���R���;���-��+��%��"�r��E�     �!�������������������������y���V���-�������������&�������������g���P��2�'��V����������������D��[��|�����e��D���D���0�����"��3�������������������Bu���z���z��������������,���>���Q���`��l��y�*��>��Q���k����������������������
������,���A���V���r��������������������������'��<��P��l�.���4���2���2���4���4��4�.�6�@�4�b�0�}�2���8���B���S���h��}���9��K��f��������������������������
� ��;�'�T�6���
                   7078: z�Y���b���r������.��I��W���i���u����t��("��"��&"���!��!#��!,�!7�!L�!b�!q�s!x�R!x�L!��L!��;!��-!��&!&�$!)�$!U�!h�"!q�!o�� q�� ��!��+!��(!��-!��3!��3!��/!�7!�=!-�/!J�(!Z�+!j�"!}�!��� ��� ��� �� �� �� � !�o 3�V <�? K�( _� t���������������c��?�������������&��
                   7079: ����!�z#�g/�m8�~8��F�uQ�ac�L^�AO�CL�7U�^�&c��^��U��S�X�h�|j�i\�^X�AZ� \�a��a��g��l�u�����������w��T��3����:�      V�u�&��������������>�q�x�7"��/"��("�<{��/\��/:��/��/���/���/���/n��/M��/-��/       ��/���/���/���/g��/Q��/Q�0?�0�'0�'0��0��0��0��0��0g�0?�0�0��0��0��0��0��0��.0��<0m�D0Z�D0G�B0/�<0�80�80��>0��@0��D0��Q0��_0s�h0c�j0R�j0I�j08�h0,�r0�0��0��0��0��0m�0T�0E��0�E��02��0%��0��0��0���0��0��0��0��0��0�
                   7080: z��J|�J��J��J���J���J���Jz��J�4�0U'�5U'�,U2�*U.�1U4�0U�
^�\^�\P�\I�\L�|\[�z\^�\�
���X���X���X���X���X�
>�]@�]6�]2�]0�]7�]>�]�,��_<��_:��_)�&`*��_9��_:��_,��_���ww��qw��qw{�ww}�w��w��w��w��w��w��ww��% �Ɇ�ņ ���'���+��� ������
��r���g���a���_���[���U���Y���l��󅆔󙆐󪆐󻆒�ˆ��܆��톡�����������'���7���<���5���/�������� ���؆ �Ɇ��'��!�������������������Ņ��������c���m�����������������������|���|���|���v��􉅔���������څ��ޅ��腔���x��w��z�%�k�5�~�L���S���g���g���J���5���!���&��&�ڒ��Œ����������Œ��ڒ��"���������y���v���v���n���j���h���d���Y���K���D���>���6���.���-���+���%���#����������s��l��j�0�j�<�_�O�]�_�z�j���v���y��������������.��0��.�
                   7081: �'�����������������؍��̍����������������������ȍ��܍��������������
����%��.����
s�p�w�l�m�l�_�j�L�d�D�_�9�_�*�_�'�d�7�l�P�p�l�r�s�p���      �r��l��l��l���j���b���]���l���{��������������{� �r���

                   7082: �@��<��4���0���/���<���I���[���f���d��[��K�
                   7083: �@���J��N��N���I�Ќ<�ʌ8�̌(�Ɍ�Ō�̌(�ތ<��J��(�ތ<��J�����������򠌸򚌬򞌢򢌪򱌶������������ؑ�ő����������n���c���P���J���@���P���v�����������ˑ��ڑ
����������������������펽�َ��Ǝ��Ď��Ԏ��ݎ�����������������������&������ڒ�����5�˘�ɘ��,�����A�Ù,�������a��F�
�-��������+���P���g���P���5���D���o���������������%������]���:�    �����L��^�韅�ԟ������������3���h��������x���}����L���s������������t�
�x�"�x�B�h�`�d�f�y�f�}���y���l���I���<�%�0�T��|�������Q|���x���k���R���'�������������{���t���v���z���f�m�Y�b�I�B�I�7�H�/�8��0���#���#���%����b��B��*���ҝ1���>���J���D�r�.�f��]��>���%������������q��U��7����&�؜��֜��֜��̜����v���v�O�4�x��l���e���e���c���h���j�i�c�W�M�S�>�E�B�P�8�H�8�<�>�4�:�"�:��/����������؛��������|���p���e�~�S���B���4�v��q��������������������ꞣ�ў��Þ������������������������|�����������ՙ������(���N��o����
����՚���&��&�*���%��l���K���6���:���S�     �M�'�K�G�=�O� �Z��s��m��`�ҦI�Ħ`���~�Ԧ��Ȧ���������������������d���<���������奢�ץ��ĥ���������������ݥ���(�
�<����<��G�:�K�8�M�.�G�!�T��^��R�       �8��%��:��T��X��X��K�٥M�ʥ<���,���������.���2���(�s��h���Q���:���#������
                   7084: ����������ݤ��ݤ��ݤ��̤��������������s���Z���>���6���%��������㣞�ݣ��ң��������������������������n���d���p���w���r���j���Y���U���U���Y�u�Y�i�U�o�K�u�8���%���*���(����������������ڢ��Ƣ��������h�ʢG�ۢ>��@���7���-���$�������������������%��,���:���6���0���<���I���Y���^���h���h���[���I���O�j�[�^�[�L�b�"�y�������������������y���`���Q���O���E���2�z��[��@����*��!�������t��f���E���#��������ء����������t�~�O�g�0�F�%�2��!���������������T���^����d�
                   7085: �\�%�X�8�K�6�?��8�
                   7086: �,������������:���T���T�2�K�*�C��8�
�2���.��4�ۦ:�Ʀ8���E���T���N���<�q�.�n��l��y���������������Φ��������'��=�(�T�2���  %���%��2��M���i��m�ߢV�ߢ<��%�����
�����������㢈�ڢ��¢f���S���H���=�̢>��U���������֠��Ơ��Ġ����������ݠ��ݠ��預�����������������֠��h�E�m�(��� ���ݭ�򼭞򗭯�~���m���R���I���5��,� �(�6��C��P�     �d��b��}�׬�󯬳󥬺�����¬�Ȭ;�Ĭb���k���i�􀬖�f���\���X���\���N���G���?���2���*�k��D�     �.������۫'�ΫU�̫S�īY���~�����ʫ��۫��ӫ��ի��׫��ȫ��������}���f���M���2���*���G�&�A��4�!� �3��F��h�&�z������o�۪v�Ӫ��ݪ��媮�㪽�ժ��������������������
                   7087: �������s��k��V���R��A��*�;��L��b�,�u�"�b��H�
�U���h��d��U��W�ϩb���k���w�����������������o�~�h�~�I�k�*�W��3����ݨ��¨����������������~�¨f�̨U�ۨ[�Шz���������������������������������������������w���y���m���O���&���������ߧ��ʧ���������������������������1�ۧb�̧\�§d���y���������������������l�����^���d��d���C��&������#��B���_���|���������������.�������5���3���'���������������ܫ��ګ��ګ��⫡��������'���5���;������        �����ϭ����$����P���f�ݮh���X�h�m�h�E���l���;���������ݭ���|���N���)�����[���a�����&��D�m�L�b�U�S�^�:�i�#�u�������|��|�s�s�F�q�5����~��u���u��x��w�{�s�n�o�d�q�S�w�J�i�S�^�=�R�&�c�$�V��F���F���V���a��~��e��g�j�m�]���]���[���;�����<���C���C���B���2����{���w���m���m���w��������-���<�����O����������������������s��g��T��C� �=��1�� ��
�%���9���A���6���H���C���#���
�{��b��L�'�T�C�u�`�q���P���*����z��h��f���q��߆��߫�&����������������������������������s�&�b��i����.���A���d�s�Q�b�y�`ߏ�iߵ�s���i߷�Iߕ�;߯�*���������
��������� ���L���h��ބ�����ޤ��޳��ޓ�o�j�R�J�2�L�2�"�������ޞ���l�����)���%���N���z��y�(�2�3��3���ު�މ�,�u�?�H�X��`���`ޮ�i�z�s�I������������޳�ލ���e�����Z���z��������������-���W�������&���&����
�"�#��R�������������������0���&����������������w���e�����e���V���J��D��J��H��H��D���+;���������������������������B��_�d�s�N���P���N���?���+�+��a����������������   ���� ���|��h��R�1�?�@��V�&�g�C�q�-�|��������������������%�q�>�h�a����-�)�5�6�L�K�[�V�g�w�o���*����z���q���g���^���T���E���.���������������������������j���L���1���
                   7088: �����������������~�f�~�P�v�L�e�H�V�S�D�P�-�5��#���&�&�2��N��s���#��9��>��B��B��H����-��>��=���;���;���>���H��T��_�s�c�U�c�;�a��_���_���[���R��H��>���0�p���a���V��b��o���C���&�������������������������22��E��]����������
���
                   7089: ������
���
��
�%�
                   7090: �?���[����������������������*���L���j������������������������s��W��C�-�A�B�>�O�!�^���u�������������������������������������0���<���K���Z���o���z�����T�6�l�E���M���Y���`���f���u����������&����8��A���J���P���R���h��������������������������.��2����z����������������������,����=��P��9��&�����5�`��������������&����@��c��k�������������������*��@��R��i��{��������������������
��:��`����������������������0�`0�T�N'�7:�X�v��������������������/��[�m�
                   7091: [�mi�Zu�K��?��=��-������������>�qd�ev�`��P���/���/���/���/���/z�n/m�[/^�K/R�4/<�)/8�/7��.-��.��.��.��.���.���.���.���.��/��#/��0/��H/�_/�j/(�{/8��/<��/8��/�;j�5e�5R��4H��4A��47��4(��4��4���4���4���4���4z�u4e�h4G�S4+�A4�44��4��
4��4��4x�%4X�4<��3$��3��3���3���3���3��r3��Y3}�@3e�!3V��2>��25��2��2�2&�y2��r2��^2��@2��2���1���1���1��}1��Y1i�61Q�1@��0��0��0��0��0��S0��80��0��0���0��0}�0^�09�0�0���/���/���/���/{��/�^��/_��/c��/x��/��/�8��/:��/O��/^��/�
                   7092: 1�V5�P5�G5��95��*5��5��5��5t�5j�5�
��e
                   7093: ��e���e���e���e���e���e���e���e��f�f��e��e�0�Lc.�Jc#�>c�:c�Jc%�Qc6�Uc0�Lc%�Qc6�Uc0�Lc���b��b�*��c&��c&��c��c��c��c(��c*��c�3��c0��c(��c��c��c0��c7��c3��c�  ��_%��_!��_��_��_��_#��_'��_��_����_���_���_���_���_���_�~��b���b~��bs��bj��bo��b~��b��Ff�Df�:f�6f�>f���ag��cg��Wg��Mg��Hg~�Kg��Yg��ag��Ff�Ff��>f�Ff����m���m���m���m���m���m���m���m����u���u���u���u���u���u���u���u���u���u���u���u���u��v��&v���u���u���u���;u��0u��"u��u��u~�uo�ul�
uj�0un�Auo�Oun�\uy�mu��uu��iu��Xu��Ku��;u�
                   7094: ��s ��s��s���s���s���s��s��s"��s��s����'���#�z��r��|����#���'���3�ۅ$�م�݅��,��1��3�ۅ��H�[�R�[�T�V�C�@�(�3��+��+���������������������葦�ؑ��ɑz�őr�Ǒ��͑������"���9��L�.�V�C�X�H�[���        ��������������������������������������������ْ��ϒ��Œ����������������������t�t�_�g�N�c�@�L�B�=�T�C�q�J���N���L�ĒL�ݒ��
                   7095: n�i�r�k�t�k�t�e�i�`�_�`�_�g�g�k�m�k�n�i���P���X���\���\�z�Z�g�A�[�3�[�/�m�,���?���J���P�����+3��=��7�    �*���ؘ       �Ř����������k���H���'�����������h�ؗW�×Q���D���%����|���|������������������˗0�ԗW��v���������)���H���i���������������Ř������ ��,��3����3>�˙K���`���n���������������l���M���A���G�m�I�P�>�9�?��I��h�옎�Ϙ��������������~�����
                   7096: �������t��_��L��D�#�/��%�����������
                   7097: ������1���:�^�/�8�D�2�]�8���(�������������������%���H���i�����������
                   7098: ���������������p�{�^�{�d��}�������������O�p�M�f�G�]�C�B�&�.���������啹�ĕ��������r���h���\���Y�Е^��w����������6���U��j�.�p�?�n�O�p�����=���2�r��f��`��O��@�Ӕ4���%������
                   7099: �������ʔ#��M��l�.���=���
                   7100: ��2���"������
���������!���0���8���2�����Ҕ��Ȕ��Ȕ~�ה��唲�田�۔��Ҕ��m���x���������������~���r�{�a�\�7�P�7�d�R�{�e���a���m�����,���9���?���C���9���*���"���,�����        "�?�&�G�/�A�3�7�3�,�(�&��(��4�"�?�����ٓ��ӓ��������������s���`���G���/�z��t�
�e���T���C���=���F� �V�$�i�?�z�X���o�����������“��ѓ��ٓ����"������
�������L�ݒZ���p����$���&���"��� ������˗������������������З��ܗ��������J���B���9��� ����t��c���g��p�B���H���L���J���R��J��9���7��;�ژ5�˘��,���;��L��R����v�Ùe���X���������������뛞�ᛜ�ě���������ě��қ��ٛw���������������������������ՙ��ޙ������������l���l���d���S���E���I���\���l�����
:�&�>�"�<��<��6��,�������������(��2�$�:�&���>�ʚE�ĚK���A���?���>�u�:�A�6�,�6��:�&�:��>�˙��������ՙ���������3���V���w�������<�ʚ>�ʚ��9?�ɟ7���*���$��� �m��J��+���������˞����������j���B���%�������|���p���p�z�_�h�8�M�!�'�
                   7101: ����؜����������}�l�{�O�}�?�r�4�E�,�!�������ț������}���`���?���$����l��l�4�`�K�\�o�\���K���2��������{���`���;��� ����������������������x��e�ߚ;�ݚ"�ʚ�������������i���P���3���$���&���,�|��|��v�Ù��X���A�Ù��D&�*�C�A�a�Z�z�s�������������������������������ʛ�������9�.�a�6�z�Z���{�����������؜��霬�������������.���0���G���[���t���������������̝��䝬�ڝ��Н��靋��z��k��]�-�T�J�L�j�;�W�"�D��6���1���@���S���c���v���������������ў��֞��枿��������7���R���m���z�����������
                   7102: ����������ɟ�����7�5�X�V�i�s�t�x�������g���i�z�q�k�f�R�i�A�g�3�^�"�T��R�&�L���C���=���=��A�ܟ?�џ?�ɟ�������x���m�Ϡr��v�
�_�&�o�7�Z�;�R�9�N�C�L�Z�Z�i�N���F���D�ơA��C�&�_�����ۡ��������������e���G���/���/��P��L��5�)�X�B�}�I�k�j�c��^���y�������������������:�¡I�ʡI�ݡQ��d�&�d��n�
�y��}�&���7���R���q�����������Ң���������<���Y���{�����������ȣ��ܣ�����
                   7103: �+��F�!�D�<�J�[�4�_�H�j�]���c���v���������Ť��ä��������������Ǥ��Ф��ޤ|��c��M���6��2�1�/�N�6�]�B�e�_�g���p���l���n����������������������(��*��� ���5�c�C�H�N�)�C��A��L�Ťm�ä����������Ҥy��i�W�k���s���k�����菱�����������#���B���a��x���������������
                   7104: ������/���P���i���p�x�x�W�x�>������&��������������c���:���%�v�
                   7105: �x��x�Ťv���D���#����|���������y���T�z�1�a��Q�*�K�E�I�9�)�����������壴�ʣ����������w���`���K��E��6�-�!�A��u���}�ע}�������������l���m���m���`���7���,�
                   7106: �������ۡ��ơ������y���c���V���3��������}�٠q���k���g�����~�����������������u�~�^�p�C�[�*�J��8�
�3��/�@�:�Q�N�W�a�p�p���~�������������������r���Y���A���#���������Ģ����������Ԣ���������:���Y���u��������������������������������������������ɦ���������������������S��S��]�Ϧa���W���>���#������'�ѦB�ަS����  ��e���R���A���)������������5���V�����q���X���;���"������������䦞�˦v�ǦW�զh��t���� ���;���X���     S�F�U�D�\�:�X�1�A�6�#�D�!�N�>�J�S�F����p��f�4�W�I�K�?�2�0�)���
�������#���#������)���:���M���]���f���b��Y��b��p�����|���}�����������|���t���n���d���]���I���B���@���<���>���I���U���a���p���x���|���������z���n���b���Y���O�t�O�^�U�K�_�E�v�K���^���w�������j���p�z���v���|�������������������������������������x���_��R�%�F��3���3���5���H���Y���k���x�����������������s���e�����V���k���~�������������ƨ��ʨ��¨��������
����w��V��A�   �������
�˧��������q�����X���q�������������������⧪����������9���C���^���}�����������������������������������������z���x����������������T��\�%�L�!�C��C��L��T�����(���6���,������������ԩ��ĩ��������������������������ߩ���������(������������ڪ��Ȫ����������}�$�^�*�<�5�(�/��1��1�ҩ5���A���D�u�N�b�D�G�9�A��R����������ԩ�����*���O���n���������������������������t���e�êT�֪C����.���C���X���p���������z���l���]���O���@���)������
                   7107: �����������k��o��m��k��m��q�ê]���J���A�֪=��=��F�#�X��k����        ;�r�L�v�T�j�]�Y�c�F�L�F�,�W�7�c�;�r���1��=��X�ޫe�ҫX�ɫR���i���m���]���A���3���&�ǫ(�ܫ1����/?�/�?�&�L��T��]��c�٭g���Z���X���P�i�=�X�1�B�(�+�3��7���?�ڬA�ɬ3���*���$���.�v�D�c�L�W�R�D�_�3�Z�3�i�<���:�x�)�T�!�F�+�7�3�"�J��k�   ���     �����֬�����%���F���k����������ǭ������*���7�E�?�/�����/���&�����������r��a�ŭ;�������A���/���[�������|��a���U�ܭ/����������i�#�a�:�H�Y�/�i��_��_��W�ɬp���t���v���v�]�v�@���<���8���������䫈�Ыc�ԫN��c��Y�6�/�[�
                   7108: �x�������Ŭ��ܬ���������9���5���      �Z��/�ɬ
������������~�����������������j�z�U�i�8�i�+�U�0�>��6��@���N���|�����������ެ�������"�+��D�%�_�J���o�������k��k� �q�3�x�7��� �ɭ��������䭃��W���������ۭ���f��8�ޭ0��,����
                   7109: u��}�謃�ܬ��ͬn���Q���K�Ѭ\��r��u����������������������z���g���Y���W���Q���S�u�]�U�c�`�k�U���\�����������������������F���>���<���<���:���1��'������
                   7110: ���&���������!�������n��W��K��:�-�#�H�6�]�K�]�f�W�y�N���F���D��M��M��H��B�&�2��������'��@��D����
6��6��6��-�&���
                   7111: ����!���<��B��<�+�1�1�#�6�������#���'��#�˫�ǫ�ɫ��ԫ����������
                   7112: �&��������-���)������
                   7113: ������ڪ��Ϊ������������������������������Ҫ��猪�������'���.���0���-�����}�������r���Y���A���,�������������㩾�勺�
���(���M���h���v���}���
                   7114: ��(���!�������g��V��b����*���*���(�����
������������ߩ��©������s���Z���Z���I���A�|�M�n�o�_���h���z�ݩ���������������
���
                   7115: 
                   7116: Ȩ��¨��������t���i�{�e���������Ȩ�������,�����������������x�רi�ߨx���t����������*���,����"�������ߨ�Ĩ��������������Ȩ�������� ���$���&��"���
f���l���l���z�����������������������r���r���f���l�����_���]���_���T���N�ϳT�ܳZ��]��e��q�$�g�+�g�J�m�k�t���|���������ʹ��䴵�����:W��Q��O�ӴE���O���n������������k���R���@�u�)�u�
                   7117: ����y��u�ϳj���d���^���^���W���W���W���Y�x�Y�Y�K�@�2�1��'�����
                   7118: ������벿�Dz����������c���8������������g���H��3���"����  �����,�8�9�r�N���[�вN���C�%�J�N�Z�r�]���]���_�����s&կ��߯��ᯬ�ᯏ���a��3�"��?�#�M��`���{�����������������������������w�q�^�w�;���G���=������������������������°��̰��װ��۰��ᰑ�������|��z��z��p�!�f�4�[�O�M�l�@���0���)�ı6�ȱK�̱e�бx�Ա��ޱ��籠�����������%���8���S���p���x���|�����������ɲ��ز���������������3���J���]���l���~��������������������������������������������������˳�ѳ
�ڳ�����&���   �����)���7���T���e���x���������       ���������Ǵ*�ӴE�ӴI�ѴX�ݴq�䴊�괘�촽��������������������������������������������r���h���[���U���D���B�ȰU�ΰn�Ұ��԰��԰��а��̰��İ������������*��=� �E�$�H�7�E���
$��9�?�V�g�T���X���v�ͮ��ͮ����������~���i���N���A���0D�(�H�"�N�       �H��A�ί,�������������{�"�b�/�f�A���V���r�������o�s�T�\�V�E�]�&�N��5��D�&�]��D�ٮ5�ɮ �Ȯ����ͮ����������3��7���f��������������     ���0���K���T�   �T� �X�/�A�7�0�D�(���=�װH�ΰP���e���g���V�l�1�h��u���w�����������װ������۰(�װ=�װ��|���|�����r�~�S�o�4�X�#�?�!�1�<� �W���j��p�/���D���H���L�ұX��v�屄�ޱ��������|���|���|�����G��E��S���U�ܲS���S���Q�h�U�K�2�:�+�K�#�p������������)��8��G����       `�d�b�b�b�:�[�.�M�,�C�>�:�S�Q�d�`�d���",��#�=�&�g�4���d������������~���z��q�<�e�O�o���y���~�������ˮ��������/��Z�Ȯ���������������@���c�y�z�a���R�x�J���C���E���\���T���c4���F���_���U���@���H���_���j�t�[�]�:�Q��S��J��H�ȸ%������������������������{���h�u�v�g�{�m�b�f�E�g�(�d��X��C��*�η�������������������v���n���[���6��������ķ����������������h���G�ķ.�ȷ�з
����,��?��6�(��.��C�,�d�?���<���$���
                   7119: ���������8�ʸO��f��������+���I���]���|����������͹%��2��Q�#�z�/���@���e������������"�ͺ;��R���k����"���$���'���?�#�]�B�o�i�u���������������ͻ��
��ʸ��θ��Ÿ����������������������ø��������������ʸ��.��<���2���%������6����������������������ַ��ҷ��ҷ��ʷ����������������s���^�u�T�b�J�Q�I�A�J�.�/�2��8��:���2���8���C���X��w����(���C���V���q�����з��巠�����
���%���2���6���<���E���J�}�J�m�G�X�;�G�3�3� �"�� ���$���5���I���V���f����������������&���5���?���E�����Q���������,���A���P���e���~�������������������ѵ��㵲����������.���R���m�����������������"���6��K��Z��h��`�:�K�>�O�@�j�O���Y���Y�ȷ[��b���d��f��t�'�y�.�{�.�}�.���,���(��!�u��u����﷘�巘�ַ��ķ������������������h���;�������������ȶ��������������q���E���&��������d��b�ӵ^���`���`���^���^�w�\�^�`�H�Y�"�W����
���/��L��e�"�x�*���7���C���V���g���y�����������������ͻ��ٻ��]���a���e�|�[�u�<�o��X���G���9���?���V���i���~����%���<���D���Q���]�������Q���O���O���Q���!������������&�����������������  �~�(�W�H�<�^��u���������������������������� �a�"�P�D�;�o���������������V���N���e���o���V���?���V���;]���M���M���8���#����������������������������������� ���)�� ��/��>��D��9��)�����������y���]��T�3�R�g�N�t�/�~��|����)���F���H���=���J���m���w���a��F��D��/�%�-�%�)�/� �>�=�N�T�L�e�P��W��[��[���W�
                   7120: �J�)�H�I�F�d�U���
��������_�^�>�A�%�%�!���#���������e���T���,�����e���r���|���[���0�p���e���C���������c���D��9�r�'���c��[�!�F�%�,�!�&��"������,���������������������������������e���D���D��i�������x���]����������������7���9���3��@��P�t�W�l�Y�d�U�������Y�����������/���
�������������s���O���\������������������������&�        �����������������������       ����&���-���/��&���+��/���/��5��;�f�H�S�R�(�]���s���|��x��s��V��A�h�-�Q��*��������������� �������p��n�)�X�/�9�(����������������&��������������|���i���T���H���0����������������������y���K��� ����������������������&�������v���O���2�������������&�����S��.����%���
                   7121: �����O��$���������&�������W���:��������,���]����
���������
                   7122: ��������3���_���k��~����!���,���8��@�2�I�M�^�j�s����������������������������������������������0���O���{���������    ������������������
                   7123: ��#��8�:�M�K�t���K�t�U�y�x����������������#����#�'�E�N�^�s�{�����������������'���F���h���|�
                   7124: �~��������������������&���   ���     ���     ���     ���     ���     �'��3��C��H�x_�_��?�� �����;��]�����������(��Z��������2��b�$}�N��z}����y����$��F��i�����0�0�C�p�F������������B�"��"�q�B�p������&�Y��$��/�=�@R�kP��N��P��T��]��i��F��;��1��"� �+�5�<�@�J�U;�UX�<k�1w�8��H��W��i��x��a��U��r��|�����������������������*�.�68�BB�J<�[Q�rM��]��n��~� ��# ��8 ��< ��Q ��x ��� ��� ��� ��� v�� j�� h�� D�� D�� D�� %�� �� ��!��!��#!��8!��e!��j!��r!���!u��!g��!J��!B��!\��!y��!���!���!���!���!���!���!���!��a!�F!'�+!>�#!n�
                   7125: !��!��� ��� ��1!��_!��x!��|!��~!���!���!���!��"��"���"��"��"��#"��8"��H"��L"p�Q"]�Q"M�["G�r"U��"M��"<��"0��",��"F�#d��"���"��#��#���"���"���"�q��6��~6��y6w�z6e�z6H�z6B�s6N�e6P�a6B�_6/�g6�k6��s6��y6��~6���6�\��6.�k6�X6��H6��A6��16��6v��5c��5T��5=��51��5
��5���5���5���5���5��w5x�o5]�e5J�^51�V5�~��<���<t��<h��<W��<S�=Y�=f�=n�=x��<|��<~��<��6���6���6���6���6���6���6c��6U�
7D�"7�7��7��"7��7��7��7�� 7y�&7i�7\�
7R��6D��63��6-��6-��61��6?��6J��6R��6c��6q��6����6���6���6���6���6����6���6���6���6v�&7`�7O�(78�=7#�X7�e7��i7��k7��^7��T7��P7}�R7^�J7I�770�&7�"7�A7��R7��97��&7���6���6{��6\��6�     ��[>��W>��U>��U>��i>��v>��|>��z>��n>��]>��[>� L>��9>��/>��>��>��>��&>p��=]��=O�>G�%>B�B>D�U>W�a>n�[>z�L>��7>��+>��1>��<>��H>��P>��W>��]>��g>� 
                   7126: ���=���=���=���=���=���=���=���=���=���=�             ���=���=���=���=���=���=���=���=���=�

�y_�q_��k_��m_�
a��^e��^m��^e��^c��^_��^[��^[��^X��^X��^a��^�
��_�}_
�y_���m_��u_���_���_��_��_
��_�     ���k���k���k���k���k���k���k���k���k���u �v�v��u�z�\tx�`t��`t|�Ztt�Ztz�\t���#u��!u��u��u��u��#u�
                   7127: ~�s�s�&q��i��]��V��L��L��P��X��_��k��t��|�����������
                   7128: ��
                   7129: ~��J&%�H&!�F&!�@&�-&�&�&��
                   7130: �����������&�&�4&!�F&%�J&%��    �ː�ǐ�ǐ�Ԑ�ސ����ܐ�Ґ�ː�U4�Y.�S,�S�Q�Q�O��Y�\ߍW׍@̍.��!�����������ƍ̍!Ӎ0�>��>�@�C$�O6�W8�U4��g�i�q�q�g�g���H��@��D��F��H���<��@��8��2��4��:��<��
                   7131: ���
����&��������������9%�?#�2#�#�
                   7132: )�6�<�*:�06�8+�9%�������������{���ġ���������������s�^��:��)�C5�`H�j]�t�����~��p���O��M��I��O��U������������������������ū}Ϋsܫ�䫸������������x�������������0��I��c��z������������}����w��p��^��U��I�y2�h%�S�Q�8����ߩ���������ݩ�۩�Ωs̩ZʩC�����������ĩ�ש��}�W�j���
                   7133: ������*�8��G��Q��b��v��}�lh�KW�%K�M��d��t����������Ҫ��-4�IM�d_��c��l��t��f��O�O�2h�O��Z��X��C˫(ګܫ�"�"�9�(�-�
                   7134: 1�3�>�AF�A_�(v����������������Ѭ�ܬ�Ӭ"Ŭ=��X��{���x��]��5��+��������Ы������~��w������_��F��%���������Ҫê��#����'v�@r�Sr�\t�sw��}��}��}��  �﬒ެ�Ǭ���}��f��bӬt䬅��������o�]�D�7��D�a��x�����5�� ��     ���z��>�m��]��J��3��-����&����Ѭ����������l��_��P��<��+�������ԫ����������Y��F��.������&�-&ê+&��!&��&���������Ϊ��o�T'�?H�?r�7��5ë5�L�V5�XN�Xk�T��P��H�V��X�P"�Z@�XP�Hk�J��P��P٭/����R7�w&����&�����ܭ�ŭ����������x��m��     �{��w�l�ib�^^�IW�ih�{v��{��
                   7135: ����������}���������������&Z��&T��&J��&G��&I��&I��&P�g&`�g&��~&���&���&���&y��&d��(�&ƨ�&¨�&��p&��Y&ĨM&ѨB&Ө6&ƨ&���������Ĩ�ᨡ������ߨ�̨���������&u�
                   7136: &R�&I��=��=��R��m�������kb�_L�HG�;=�-*�+G�=d�F��R��?Ĩ
                   7137: Ȩ�����3�^����  ����(��$�� �&�6& �U&��t&٨�&ƨ�@@&�6&�2&۴4&Ǵ8&��2&��%&��&s�&a�&D�&=�&;�.&7�D&-�O&+�U&+�c&'�t& ��&$��&'��&��&��&���&���&���&���&��&��&ճ�&���&���&����������       ��     x�     c�H�3���0��=�Pܲ\ҲhDzs������������������v��h��_��W��Q�M�K�J�J�!F��!F�%D�'@�)4�0#�0�2�6��DޱUȱb��n��v��l��_��]��]��_��_y�]r�]n��a]n�]h�_[�jK��<��6��G��O��A��2��%��������߰װ'ְ<İI��[��d��r�����{��u��h��`��^��^��^�d�vd��V��K��A��6���������{��v��tׯj̯dƯO��@��2ȯȯƯ��
                   7138: ��������}����������u��b��P��;��"��  ��ۮ�Ʈ������}��rծd�W�U�Q.�_G�S^�>b�4`�*Z�G�9�
                   7139: (��$��7��N��b��s�����������������Ư�ȯ�6�ȯ�ȯ�̯�ۯ�쯷ӯ�¯������{���ӯwٯu�u�i�Z�I��A�5�,���ׯ�&ʯ�&���&���&���&��~&��p&��h&��[&��J&��0&y�&\��9�������㮝㮔���&��;��V��k��{�������������{��\��@ί%կ&կ��Ȯ�殸���      �b.�GP�)s�&������ѯ�导�������'ٯI��M��l{��^��3��fE�nJ�A��5��z�p3�fE����T�?�-?�R7����
                   7140: &�
                   7141: &�
                   7142: &�&�&�&�&�&#�&8��D��D��/������d���Ż�@8P�:)�!�
                   7143: �����Թ���������dp�<j�j��n��t��p�bn�3l��&Y��&B��&#��&�g&�F&�&����&
                   7144: �&#�&:�&M�&U��c��l��Q��U��a�&l�&n��z�!&��:&ɹH&�l&�~&B��&]��&���&���&׺$ܺM�m��-��F��J��]�#Z�I[�]u�}����������F��b��d���M�-ѻ�˻���������T��v��g��e��V��-����������bk�8P���M��Q���d��n��\��h����������������m��d��`��U̷E�)
��.��[��w��}��n�}�C��h���������j��<"�&ɻ�&���&���&���&���&i��&V�t&B�l&1�z&/��&'��&        �z&�_&�M&޺>&׺4&Ѻ.&ɺ'&��!&��&��&��
                   7145: &t�&e��W��P��D��7��5��5��'����&����ù������������������w��i��i��a��L��?Ź5ֹ-ڹ)Թ3��=��L��V�\n�R_�9F�8�4��8&��:&��:&��@&��D&��M&��W&úa&źh&úh&��p&��t&��j&��e&��S&��H&��>&��:&��8&���#&Y�#&Y�#&R�&@�&5�&%�&����������#�&5�&F�&S�#&Y��
����������������������ȸ�θ�ʸ����������g&C�n&9�r&1�g&-�U&(�H&�@&��������7��B��T��o�����������������&��-&u�S&`�]&N�g&C���Ż�޻����  �
-�8J�R\�\o�{������ϼ�켸������O㼂Ӽ�ļ�����`��Z�hR�MH�E*�U&�M���켆��i��X�gۼ}ټ�漈��     �����!��!�������������,��������������߾�ݾ�۾�о���������������h��U��A��*�������὘ƽ�������f�rO�]4�E&�2$�!�&��������Ӽ���������q�mN�\(�E�"��.��ٻ��+"�+9�-?�3C�TL�uR��\��g��w�&��'&��F&��e&Ƽv&漅&��&"��&I��&R��&Z��&d�&{�   }���$��?��^��}ٽ����4��O��d������%��@ʾW۾t뾑���������������&���&���&���&���&���&j��&Q��&:��&0��&,��&0��&E��&d��&��&���&���������&��&��&���m��Z��I��*��(��(��&�y&�k.�k?��O��\��m�����������������&�q����ɔmɈR�sD�uT�`g�6m��p��:m�P����!��>��akȔF��<�"9�=>�ET�kcțr�������������&������#��C��j&Ɉɣ;ɮVɰq�����   ʮʎ5�o9�Z7�Q5�MI�Ik�:��'��������������ʴ�ʬ�ʩ�ʡ�ʈˆG˩o������K�˥����qɥ���
6m��������ɬ�Ʉ�Ɏ�Ʉ��R��
����ɢ��p���
                   7146: �Xݽfݑm�ik�Gw� ��      �������ݙ���4��ݑ��z�_�5�$��7��Tޣfށ{�b��o��R�� �������ޱ�ތ       �f.�;;�L��o���ߡ��z��X��@�/�,�=��&Z��&q��&��&���&��y&��b&��Q&�I&A�0&m�"&��&������������� �zA�cX�Sk�8��!���c�e��P��@�@�5�zB�J?�3��&��&��&��&��&��&&�&��&��&+�P�1e�Xm�sz�������|�v��)�����)��#��+��!�17�>L�)]�
                   7147: r�����#����
                   7148: �����
�����(��=��M��T�V9�Z^�X��T��Q��Q�O��O�O$�M?�Gi�E��C���C��=��4��(� "��   "�,�A��P��m��{�����������$����������w��l��T��I��Z�X�EI�46�"���������������������{��j��`��X�&M�A�6�,(�"�
������q�4n�Pb�KQ�;G������+��)����y�S�K�U�%r�6��F��Y��i��k��z����������������y��{����������
&��2&}�Z&h�y&h�� y&h��&f��&b��&`��&X�K�-I�5C�LU�aj�mp������s��n��p��y����������������������
�!�0�?�$?�0=�;G���#����
����x��e��F�9�>2�PC�Z?�q4��&��#��     6��8��)��������4{�4��6�������D�r��s�j�R&A/&2Q&C&R�&\�&`�&`�&b�&dq@{v����{0o�j�k�f�Z�E%=>0d"�������� ��!�E� �Gj6�t��&�����$.,CAV\Zl^�m�o�y������������&�����
                   7149: �C�b�jn5�D�R�z������������������  ��$�&$�&�A      P     a!     v8     �>     �O     �`     �}     ��     &      y}"���
���y��"�!�!'�!�"�"�"�"&".&�!��(��(��(��&�&"�&E'M!'d<'}O'�b'��'��'��'��'��'��'��'��'�'�'/�'B(Y0(xW(�w(��(��(��(��(��(��(��$��$��$��$%Y%%�%�%�%�%�&�&�!&�^&�&�&�&�&��&��&�-#�+#�)#J#U#9z#M�#\�#{�#��#�+$�W$�{$��$��$��$��$��$P8"HB"6Q"#Q"
                   7150: <""'�!+":-"P8"���"%�"8|"[c"zH"�2"�".&�!:&%"<&S"M&e"`&h"�&x"�&�"
                   7151: �"F�"x�"��"��"��"��"�#�#�#�#�-#��(��(�)�)�@)�W)�p)��)��)�w)�^)�Y)�h)j)Lw)k�)��)��)��)��)��)�*�*�*�!*�#*�,*�I*�\*�s*��*.�62�65w6Lq6ts6�Z6�16�      6��5��5z�5t�5k�5aa5N?59&5&5�4��4�5
95-V5cm5�i5�a5�P5�95�N5�z5��5��5�56       L6�^6�z68�5�5�5�&5��4��4��4}�4^�4E�40�4�4��4��4��4��4��4��4j�4?�4(�4
�4��4��4��4��4��4��4�w4��4��4k�4R�4>�4'�4�4�&�4�&5�&5�&35�&H5�&q5�&~5�&�5�&�5r&�5Q&�5?&�5:&�5:&�50&�5&�5&�5&�5��5��5��5��5��5��5�(6�C6�L6�m6��3��3��3��3��3o�3k�3_�3E�3 
404�N4�k4�o4�c4�V4�V4�V4~T4pZ4im4py4�|4��4��4��4��4��4��4��4��0��0�{0vs0\s0Iw0.�0&�0*�0N�0x�0�1�1�1   A�7?�7A�7+�7�7��7�7=�7A�7��8��8�w8�e8�e8�X8�;8\*8P8Z8\8A8$8"�7$�7�7k7A7(7*72�6A�6\�6N�6.�6(�z6��6��6��6t�6]�6D�63�6�6�6��6��6�7�,7�-717 173=7LE7PX7=^7-a75y7L�7]�7v�7v�7z�7��7��7� 8�(8�98�T8�k8��8��8��8��8��8��8��8��8��8��8��8��8��8��8�9959VC9oo9~�9��9��9��9��9 �:��9��9��9�:�:�9:�T:�m:�m6��6c�6>�6�6  N>L>     ��g>a>R>N>_&Fkc&AkY&=kW&7kM&-k<&+k4&$k+&k!&
k&    k&k&9k%&Jk)&Tk4&Vk6&Tk4&Dk<&=kF&;kO&?kW&Fk[&Fk_&Fk�nn}n�n�n'ax_x _x'ax_x _x'ax&� 4
}�2
}�0
{�,
{�0
}�4
}�,
{�0
}�4
}�&��8��2��,��!������*��2��=��O��X��X��U��I��?��8�&��
圝
眚
휡
�&�^��c��a��T��R��T��V��X��Z��\��\��^��&�     =
                   7152: ��B
                   7153: ��9
                   7154: ��5
                   7155: ��5
                   7156: ��=
                   7157: ��B
                   7158: ��@
                   7159: ��=
                   7160: ��&�
6        ,�6     #�+     '�#     4�     6�     8�              F�     O�     M�)     D�/     :�6     0�6     ,�&�9�/�
                   7161: &�&(��/�&�  V5�K(�I�K�;�4�4
�2�=-�&�%      �/     �1     �1     ѭ/     ��/     ��1     ��-     |�%     _�     D��7��+��'��)��#�� ��+�n-�a=�NY�gg�|��������������              ˭"     խ'     �%     �&�y������{��j��G��(����������������������a��<�����
                   7162: ���
                   7163: ͬ�
                   7164: Ѭ�
                   7165: ��
                   7166: ��
                   7167: ��
                   7168: �z
                   7169: %�m
                   7170: ;�Q
                   7171: 7�1
                   7172: )�
                   7173: �
                   7174: 
                   7175: ��     ��     ��     ��     &��     �x     Ӭv     ���     ���     ���     ���     ���     ���     e��     U��     >��     )��     �i     �\     �o     �     ���     櫃     ܫ|     ��q     ��g     ��X     ��T     ��@     ��'     ��     ��     ���������������������p��c��c��c��r�����������|��������Ы�� �%     �6     )�G     :�R     @�o     ]�x     ~�Q     z�-     i�     Y�     Y�     k�%     ~�<     ��V     ��g     Ŭv     �|     ��x     �X     +�I     D�G     a�X     q�^     ��q     ��e     ���     ���     ���     ���     ���     ���     ��
                   7176: ��
                   7177: ���    ŭ�     ͭ�     �
                   7178: ��
                   7179: 
�B
                   7180: �o
                   7181: &�&�
5��
                   7182: ��
                   7183: �-��W�������
�5�Zܭy٭�ǭ�������z��R��-�{�y謀Ѭ�ˬ���������&�9
                   7184: �F
                   7185: �@
                   7186: Ӭ,
                   7187: Ѭ
                   7188: Ϭ
                   7189: Ϭ�    ެ
                   7190: �.
                   7191: �9
                   7192: �@
                   7193: Ӭ&�
        �     �      �4     �4     ެ8     Ϭ/     ì     ��     ��     Ŭ     ج     �     �&�    |Ԭ�Ӭ�Ѭ���v��RŬEϬX֬|Ԭ&�
                   7194: |��������r�ve�m_�c_�ip�m��|��&��#��������������뫯髶﫸�������#��#�&�������������x��v��������&�����뫃��Ыn��Z��I��6x�!p�n�n�x���!��A��Kɫ=�(��.��K��X��k��z�����������&�&�>��>��:��4��!���������ت�ƪ������i��Tt�It�2r�v��r��f��^��Y��G��Y��w�����������Ъ�Ҫ�Ȫ�Ϊ�0�9�T+�r8��>��>�&�ެ֬ˬ��
                   7195: ���������v��W��B��<����������6�_P�Li�Ex�A��2��Ѭ9ڬaڬ�Ѭ�ͬ�ɬ�ͬެެ&�      Ea�AY�4Y�&[�i�r�2r�?l�Ea�&�
                   7196: a+�k�x
                   7197: �r��p�iͫN˫(Ы���&��p��N��B�(B�E6�Z1�a+�&�
                   7198: �.��-��#����������!��)��.�&��>��>��6��+�������ߪ�ȪxƪNƪ2�����������Ū�Ȫ�ߪ��&�N�r�k�i#��-��2��:��>��>�&��f��h�h�#[�Q��O�&��U��`��f�&�
                   7199: �v��n��l��p�en�An�r��������&�
                   7200: ���ث�ͫ��*��N��g���������v�&��x��h��Q��@��+�����&��
g��
[�j
Y�O
x�%
��
���������˴�贕��&�����������������z�v��]��Ez�0u�|�������Ȯ&��3��������ۮĮ.��E��X��e��V��_��k��v��������������&�!E�!C�9�&��/�&9�?�E�!E�&�a?�_C�V5�&�=-�Z9�a?�&�o
                   7201: &��
                   7202: 1��
                   7203: =��
                   7204: H�R�P�
5�&��ɹ����9��C�;�I#�R:�nP�g��������Ǻ�躥��$����'��1��/��-�         )�1     3�:     V�>     v�:     ��:     ��+     ѻ     ɻ�Ż�ͻ&�#ø&Ը0޸9�;�?%�2>�4]�V]�kM��S��f��v�r��m���������������������Ϲ�Ϲ�Ϲ�ɹ&�L�����s߶_¶G��%��m�Z�
                   7205: M�I��
                   7206: I��
                   7207: G��
                   7208: 3�3�2��
                   7209: 2��
                   7210: ,��
                   7211: ��
                   7212: ���
                   7213: �s
                   7214: ѵJ
                   7215: Ƶ!
                   7216: ���    ���     ���     ��z     ��o     ��k     ��Q     ��:     ��)     ��     ���������y��u��s��s��s����������x�����v��V��.����!����
                   7217: ������������������͵�㵘���.�tE�R^�Nq�E��4��$��׶�#��0�:��E��A��M�&��Q��d�&��j��^��r�������#ø&��
���
��e
Է=
�
��������뷍ηn��X��,u�o��K��0�����&������t,�g3�jE�uT�}o�����˵����
                   7218: 
�)
�7
ٵ_
��u
���
���
y��
R��
1��

�&������
                   7219: ���
                   7220: %�%��&�U�˼Ѽ0ͼZ¼����������������#Ѽ9ͼ4��T�����������˼%       �`     �T     �G     �x     ��     &��     9�1
                   7221: K�~
                   7222: X��
                   7223: ^��
                   7224: d�
b�1b�1d�2b�Ab�Gy�Y��s���׽����������c�IG�2w����
                   7225: ���
                   7226: ۾�
                   7227: ���
                   7228: ��
                   7229: !��
                   7230: 0��
                   7231: E��
                   7232: d��
                   7233: ���
                   7234: ���
                   7235: ���
                   7236: ���
                   7237: ���
                   7238: ���
                   7239: ����'��R�����������#��Q��i��������п��
                   7240: 
������!�
6�7
-�)
�9
�J
'�\
�n
!��
F�&�����˼&��ͻ~ջKٻ�������&�|&�\5�NE�.H�Z��`��`�&�Ӽϼۼ����ټ�˼�ȼӼ&���&�������������&���x�m�x߼��&�8       ��@     ��/     ��     �����������i��V��?��*���������������������;��\��p�����������������              ��     ��8     ��8     ��&�"�
�Ę
.ň
W�y
��_
��D
��%
��B��dơ�Ƅ�Ƃ��w��c��B�1��hǴ�ǘ��{��W��?�)D�$R�|������
                   7241: ���
                   7242: �ȸ
                   7243: ���
                   7244:        ��
                   7245: &ɶ
                   7246: Dɋ
                   7247: _�&�&
                   7248: x�&
                   7249: s��    o��     i��     g��     e��     eɸ     mɫ     oɏ     i�t     a�Z     \�I     X�T     a�I     k�B     a�2     ^�#     L�     F��F��J��NɲXɋc�]u�&�)�
                   7250: ���
                   7251: ���
                   7252: ���
                   7253: ���
                   7254: ����'�A�h΂Μ!ΰ)��)��3�>�&J�1L�1O�KS�gU�rS�wY΋eΜe��_��Y��Y��S�
U�

[�
g��p�
p�
p�,
r�9
z�M
|�_
��n
�Ώ
�Κ
��&��
                   7255: �Ͷ
                   7256: �͞
                   7257: �͏
                   7258: �͉
                   7259: �͒
                   7260: �͑
                   7261: �͋
                   7262: �̀
                   7263: ��q
                   7264: ��^
                   7265: ��J
                   7266: ��;
                   7267: ��1
                   7268: ��&��
                   7269: _�k
                   7270: x�S
                   7271: z�&
                   7272: x�&�]u�=���������ɓ��x��X��7��#��������������������&������I:̘O��d��p���6��_��a��p�̏�����"    �C     �q     %͏     <ͼ     F��     U��     d�
                   7273: 
                   7274: {�1
                   7275: ��&����������"��}�(w�(u�^�I�?�*�� ��2ݴ9ݡ5݃,�W,�9,�&0�'�
�&�G��X�&���ڐ�چ��p��j
�[.�`O�hw��ۡ�ۦwۗfے^ےVےC۝(ۗ   ے��&�B�
�ؙ
�؅
��t
��`
��W
��N
��:
��+
��
�������������������6��U٢fهj�fs�E��8��:��4��/�)"�2�A��T��V��Sڪjڗ�ڌ�ڎ�ڕ�ڛ�ڙ�ڗۃ9�rd�o��`��S��D�3 �?�V��
                   7276: b��
                   7277: j��
                   7278: `ܨ
                   7279: \ܝ
                   7280: mܡ
                   7281: �ܗ
                   7282: �ܐ
                   7283: �܊
                   7284: ��j
                   7285: ��\
                   7286: �X
                   7287: 7�M
                   7288: `�<
                   7289: ��2
                   7290: ��%
                   7291: ��
                   7292: ��&�n
                   7293: ��K
                   7294: ��:
                   7295: ��:
                   7296: x�1
                   7297: X�"
                   7298: D�
                   7299: A�     
                   7300: $��    ���     ���     ��     ��     ��     ��h     i�U     R�F     A�4     -�     �             ������������&����������qu�Ng�9i�����������������������������&� ���������k�P�};�W�1������Z�/(�F&�Y��f��Y��Jq�H*�j�ߙ�߫�ߙwߔAߖ"�Y"߮�ީ�ޫ�޲i��K������&�,0��9��D��U��b��p��}���
�� �(�-��/��/��5��;��E�X�'u�4��E��`��s��t�����������������������&�
�+
�<
�J
"�T
+�^
9�r
C�}
P�
\�
k�&�,�^�`��a��g��i��k��s��|����      ��     ��7     ��N     ��j     ��{     ��     ��     ���     ���     ���     ���     ���     ��
                   7301: ��
                   7302: ��%
                   7303: ��6
                   7304: ��@
                   7305: ��K
                   7306: ��V
                   7307: ��e
                   7308: ��l
                   7309: ��t
                   7310: ��r
                   7311: ��}
                   7312: ��
                   7313: ��
                   7314: ��
                   7315: ��
                   7316: ���
                   7317: ���
                   7318: ���
                   7319: ����(��0��&�)
                   7320: ��
                   7321: ��
                   7322: �
                   7323: 0��    X��     w��     ���     �޵     �ޛ     �ށ     �ށ     &߄      ߂     C߁     b�n     ��f     ��Y     ��J     ��7     ��0     ��(     �     ,�!     N�$     Z�$     q�!     ��!     ��     ��     ������"��G�e����������/�^�&��
��
��i
��C
��
������x��c�J�7� �
�z&�t��z��q��q��`��U��&�U��U��E��������s�g�iT�0J��
                   7324: A��
                   7325: 5�
                   7326: "�
                   7327: �l
                   7328: ��M
                   7329: ��a
                   7330: ��
                   7331: ��
                   7332: ��n
                   7333: ��&��        ���     ���     ���     ���     u�a     p�D     j�C     W�;     4�A     �5     ��0     ��7     ��&     ��
                   7334:        �������������&�    �      ���     ���     ���     ���     ��     !��     !�}     �Y     �&�    Y      �N     ��4     ��     ��&     ������������t�&��t��l��\��M��@��'���&&��       ��     ��     �     �     5�     D�     D�     J
                   7335: S
                   7336: f
                   7337: y
                   7338: w
                   7339: f
                   7340: W$
                   7341: S4
                   7342: bC
                   7343: &&bC
                   7344: jI
                   7345: �C
                   7346: �=
                   7347: �X
                   7348: �j
                   7349: �w
                   7350: �}
                   7351: �w
                   7352: �s
                   7353: �
                   7354: ��
                   7355: n
                   7356: \
                   7357: A
                   7358: !
                   7359: $
                   7360:  A
                   7361: j
                   7362: �
                   7363: �
                   7364: ��
                   7365: �
                   7366: �
                   7367: �
                   7368:      +<HO4&&O4[Xsl�f�f�d�b&&�b�`&  f!     ^(     U     G
                   7369:        6     "          *,     .&&, .;     4U     ?a     ?�     Z�     n�     ��     �
                   7370: �     
                   7371: �
                   7372: �
                   7373: �4
                   7374: �l
                   7375: l�
                   7376: C�
                   7377: 0�
                   7378: .&&�
                   7379: .�
                   7380: .�
                   7381: .J.�"��
                   7382: [�
                   7383: ��
                   7384: ��
                   7385: ��
                   7386: 
&
$<
6E
:C
.P
$m
�
&&��
                   7387: ��
                   7388: �u�
                   7389: ��
                   7390: ��
                   7391: &     �     �,�?�;�5���&� &JPMXOmS�U�D�;�D�FyFbJP&����i�W�W�p����& �
                   7392: �&��
                   7393: s�
                   7394: o�
                   7395: ��
                   7396: ��
                   7397: ��
                   7398: ��
                   7399: �&
                   7400: e
                   7401: (e
                   7402: ,A
                   7403: ,%
                   7404: , 
                   7405: )
                   7406: �:
                   7407: �G
                   7408: �Z
                   7409: e
                   7410: (&+
                   7411: �+
                   7412: �)
                   7413: �
                   7414: �
                   7415: �
                   7416: �
                   7417: �+
                   7418: �&��/��/��/�h/�C/� /��.t�.q�.��.��.��.��.��.��.��.�
/�&/�./
8/
Q/
s/
s/
M/ 
4/3
M/-
u/E
�/d
�/&�-�   -��,��,v�,b�,F�,A*-;O-El-E�-A�-F�-h�-�-��-��-��-�y-�S-�*-�-&�E,�U,xS,|E,�E,&6,:,
6, #,6,&^��*��*��*��*�*�*�*�*)�*1�*1�*-�*-�*@n*@^*HA*O>*Qj*Sw*Nw*J�*N�*S�*S�*U
                   7419: +W&+NX+J�+J�+H�+F�+9�+3�+5�+5�+3�+/q+)n+�+$�+�+�+�,�,�V,��,��,��,��,��,�,"-$-$-+-@-D-F?-@�-@�-5�--.'9.&I.-j.B.]�._�.j�.l�.��.��.��.��.��.�    /�
/� /�,/�0/�2/�9/�I/�V/�`/�q/�u/�y/�/��/�/"�/H�/Y�/&��/��/��/��/��/��/&
                   7420: b/w /q /`/O/H/>�.H�.Q/b/&    `�.j�.[�.N�.<�.;�.U�.]�.`�.&��+��+}+u�+j�+n�+u�+u�+��+��+��+��+��+��+&N�)J�)F*+*7�)N�)&      �)     �)��)��)��)
                   7421:        �)     �)&    �      �)�     �)j     �)]     �)Y     �)_     })p     })�     �)�     �)&)
                   7422: �)%
                   7423: �)
                   7424: �)�    �)�     })�     �)�     �)�     �)�     �)
                   7425: �)
                   7426: �))
                   7427: �)&
                   7428: �
                   7429: �)�
                   7430: �)�
                   7431: �)x
                   7432: �)c
                   7433: �)c
                   7434: �)v
                   7435: �)�
                   7436: �)�
                   7437: �)�
                   7438: �)&@�)>�)3�)$�)$*(* #*�
                   7439: *�
                   7440: *     �)�)�)�)$�),�)@�)&   �&*�**�0*�.*�#*�*�*�*�&*&��*��*��*��*��*��*��*&�B)�C)�U)�f)�r)�j)�O)�B)&b�)_�)U�)F*��)�*�*��)��)��)   �)/�)B�)U�)_�)b�)&�
3�
R3�
w3�
�3�
�3�
4�
94�
q4�
�4�
�4�
�4&��4��4��4�o4s\4qA4q4P
4842"4?P42s42�4�4 �4/�42�4H5`15kT5�i5�c5�C5�(5�5��4��4��4��4��4&   ��1��1��1��1��1��1��1��1��1&+
�0z
1t
.1x
V1�
�1�
�1�
�1|
2b

2f
�1f
�1N
�16
�1
�1
�1��1�}1�d1�f1��1��1��1�&2�,2�T2��2��2��2t�2m{2Pd2bT2s52s2m�1f�1^�1`�1iw1tO1s.1[
1N�0&N�0=�0)�0�0
                   7441: �0�0;�0b0zm0�R0�40|,0i0q�/��/&
                   7442: d
�/h
�/�
0�
.0�
Z0�
}0�
�0�
�0�
�0
�0&1�0(�0>�0H�0U�0h�0p�0w�0y�0��0��0p�0n1]1U1S"1J,1791I1b1��1��1��1��1��1��1��1��1�2�,2�I2�f2�q2�u2��2��2�2w�2y�2}�2�3{*3jC3Qe3<�3+�3�3��3��3&Y�/L�//�/�/��/��/��/&��/��/�0�&0�h0��0w�0a�0S�0-�0�0��0&�1�1�1�0-�0<�0J�0j�0u�0��0��0��0�1��0��0��0��0  �0�0&�
�;�
�;o
�;d
�;P
�;>
�;3
�;&
�;
�;��;��;��;x�;[�;L�;i�;��;�&<�<�<�<�<�"<�1<�D<&�D<�H<�><�1<q<C<-<�5<�7<|7<Z;<;N<,a<z<�<�
                   7443: �<�
                   7444: �<&�
                   7445: �<�
                   7446: �<�
                   7447: �<�
                   7448: x<�
                   7449: c<�
                   7450: Y<�
                   7451: p<�
                   7452: o<�
                   7453: k<�
                   7454: V<�
                   7455: ;<& �
                   7456: 1<�
                   7457: /<�
                   7458: <�
                   7459: <�
                   7460: �;�
                   7461: �;�
                   7462: �;�
                   7463: a;�
                   7464: +;�
                   7465: &;�
                   7466: �:�
                   7467: �:�
                   7468: �:�
                   7469: �:�
                   7470: g:�
                   7471: R:�
                   7472: /:�
                   7473: :�
                   7474: �9�
                   7475: �9�
                   7476: �9�
                   7477: �9�
                   7478: �9�
                   7479: i9�
                   7480: V9�
                   7481: C9�
                   7482: &9x
                   7483: 9p
                   7484: �8a
                   7485: �8G
                   7486: �8'
                   7487: �8&'
                   7488: �8
                   7489: �8�    �8c     �8     �8��8��8��8�        9S     9799�9�9�-9�)9j
9&j
9W 95�8�8��8&��9��9��9�:�:�:&
                   7490: �m:��:      �:-�:3~:Dz:f�:n�:y�:�~:&�~:�~:��:��:��: �:9;Q3;nX;�|;��;��;��;��;��;��;��;&��;��;    �;     �;$     �;#     �;&     �;&
                   7491: &     �;     �;     �;�"<�[<
                   7492:        �<     �<.     �<7     =?     ;=&�T:�Z:�t:��:�:9�:J�:3e:"N:9:
&:�:�&:��9��9��9& �
�A�
�A�
�Ar
�AX
�AF
�A6
�A+
�A!
�A
�A
�A
�A
�A
vA
mA�cA�WA�PA�FA�5A�A�A��@��@��@& 0�6D�DwDp�Cf�Ca�CY�CP�CG}C>bC>VCAEC>?C11C$$CC
                   7493: �B�
                   7494: �B�
                   7495: �B�
                   7496: �B�
                   7497: �B�
                   7498: �B�
                   7499: �B�
                   7500: �B�
                   7501: uB�
                   7502: cB�
                   7503: NB�
                   7504: -B�
                   7505: +B�
                   7506: B�
                   7507: B�
                   7508: �A�
                   7509: �A�
                   7510: �A�
                   7511: �A�
                   7512: �A�
                   7513: �A�
                   7514: �A�
                   7515: mA�
                   7516: _A�
                   7517: JA�
                   7518: <A�
                   7519:  A�
                   7520: A�
                   7521: �@�
                   7522: �@     �@�@&        ��@��@��@��@ik@i@@|!@��?��?��?��?�a?�7?�?��>��>��>��>��>�v>�Y>�>>�D>�F>
>+
�=P
�=v
�=�
�=& ?     ;=W     _=p     �=&     
                   7523: p     �=y     �=�     �=�     �=�     >�     D>�     v>�     �>�     �>�     �>&     �     �>�     �>
                   7524: �>
                   7525: ?4
                   7526: 3?R
                   7527: T?n
                   7528: r?�
                   7529: �?�
                   7530: �?�
                   7531: �?�
                   7532: �?�
                   7533: @�
                   7534: 5@�
                   7535: W@~@�@�@ �@&
                   7536: ?�
�G�
�G~
�Gw
�Gg
�GS
�GB
�G4
|G%
jG
SG
                   7537: 
BG&
!G&
                   7538: G��F��F��F��F��F��F��F��F��F��F��F��F}FtlFpYFpMFnBFc.FaFVFTFRFM�ED�E<�E5�E3�E9wE5lE*WE?E6E0E�.E�!E�E�E��D��D��D��D��D��D��D��D��D�}D�kD�OD�6D&_%M^'M_%M\%M_%M&"�
1j�
!j�
j�
&j�
�i�
�i�
�iy
�il
�ig
�ic
�i_
�iS
�iH
�i?
�i,
�i%
�i
�i
�i
�i
�i��i��i�j�j�j�/j�<j
                   7539: 
Bj2
HjJ
Rj_
Tj�
@j�
>j�
                   7540: �
                   7541: ����������
                   7542: �����������
휥
���
�

��2?�'*�<$�O"�V�l�w�譏ޭ�ѭ�ϭ�ǭ����������=r�Ga�5R�.D�G5�W/�k1��1��#������ ��%��-��+�������������*�%�� �+�%�9��O�[Ϭ`ܬ`��h�p��1;3�8)�1�$�$��!������������������u�X�@"�*#�)��1��9��>��H��Y��i�l~�P��/����������(��Jϭ`�������"�"�1�_�x�խ������
                   7543: ��k�(T�6F�9;���������������������������      �c��h��c��U��M��I��O��_��c��ߨ Ѩ'Ѩ5Ϩ2��C��Q��<�� ����ʨ�Ө�Ө������������
                   7544: �
�ߨ������������"��$�"� �&������������_ǧd��p��k��X��P��G��?§6ϧ8էAݧPߧW٧_ϧ_ǧ�
                   7545: ������������������{�������������
��
��
��
                   7546: ��"ǴD�jϴ�������q��T��L��/���������������������z��e��U��B��/����������#��:��\�n�Z�J˲8��,��*��/��8��N��a��n��z�����������wt�g]�`S�QJ�JM�<J�@/�A#�G�L�Q�Y#�\#�^#�^!�`�`�a�a��`�^�`�l�~᱂ֱ�ƱzƱi��j������y��`�|^�uM�z8��6��(�������ᰙװ�԰�Ȱ�������������}��l��`��V�I�2�$��*�*��#�)�<�Hٯ1ѯGίUȯU��h��|���������������u��\��C��,��&��$����������&����+�/Ӯ(Ȯ4��8��L®\��Z��S��\��s���������~��u��q��q��s��s��s��o��c��_��a�g�s�&y�+|�>c�AH�)E�E�?���
���
���
���
���
g���

��
���
യ
Ǵ�
���
���.O�8W�/]�(_�*S�.O���h��M��;��2��2���������㵵���������q��R��=��/��;�aF�VH�@C�(��
���h��i��s�������~ʶcжK�@
�4*�#8�O��
Z��
}��
���=�9�l7��B��N��R�(]�Nt�y�����|��y���
¤œ+�~7�nN�HF�/D�(D�T��s��������
                   7547: �
F��
���
���
���
���
���
����'
                   7548: �=��
                   7549: w9�j9�U7�87�1�G�^�|‚+�w9��$�eùy÷~���������û�þ�ò�î�������������������������
������������
����2ľQĞ�Đ��a��4�����
���
���
������
                   7550: ����������������������� ��"��.��9��CùPþe��@�
�α
|��
t��
j��
j�n�B|�M��O��V��c��l��l��u�΅�Η�έ�ξ�����������������������������p�%h�._�3a�5x�5��5��5��:��G��C��5�����������ξ�Υ�·��l�]!�M<�KP�FY�=i�9o�7p�2��+��.��.��.��2�=�=�O/��      Je�`D�z$Йз����$Ы/ФD��5��3��1��:��@��A��A��J��\�sҔ&Ҵ2��:��;��I��j������!��+��9��I��S��Y��R�L#�KM�Ld�F{�;��B���O/�jPЕx�������
��<�J��A��7��<��@��C��C��Je���DРLРPГ~Ў�Ў�А�ЕѤ ��A��X��o�{������� ��,��5��� '��(� �#K�,s�<��R��C��F��B��F��H��%��6�6,�KI�Fv�K��5��/��6�:>�8`�,{�#��/��������#��'����G��6��-�����������������ݟ�݁��k��T��.��(}�]h�rTݑGݹ?��.����ݰ�ܚ�܀��d��K��?�����������ݽݸ�ܮ�ܑݗ�܌�ܓ��s��r��i��b��^f�bM�s;܃"܂�ۀ��u��u��l��nh�pAۂ"ێۑێۚ�ڿ����������A\�b:�zڌ�ٯ����������������������������٦�ٌ�ـ��s��T��(�������ٶoٜUكC�~0�p�d�r�r�k�`�T��I��D��=��7��7l�+S� ?�"(��
������������׶�׭�ב�ׄ��v��pp�p`�hZ�_O�PA�9I�U�X��q׼�י�ׇ��t��P��4��(���
,��
A��
M�U�d��
}ؽ
�خ
��������������ݴ�ݻ������?F�HC�R}�_��Y��M��d��p�r?�y�؃�؇�ح�����*�*!�6&�X6�tf�~�ـ��w��h��_�V�@0�4K�2j�������+�46�-b�-w�L��G��U��a��r�ۀ ܢ$ܮ$��A��o������������'
�W݈9ݱE��f����   ��$��1��I��]��q���\��_��\��Z��B   �-.�T�Q�"�(��J��\����
k�
~�
���
���
���K��K��:��&��������������޿o޷iްuޤkވfހTށK�w=�h"�\�G����ߙߌ�{�m��W��K���l�g���;�rL�gE�S"�>�.,�%V�s�}�o�Z��?��5߽.ߥ �����o����$�j;�rC��1���q��`��D��,�������������c��Cp�!N�9�1�-��-��+��%����h��E������������|�]k�/W�D��1��������k��U��P��M��G��F��M��T��D��-��
���������������������w��c��e��*���
��
���     ����������yk�fH�>$�0����#7�   /�3�F��N��R��R��[��a�k�r�l~�M��3����
                   7551: ������������5�P-�c>�Y�_��o������ ��8��I��L��X��e��r���8{'�-�1�7�;�F�T�g�s�������������������8��T��k��������+��;�H�*X�@k�P��m�����������������������&�!  �-�-5�0P�3V�0e�"m�.i�OW�tH�F�F��@��=��3�7��+�
���
���
���
���
���
���
���

�
$�1�1=�EF�cP�{T�X�Z�\�]�_��a��e��k��q�s�       k�c�4_�F_�We�pm�v������������������=��P��g       �u �{'�   �'�.�.�4�I�Y�&
wye0WQOs0lQ$0K$`m�
                   7552: t�
                   7553: w&0�
                   7554: $�
                   7555: �
                   7556: ��
                   7557: ��
                   7558: ��
                   7559: ��
                   7560: �}
                   7561: �u
                   7562: q
                   7563: q
                   7564: &y
                   7565: -�
                   7566: 0�
                   7567: &�j        �l     �{     {�     e�     R�     A�     2�     $�     +�     :�     Ms     cj     wj     �j     &� �*     �2     �A     �U     �`     �d     �W     �A     �4     �(     �     &�
�
�
�
�
�
    !.4?/OAXQd\jeneoU�&#U�b�t�����{l.X@2d�       ��
                   7568: ��
                   7569: ��
                   7570: $�
                   7571: 7�
                   7572: D�
                   7573: Y�
                   7574: l�
                   7575: �
                   7576: �^
                   7577: �8
                   7578: �#
                   7579: 
                   7580: 
                   7581: J
                   7582: ��    ��     ��     �     #`     I*     |     �     ����&����    ��}@0?�Y�{��n�8����&���� �I;5JA5B=5B756(5"5+/56E54^5(�5�5�54�54�57�5E�5Ni5NN5I;5��4�4�4�4��4��4��4��4��4��4��4�4�4�4
                   7583: �4��4�4�4�4�4�4�4�4A59555�$5�5�5�5�5�&5�=5�G5�T5�o5�u5�o5e5a5,c5.V5/H5A5�  5�5�5w 5k5u     5��4� 5^5��4g�4F�47�4@5^5
.�38�3/�3!�3�3�3��3��3�4�44&4.�3�o3�e3�b3{^3wk3|~3�w3��3��3��3��3��3��3��3�y3�o3y�2k�2]�2^�2y�2y�2V3
P3�I3�A3�73�"3�3�3� 3�93�C3�G3�I3V3r�2{�2}�2�2{�2�2�2}�2�2��2��2��2��2��2�w2xk2]i2>�2'�29�2O�2d2r�2;�1K�1M�1@�1D�1;�1;�1�=1(1�1�1��0��0��0��0�1� 1�A1�X1�P1�=1��1��1y�1`�1Q�1L2J72n52}2t�1��1��1:��6�z6�e6oP6T36I6F�5O�5F�5;�5I�57�5>�59�5'�5 o5R5�?5�/5�$5�5��4��4��4��4��4��4��4��4�q4�V4�I4{=4�94�&4n4g�3i�3i�3Z�3J�38�3(�3�3&y3&Z3&03 3�2�
�2�
�2�
�2�
�2�
�2�
�2�
�2�
�2�
3�
�4�
�4�
�4�
�4�4�45!154V5J|5k�5��5��5��5�6�/6�\6�~6275;J52N5D`5)G5=5*5�5�5��4�45% 5275N��7g~7Jw7*i7^7�R7�=7�$7�
7y7a&7>7�6��6��6��6��6k�6N�6*�6�6��6��6��6r�6X�6Y�6T�6A�66�6*"7%R75c7Ae7Va7�s7��7��7��7��7��7��7
                   7584: �7�7+�72�7(�7E�7a&8Z  8V8\ 8h*8{;8�L8�_8�c8�\8       N8X8i8�k8�z8'�8U|8~q8�q8�u8��8��8��8�8*�8)�8.�8D�8N�8m9��9m�9o�9l�9]�9X�9S�9S�9L:G/:^B:mJ:tD=r1=w�<e�<Y�<O=D =.+==
                   7585: �<�<��<��<��<��<�&=�=        <=J=U=�8�8��7��7��7��7��7�q7�Z7�C7�&7�7��6��6��6��68�~6��6��6 �6�6
7777V7$`7s7�7 �7"�7+�778G�7K�7Y�7m�7r�7t 8yL8yo8i�8P�84�8'�8"979     L9�V9�m9��9��9��9��9��9��9��9��9�9�9�9W�9iu9V9�+9�9��8��8��8�u8�V8�;8�8
                   7586: ��8��8�o8�_8��8��8��8��8��8��8
-;D;�
[;�
Y;�
@;
-;�_=�;=�=��<��<��<�|<�Y<�;<�<��;��;��;��;�T;�?;t7;U;;8D;&V;k;�
�;�
�;�
�;�
�; ~��@��@��@��@��@��@��@��@��@�A�A�'A|3Ay;ArJAmYAhgAczAa�Aa�Ad�Am~AtoATA�FA�@A�<A�@A�HA�]A�eAtA~xA|zA�|A��A��A��A��A��A��A��A��A��A��A��A��A��A��A|�A��A��A��A��Au�Ap�Ai�Aa�AZ�AU�AX�AX�AN�AD�A=�A5�A1&B5B.B,B%-B"-B-B-B(BBB&"B�(B�-B�9B�LB�PB�VB�RB�JB�FB�DB�DB�FB�JB�PB�]B�_B�_B�gB�xB�~B�zB�qB�eB�]Bs]Bd_B[_BYaBXiBLkB>iB0gB aB_B_B]B]B�\B�ZB�TB�LB�HB�?B�?B�7B�1B�1B�1B     N�1B�1B�1B�;BBBoDBnABq;B|1B�+B�(B|(Bn)B^1BP;BGDBDPBF\BKkBLxBB�B;�B*�B�B�B&�B��B��B��B��B��B��B��B��B��Bv�Ba�BS�BL�BC�B5�B�B��B��B��B��B��B^�BA�B1�B/�B!�B
�B��B��B�wB�oB�_B�RB�DB�AB�AB�HBvPBlTBaPBMHBHDBFBB@AB49B(BB�

B�
�A�
�A�
�A�
�A     
;ZB=RB6PB+PBPBVB\B]BgB$iB+gB6_B;ZB BBB&B �A)�A.�A.�A5�AA�AF�AB�A6�A,�A�A�A�A�B�B�B�"B�B�B&
BBB     1U=i=i=�t=��=��=��=��=��=��=�>�>�1>F>%R>)p>>�>J�>T�>V�>J�>;�>.�>,�>.�>,?8@?@[?G|?S�?S�?O�?J@;J@,p@%�@ �@�@ �@%�@4�@4�@S�@S�@J�@.�@�@��@
                   7587: �@           �
�=�
�=�
�=�=A�=g�=u�=�|=�_=
                   7588: �Kn�JZ�JS�JE�J3�J'�J�J�J��J��J��J��J��J��J��J��J
                   7589: fqKk�J`�JR�JA�J9�J0�J'�J'�J)�J)�JJwJ�oJ�\J�\J�fJ�oJ�yJ�J��J��J�JlqJjXJlKJq?Jx5J|1Jq,Je0JW5JK0J@J1�I(�I$�I-�I$�I�I�I��I��I��I��I�|I�mI�TI�;Iq"IgIW&IH�HC�H@�H>�H9�H0�H"�H�H�H�H��H��H��H��H��H�tH�eH�PH�;Hs+HcHW�GC�G@�G/�G�G��G��G��G��G��G��G��Gv�G[�GK�G=�G-�G'�G�G�G
                   7590: �G�
�G�
�G�
�G�
�G�
�G�
�G�
�G�
�GXy�Me�MQ�MA�M@�M@�M9�M,�M�M�M�M�fM�dM�bM�_M�WM�SM�GM�8M�'M�M�M�MwMa�L\�L]�LZ�LR�LP�L=�L)�L�L��L��L��L��L��L�pL�lL}lL|hLw^LqQLeGL_GLJ>L50L$.LLL%L3(LA(LA%LAL3L'�K�K�K��K��K��K��K��K��K��K��Kv�Kj�K`�KY�KB�K/�K$�K&�K�KwK�lK�lK�mK�jK�\K�SKxAKo0K�K�Kx��J�
K�K        0K?KTK0hKC�KU�Kh�Kv�K�K��K��K�L�L�L�L�L�&L�.L�2L�CL�OL�YL�`L�hL�pL�pL�dL\L-YLGYLRYLoZL�`L�pL�L��L��L��L��L��L�L�L$�L5MA
                   7591: MJMXMLM?%M3.M7DM:YMEnMLvMX}M[�Md�Mg�Mg�Mx�M��M��M��M��M��M��M��M�N�N�%N�-N�8N�@N�LN�SN�QN�3N�N��M��M��M��M��M�M�M�M%�M0�M6�MF�ML�Mc�Mp�M�M��M��M��M��M�N�N�N�-N�6N�@N�HNPN
                   7592: ]N
                   7593: lNxN%�N*�N2�N<�NF�NQ�Nc�No�N1��Lo�La�LO�LM�LC�L6�L �L
�L�L��L�yL�nL�dL�^L�QL�EL�>L�6Lp%LdL]
                   7594: LZLW�KW�KL�K6�K"�K�K�K�K�KuK�bK�XK�VK�VK�VK�XK�\K�VK�TK�OK�IK�CK�8K�*KxKqK��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��PvN|N~N�N �N%�N.�NA�NK|NLrN=pN5pN)pN nNpNpNrNvN�M�M�M�M�%M�.M�:M�DMKM
UMYMYMMM@M�4M�+M�M�M�M�M�M�M��L��L��L��L��L��L�}L�wL�tL�uL�uL�uL�}L��L��L��L��L��L��L��L��L�l�l�l
�l
�l�l�l��l��l��l��l��l��l��l��l��l�l�l
��k��k��k��k��kx�ku�ks�ko�kz�k��k��k��k_5kO;kV5kZ&kXk[�j[�jT�jI�jB�jHkKkF'kD3kQ9k_5k-�j-�j-�j2�j'�jmj]j&]j�
xj�
�j�
�j
                   7595: �j�j �j.�j2�j=�j;�j2�j-�j�
Fj�
Bj�
Bj�
>j�
1j�
>j�
Dj�
Dj�
Fj%k)k+k+k+�j �j�j�j�j�jk%k�jk%k&3�x�I7�%%�������#��'��<��R�n_�Go�(o�p�"��
                   7596: ş�՟�ϟ�şSş2����������  ���g�T�F�&��9��c������3s�Ik���������u�s�*����c����������Ik�I��+�������ɠ
                   7597: ���������,��C��J��E��`��}�����������ȡ�ꡚ��E��l��s��h��T��j��{�����������������ʢ�٢���w��M��]��TʢP�E��5�*
                   7598: �
��<��`��{�������ã*̣Eʣ\ʣh���������������ܣ���-��S��v����z��x�������|ܤz��o�m!�d6�_O�Wl�P��b��]��0֥ͥ�"�/+�%L�%e�t�(��-��R��e��m��w_��@��!����ɥ��� ��1a�<:�8�0�5Ǥ3��;n�D>�K�L��VޣW��>��9��0u�3f�@W�KA�V.��.��,�����Т.��S��p���o��T�pZ�es�P��H��+����
                   7599: q�M�).�<�Jϡk���s��X��9�����������ߠ4נV z���������*��6��B���������}���������������(�t�����Ǥ�盧���j@�MD�Jc�]~�j���������������ڥ�����*e�%@�)�"�/�EڤUäe��h��`v�PU�O8�-0�'��
                   7600: ���2��D��U��d��t���룊�o�R�M�U��r�����      Ǧ��ͦ������-��?��X��8Cm�MD�>&�U�_+�m5��5��$�v�W��:��6�6�������)��+�s"�[+�J�8�^�}�榏ɦ�צpڦMѦ$Ѧ+��?��W��n��fp��[��P��D�1�1�M�\��d���������9��>��-��7��R����������Ǧ�$D�N��P��J�3�$D�������������������������������覭覲�������˦�˦�æ��������X��c��w�����������z��s�tg�_e�yu�z��W��3~�Cm��O&�E?�.?�6$�O&��w槄꧄��l�\��l�w���������~����`ۧH�:�Eէ`ۧ� �Ƨ������x��h��b��rɧ�˧�Ƨ�nAo�4b�I��.�����קZ§#��������������r��A��ӧ������7��R��Z��^��e��e��g��q����������������Ψ������稪����������.��=��G��0��.��A��\��l��s��u�}{�}��������j�����z٩d�o暑᩟۩�ʩ����������©�ԩ�ݩ�ԩ�̩̩%��;��D��W��j��z���������������©&թ�Ω�ݩ������ �!ʩ)��.����w�1��F��S��b��h��u��s���������������������������     �ߩ��繁Ω����u��{�����ߩ�I��4Ȩ'� ��� ������
������ꨉȨo��Wy�Ao��,����Ω�喝�����(��>��S��I��U��h��v�����������������������������ު��
Ъ6��?��J��S��\w�\��n������y��n���������ت������%�(6�40��:p��'��'��D��_��~�����ŭ�쭉���ͭ����v��k��g��R��/���ެ8��T�j=��]��������������譵������������o��J�������⬖ଫ������'��=�@�k�C��q�����������ǭޭE�_�m"��/AJ�Q(�h�~������歏ܭ�������������������o��H����,֬&ì1��#������.x�9z�Pi�bc�qa�vl�{��������~جy��{��1��R��o�����������ѭ���p+��.R�B-��Mڬ'�� ��%��D��/�����������B�n_�bL�z�����ଏ֬����������Q����ޫ˫����c�#I�-4�40��m"�zC��m�������������~�s�6_�AJ�� p+�^;�FP�B|�N��\Ӯy쮒���&��$��?��N��f����   ����9Ưc���������d��N��,����ۮ�����������!g�.R����݉��{��S��8q�4� ����������h�A��'��-��6��;l�0y�(��%��$l�*C�."�^$ۆ8۔=���=۞;��C�O�FR�}Eۡ(۪K��l�����������}��Z�E�h���,��Ew�8b�-C��T��>��>���       L��*��&����ޯ�ޗ`ޒ=އދ���Q?�<E�K��^޼gުk޼�������޾�ީ��t��^��L���g�t߁;����ޅ���q�݃�ݍ�݀$��rC�wTޅ^ޒuު�������������޼�ޭ�ޙ�ޙ�ށ���O��`|�rc�t<�~�y�j:�]D�[:�`!�e��t��z����y��w~�tP�^;�T�T���_�y_�m[�ca�Qg�Br�Bg�BY�8U�(U�!;�+�
                   7601:  ����������������4k��~�v����v��X�J�%g�x������������  �/�F�Y�-�N�r�����������������7�W�t����������������+��F�       g�|���%��(��+��'��'�����'��+��F�k��$/��1��=��K��Xm�Y_�Ci�,��$�����������������H�i�|�����������������������x�v�t�i�W�B�)�!       �)��/����v��~��t�v�?��H��Q��k���)��'��%��!��!���������������������������#�%�'�)��.��W��o����q�v��S�N�N�F��<��2��&��$��(��2��5~�(r�$o�&[�)B�-%�7 �B��V��c��e��g��r������|�x�x���x�p��m��i��c��a��[�W�T�#P�0J�:J�EF�U=�a5�l/�|-�-�+��r��w��~��~�����������     ������#�7�A�J��
8��!��8��B��D��?��'��!��*��)��#��'��8��������������������8��U�]�H�/��+�����������L�>�6�61�J/�U6�X[�D[�0H� W�W�L��
������������������&����������,��&�"!�@�c�'x�)��8��E��7��F��H��4��8�������&������&���f��Q��@��%����������������h��L��+���       �)��:��Q��l�|��������������������������'��)��������   +��-��E��U��U��R��D��.��+���4���%�&S�       l���������S�o<�EK�$D�2��(�>��+���������������������v��]��B�F�H�+O�]_�xv���r��]�zF�j@�m1�}�����-�:��D��B��_�&�������������� ����/��'��� ����������"�@��8�:� [�l�3�I�X��_��k������-��K�zY�yQ�z8�k#�_�M��9��-��*��#�������z��h��U��F��@��@��@���U��S���h��U��^��?���W��E��;���F`��A��/|�
                   7602: n��M��6��'��/�<�6��D��a�h�[�W�a��p������|��np�hS�^<�\�@�@��,����������������������������B��_��>�8�]�t�-�� ��)��$��*
                   7603: �$B�2n�2z�)�$��5��U��k�������������������+��0�8�>�B��&O�� �h�Q�8�-�B��Y��_��ln�n>�n�b��T��J��H��:a� _�c�j�      e��F��6��'��������������l��B������������~����l�D��|��u��c��LY�F+�?�.��.��$��k�J��(��<��O���^�k����������������     �7�>��<��H�c�t� |�������������������!�@�/�"�"��+��1��<��J��L��E��?&�?#�?L�MS�XB�i-�p8�}D�P�a�]��L��F��[��i��r�����l��g��v�����������������!�*
                   7604: �0��G��U��d��_��8��3��8��8��8z�@��J��a��s������������������������������������'�)�%�5���S��c�p���������}��h��O�_�6d��W��E}��1IO�?G�/E�:��)������
                   7605: ������}��m�_6�D*�*@�M��K��D��@��B��*�������&������*��/��>��\��m��v�������n��_��Y��[��Y��]��]��_��l�&��������6���[��?��3��0��6���= [�f�d�h��{����������z��o��c��P��D��3�����������%'�AB�Mn�O��Y��l��z�����,��I��b��s��}��w��r�j�\�Q��@��,��������&������������}��\��B��2��0�����      ��     ��     ������t� [��
                   7606: �4��4��,���w�q�k�n'�|4��4��(tE�l*�d
�^�M�9��'��������$��1��E��E}�'l�}����������������q��l��Y��K{�8w�"t�j��w������������������o��g�T�F!�>!��
                   7607: <�*���������������������������������{��f��Z��I��������
                   7608: ��������������������3�I��&����n��a��]d�l%�i��Z��Y��Jp�;U�!����������������bO�J
                   7609: �J��F��:h�+6���������������}�_�K�.������������x�!c�8a�Yp�ur�����������|��h��e��C��%������������p��Z���        �������������������������>��:��7��(������
                   7610: ��������������
��&��7��K�,�/��:��C��C��>���J
�C�4      �,     �,�58��^h�Dh� h�j��l��l��u��w�������������������������������*��8��=��<��E�A�?�=�!<�*0�9.�A6��"p
                   7611: |���������������y��o��P����������y��K��"����������������{�&^�-I�,0�,�-��/��,��,��*��(���(�� ����{�      X�6��%��1��P��E��8f�8U�.8�9�M�A��;��(��-�6f�1Q�08�1&�6��6�;�E��U��f��p��uh�tE��>!�FG�:G�:G�)G�C�
                   7612: <�  %����%�'�'���5Z��@&14D�S�[�j�r�l��������k&T&;'&'4&F&_&�&
                   7613: �&�&Dl�
                   7614: ����-�Q�l�v�����������������!8#:8GKbU{_�c�c�`�)T�;�!�!�:�G�G�G�OuUmS`8H#9@E�F�<�1�%�
                   7615: ���������������k�O�F�N�N�L}E`E>L!Y
                   7616: ]�`��S&�<&�&�,�Q�c�fecQp<|-p
                   7617: @Y�w������������-�Q�g����{�h�h�@�@�G�C�8)..Kt������w�E���
�"�C�pj�G�4�%?�`�k�q�|�m�O;j(S!H)����
                   7618: �n
                   7619: M6

                   7620: �&��&��&��&�S&&
                   7621: ]o_sZ�_�U�A�;lASWV]o&�        ��}}�T{N�B�FyT{
                   7622: .3< C;HRC^7\0I,3.L�Q�R�U�W�^f"f*[NF�L�oqsym�c�[�Ws`eoq
                   7623: ���3�o�����g�E� �5;�=&5/        5�,�-�7�?�7�,
,,
,,
,,#,�#,�,,,
,Fw2C{2,&F�2A�24�2"�2�2�2
�2�2&�2��2��2��2��2��2��2��2��2�     3�
3�
3�3�3�"3�.3�;3�V3�b3�k3�s3�w3�y3{3}3�}3�u3�g3�b3�X3�E3r73Z03K&3?,3,23)33&53E3
N3T3V3�V3�`3�k3�s3�}3��3��3��3��3w�3c�3Y�3Y�3]�3i�3w�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�3
                   7624: �3�3 �3�3�3)�3.�33�3=�3C�3N�3X�3]�3f�3s�3��3��3��3��3�&4�4��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�4�4�4�4�.4�,4� 4� 4� 4�(4s*4`*4U*4E(47 4649&4:341(4)4444�
444(404=4A4J4%T4(\4%`4(m4w4g4P4?4�14�4�4�4�4�4�4�
4�4�4�4�4�4��3w�3z4v4q4i4Z
4Y�3O�3K�3H4E4F&4;*44"404,4,4,�35�32�3-�3-�3&�3�3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�4�4�"4�14�;4�=4�C4�G4C4|(44��3��3h�3X�3v�3��3x�3Z�3I�3D�30�3�3�34(4%434;4+,4)54(\4E4,4
 4.4�.4�=4�?4�A4�C4�E4�A4�.4�4�4�.4�I4�c4��4��4��4x�4x�4k�4^�4H
5=5//5#J5"c5�5
�5�5��5��5��5��5��5�6��5�6�6�(6�76w;6mJ6lL6mR6_a6H~6(H~6>�64�63�64�66�69�69�69�6973
7$  7�6�6�&7�7�7�/7�-7�(7�(7�;7�=7�H7�R7�Z7�i7jz7^~7N�7=�78�7-�7�7��7��7��7��7��7��7m9|39�X9�q9�~9��9+mJ:yT:�e:��:��:��:��:��:��:��:��:� ;�J;�k;�a;�];�i;�r;��;��;��;��;��;�<��;�&<
                   7625: <<�<�$<�%<�5<�T<�p<��<��<��<��<�      =�=� =�9=�D=�t=�W=�F=�H=tD=r1=�=��<��<w�<      �D=�]=�|=��=��=��=�t=%�O,�OC�OK�Og�Oz�O��O��O�P�P�-P�CP�\P�uP��P��P�P�P"�P4�P<�P8�P0�P(�P5�P?QB QG0QOAQ]IQbRQgbQmoQw�Qx�Qo�Qz�Q�PN�JN�:N�6N�8N�<Ni<NT8N65N!-N
N�N�N�N�N�N�Ny�M!o�N��N��N��N��N�&O�O�O�OO%O+O3O&3O:;OHDO[TOmaOqO�sO�sO�tO�~O��O��O��O��O��O��O�O  �O�O�O&�PN�SN�SN�QN�JN�:N�/N�!N�N�
                   7626: N��M��M��M��M}�Mu�Mp�Mr�Mu�Mw�Mn|MhrMWpMQbMMKMG8MD'M8M)MMM�
                   7627: M�M��L��L��L��L��L-�Q2�Q-�Q'�Q�Q�Q:�Q?�Q=�Q5�Q/�Q,�Q/Q0qQ*qQ(}Q$�Q�Q'�Q0�Q:�Q��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��P��Pw�Pj�Pg�P_�PZ�PW�PW�P_�Pl�Pw�P~�P��Pcz�Q��Q��Q��Q�R�R�&R�*R�.R�.R�0R�0R�0R�0R�*R�*R�*R�*R�,R�,R�*R�.R�2R&;RIRVR
XRXRXR(XR-hR6uRD�RK�R^�Rr�R��R��R��R�S�S�
                   7628: S��RS6S9,S9<SHMSb^SvbS�jS�wS�{S�tS�dS�^S�IS�0S�:S�US�\S�OS�2S�SASUSjS  yS�yS�yS��S��S��S��S��S��S��S��S�S�S�S"�S/�S>�SPT_Tl#T~:T�BT�DT�MT�UT�UT�STMTUT!aT3pTB|T(�Q,�Q,�Q-�Q�Q�Q�Q(�Q�Q�Q(�Q�   �!p��!v��!���!���!���!��!v��!p��!p��W!ږX!ؖK!��<!�>!�E!֖Q!ЖW!ږ�
                   7629: $ +� -� >��R��m��|��i� N�$ :�$ +��zX�p]�]x�F��2���Cיd��x���k��[�zX��"�"+��!'��!&��!"��!&��!5��!?�q!D�l!H�W!B�=!N�!!T�
                   7630: !X�� s�� ���A"ǝ�!���!���!���!��j!p�O!M�9!G�I!W�b!r�{!���!���!靥!��!@��!h�f!x�E!�� !��� ��� ��� ��| ��Y ��F ��- n� h��]��L��1��'���������i!��+��8��c��������Ԟ��v�U�e+��5��7� +�- #�X  �� �� �� ��� �!�6!/�_!/�! ��!��!��!
                   7631: �"
                   7632: �"�"&��2��ޙ��/�Cי�"�q��o��q��������š�ᚭ����(��=��Q�yd�k{�[��M��M��^��q���������`��G��0�� ����������ߚ�����      ��s��q���қ�ě�ԛ�������қ�MQ�TM�MC�E6�4,�+>�`�����������Ɯ�����0j�J\�MQ��4�
                   7633: �,�$֜�������ڜ�ڜ������}��jΜQ��M�T,�@@�Fz�A��.ڝ��'��3��H��x�����ܞ���7�m��������՟����+��F��5����쟑˟���p��s�q�c �O1�7]�=u�V~��q��g�����-���|�%T�@3�[)�m;��3�{�p�pßq������������v�_�4]�_R�}F��R��_��g��e��T��@��1���������ڞ�Ş���p��Uh�BF�0'�!�ޝ��  ������`��<�������ǟ�������������4��6��4��6��%�����������t�~T�\@�I7��B��e~��������s��\��V��R��P�
                   7634: D�-����������џ����������"�?�Cן4���
����x��p�����������ޥ�ޥtͥg��v������K� ��� ��� ��� Ϡ� �w 
�X &�> G�$ g� ��������������yѡ����̡pۡY��=� 2�V��s�����������Т��p�W�H6�2U�n�r�����������壂�m6�Rj�6��+��+Ф$��@�%S�$_�3|�7��6��?��W��i��{��vϥ`��j&��������c'�N>�DN�2W�$m�
~�
����
                   7635: ڦ�Ѧ�˦������������������ަ������&��L���L��a�to�V��<��&�����������˧�䧔&��*�r?�dI�Oo�J��I���B-�R&�^ܭkϭ����������z��a��D��"�������ج�ͬ������������o��Mڬ�?�������������^��#��������}��T��"������ʸ������m��I��&��ʾʢ7ʡXʬwʠ�ʙ�ʩ˲=˭y˲�˵�˼̼E̵w̼�������̵�̪�̨�̕�v�f>�]b�=n�v�����ͮt͎S͒{ͼ��������$��N��r��y�͕�ͭ}��Q��,�������/����������������!��:j�Tb�wKւ֎�ճ��������,�M�@`�rh�~Z֨<�����������?��^ִ}���������־�ָ�������֭�֚�֒�֎�֑�֒��~��q��|�։�ր���-C�KV�[��T���s>��e܇
ܬ�������������    ������������������q��Q��0ۻ��������������5��`&ۊ9۫Zۯ`۴�ۧ�ۑ��v
�`
�Z��5����"�_.ܓ;ܲ;��=�& �/�;?�=f�S��r��p��tݞ   ��
��2�
                   7636: K�,d�A��f��u��w�lG�a(�h�c��u�܎�ܷ��������������������h��0�����������}��y��m��^��$���������������������/��>��V�X.�}R۱d��{۽����������� �� ��! �. �1 ?�& b�$ �� ��. ��0 ��. ��4 ��: �; A� y�������ݲ�ݬ�ݗ�݁�ݗ���&���$���xג&נ6וO�|U�dW�Lh�D��Y��b��Y��I�����شO؋S�wK�WO�>C�8��4��.���������������������}��Z��M׺=׹*׹��e��j��z��������������!��9��J��Z  �e�i/�oJ�sg����������x�!/�>��X��e���9�������?������޽�ި�ޙ�ޑ��h��Q�Q�L$�M=�lL߅^ߕ\ߖ}ߞ��|��a��5��:������������߼�߼�ߥ���l.�K �L��$����������������ߜ��i��J��.q�X��7߻ߢߓ��q��L��%���i��M޾3޳޿�����ݖބ �k9�Q?��&�����������
��"��9�_�.��@��M��Z�i'�wA�R�|_��������������������������z�"[�>=�f�d�|��r��v�������"��?��7������������������ �� m� H�  )�) $�0 -�0 =�2 D�4 F�? H�E \�A v�> ��4 ��4 ��6 ��4 ��* ��) �% 3� ]� |�
                   7637:  �� �����������������1��F��P��T��v�������������}��u����������&���"�}/�]'�J'�I'�I+�I7�Q7�\>�jH�rD�|L�qa�bo�ft�tm�|t�z��|����������}��~����������t��v��r��f��Y��P��U��d��`��`��Xt�Xc�Qg�=r�9k�@V�;N�5P�)T�+=�++��������������������&��r��k�R�'���  ��������$�=�T�Y�_��������������>�[�m�[�p�q��f��_��]��T��L��M��O��R�X�h)�s �x������)��>��V��m����������������������1t�@W�DH�J�Q��X��]��n&�|�m'�t;�yF�H�~W�}e�vi�v~�r��n��j��q��x��&�� �-�D�H�'��#�7�U�g�N� ���������'��7��>��W��t��r��o�����������������
                   7638: � �/�:�F�S�a�m�e�H�jB�RU�Fe�Ez��.��m�H�'����������/~�>W�V3�b�w������k�5�&���|�D���������q��q��y]�]H�,/�+��&�������i�&V�B��&����&��Z�)�&�����������������������y#�b<�SS�a[�qF�3�5�3�L�R�yW�]g�Dl�0v�!v�v��z��v���v�~�����o��P��*��#��%��:��1��!�������������!�����j��U��F��6��(L�&-�+��>��l�������������-��H���������|��a�X�|����������������4��<����s&�`��E��1
                   7639: �����<��        �'������/�J�H�4�'���<��Y������������������6��Y��z��������������vv�hn�p|�~������q��^���?��T��k��t��q�W���;��T�s!��B�j�l�c�r������`���
Ez�E��:��3��#��)��>��H��2�������������-Q��j��|����������a�P�+������������������P�'�+�F�J�+��&��������������������������&������'�   ��#���������5�L�L�Q���6d�Nz�^�����������������������5��C��P��]��~�������:����������:��M��[�&v���#��2��4��8�N4�U]�_Q�Z.�J�I�T�b+�S�����������������,��O��d���� ��,��6��<�P��a����������������������<��Q��b��t��������������������'�������������������������������#��,��(��%�����C��E��@��>��:��:��:��:��6��4��4��4��4��0�|*�w(�y,��>��G��G��C��:��:��@��C��C������������������������������������������������������M��S��S��S��Sv�Sh�P]�GY�Gb�Gl�Fy�F��F��F��J��M���.G�������������l��[��S��;��+��p��j��d��K��4��������������t��Uj�;<�%�)
                   7640: �(��&��"�����t��f��I��2��.��2���������������������n��b��W���E}�[n�[]�TY�IO��6��Q��e�����l��I��8����q��[���`6��Fx�]h�nr����������������8�&Q�x���(��5��@�F�F#�P,�],�m�y���������%��4��B��)��@��]��{�����������������������������������<��S�d�/{�E��Z��e������������������������������
                   7641: ����.��G�b�r���0��E��^��n����������������������������������w�s�d�C�#�.��)��3��1��#������-�����������������������������������&��8��T��f��o����|��q��W��6��1��,���������������������������~��a�ER�'}������9��`��`��{����e���J�J
��58�GO�QA�S$�P�J��
�!�!���!���!���!���!���!���!���!���!���!��"`�
"(�� ����������������2��C��V��j��s��u�y}�r��k��f��a��b��d��d��k�o
�w�w,�y;�}G��M��`��w������������������������q�l�^�$O�*?�7:�=*�A�I�I��D��7��l�G��+��)��(��#��!��������      ��&���{��u��h��b��b��d�mj�^h��A6�W<�j8��:��?��I��O��^��h��h��h��f��h��f��X��I��*���&�����!��+���-W��Q��8�� ��������}����������v��c��Z��V��F��8��K��M��V��c��w��}����������!��#����!��!��!������������%��+��6��E��M��W��"�"�"z"p��e�8�����������y�T�,�'&�F&�&��&��&�
                   7642: �H�l������Q�v��������_������.�M�w��������k)L8:-
                   7643: ������������������v�)&�&�������C�k�r�����������  ��~�j�a�j��3�K�h�{������������&�<&�S& M& Q&, [&1 2&4 &= <&< r&= �&Q �&b �&f �&f �&m �&s �&j m t y � <� [� �� �� �� �� �� 
                   7644: � � � �� �� � � �� �� �� � )� )!!�(!�+!�.!�.!�4!r7!YC!UI!DE!6H!#H!�&?!�&+!�&!�&#!�&(!v&&!n&$![&,!D&0!+&,!&#!&$!�.!�7!�Q!�j!��!&�!&�!%&�!/&�!2&�!4&�!&�!��!��!��!��!��!��!��!��!a�!4�!        D�(R�(X�(\�(d�(h�(x�(��(��(
                   7645: # `&  h& h& b&�`&�^&�S&   U& S&# `&�"K'
                   7646: "['�!`'�!p'�!r'�!l'�!l'�!�'�!�'�!�'�!�'�!�'�!�'�!�'s!�'s!�'w!�'x!�'\!�'-!�'#!(1!((!4(!O(!O(!.(!(!�'!�'� (� 6(� l(� p(s `(m 6(x �'} �'� �'~ x'| O'| ''s 
                   7647: 'q �&p �&x �&y f&} G&� 2&� &� &� &y &l 4&` >&b &Z &[ &^ �%_ �%p �%� �%x �%x f%q Y%^ �%I �%1 �%" �% �% &�&��%��% �% �%( �%8 r%L Y%S <%Y '%V !%U %h %� %� �$� �$� �$m �$I �$ �$��$��$ �$+ �$  z$ �$��$��$�t$�S$�+$�$1 $Y �#� �#� �#u $[ )$h 8$� :$� +$� $� $� $� +$� M$� j$~ z$} �$� �$� �$� �$� �$� �$� �$� �$� �$� x$!a$!B$"!/$.!4$#!S$!l$!�$!�$!�$!�$#!�$<!�$H!�$J!�$h!�$�!�$�!x$�!{$�!n$�!l$�!�$�!�$�!%�!%�!4%�!_%�!�%�!�%�!�%�!�%�!�%�!�%�!�%�!�%�!&�!&�!#&�!4&�!&  "�%"�%"&"<&-"K&"n&�!�&�!�&�!�&�!�&"�&#"-"�-�!�-�!�-�!�-�!�-�!�-�!.�!8.�!^.�!y.�!�.�!�.�!�.i!�.Z!�.P!�.;!/,!/!,/� K/� m/� }/� �/� �/� �/�Y �/l �/� �/� y/� h/� I/� "/� /!�.!�.!�.!�.&!�.0!q.>!Q.N!,.Z!.e!�-o!�-�!�-�!^-�!6-�!�,�!�,�!�,�!�,�!U,�!4,~!,j!�+U!�+J!�+P!�+R!�+M!�+<!�+!�+!�+� ,� <,� o,� �,� �,� �,� -� O-� Z-� ,-� �,� �,� �,� �,� �,� Z,� O,� Q,� 6,� $,z &,` 6,F C,4 \,$ w, w," \, E, ., 0,�4,�.,�,�,�,��+��+��+��+��+x{+pn+d�+W�+Ps+NO+@+=�*;�*7�*(�*(�*(�*-s*?Q*L4*7%*"**%*"�)&�)�)-�)     �)��)��)��)��)��)��)��)��)��)�*�*�>*�`*�}*��*��*��*��*��*��*��*��*�+�+{+t(+}?+�Q+sK+cG+XK+Xq+k�+v�+e�+X�+k�+U�+H�+B�+5�+.�+#�+�+�,�,�&,�<,�O,�b,�h,�y,�},�,��,��,��,��,��,��,   -#
-?-V�,i�,]�,M-`     -z�,w�,��,��,��,�Z,�2,�,��+��+��+��+��+��+�w+�M+�,+�(+�X+��+��+��+�,�#,(,�+@�+A�+?�+P�+@,),$2,"<,!=,O,&{,��,��,��,��,�-�(-�E-�X-�m-��-��-��-��-%"�+
"�+"�+�!Q+�!#+�!�*�!�*�!�*�!�*�!n*�!Z*�!M*�!A*�!0*�!&*�!#*�!*�!*|!(*|!Q*{!s*�!�*�!�*�!�*�!+�!8+�!S+�!^+�!w+�!�+�!�+�!�+�!�+"�+"�+"�+"�+3    �+ �+ �+ �+ �+ �+��+��+��+��+��+�p+�^+�<+�!+�+��*��*��*��*�p*�I*�G*�l*�s*�{*��*r�*k�*d�*^�*h�*s�*��*��*�++�!+�C+�f+�n+�q+��+��+��+��+��+��+ �+ �+  �+
                   7648:  G) Q)�U)�p)��)��)��)��){�)k�)N�)<�)/�)�)�)�)!)"u) Q)!:)(')/)7)D�(��(��(��(t)�)�
                   7649: )�)x.)rC)vQ)�@)�0)�4)�B)�*)�!)�)�!) %)
 ,) @)
                   7650:  G)A��-��-��-��-��-��-��-��-��-��-��-��-��-~�-v�-w�-p�-o�-e.a.c .c*.^8.S=.MO.KX.N`.Jh.@s.?y.2�.0�.4�.9�.B�.;�.=�.B�.M�.\�.Y�.O�.8/)////$/*/9/�G/�S/�Z/�j/�m/�q/�y/�}/��/��/��/��/��/��/��/y�/�/��/��/��/��/��/��/��/u�/q�/l�/� �/b �/` �/J 01 &0 G0 `0�y0�u0�Q0     00      .0 ,0 0'    0; �/Y �/0��/��/��/��/��/��/��/��/��/��/�0�
0�0�0u0e$0U.0B90-?0*A0#A0"A0A0=06000=0�E0�I0�Q0�^0�^0�O0�A0�70�40�20�.0�.0�$0�0�0�00y�/v�/u�/y�/>l�/d�/a�/d�/^�/Z 0Z0^ 0d 0k"0l*0g;0^M0ZT0Ub0Uk0Uw0U�0a�0n�0u�0n�0d�0W�0H�0>�08�05�05�04�01�011.=1(u1'�1-�1!�1�1�1�122�22�C2�N2�R2�V2�X2�b2�o2�w2��2��2��2��2��2��2�2�o2pi2Tq2Fw2C{2F�2Z`�3d�3d�3V�3@�3;�3.4"C4X4o4u4y4|4�4�4�4�4�4��4��4��4��4��4��4��4�&5�5�E5�m5��5��5��5��5�
6�(6�16�;6�E6�P6�_6�i6�c6|P6v96r 6x6}�5��5��5��5�L5�A5�,5�5�5��4��4�4��4��4��4��4��4�u4�X4�;4�$4�4�&4��3��3��3��3��3��3��3��3��3��3��3�3�344�3&�30�3=�3U�3`�3:�54�53�57�5=$6;X6��6��6�k6�T6�1666�5�5�5�5*�5,�5,�51�5:�5     ��6��6�~6�e6�X6�X6�a6�m6�~6=91
I1\1�{1��1��1��1��1��1�2�2�$2�.2�72�;2�I2�M2�T2�V2�\2�f2�g2�i2�g2�f2�X2�V2�I2�72�(2�2�2�2��1��1��1��1��1��1�{1�f1�b1�Z1�M1�61�1�1�1�1�$1�01�?1�K1�Z1�o1�k1�^1P1
                   7651: C1;191$J�7G8L&8KC8CZ8Js8L�8L�8J�8=�87�80s8*\8!L8 +88�7
�7�7�7 �7-�78�7D�7C�7-�7$�7�7�7(�78�7D�7S�7S�7K�7J�7/;X63�6'�6�6�67P7
                   7652: �7�7��7��7��7��7��7�8�&8�78�98�H8�i8�z8��8��8��8��8r�8d�8U�8Q�8Rz8Js8G^8B78J8Q�7O�7Q�7[�7k�7xu7�X7�?7�7��6��6��6��6L8\8s8&�8��8��8��8�|8�u8�e8�X8�H8�=8�78�58�98�A8�H8
                   7653: L8L8@\98a18c18c-8`8k8x�7y�7��7��7��7��7�7-�7J�7\�7o�7~7�~7��7��7��7��7��7��7��7��7��7��7�w7�u7�o7�c7�`7�\7�Z7�T7�J7�C7�?7�A7�C7�E7�E7�?7�77y17k17o-7y7~7�7w7n&7g�6]�6\�6]�6k�6v�6~�6��6��6��6��~6��6��6��6��6��6��6��6�6�60�6C�6G7O7S?7XZ7[y7Z�7V�7`�7k�7k�7h�7g�7k�7p8s18xC8vN8xc8�s8�8|�8x�8w�8z�8��8��8�      9�"9�;9�J9�X9�\9�]9�g9�m9�o9�q9�x9��9��9��9��9��9��9��9��9�~9�v9�v9�u9{u9wm9sa9l\9gV9`F9ZC9XD9XZ9W_9Wa9Ts9R�9N�9Z�9`�9W�9G�9G�9S�9W�9W�9c
:j3:dZ:Ro:N�:D�:8�:*�:;;0;D;7+;/D;0N;o;��;��;��;��;��;��;~�;i�;^�;k�;y�;��;��;��;��;��;�i;�a;�m;�z;��;y�;\�;=�;)�;�;��;��;��;��;��;x�;P�;=�;'�;�;��;��;��;��;��;��;t�;n�;h�;gt;uY;�7;�+;�;�;�;��:��:�:�:8�:c�:x�:��:��:�;�;��:��:"�:+�:4�:Q�:`�:a�:e�:n�:w�:��:��:��:��:��:�s:�k:�i:�g:�c:�X:�H:�B:�B:�A:�$:��9��9&:
::"�9(�9*�9*�9&�9"�9�9!�9�9o9X9&H9�59�19�/9� 9�9��8��8��8��8��8��8��8y�8a�8J�8<�8-�8�8
                   7654: 
9�&9�59�=9�59� 9�
9��8��8��8��8&�8
                   7655: �8
�8�x8�e8�X8�V8�R8{L8gC8\98D��9��9��9��9��9��9��9��9��9��9 �9" �9E �9l �9| �9� �9� �9� �9� :� 1:� L:� v:� �:� �:!�:(!�:9!�:9!�::!�:9!      ;C!1;C!a;� a;N!�;_!�;h!<a!<[!"<M!"<1!<)!$<#!3<!><!N<!Y<!a<)!R<<!H<H!L<6![<!i<!z<� �<� �<!�<!�<!�<� �<� �<� �<� �<� �<�      =� =� =� =� 1=� P=7�i=�D=�=��< �< �<1 �<H R<U -<] <^ �;] �;Y �;R �;D �;3 < 3< H< W<�[<�Y<�@<�1<� <��;��;��;��;��;��;��;�q;�R;�7;�';�$;�;��:��:��:��:�x:�_:�D:�&:�:�:�:��9��9��9��9��9��9��9  � P=� z=z �=^ �=H >1 >> ]> �>��>��>��>��>�|>�U>�7>�>�>��=��=��=��=��=��=��=��=�i=8vMtMvMpMi�Lx�Lv�Ll�Lm�Li�LV�LE�L<�L=�L-�L0�LC�LO�LP�LW�LV�LW{LTrLLnLI^L?YL9\L5jL,yLwLjL�SL�EL�ML�UL�SL�^L�lL�L��L��L��L��L��L��L��L�L�L,�L2�LCMP
                   7656: MZMgMqMvMY"nU"WU�!@U�!)U�!%U�!)U�!#U�!U�!
                   7657: U�!�T�!�T�!�T�!�T�!�T�!�T�!rT}!dTq!]Tk![T\!MTN!DTB!BT.!8T$!.T(!+T1!'T#!T!T!T!!T� 6T� MT� YT&!pT!�T!�T!�T!�T!!�T%!�T!�T)!�T-!U7!UA!UM!�TJ!U=!U9!!UI!>UR!DU]!FU`!5Ul!#Um!5Uu!JUh![Ul!pUf!�Ux!�Uv!�Uz!�U�!�U�!�U�!�U�!�U�!�U�!�U�!V�!V�!%V�!5V�!@V�!BV�!3V�!V�!�U�!V�!$V�!+V�!1V�!DV�!RV      "eV"qV "zV"�V"�V"�V0p!�Sr!�Su!�Sx!�Su!�Sz!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!�S�!T�!T�!�S�!�S�!�S�!�S�!T�!T�!T�!#T�!-T�!6T�!HT�!OT�!OT�!IT�!FT�!ST�!]T�!]T�!dT�!fT�!lT"jT"zT"�T
                   7658: "T"�T
                   7659: "�T"�T"�T    "�T�!�T�!�T�!�T�!�T�!�T�!�T"�T"�T�B|TN�TV�Th�Tx�T~�T��T��T��T��T��T��T��T��T��T�T/�TG�Tc�T~�T��T��T��T��T��T�T.�TB�T[�Tz�T��T��T��T��T��T��T��T��T�T�T6�TB�TM�T_�Tx�T��T�}T�|T�zT�zT�xTnTrT'rT6lT7vTBzTVxTbvTttT}fT}KT�0T�TxT}�S�T�T�T�+T�<T�ST�hT�vT��T��T��T��T�}T�|T�|T�rT�jT�hT�lT�nT�jT�nT�}T��T��T T }T �T �T �T �T& �T9 �TE �TT �Tf �Tv �T� �T� �T� �T� �T� �T� �T� �T� �T!�T� �T� �T� �T� �T� �T� zT� fT� MT� 6T� T� T� T� �S� �S� �S� �S� �S� �S� �S� �S� �Sn �SR �SW �Sd �Sd �Sf �Sv �S~ �S� �S� �S� yS� lS� fS� `S� ^S� [S� [S� [S� YS� ^S� `S� bS� hS� lS� nS� pS!vS&!S!�S!�S
                   7660: !�S!�S!�S!�S !}S!wS+!wS7!vS9!jS3!\S6!\S=!fSA!vSD!�S@!�SI!�SP!�S\!�Sb!�Sh!�Sl!�Sm!�Sp!�S�$��$��$��$��$|�$p�%$i�#$]� $H�!$8�$'�$�$�$�$&�
                   7661: $��$��&$
                   7662: ��#%��#8��#@�$L�$L�$W�$c�$t�$��$����#��#���#���#���#���#��y#��r#�n#��j#
�f#"�V#9�d#?�p#&�|#��#��9#K�=#I�>#E�=#7�3#�$#�#�#݅#˅#ƅ#ۅ  #�#�%#"�-#9�4#I�9#K��{#��y#��w#��r#��k#��c#��b#��k#��o#��t#��{#����(׋�(ً�(��(��(   ���(���(���(���(���`�(Ώ�(���(��(��(6��(a��(���(���(���(���(��s(��i(��a(ΐT(ΐI(ǐO(�F(�5(� (�(1��'[��'p��'���'��{'��h'��_'n�['W�b'N�y'B�'�v'��i'ڐa'��P'��A'Ő/'ڐ'&�'��&��&��&
                   7663: ��&
                   7664: ��&
                   7665: ��&&��&&А�&���&��n&��Z&��G&��5&ː+&֐*&ސ*&�3&��I&�U&�W&�c&�m&���&䐈&�|&��|&�w&3�m&e�c&c�]&Y�X&U�V&Q�M&N�B&n�9&��"&��&���%���%ɑ�%ˑ�%ő�%��%��l%��Z%v�J%��:%��-%��&%ؑ&%��7%�0%F�%��%���$ْ�=$�<$��    [(�b(ߒo(͒x(���(���(x��(H��( ��(���W(�X(�L(�D(-�<(]�2(n�.(U�(d��'z��'���'���'���'Y�(#�(�1(ŏL(ʏY(֏W(�� �(��(���(���(���(���(Ž�(Ď�(���(����(r��(p��(r��(y��(�� �%֎�%̎�%���%���%���%���%���%���%���%��w%��m%}�^%q�S%l�J%h�K%h�J%h�R%j�K%�\%��d%��v%���%ʎ�%؎�%뎭%�%�%鎶%ݎ�%֎�%֎�%֎�i%�j%�f%�Z%ٍH%ƍL%��I%��B%��3%��.%��+%��1%��@%��H%čH%׍`%�i%��
                   7666: �$ْ�$���$���$���$��n$��f$��U$��H$�=$��P<$�@$&�H$�@$C�8$g�!$��
$��$ʓ$ݓ$�$ݓ�#��#��#��#���#�##���#�^#�E#9�+#`�#��#���"���"锷"��"��"��"��"&��"8�&#<�S#<�~#=��#O��#l�$}�-$��_$���$���$���$���$���$���$ƕ&%ΕB%ڕw%ە�%��%��%�"&�M&ҕ|&���&���&���&q��&G��&2��&�'�2'�S'��h'�k'�b'��t'���'s��'9��'���'ѓ�'���'u�(P�(,�((�F(�S(��[(��>�(���(���(���(���(Җ�(���(Ж�(Ö�(ؖ�(ږ�(���(���(y��(U�r(@�b(6�T(:�T([�M(f�S(y�T(��U(��H(��A(ږC(��R(�[(@�P(f�F(l�A(��1(��'(×/(�<(&�4(�#(5�(_�(��(��)(Ϙ=(�G(�O(˘O(��O(��Q(R�Y(-�e(8�g(N�l(v�}(���(���(���(옙(    ��(��(7��(9��(H��(c��(���(��� �"E��"E��"Q��"d��"s��"p��"Z��"K��"E���"���"���"��s"��`"ʕV"ەQ"�F"�F"�="�&"!�"�"�$"��5"ە;"��P"��`"��p"���"���"���"���<�(���(˙�(ꙷ(��(;��(`��(c��(R��(P��(y��(��s(��s(y�c({�_(��^(��_(��l(šz(ך{(�s(4�e(4�b(I�b(j�g(��p(��w(ٛ�(���(��(0�`(4�X(>�R(`�U(u�c(��x(��z(��x(��~(Ĝ}(眀(�{(@�z(��{(��w(��s(6�s(c�l(��e(��[(��F(��+(1�
(R��'x��'���'���'$��'-�d'H�X'm���$���$���$k��$V��$T��$L��$)�}$�l$ڟZ$��V$��J$��A$��5$��+$��&$��&$��0$ڟ<$��9$�=$1�N$X�O$���$C$��E$|�=$R�-$'�/$�$�$ß�#���#���#���#ş�#���#���#��~#��y#��e#��V#��@#��8#՟"#�#��#���"��"��"��"��"��""��"5��"5�j"5�S"+�3""�+"�"��%��%��
                   7667: %���$���$���$��}$r�_$c�<$O�$>��#<��#H��#_��#[�]#M�?#J�"#L�%#>�#+��"!��"��"
                   7668: �v"��F"��"ǝ�+"&�"�6"�U"
                   7669: �m"��"��"��"��"�#�##�2#@�>#W�K#R�`#[��#c��#e��#W��#F�$B�%$>�E$@�\$H�s$9�}$�z$�m$�o$˞z$Þ�$˞�$Þ�$���$���$���$���$Þ�$ɞ�$Ԟ�$�&%�%�%Ϟ%���jX'm�F'��I'��H'��>'��.'��'נ'�
'��&.��&A��&R��&s��&���&���&���&���&���&ϡ�&ѡp&ߡe&��T&
�N&�F&�9&.�+&I�&f�&��&&���%���%Ң�%��%���%��%2��%O��%U��%h��%��t%��Y%ʣO%̣I%��@%��/%r�0%K�1%&�9%�=%ݢ<%΢9%��(%��%��%��%���$���$���$���$���$Ģ�$¢�$���$���$���$s��$j��$}��$q�%T�% ��$$��$A��$V��$C��$$��$��$4��$I��$f��$b��$4��$���$ʡ�$���$���$���$��z$���$���$m��$e��$\��$e��$g�%e��$G��$"��$���$��$Ϡ�$���$���$���$���$���O$��C$���b%Z�t%A�]%`�N%d�]%T�S%?�B%*�=%�M%��[%�v%ݡ�%̡�%졜%        ��%&��%2�u%?�b%Z��M�%H��%C��%?��%7��%"��%��%"��%3�v%5�X%=�4%L�%\��$^��$m��$���$���$���$ӵq$��m$�s$ȵV$ƵE$�1$�
                   7670: $3��#`��#���#���#���#��#:��#h�y#��K#��(#�#C�#��#Ҹ#�'#6�3#4�@#��I#��F#��Q#y�V#E�k#��#���#з�#���#s��#A�$� $��+$ζA$��R$��F$��*$� $�F$��]$ƶx$���$w��$M��$3��$
�%�C%ٵh%���%���%���%���%{��%i��%X��%H���(���(|��(g���(���(���(���(���(����(���(��(���(��(+��(>��(_��(n��(O��(F���t%l�~%]�}%F�%-�%�%��%��%��%���%���%���%���%���%���%���%���%��%��%��%��%��{%��~%��v%��v%��%��%��%��%���%���%���%���%���%��&��&��&&���%��&�� &��3&��G&��Z&��c&��r&��&��&��&���&���&���&~��&p�'j�.'U�C'6�N'�R'��['��b'��['��J'��7'v�&'U�'M�'D�'@�'>�
'6��&/��&��&���&���&���&���&���&���&���&���&|�
                   7671: 'p�%'n�?'n�P'n�h'n�v'n�'e�'_�'[��'O��'Q��'h��'��'��'���'���'���'���'���'�(�(��(��(��(��(��(�#(�4(�8(��@(�A(�M(�V(�c(�j(��l(��m(��o(��u(��w(��}(��(��(��(x�(c�(O�(F�(4�(#�(�(�(��(��(��(��(��(��(��(��(��(��(n�(e�(Y�(S�(<�(�(��(��(��(��(n�(D�(�(��(��(��(���(��(��(��(���(���(���(p��(a��(D��(:���(��(���(���(���(���$�']��'n��'���'���'���'���'��'��'��'��'��'�'
                   7672: �'��'��'�'
                   7673: �'��'��'���'���'��'��'��'���'~��'r��']��'M��'2��'6��'H��'S��']��']��']��6(��A(��A(��D(��P(��J(��A(��6(��6(��6(��4(��.(�*(��*(��(��
(��(��(��$(��'(c�6(c�?(t�C(��K(��M(��F(��<(��7(��6(���=(H�?(>�>(_�8(��-(��(��(���'~��'t��'_��'P�'6��'6��'6��'%��'�(�0(�:(-�=(H��)O(n�W(r�W(u�V(��`(��d(��a(��k(��t(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(��(��(��(��(��(��(�~(��m(��g(��b(
                   7674: �U(�L(�B(�<(.����(M��(@��(:��(B�(F�(U�(h�(x�(��(��~(��(��(��(�(��(0��(E��(G��(]��({��(��(���(���(���(���(��(���(��(��~(h�v(U�k(M�q(>�m(�r(��y(��}(��(p�x(l�p(�f(�f(��n(��e(��Y(��E(��1(��.(��/(�B(�F(�3(�'(0�(B�(U�(l�(�(���'��(��&(��'��'��'��'���'���'���'���'���'���'���'���'���'���'���'���'���'���'���'��'��'��'��'��'��w'��l'��\'��K'��@'��-'��'��'���&���&���&���&�n&)�K&8�K&]�R&��L&��S&��T&��H&�6&�;&>�'&Q�&`��%W��%d��%t��%���%���%��%(��%Q��%M��%C��%@��%@��%6�&A�&Z�2&p�C&{�U&��a&��Z&u�Y&\�`&b�j&j�v&s�|&n�z&W��&C��&C��&Z��&��&���&���&��'��'��"'�� '��4'��@'��N'��\'��q'��m'�|'
��'
                   7675: ��'��'.��'E��'.��'��'&��'4��'2��'*��'8��'>��'G��'Q��'M��'O��'U��'d��'j��'l��'n�
                   7676: (t�(u�&({�6({�F(n�L(n��, (��-(��=(��J({�R(��g(��u(��{(��~(���(���(��|(��}(��z(�v(�h('�V(%�A(�7(�-(�D(0�L(I�J(Z�;(l�0(r�(��(��&(y��'���'���'���'���'���'r��'Q��'4��''��'
��'�(��    (��(��(��(���_&��c&��p&��&���&���&���&���&��'��'x�'v�'��
                   7677: '���&���&���&���&��&��x&��g&��_&���!�&���&���&���&��'j�'W�'W� 'F�('4�7'<�['>�c'6�c'0�i'#�r'#�}'!�'2�w'F�}'_�p't�T'��B'��0'��"'��'��'���&���&���&���&���&���&���&����%���%���%���%���%��%��%��%��%���%���%���,?'G�H'#�Q'�Z'��V'��K'��:'��-'��'��
                   7678: '���&���&��&��&��&��&��&��&��&��&.��&.��&��&��&!��&#�&��&
��&���&���&���&���&��v&��c&��R&��K&��R&��D&��P&��X&��U&�@&�)&
                   7679: �&��%0�%�%�%��
                   7680: %��
                   7681: %��%��%��%���$���$���$���$���$���0�$���$���$���$���$n��$Z��$>��$G��$@��$4��$��$���$���$���$��%��%�� %��$%w�!%b�%��%��%��%��%l�%Q�%:�
                   7682: %(�&%��$��$���$���$���$���$���$���$���$���$���${��$b��$S��$C��$.��$%��$%��$@��$O��"%��%��%��
%��%��%��        %��%��%�%�%�!%�0%�2%�*%��'%��0%��8%��A%�G%�E%��<%��;%��7%��+%��$%���&�$O��$4��$��$��$��$���$���$���$b�%E�%#�%��)%��9%��B%��O%h�X%E�^%�d%��i%��i%��c%l�[%Q�M%:�A%>�H%U�P%f�V%x�J%t�1%d�%U�
%K�%6�%2�%%�%��%��&%���   &%��+%��3%��:%��C%}�K%z�N%v�^%n�t%l��;�"�"���"���"���"`��"I��"E��"��"��"���"��",��"N��"u�#w�#��#{�$#f�/#`�:#P�@#X�D#i�M#V�Q#A�K#2�P#�\#�c#�n#�m# �t#���#���#���#���#��$��$     �$"�$M�$u�$��&$���#���#��$��$��$��$��$�� $��&$��2$��=$��P$��[$��i$��s$��~$���$���     �$
                   7683: �$���$���$���$���$���$���$���$���    H$��O$��L$��;$��'$��$��!$��4$��H$���(#��#��#y��"b��"X�#;�#�#�#�
#,�#K�#\�#Q� #;�(#�2#��;#��B#��I#��B#��@#��A#��G#
�Q# �c# �j#�n#�n#�s#�s#�{#     ��#���#���#���#���#��
                   7684: $��$��$��$���
                   7685: J#;�O#C�O#A�P#,�G#�@#�:#�:#�B#&�J#;��    >#d�B#^�C#R�@#E�;#6�5#4�6#?�=#T�>#d��##��#��#��#{�#q�#q�##����"��"��"���"��#��#��#���
"(�!"��;"��H"��Q"��o"���"���"���"���"k��"K��"0��"&��"��M<(.�<(Z�H(��:({�*(��(��(��(���'���'���'��'<��'{��'���'���'���'���'"��'��';��'G��'f��'y��'q��'q��'���'���'���'�(G�$(9�9(0�9($�.(�.(�1(     �0(��4(��6(��B(��L(��W(��f(��l(��w(��v(��}(���(���(���(���(��(�}(�u(�t(0��(8�t(C�q(`�x(d�}(o��(o��(b��(C��(2��("��(��(��(���(���(���(���(���(���(��(��(��(����(
��( ��(A��(Q���(K��(I��(I��(I��(Q��(X��(d��(f��(h��(f��(Z��(S��U(j�_(j�j(j�s(l�x(q�s(y�h(y�X({�V({�U(y�V(u��o%��%��%��%��%��%.��%C��%b��%n��%}��%{�&u�&u�*&��C&��\&��s&���&u��&q��&X��&I��&,��&���&���&��'��'y�0'`�?'G��&�&A�&O�&?��%C�&l��%��%j��%h��%y��%���%}��%���%���%���%{��%{��%���%���%���%���%��~%u�v%n�n%n�o%}�t%��s%��o%��m%���6o%�t%�f%�\%�R%�B%�5%��)%��!%��%�%�%�
                   7686: %
                   7687: �%���$��$���$���$���$���$���$���$���$���$���$��$��$*��$0��$2��$2�j$&�Z$�g$0�$A��$Z�q$\�o$q��$w��$���$���$���$��$�}$(�o$2�k$0�g$"�e$
�^$��U$��D$��E$��V$��O$,��m%��m%��f%��d%��e%��_%j�[%S�P%I�G%A�7%C�(%W�!%K�!%2�%0��($��$��$���#q��#w��#���#���#���#���#���#o��#S��#6��#��#��#��#���#���#���#�
                   7688: $�
$4�
$O�$Q�*$S�>$Q�K$E�\$ �e$�i$��b$��f$��m$��q$�m$d�f$S�[$;�S$,�M$,�O$,��(��(��(��(�)�'0�'4�'D�'f�'{�'��'��'��'��'��'��'��'��'�x'�n'�i'�_'�c'�h'�q'�u'�'{~'f�'[�'M�'I�'I�'U�'U�'S�'O�'G�'6�''�'.�'8�'4�'2�'0�'0G'�J'�K'�M'�K'�J'�I'
                   7689: C'A';'�8'�7'�7'�7'�<'�B'�G'�0(�&4(�&5(�&9(�&8(�&:(�&:(B(J(U(U(-E(28(22(!1(3(�&1(�&/(�&-(�&0(�&        ("(((%,(2*(> (@(4(#("&�'��'��'��'��'��'��'��'��'�~'�x'�t'�r'�k'�j'�e'�Y'�S'�H'�A'�>'�:'�7'�9'�6'�0'�-'�,'�!'�'�'�'�'�'�'�'�'�'�'��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&
                   7690: �&�&�&�&��&��&��&��&��&�}&�}&�~&�&��&��&��&��&��&��&��&��&��&�&�r&�g&�_&�X&�K&�C&�<&�2&�%&�&�&�&�&�
                   7691: &��%��%��%��%��%��%��%��%��%��%��%��%�&&�&�&�&�&&�.&�0&�3&�<&�M&tN&pO&nC&p4&{%&�&�&�&&x&v!&r$&j"&b"&a &Y&U&S&Q&O#&O6&O2&D.&2&&!#&!&0&8&>&@�%@�%B�%8�%%�%�%0�%@�%U%]o%[y%po%v[%jD%]>%O@%HX%K_%Ha%<Z%'J%E%�Q%�_%�`%�\%�\%�[%�`%�e%f%}i%lo%fv%Ou%<t%!r%l%l%#g%-_%>Q%H@%W/%d!%j%c        %U%K�$B�$>�$8�$6�$-�$#�$�$�&�$�&�$�&�$�&�$�&�$�&�$�&�$�&�$�&�$�&�$�&�$�&v$l$�&h$�&c$�&T$U$T$IW$�H$�2$�$�$�#$�$�$��#��#��#��#��#��#��#��#��#z#!o#Fb#hZ#�T#{H#v>#l4#d1#_/#],#I2#2C#K#�H#�A#�/#�(#�&#�4#�5#�1#�&#}#j#Y#F#+##(#�&,#�&:#�&C#�&6#�&&#�&#�&#�&�"�&�"�"�"+�"a�"��"��"��"��"��"�"-i"QT"pD"�9"�."�"�"�#"�("�""�"�"z"z"p"b."Y;"6Q"#Q"S"�R"�R"�N"�I"�C"�A"vB"nH"fS"Yn"Q�"K�"B�":�")�"�"�&�"�&�"�&�"�&y"�&r"�&r"�&q"�&r"�&s"�&|"�&�"x&z"W&"F&�"O&�")&�"��"��"��"��"��"��"��"��"��"��"_�"!�"�$���$�$+�$�$
                   7692: q�$���$�$�$+�$-�$-�$/%>(%[1%�6%�=%�U%�j%��%��%��%��%��%��%&�%!&�%D&&Y&&v&&&�&.&�&0&�&/&�&,&�&$&�&&&,&+/&-=&%G&L&�&M&�&T&�&_&�&n&�&r&�&|&�&{&�&�&�&�&�&�&�&�&�&�&�&�&�&�&&�&|&�&z&�&v&�&h&�&e&'_&
'O&'@&'2&/'2&@'2&N'>&P'O&P't&M'�&Q'�&S'�&O'
                   7693: V'0P'KF'�@'�5'�;'�G'�L'�H'�P'�X'�g'�i'�j'�w'�u'��'��'_�'F�'�'�'�'8�'F�'K�'d�'��'��'��'��'��'�'�'�'+�'6�'M�'d�'n�'p�'p�'t�'��'��'��"��"��"��"��"��"��"��"��"��"�|"�~"��"��"��"��"�I$�S$�]$�f$�g$�d$%�%�%�$�$'�$0�$�$��$�&%�%�%��%��%��%��%��%��%t�%p�%l�%p�%x�%��%��%��%�&%&'&+&4&O�%]�%[&F�%@�%8�%4�%&&!&%&%
;&�>&�<&�0&�'&�&�&&&�&�*&�7&�;&�`&Bd&G^&FY&4Y&`&�e&�e&�i&�s&�z&�{&��&��&�&�&�&�&+�&6�&4~&!{&r&m&k&d&`&,`&:`&B!Q'BS'GP'GE'K6'O.'Q<'j4'v.'}'�'x'`'S�&B�&B�&4�&�&�&�&�&��&�'�'�'''!'-''9''D',O'>Q'Bdu%}%}%�%�%�%�%.�%>�%M�%Y�%{�%��%�p%�h%�b%�T%�I%�G%�E%�:%�:%�7%�:%�:%�3%#%� %�%�%�%��$��$��$��$�$.%:%[%��$��$��$��$��$��$��$��$��$u�$p�$��$��$�$�q$�d$�b$�X$�W$�Y${L$uJ$WJ$'J$@$9$.$:$Q$U$W�#d�#u�#��#��#��#��#��#}�#y�#h�#K�#.�#�#�#�#��#��#��#��#��#��#��#!�#G�#y�#��#��#��#��#��#��#��#�|#�VH#�H#�K#�P#�V#�J#�B#�6#�/#�+#�+#�4#�5#�;#r=#l7#f+#n*#�##�#�#�#r #Y#M#>#8#6#4#2##)$#'##)#�*#�1#�6#�6#�;#�B#�O#�]#�[#�P#�O#�M#�S#nY#Yf#Mf#Df#Bc#0l#%z#�#�#��#��#��#��#{�#d�#M�#D�#O�#F�#:�#0�#,&$$$/$7$E$!S$%[$)_$j$|$�$#�$0�$:�$B�$@�$:�$%�$%*�$%�$#�$�$��$��$�%�%�%�'%�$%�%�&%�:%�@%�;%�N%�p%��%�%�%F�%U�%��%��%��%��%��%��%��%��%��%��%��%��%��%��%�%�%z%u%u%&�#��#��#��#��#�&|#�p#�]#�Q#�S#�J#�H#��(��(��(��(��(�(�(��(��(��(��(��(��(��(��(��(��(��(��(��(�:�%�(�%�(�%�(�%�(�%�(�%�(�%�(�%�(o%�({%�(�%p(�%Q(�%U(�%K(�%6(�%0(t%'(j%(e%�'a%�'X%�'^%�'k%�'r%�'y%�'o%}'g%v'X%}'T%n'S%['J%E'H%0'6%'+%0'!%.'%2'%O'%d'%{'%�'%�'  %�'     %�'%�'%�'�$�'�$(�$E(�${(�$�(�$n(�$B(�$(�$(�$8(�$l(�$�(�$�(?\$�(o$�(~$�(�$�(�$t(�$>(�$(�$�'�$�'�$�'�$l'�$W'�$t'�$�'�$�'�$�'�$�'�$�'�$Q'�$,'�$
                   7694: '�$'�$'�$�&�$�&�$'�$'s$'j$'k$'�$�&�$�&�$�&�$�&�$�&�$�&�$v&�$O&�$)&�$&�$&�$&$&x$.&g$&`$&S$&P$�%A$�%<$&2$&:$8&C$^&;$W&,$E&'$4&'$&$&$&$&$&�#&�#&#�#&�#�%�#
                   7695: &�#&�#)&�#&�#�%�#�%�#&�#+&�#&�#�%�#�%#&c#)&K#b&6#{&##�& #�&#�&#�&#:'#h'#�'�"�'�"�'�"(�"#(�":(�"I(�"f(y"(i"�(P"�(D"�(#Q&#h&#h&#v&#�&#�&�"�&�"�&�"�&�"�&�"�&�"�&�"�&�"�&�"�&�"'�"'�"'�"'~"'v"']"'G")'B"''="'4"'1"'1")'("G'"K'"<&,"4&-"K&"�&""�&A"�&c"p&"O&�"K&�"O&�"K&�">&�"&�"&�"&�"&�"!&#&#�%%#�%5#�%(#�%,#&+#)&#Q&!�(�/�(�/�(�/�(�/�(q/�(l/�(\/�(V/�(\/�(T/�(`/�(o/�(u/v(�/p(w/u(\/w(C/p(2/h(9/Z(`/Q(\/O(O/Q(;/F(0/=(2/<(6/8(8/9(G/>(K/2(\/ (�/1(�/;(�/4(�/$(�/(�/G(�/      (�/�'�/
                   7696: (w/(\/!(C/!(/((�.*(�.#(�.
(�.�'�.�'�.�'�.�'�.�'�.�'�.}'      /n';/w'/�'�.�'�.�'.�'j.�'Q.�'R.�'X.�';.�'4.�'9.�'6.�'..�'.�'�-�'�-�'�-�'�-�'u-�'m-(Z-(I-(,-(-�'�,�'-�'�,�'�,(�,(�, (
-,(-(�,#(�,-(�,2(�,A(�,@(�,W(�,m(�,a(�,h(�,p(�,s(�,x(�,�(�,�(u,�(�,�(�,�(�,�(�,�(�,��(�+�(�+�(�+�(�+�(�+�(�+�(�+�(�+�(�+�(�+�(�+�(s+�(�+~(�+{(y+m(p+{(d+x(S+d(S+j(A+d(0+T(4+I(X+J(}+J(�+?(�+6(�+B(�+<(�+@(�+A(j+@(Q+E(:+H(+F(+<(+4(+2(+$(+(+(
+(�*(�*(�*&(�*�'�*�'�*�'�*�'!+�':+�'A+�'E+�'K+�'M+�'>+�'+�'+�'�*�'�*�'�*�'�*�'�*�'�*�'�*�'�*�'�*�'�*�'+�'�*�'�*�'�*�'�*�'�*�'�*�'�*�'�*�'�*w'�*}'�*�'�*{'j*u'j*c'M*Z'2*J'**<'I*1'd*1'�*&'�*('h*('4*'*'**'*�&�)�&�)�&�)�&�)�&*�&*�&&*�&Y*�&�*�&�*�&\*�&\*�&}*�&�*�&�*�&�*�&u*�&A*�&*�&*�&,*�&6*�&A*{&>*r&&*j&*_&*b&**Q&6*Q&*T&�)U&�)C&�)/&�)'&�)&�)&�)&�)&f)
&Q)�%M)&:)&)�%)�%%)�%)�%)�%2)�%0)�%)�%
                   7697: )�%�(�%�(�$�(�$�(�$�(�$%)�$I)�$r)�$�)�$�)�$d)�$6)�$)v$)h$)R$)\$�()D"�(D"�(N")f"�(a")R")I"!)G"I)B"})>"�)6"�)+"�)."
                   7698: *;"
*F"(*I"`*K"�*I"�*L"�*C"!+G"K+L"s+P"�+N"�+N"�+N"�+R"�+S"�+M",F"C,K"b,L"�,G"�,K"�,C"-C"-C",-=";-."A-2"`-#"-J�"�6�"y6�"c6�"X6�"\6
                   7699: #a6#Z6#E6"#?6*#?6#\6#^6#P6#J6/#=64#$62#
6)#
6#�5#�5�"�5�"�5�"�5#�5#�5 #�5(#�57#�5H#�5V#�5W#�5Z#�5c#�5n#�5�#�5�#�5�#~5�#s5�#\5�#75�# 5�#$5�#/5�#=5�#T5�#m5�#�5�#�5�#�5�#�5�#�5�#�5�#�5�#�5&$�5$�5 $�52$�5H$�5[$�5n$�5{$�5�$�5�$�5�$�5�$�5�$�5�$�5�$�5%6%6%$6(%36-%L6i-%L61%\61%Z69%E6A% 6N%�5a%�5o%�5�%u5�%G5�%5�%�4�%�4�%�4�%�4�%�4�%�4�%�4&�4/&y4G&e4P&V4N&;4B& 4D&4J&�3Y&�3[&4m&4y&4�&4�&$4�&04t&74j&?4\&L4b&T4l&T4}&T4�&V4�&Z4�&^4�&c4�&i4�&w4�&|4'~4'�4"'�4<'�4L'�4d'�4r'�4�'�4�'�4�'�4�'�4�'�4�'�4�'�4�'5�'75�'G5�'V5�'q5�'�5�'�5(�5(�5(�5(�5*(�5;(�5I(�5L(�5T(�5Z(z5\(T5Z(?5e(35e( 5g(&5p(�4}(&5�(5�(5�(5�(5�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(�4�(&5�(X0�(60�(0�(0�(�/�(�/;(�/9(�/4(�/
                   7700: (�/(�/(�/�'0�',0�'G0�'*0(�/(�/(�/x�&a=�&7=�&=�&�<�&�<�&�<�&�<�&�<�&k<�&H<�&5<|&<j&<V&�;E&�;:&�;.&�;%&�;*&�;&&�;&�;&z;&];&F;&-;      &;&   ;&&�:&�:�%�:�%�:�%�:�%�:�%s:�%k:�%R:�%9:�%5:�%H:�%R:o%g:_%s:r%_:�%F:�%9:�%):�%�9�%�9�%�9�%v9�%V9�%?9�% 9�%�8�%�8�%�8�%�8�%�8�%�8�%u8�%T8�%?8�%38�%*8�%&8w% 8h%8K%8*%"8%/8�$38�$"8�$8�$8l$8R$8B$ 8 $$8$8       $8�#�7�#�7�#�7�#�7�#�7�#�7�#�7�#�7�#�7�#�7}#8{#&8#�7�#�7�#�7�#�7�#�7�#z7�#c7u#N7h#;7V#7I#77#�6"#�6#�6#�6�"
7�"$7�"C7�"R7�"?7�"(7�"       7�"�6�"�6�"�6�"�6�"�6�"�65$�79$�7;$�7=$�7A$�7:$~76$m75$J7($57$(7$"7�#7�#7�#17�#R7$u7$�7$�7$�7$�7$�7!$�7*$�75$�7  �%�B%�B
%�B%�B%�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�Bm$�B[$�BF$�B=$uB3$cB!$PB$TB$XB�#RB�#LB�#BB�#9B�#-B�#)B�#(B�#(B�#)B�#B|#        Bp#�Ai#�A_#�AP#�AD#�A:#�A-#�A$#�A"#�A#�A#�A&#�A�"�A�"�A�"�A�"�A�"�A�"�A�"�A�"�A}"�A�"�Ap"�A^"�AX"�AY"&Br"B�"B�"B�"
B�"B�"�A�"�A�"�A�"�A�"�A�"�A#�A"#�A2#�A>#�AH# BC#B3#(B#+B#BB6#\BJ#ZBX#RBv#�Bw#�B{#�B�#�B�#�B�#�B~#�Br#�Bl#�Bc#�B^#�Bf#�By#�B�#�B�#�B�#�B�#C�#C�#C�#C�#&C�#=C�#PC�#RC$^C$RC$.C,$"C-$?C-$^C,$uC.${C;$}C?$�CT$�Ch$�Ck$�Cx$�C~$�C�$�C�$~C�$~C�$sC�$kC�$TC�$GC�$LC�$5C�$C�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B�$�B%�B%C%3C%7C%$C%C%C%�B%�B%�B%�B%�B%�B
%�B      M�(�@�(�@�(�@�(�@�(�@�(�@�(�@l(�@\(�@O(�@@(�@<(�@,(�@&(�@(�@(n@(k@(c@(Y@
                   7701: (S@�'S@�'R@�'F@(D@(D@(9@(@(�?(�?(�?(�?(�?
(�?
                   7702: (�?    (�?(�?(�?�'�?�'�?�'z?�'n?�'_?�'N?�'@?g'@?N'<?>')?.'?'?'?�&?�&?�&3?�&J?�&N?�&B?�&5?�&?�&
                   7703: ?�&?�&&?�&&?�&&?�&�>�&�>�&�>�&�>�&|>�&U>')>'>'�=�&�=�&�=�&�=�&�=�&a=
                   7704: Uh(K(�J�(�J�(�J�(�J�(�J�(�J�(}J�(}J�(�J�(�J�(�J�(�J�(iJ�(NJ�(=J�(J�(
J�(�I�(�I�(J�("J�(;J�(VJ�(mJ�(sJ�(mJ�(iJ�(RJ�(KJ�(0J�(J�(
J�("J(1Jy(1Jz(J�(J�(�I�(�I�(�I�(�I�(�I�(sI�(gI�(oI�(gI�(PI�(PIy(PIv(CIu(*Iu(It(�Ht(�Hv(�Hs(�Hr(�Hn(�Hh(�Hg(�Hh(�Hl(�Hl(�Hl(Ik(Ik(/Ih(FIg(ZIm(qIb(|IZ(�IU(�IP(�IR(�IQ(JO(*JO(CJO(\JS(qJL(�JD(�JA(�J8(�J1(�J
(�K (�K
                   7705: (�K(�K(�K(�K(�K$(�K5(wKI(hKW(SKX(6Kh(K1(�J/(K-((K ((K(*K("K(K(.K�'EK&(SK�'jK�'K�'�K�'�K�'�K(�K(�K(�K(�K{$�Xq$�X`$�XR$�XE$�XE$�XR$�X�$�X�$}X�${X�$yX�$uX�$mX�$bXy$VXr$NXi$NX]$NXT$NXH$ZXU$fXb$oXj$wXt$X}$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X$X$X$X    $X�#
X�#X�#�W�#�W�#�W�#�W�#�W�#
X�#X�# X&$ X$X
                   7706: $X$X'`"�Vb"�V_"�Vb"�Vv"�V~"�V�"�V�"W�"1W�"CW�"PW}"VW�"oW�"�W�"�W�"yW�"gW�"HW�"&W�"      W�"�V�"�V�"�V�"�V}"�Vu"eVo"DVo"9Vk"%Vf"Vb"�U["�UX"�UW"�UN"�UB"�U;"�U/"�U"nU"�V$"�V/"�V/"�V9"�V)"�V$"�V2"�V:"�V8"�V="&W."W0""W8"*WB""WK""WR" WY"3Wh"5Wn"Wk"�Ve"�V`"�V"zT"�T"�T�"�T"U&"U."U4"�T;"�TI"�TS"&UZ"�Tc"�Te"U`"U["UZ"UZ"+Uc"5Up":Ux"<Ux"@Ux"DUt"PUn"[Uk"iUo"zUs"�Um"�Ur"�Uz"�Up"�Uk"�Ur"�Us"�Ut"�Uu"Vv"Vv"+V~"7V�""V�"V�"�U�"�U�"�U�"�U�"&V�"�U�"�U�"     V�"V�"-V�"+V�"V�"V�"V�"1V�"JV�"TV�"_V�"kV�"|V�"�V�"�V�"�V�"�V�"�V�"�V�"�V�"�V�"�V�"�V�"�V�"W�"W�"W�"W�"�V�"�V#�V#�V
                   7707: #�V    #W#W#W#W#&W#�V#�V#�V#�V#�V #�V%#�V,#�V4#�V<#�VC#�VI#�VL#�VC#�V<#&W3#       W0#W3#$WB#*WK#,WX#,Wd#*Wl#$Wr#$Wu#,W{#/W�#/W�#*W�#&W�#,W�#5W�#5W�#;W�#GW�#^W�#kW�#sW�#yW�#uW�#oW�#oW�#wW�#�W�#�W�#�W�#�W�#�W�#�W�#�W�#�W�#�W�#�W�#�W$�W$�W$&X$X%$X-$
X9$XD$�WN$�WU$�WY$�W\$�Wc$�Wp$�Wt$�Wz$X{$Xx$Xt$Xr$Xm$ Xp$(Xu$,Xu$0Xu$2X}$?X�$IX�$TX�$bX�$kX�$qX�$yX�$�X�$�X�$�X�$�X�$�X�$�X
y&�%�X�%�X�%�X�%�X�%�X�%�X�%�X�%�X{%�Xw%�Xm%�Xi%Yi%Yd%Y`%$Yn%2Yg%4YZ%8Y]%EYm%KYw%KY�%KY�%8Y�%*Y�%Y�%Y�%Y�%Y�%Y�%Y�%Y�%(Y�%4Y�%<Y�%=Y�%=Y�%=Y�%:Y�%CY&EY&OY&UY&^Y,&hY$&nY2&jY=&`YE&hYC&wY=&�Y3&�Y.&�Y#&�Y'&�Y)&�Y"&�Y&�Y&�Y&�Y&�Y&�Y�%�Y�%�Y�%�Y�%Z�%Z�%Z�%)Z&2Z&,Z
                   7708: &Z&Z&Z&
                   7709: Z&Z(&Z0&�Y?&�YH&�YP&�YS&�YS&�YX&�Y[&�Y^&�Y`&�Yc&�Yh&�Yp&Zr&Zw&#Z�&.Z�&6Z�&8Z�&8Z�&8Z�&8Z�&<Z�&BZ�&WZ�&]Z�&]Z�&fZ�&yZ�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&['
                   7710: ['['�Z'�Z'�Z'�Z'�Z'[#'[)'�Z-'�Z.'[;'[A'�ZF'�ZF'
                   7711: [A'[F''[O'#[X'[V'[O'�ZH'�ZE'�Z@'�Z8'�Z4'�Z4'�Z7'�Z;'�ZC'�ZR'�ZX'�ZP'�ZW'�Z`'�Zi'
                   7712: [s'[{'[w'�Zz'�Z'�Z�'[�'[�'#[~'%[s'%[k'2[r'<[�'F[�'D[�'/[�'#[�'[�'[�'![�'0[�'2[�'+[�'[�'2[�'@[�'H[�'U[�'h[�'l[�'n[�'t[�'t[�'~[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'\�'\(\(\(!\('\"(-\2(7\S(H\l(]\�(e\z(k\s(r\m(l\[(a\U(c\[(p\O(g\@(_\7(_\*(S\(F\(>\�'<\�'<\�')\�''\�'7\�'>\�'Y\�'a\�'i\�'x\�'z\�'�\�'�\�'�\�'�\�'�\�'�\�'�\(�\ (�\$(�\/(�\.(�\(�\(�\ (].(']7(/]9(;]0(9],(@]4(X]>(i]4(_]-(g],(x])(z])(s])(o]((X](;](3](7](%](]�']�']�']�'�\�'�\�'�\�'�\�'�\�'�\�']�']�']�']�']�'+]�';]�'H]�'_]�'x]�'�]�'�]�'�]�'�]�'�]�'�](�](�](�](�](^(^((.^2(9^=(I^L(L^W(E^f(A^u(=^}(/^�(^�(�]�(�]�(^�(&^�(1^�(^�(
^�(^�(&^�(9^�(G^(L^�(\^�(c^s(Z^b(\^^(`^_(o^`(�^Y(�^S(�^Y(�^b(�^j(�^q(�^v(�^{(�^~(&_}(_�($_�(&_�(4_�(C_�(V_�(b_�(T_�(K_�(=_�(6_�(0_�(0_�(9_�(;_�(9_�(4_�($_�(_�(_�(_�(_�(_�(_�(&_�(�^�(�^�(&_�(&_�(�^�(�^�(�^�(�^�(�^�(_
�(A_�(K_�(Z_�(k_
D'&\'�['�['�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[~&�[x&�[q&�[l&�[_&�[U&�[U&�[b&�[m&�[n&�[&
                   7713: \�&\�&\�&\�&�[�&�[�&\�&\�&\�&\�&'\�&1\�&@\�&N\�&F\�&>\�&H\�&<\�&:\�&H\�&P\      'Y\
'c\'v\'~\"'v\*'x\6'p\<'e\2'[\/'U\,'>\('3\!'#\'\'\'\'&\
WH'�[F'�[J'�[_'�[a'�[m'�[y'�[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'�[�'v[�'h[y'][i'U[\'Q[W'K[I'D[C'B[F'F[N'M[W'U[`'][j'e[p'l[{'v[�'~[�'�[�'�[�'�[�'�[�'�[�'�[q'�[e'�[`'|[X't[T't[J'c[?'Y[8'S[;'a[6'j[1'l[-'c[('W['W['f['r["'~['~['|['['�['�[�&�[�&�[�&�[�&�[�&�[�&�[�&�['�['�['�['�['�[ '�['�[%'�[''�[,'�[4'�[9'�[<'�[D'�[C'�[='�[B'�[H'�[
'�&[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&�[�&t[�&e[�&[[�&F[�&@[�&H[�&a[�&W[&U[o&S[j&S[a&U[S&W[F&[[]&f[c&t[S&x[a&�[n&�[~&�[|&z[�&j[�&l[�&t[�&[�&�[�&�[�&�[�&[
4�&8[�&<[�&@[�&J[�&U[�&a[�&_[�&S[�&8[�&[�&[�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&[�&[�&'[�&+[�&+[�&+[�&+[�&-[�&2[�&>[�&H[�&H[�&B[�&8[
�&�Z�&�Z�&�Z�&�Z�&�Z�&Z�&pZ�&rZ�&{Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z�&�Z
z&�Zx&yZl&}Ze&}Zc&�Za&�Ze&�Zh&�Zj&�Zs&�Z|&�Z&�Z�&�Z~&�Z}&�Zz&�Z
h&Zd&Z`&Z[&�YZ&ZU&ZS&ZR&ZX&Z]&'Za&0Zj&8Zq&:Zz&<Z|&<Zw&6Zr&,Zo&%Zn&Zj&Zh&Z
R�'!\�'\�'\�'\�'\�'\�'!\�'7\~'-\x'\k'\h'1\o'J\y'c\'~\{'�\v'�\r'�\q'|\l'n\f'[\e'J\c'@\d'5\d'1\d'#\_'\K'\='
                   7714: \;'\0'\8')\>'@\D'P\M'c\X'|\d'�\g'�\['�\S'�\J'�\D'�\<'�\3'�\''�\%'�\('�\1'�\7'�\:'�\D'�\K'�\V'�\`'�\c'�\m'�\z'�\�'�\{'�\�'�\�'�\�'&]�']�'�\�'�\�'�\�'�\�'�\�'�\�'�\�'�\�'�\�'�\�'~\�'t\�'c\�'_\�'L\�'7\�'-\�''\�'!\
l4&�Z2&�Z'&�Z&pZ&^Z&YZ�%WZ�%hZ�%dZ�%WZ�%OZ�%@Z�%.Z�%'Z�%.Z�%BZ�%WZ�%bZ�%`Z�%QZ�%KZ�%MZ�%BZ�%6Z�%Z�%Z�%'Z�%!Z�%Z�%Z�%Z�%Z�%Z}%Z�%Z~%Zs%Zn%
                   7715: Za%ZS%ZY%ZW%ZV%!ZR%2Zb%8Zn%:Zu%<Z�%CZ~%IZy%OZ%]Z�%bZ�%bZ�%fZ�%vZ�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z&�Z&�Z &�Z3&�Z?&�ZI&�ZL&�Z=&�Z8&�Z6&�Z7&[,&[&&![&&6[7&/[B&[H&[T&[_&![h&'[n&[n&[n&[c&�Zg&�Zl&�Zj&�Z^&�ZO&�ZG&�Z=&�Z=&�Z=&�Z9&�Z8&�Z4&�Z
7�%�Y�%�Y�%�Y�%�Y�%�Y�%{Y�%{Y�%wY�%nY�%bY�%OY�%GY�%IY�%UY�%XY�%XY�%UY�%QY�%XY      &`Y&dY&jY$&uY'&�Y%&�Y#&�Y&�Y&�Y&�Y&�Y     &�Y&�Y&�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y
�%�Z�%�Z�%�Zx%�Zm%�Zb%�ZW%�ZO%�Z\%�Zl%�Z{%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z�%�Z
�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y�%�Y
G�$
                   7716: Z�$�Y�$�Y�$�Y�$�Y�$�Y�$�Y�$�Y�$�Yu$�Yd$�YV$ZK$ZS$ZT$ZT$ZV$*ZW$0ZT$6Z>$EZK$KZR$[Z`$^Zf$bZb$]Zj$GZy$MZ|$bZ}$nZ�$�Z�$�Z�$�Z�$�Z�$�Z�$�Z�$�Z�$�Z�$�Z�$�Z�$�Z�$vZ�$nZ�$vZ�$vZ�$jZ�$WZ�$@Z�$8Z�$0Z�$,Z�$,Z�$>Z�$MZ�$bZ�$rZ�$`Z�$OZ�$SZ�$UZ�$@Z�$6Z�$)Z�$Z�$Z�$Z�$Z�$Z�$Z�$Z�$Z�$
                   7717: Z
<�#Z�#Z�#Z$!Z$Z$Z$,Z$8Z$4Z,$'Z0$8Z1$IZ6$>Z;$,Z=$!ZC$ZJ$ZO$�YU$�YR$�YC$�Y6$�Y7$�Y4$�Y/$�Y-$�Y($�Y$�Y$�Y$�Y$�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#Y�#Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#�Y�#Z�#Z�#Z
�$Y�$Y�$Y�$Y�$Y�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$Y�$Y�$Y
�$Y�$Y�$Y�$�X�$�X�$�X�$�X{$�X
    R$�Xb$�Xk$�Xv$�X�$�X�$�X�$�X�$Y�$Y
�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X�$�X
�$�X�$�X�$�X�$�X�$�X�$�X
�$�X�$�X�$�X�$�X�$�X%�X
%�X%�X%�X%�X&%�X2%�X;%�X=%�XJ%�XO%�XD%�XJ%�XU%�X^%�Xf%�Xq%�Xv%�X~%�X�%�X�%�X�%�X�%�X�(k_�(}_�(�_�(�_�(�_�(�_�(`�(4`�(O`�(r`�(`�({`�(f`�(h`�(�`�(�`�(�`�(�`�(�d�(�d�(�d�(�d�(�d�(�d�(�d�(�d�(�d�(�d�(�d�(ie�(�e�(�e�(�e�(�e�(�e
                   7718: �(�e�(f�(f�(f�(f�($f�(0f�(2f�(,f�(9fn&lf&&lj&"lj&lk&
lg&lc&�k]&lX&�kM&l?&l5&l=&lL&l[&l_&ld&ln&l
�&�i�&�i�&�i�&xi�&ti�&li�&hi�&hi�&tiv&~iw&�i�&�i�&�i�&)i�&3i�&:i�&@i�&>i�&4i�&)i�&i�&i�&i�&)i�&rh�&th�&zh�&{h�&�h�&�h�&�h�&�h'}h'th'_h&'Ih�&Gh�&Yh�&nh�&rhp'�i'�i"'�i#'�i#'�i2'�i='riJ'YiI'MiO'@iQ'iP'iI'iB'i@'i8'i*'i''�h''�h0'�h:'�h@'�hI'�hL'�h['�hh'�hs'�hy'�h{'�hk'�hY'�hW'�hg'�hn'�hk'�hk'}hr'rhy'nh�'}h�'lh�'`h�'Mhi'Mhd'Bhn'8hz''h~'hu'h`'
                   7719: h\'hQ'hQ'hH'hG'�gH'�gI'�gH'�g7'�g/'�g/'h6'h:'%h@':h>'Oh/'Yh.'Ih-'8h)'#h"'h'h'h')h'6h#'8h"'Dh'Sh'rh'lh
'_h'nh'�h�&�h�&�h�&�h�&�h�&�h�&�h�&�h�&�h�&i�&i�&i�&�h�&�h�&i�&i�&i�&i�&i�&:i�&Di�&>i�&)i�&'i�&'i�&<i�&[i�&ci�&gi
'pi'�i'�i�'�h�'�h�'�h�'�h�'�h�'�h�'th�'lh�'dh�'zh�'�h�'�h�'�h�'�h+�',h�')h�')h�'>h�'Mh�'@h�'<h�'2h�',h�'h�'h�'�g�'�g�'�g�'�g�'�g�'�g�'�g�'�g�'�g�'�g�'�g�'�g�'�g�'h�'h�'h�'6h�'8h�'@h�'Kh�'Qh�'Yh�'_h�'nh�'xh�'jh�'fh�'_h�'Mh�'@h�'2h�',h�'h�'h�'h�'h�'h�'h�'�g�'�g�'�g�'�g�'h�'h�'h�'h\�&m�&m�&m�&�l�&�l�&�l�&�l�&�l�&�l�&ql�&dl�&Vl�&Cl�&9l�&1l�&$l�&l�&l'&l'�k'�k '�k'�k@'�kF'�kO'�k^'�ku'�k�'�k�'�k�'zk�']k�'Pk�'\k�'kk�'qk�'ik�'_k�'?k("k($k(/k!(k0(k=(�jK(�jQ(�jM(&kF(k9(3k/(Ak)(Lk"(\k(sk(�k
(�k
                   7720: (�k(�k�'�k�'�k(�k(�k(l($l ("l)(l4(l?(l=($l4(.l-(;l'(Il(Vl(^l(`l(Nl�'Ll�'Nl�'gl�'ql�'sl�'�l�'�l�'�l
(�l(�l!(�l+(�l,(�l1(�l)(�l#(  m1�(9f�(Kf�(jf�(qf�(sf�(�f{(�f�(�f�(�f�(�f�(�f�(�f�(�fu(�fj(�fr(gw($gt(*gc((gd(Agb(\gZ(gc(�gh(�gu(�gy(�g�(�g�(�g�(yg�(sg�(lg�(bg�(Og�(>g�(Kg�(Gg�(4g�(g�(g�(g�(g�(.g�(Sg�(bg�(rg�(�g�(�g�(�g�(g��()h�(6h�(Bh�(_h�(vh�(�h�(lh�(jh�(}h�(�h�(�h�(�h�(�h�(�h�(�h�(�h�(�h�(�h�(�h(ix(i_(+iP(3iE(:iA(+iI(�hD(�h;(�h7(�h4(�h0(�h)(�h(�h(�h
                   7721: (�h(�h(�h�'�h�'�h�'i�'i�'i�'i�'i�'i�'8i�'-i�'#i�'%i�'%i�'Hi�'[i�'ji�'ri�'�i�'�i�'�i�'�i�'�i�'�iz'�ir'�iq'�im'�if'&j^'j`'ja'je'!jf'7jW':jN'DjF'HjE'ejG'pj1'~j8'�j/'�j%'�j#'�j'�j'�j'�j'�j�&�j�&�j�&�j�&�j�&�j�&�j�&�j�&  k�&k�&k�&+k�&;k�&Hk�&_k�&sk�&vk�&uk�&sk�&�k�&�k�&�k�&�k�&�k�&�k�&�k�&�k�&�k�&�k�&�k�&lu&&lg&?lj&`lu&ml�&yl�&�lx&�lj&ql^&VlZ&;lN&=l=&9l4&Cl4&Jl4&Ll4&Vl)&kl$&{l#&�l#&�l!&�l&�l&�l#&�l!&�l&�l       &�l�%�l�%�l�%�l�%�l�%�l&�l&�l&�l&   m&m�#ss$qs$qs$is$Zs/$LsB$9sT$*s[$s[$s^$�rj$�rv$�r}$�r�$�r�$�rr$�rd$�r^$�rS$�rG$�r@$�r4$     s.$s#$"s       $Ks$Xs�#ms�#ss+Z$orc$|re$zri$ork$ark$Zrm$Crr$1r~$r�$r�$   r�$&r�$�q�$�q�$�q�$�q�$
r�$     r�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�q�$�qx$�qu$�qm$r`$(r]$9r[$RrZ$krZ$or&%Dq%@q�$;q�$)q�$"q�$q�$1q�$@q�$Rq�$Wq�$Vq&%Dq'B%�pC%�pL%npU%apd%Jpq%Bp}%8p|%'p{%
                   7722: p%�o�%�o�%�o�%�o�%�o�%�o�%�o|%�os%�oj%�oh%�od%|ob%to^%lo^%_oY%WoR%SoN%YoT%roI%�oC%�oD%�oD%�o.%p%Lp%ap'%tp0%|p;%�pB%�p
                   7723: (%o'%o+%o,%�n(%�n %�n%�n%o%%o(%o�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m
(�m!(�m(�m(�m�'�m�'�m�'�m(�m(�m(�m(�m(�m(�m�(�p�(&q�(q�(%q�(9q�(>q�(Nq�(Vq�(vq�(�q�(�q�(�q�(�q�(�q�(&r8�%no�%_o�%Uo�%Fo�%<o�%0o�%#o�%o�%o�%o�%�n�%�n�%�n�%�n�%�n�%�n�%�n&�n&�n&{n&bn'&Kn,&4n0&#n1&n5&n8&n:&�m5&�m4&�m7&�m8&�m0&�m'&�m&�m&�m&�m#&�m"&�m&�m&om&\m&Rm&Tm&Tm&\m#&um'&�m)&�m8&m?&}mL&umX&`mr&Gmw&;m�&m5#(        m(m ((m)(7m'(Cm.(Mm2(Vm;(ZmG(XmO(Om`(Omn(Tma(bmR(qmD(�m8(�m/(�m-(�m/(�m$(�m(�m(n(n
(n(0n�'>n�'Yn�'yn�'�n(n   (dn(En(8n$(Cn"(Sn=(WnI(EnN(6nT(GnT(`nM(pnd(�nq(}ns(rnz(nn�(Un�(Mn�(Mn�(^n�(hn�(pn�(}n�(�n�(�n�(�n�(�n�(o�(o�(-o�(4o�(Io�(bo�(xo�(�o�(�o�(�o�(�o�(�o�(�o�(�o�(�o�(�o�(�o�(�o�(�oB&m&&m
                   7724: &6m&Am�%Qm�%`m�%nm�%om�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%�m�%n�%(n�%2n�%n�%n�%6n�%Kn�%Un�%\n�%`n�%dn�%yn�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%�n�%o�%o�%-o�%:o�%Io�%Fo�%Bov%Ioo%]oo%jox%jo�%fo�%lo�%ro�%o�%�o�%no�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�s�&�se#�yi#�yk#�yk#�yk#�yk#�yf#uy]#iy\#Zy[#AyS#FyO#Vy=#Xy3#ey6#wy<#�yC#�yL#|yX#�y^#�ye#�y=#=yC#7yH#(yI#yN#yQ#�x[#�xh#�xe#�xc#�x[#�xO#�xE#�x@#      y@#y=#-y=#=yR#�xR#�xR#�xV#�x_#�xj#�xo#�xu#�xp#�xc#�x[#�xX#xxY#ex[#[xL#XxK#[xF#kxD#zx>#�x7#�x4#�x?#�x@#�xO#�xR#�x�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v#w~#w�#1w�#1w�##w�#w�#
                   7725: w�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#�v�#zv�#jv�#Sv�#@v�#0v�#v�#v}#/v}#Mv{#dv|#zv#�v#�v�#�v�#�v�#�u�#�u�#�u�#�u�#�u�#�u�#�u�#�u�#�u�#�u�#�u�#�u    �&Gt'It'Ct'6t�&.t�&8t�&Et�&Gt�&Gt��.,��.��.��.ʋ�.��/��/��/j�$/p�3/{�>/{�F/��R/��_/��n/��r/ދv/��/��/ދ�/Ƌ�/ċ�/ċ�/Ћ�2�/0��/��/Ԋ�/���/���/h��/C��/��/剥/���/���/w��/I��/��/���/݈�/Έ�/Έ�/Ȉ�/���/���/���/h��/A��/��/�/ԇ�/���/��/n�x/A�u/*�v/�v/�e/�]/��Y/��S/�Q/p�T/`�O/[�H/K�D/'�</�3/߅)/��/��/��/h��.Q��g_,�zS,d�A,��0,��+,ԅ",�,�,@�,C�,8�,Q�,p�,�$,}�!,��,��,��!,Ԇ+,�5,�A,�H,�S,:�\,f�[,��\,��],��h,��n,ć_,ԇT,؇M,��I,��R,n�G,Y�?,8�/,.�),6�-,d�7,��6,��>,҇J,�N,�B,�8,�2,߇ ,ԇ,ԇ,��+���+��+��+��+��+0��+K��+W��+<��+��+��+·�+ć�+ۇ,݇,Ї,��,��,{�,[�!,:�!,�!,�,�,��+��+��+Ά�+���+���+���+l��+`��+S��+I��+I��+U��+r��+p��+U��+@��+2�~+,�e+%�[+�>+�(+��+݅+ƅ+���*���*��*����*���*���*���*���*��*��*ȅ�*���*���*���*���*ͅ�*Ӆ�*�*��{*��*��*3��*K��*b��*��*���*ʆ�*݆�*醻*���*���**��*��*��*��*"��*.��*8��*G��*T��*^��*X��*K��*A��*2��*,��*8��*S��*q��*���*���*ć{*ۇo*��k*�f*&�d*(�f*,�d*<�_*U�X*p�R*��R*��[*��b*��a*��`*��T*��K*��@*��:*̈5*�)*��%*�#*)�!*@�*O�*[�*f�
                   7726: *z�*��        *��*��*��*ʼn�)ɉ�)Љ�)ډ�)ډ�)��)���)��)��)+��)6��)3��)'��)-��)6��)D��)W��)p��)|��)t��)x��)z��)���)���)���)���)���)���)���)���)��)ˊ)؊})�x)��r)�j)�h)�a)�[))�L)=�L)N�S)_�G)i�E)|�?)��8)��6)��3)��/)��&)��)��)ŋ)ϋ�(׋�(׋��(       ��(
��%�/쒉/ܒ�/Œ�/���/r�y/W�k/=�i/-�l/�a/�N/
                   7727: �J/�W/ёe/��d/��w/��v/g�/[��/J��/5��/�}/��//ː�/���/���/k��/N��/)��/ ��/�v/��r/�l/͏n/��m/��m/~��2n/��l/y�o/r�r/[�s/I�p/0�o/�o/��o/�k/؎e/��a/��a/��a/r�a/Y�^/D�`/*�g/�p/�y/�/ፈ/̍�/���/���/���/w��/t��/��v/��r/v�o/W�c/M�X/O�M/O�@/S�8/Q�//I�)/4�)/�)/�&/� /ʌ/ƌ/��/��&/���.w��.n��.S��.,��&�/d���/#��/���/܌�/���/���/���/���/��/��v/��l/��i/��n/�s/��/0��/M��/^��/���/���/���/d���(���(Ώ�%�(���(ё  )��)��0)��7)��?)n�J)>�K)�X)�f)�m)ǐj)��s)���)c��)c��)|��)z��)t��)a��)H��)F��)M��)O��)K�*>�
*+�$*)�6*)�I*%�U*�^*�l*�{*���*Џ�*���*���+�*���*���*���*㏶*��*D��*r��*���*��u*��\*ːO*ɐ8*А"*ܐ*ΐ*��*���)ː�)��)�*�*��*�&*��)H��)i��)���)���)ɑ�)Ց�)�)��)9�r)T�e)g�d)��R)��K)ǒ[)˒s)���)���)���)Ē��)쒮)��       �)���)��)ْ�)��*��"*��=*��2*��!*��)�(
��(�)-�
)9�)N�/)\�6)u�?)��B)��G)��I)ŒL)ٌL)�M)��L)�O)$�P)9�N)M�T)^�H)w�F)��F)��@)��?)��2)ҍ/)ߍ0)�/)�*)��))�#)�))�.)(�))0�),�)4�)A��(V��(f��(q��(���(���(���(��)��)��$)��+)��0)��;)��?)��B)��=)Ď7)Ύ')� )�)�)�),�)@�)S��(d��(r���/���/��/��/"��/ ��/���/���)Ē�)�)&��)���)���)���)撺)���)���%!*�*�*�
*3�*?�**R�7*~�9*��/*��(*��(*͓#*�!*�*4�*`�*��*��
*ʔ�)��)��)$��).��)6��)U��)y��)��z)��l)��_)ƕO)�E)��7)�-)D�)`�)l�)v��(���o-�q-��t-�π-�ό-�ώ-tϔ-Lώ-B�x-3�r-1�t-[�i-v�^-��W-��W-��`-��e-��o-��D�/�ΰ/�Ϋ/�Ϋ/�Υ/�Ξ/tΈ/t΀/~�x/��j/��]/z�U/��O/��?/��//�� /��/��&/���.k��.R��.-��.��.�ͳ.�ͤ.�͒.Έ. �t.-�g./�U.)�=.&�1.7�(.+�.D�.i�.|�.���-���-���-���-���-���-���-���-���-��-?��-VϾ-ZϷ-Bϼ--Ͻ-ϼ-�α-�Ψ-�Τ-Ϣ-$ϥ-Bϡ-Rϙ-[ϑ-�Ϛ-�ύ-�υ-�υ-��z-��x-Ѓ-&���y-m�v-@�g-=�W-9�P-B�C-B�?-5�;-�:-��9-��:-��@-��=-[�2-)�,-�&-��,-��F-��[-��d-��k-~�r-R΁-5Ό-Η-�ͨ-�ͷ-���-���-���-���-���-q�.a�.@�#.�).�8.
�C.�N.�Z.�h.�q.'�}.$ͅ.;͑.D͔.V͡.]ͤ.Zͬ.Nͺ.B��.H��.H��.+��.���.���.���.���.q��.P��.7��.�/��/���.���.���.���.���.���.���.c˵.Nˮ.H˥.N˜.L˙.Rˑ.Xˊ.]�~.Zˁ.D�|.9�o.H�h.P�W.T�I.R�=.X�8.e�+._�$.?�.�.�
                   7728: .      �.��
                   7729: .��.��.��.��.e�
.B�.9�.N� .x�.��.��!.��$.��+.��*.��*.�(.�(.�3."�I.'�U.'�f.&�t.�}.�ʀ.�ʊ.�ʘ.�ʘ.�ʥ.�ʷ.���.&��.���.���.
��.��.L�/��/��/��/��*/      �//'�1/R�//q�)/��/��/��/��/ �/D�/x�/��-/��7/��J/��[/��q/�͌/�͡/�ͯ/���
                   7730: �/׵/�֧/�֙/�֏/�֊/��/�օ/�ֆ/�ց/
��^�.+��.&��.���.���.���.���.��/~�/x� /q�"/��/��0/��@/��H/��W/��j/��u/��y/��~/�փ/�֌/�֘/�֛/z֛/P֘/1֔/֍/֎/�Պ/�Ջ/�Չ/�Ո/eՊ/5Ղ/�{/��{/��u/��l/��g/e�e/H�X/ �M/��D/��>/��1/��+/o�&/L�&/7�"/(�"/A�/D�/&�/�/
�/��/���.���.k��.F��."��.�ѵ.�Ѱ.�ѩ.�њ.�ъ.�р.sь.Fћ.?ѵ.$��.��.��.���.���.���.�/L�/e�./|�@/��J/��b/��c/��_/��l/��t/�}/(�z/A�v/T�f/T�w/iҐ/kҦ/k���/aҵ/Nҵ/-���-&Ѝ-LЇ-m�y-m��-^.�h.��q.��t.��|.�݇.zݒ.Zݖ.Eݖ.Cݓ.;ݛ.ݠ.�ܧ.�ܬ.�ܰ.�ܵ.uܧ.^ܗ.Nܙ.=ܢ."ܮ.ܸ.��.(ܿ.E��. ��.���.���.���.���.���.���.���.���.���.���.���.z��.R�&/9�&/$��.
�&/��/��/��/���    8/��)/��'/��</��+/��/��
                   7731: /��/��/����/�״/����/
׀//׋/Xו/Nם/mמ/�פ/�׫/�מ/�ג/�׊/�ן/�ׯ/�׳/���F/��/��/��/���.���.  ��.&��.=��.V��.X��.L��.J��.;��.1��.&��.,��.3��.A۸.A۲./۞.-ۓ./ۍ.
ۇ.�ڋ.��}.��v.��v.�ڀ.�ڍ.�ژ.�ڤ.|ڪ.aڳ.Jڻ.1ں.
��.���.���.���.���.m��.P��. ٸ.
ٹ.���.���.���.���.w��.o��.V��.(�/��
                   7732: /��/���.���.���.���.w��.���.�׽.�ש.�ל.�ה.eכ.?׮.׹.��.-��.+��j.��d.��Z.��R.��H.��C.u�8.w�..^�4.J�+.&�.�    .�.&��-���-���-���-���-��-��-��y-�`-3�T-P�E-o�=-��9-��/-���,��,��&,~��+g�&,V��+;��+.��+��+�,7�,=�/,X�B,i�V,��i,��v,�����,���,���,���,b��,L��,&��,       �-��   -��-��*-|�3-e�@-J�M-?�Z-$�U-�N-&�E-��B-��B-��B-��=-|�5-g�+-G�-J�-b�-R�-9�-�-��,���,���,���,��-��-��(-��/-��2-��:-��M-��V-��b-��y-��-��-��-��-��-���-���-��-��-��-�.       �.��/.��A.��B.��C.��K.��[.��l.��.��.��.&�.&�.V��.y��.~��.o��.C�.�.��.��.��.��.i�.I�. �.��.��.���.���.��t.z�{.Z�e.N�O.H�;.-�;.F�3.��0.��..��'.�.�./�
                   7733: .R��-P��-A��-��-��-��-���-���-���-���-o��-F��-A�q-1��-"��-&��-�ߓ-�ߛ-�ߟ-�߮-s��-w��-z��-m��-`�.T�.A�.-�.�.��.��&.��(.��;.��:.��C.z�N.P�U./�^.��
Y/��[/��]/��^/��Y/��[/��_/��b/��b/z�Z/`�O/C�D/�8/���/��/���.��.1��.^��.y��.���.���.���.���.���.���.��.��.
��. ��.*��. �/�#/�4/�B/��O/��Y/����/��/��{/��~/{�/{�/o�/b�/P�}/R�}/A�/;�/9�/&�/�/��/���o�/��/��/��/��/��/��y/��z/k�/^�/d�/^�/P�/5�/3�/E�/3�/�/��/��/��/��/��/��/}�/s�~/w�u/��l/��p/��o/��w/��v/��{/�/�w/$�i/,�j/�j/��c/��[/��S/��S/��X/��[/��[/��Y/��M/��Q/��U/��H/��>/��F/u�P/V�M/N�E/R�>/V�;/K�:/I�8/G�5/A�//=�6/&�6/      �8/��@/��8/��5/��1/k�//G�+/*�%/�%/��+/��1/��,/��)/��(/��"/}�/g�/;�/�/���.���.���.���.���.q��.X��.;�.�.�.��.��.��.��.��.��.|�.��.��.m�y.b�s.V�}.P�q.3�i.�d.��].��a.��q.��j.����/-��'-��-�-7�-^�-��-��-��-��-�-5�-X�-=�-I�-^�!-y�&-��/-��2-��1-$�;-R�@-��F-��R-��R-��^-�d-7�e-I�]-y�m-��}-��-��w-��{-��s-��|-��- �-�- �-7�-\�-y�-��-��-���-���-���-     ��-�-2�-��-��-��|-��u-��m-��a-��Z-u�O-T�L-�F-�:-�2-�)-��(-��-��-��-��
-w��,`��,I��,C�,J�,R�,V�,��,��s,q�Z,V�F,X�C,J�:,7�#,=�,5��+T��+\��+1��+��+��+���+���+���+���+}�+b�+L�+C�+
�+��+��+��z+^�+^�+R�+;�+$�+��+��+��+��+��+��+(��+J��+b��+���+���+��,��,��,��/,
�=,�=,�B,��R,��m,��j,��^,s�O,?�<,1�8,��1,��/,��&,     �,&�
                   7734: ,��,��%,��-,��%,��",g�,.�
                   7735: ,�,��,��,��,���v,��,��,��,��,����(g��(m��(���*��*��
*��*��*��*���)���)x��)e��)P��)-��)
                   7736: �)��)��)��)��)��)��n)��`)��J)��E)��-)��")��      )��)   �)�)3�)U�)z��(��� �(���(��)��)��2)��I)�Y)�f)9�m)B�n)@�{)5�):�)N�)U�)Y�)Y�)a�)t�)���)���)|��)t��)p��)Y��)H�*:�*-�*�*�*��*��*����/`�/M�/=�/*�/"�/(�f/*�Y/0�M/C�B/P�M/7�c/"�l/
�s/��z/��/��/��/��/��/��/��/��/��/��/��/��/w��
                   7737: �/��/k�/P�/4�/�/�/�/
�/
�/���/T�/T�/C�/*���/�/��/��/��/��/��/��/��/��/��|/��/��/��/��/���^e+u�o+\�k+E�q+7�v+"�|+�+    �+�+��+��+��+��+���+���+���+���+���+}��+o��+k��+o��+d��+R��+M��+^��+`�,k�,��,��,��,��),��0,��5,��;,��D,��H,y�J,o�Q,i�X,d�a,V�j,P�s,M�y,V�,`�,m�,i�,R�,G�,E�,7�,,�,�,�,�,�,�,��,���,��,��,��,��,��,��,���,���,���,���,���,���,���,���,���,���,���,���,���,���,���,u��,o��,b��,V��,E��,5��,��,���,���,���,���,���,���,���6�,���,���,���,���,���,w��,m��,X��,G��,?��,2��,�,�,��,��,��,��,��,��v,��l,��d,��Y,��J,��L,��A,��4,��<,��;,��4,�0,3�,A�&,R��+{��+���+��+��+�+$��+;�n+R�Y+o�K+��A+��2+��,+��+��+��+� +6�+C�+K��*0��*=��#N)+�Q)-�I)8�C)H�F)]�G)��O)��E)��?)��>)&�=)�5)1�4)B�9)]�=)e�.)[�))l�&)��#)��2)��%)��)��)��)��)�)!�
):�)S��(a��(r��(|��(���(���(���(����(��(��(��A�(F��(O��(]��([��(c�)h�)x�!)v�))z�)�� )��$)��/)��7)��=)��F)�P)/�W)@�\)Q�])~�h)��i)p�p)l�q)v�u)��})��)��)��)��)��)~�)x�)n��)l��)l��)r��)n��)p��)f��)U��)F��)H��)Y�*f�*l�"*r�2*t�@*��O*��e*��v*��*��*��*��*��*���*���*���*���*���*|��*r��*r��*t��*=���(a��(U��)a�)W�!)U�%)[��
))�)1�)8�)D�)J�)<�)+�)#���(���(��)��)��)��)��)��)��&)���(���(���(���(���(���(����(:��()��(���(���(���(���(��)��)��)��   )�     )3�)R� )k�&)~�')��4)��L)��I)��=)��>)��K)��Y)��a)|�l)��h)��b)��\)��Q)��I)��J)&�L)�N)+��;+9�9+�;+�E+�J+
�J+��N+��S+��Y+��]+��c+��o+��y+��z+o�+\��+E��+9��+G��+X��+u�z+��o+��e+��]+��T+�Y+(��w+6�+.����+;��+��+��+&��+��+��+��+���+���+���+���+���+��&,��,��,��,q��+\�&,9�,,�,6�',4�/,�1,�6,�.,(�*,G�5,A�E,9�J,�R,�^,�l,��k,��g,��q,��o,��j,��s,��|,���,���,���,���,���,���,���,���,���,���,���,���,���,���,u��,^��,`��,f��,m��,y��,���,���,u��,b��,V��,^��,V��,C��,O��,K��,*��,��, �     - �-C��,\��,w�-f�-K�-0�-,�'-,�,-�/-��0-��<-��B-��9-��C-�V-       �X-�S-��Y-��`-��d-��o-��t-��z-��}-���-���-���-���-���-���-���-���-}��-i��-R��-M��-E��-*��-&��-"��-7��-6��-�.�.��.��.��.��.���-�.i�.X�.?�.`�
.}�.��.��.��.��.��'.s�+.b�1.q�6.Z�=.u�J.y�T.o�Z.Z�].?�b.7�g.X�i.7�x.,�{.�n.�[. �M.�P.��].��Y.��f.��w.��v.��.��.���.���.���.���.���.���.���.h��.P��.7��.2��."��.��.��.��.;��.X��.m��.��.���.���.���.���.���.f��.M��.E��."��.��.(��.��.���.���.���.���.���.�/�/     �/�/��!/��$/��*/��2/��</��D/��N/��W/��]/��W/��G/��B/��H/u�:/m�@/`�8/G�</9�C/(�K/A�Q/R�\/^�d/h�e/V�g/A�]/(�K/�C/��:/��1/��//��;/��J/��N/��]/�i/     �t/
�z/�/��/��/��/��/��/��/��x/��g/��W/��n/��/�/`���*���*���*w�+y�       +`�+^�+K�++I�-+4�*+�/+�7+��G+��O+��W+��M+��Q+��X+�e+u��D�.X�/O�&/O�&/?��.6��.2��.9��.2��.(��.2��.C��.;��.$��.��.���.��.���.���.���.���.���.���.���.��.��.(��..��.?��.O��.O��.^��.k��.q��.k��.���.���.���.���.���.���.���.���.��.&�{.A��.G��.E��.E��.4��.(��.��.���.���.���.���.���.���.���.���.���.y��.y��.k��.k��.h��.f��.^��.X��#�.&��.��.��. ��.��.��.   ��.���.���.���.���.���.��/��/���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.��. ��.,��.*��.&��-/?�-/2�//2�7/,�@/&�@/�=/�:/��2/�$/�/�/�/(�/;�/P�/d�/k�/f�"/P�&/A�-/?��8.��9.��>.��E.��A.��B.��G.��M.��D.��;.��7.��-.��%.��#.��(.��..��3.��5.��8.���/-/s�//�3/��1/s�6/k�=/h�@/}�B/i�H/u�K/m�P/\�K/E�S/2�[/C�\/?�_/2�Z/�_/
�n/�n/�c/�m/�o/��n/��c/��_/��Y/��U/��J/��>/��4/��'/��$/��$/�,/ �)/ �/4�/P�/i�/��/��/��/}�"/m�)/d�)/k�-/s���/��/�/y�/i�/b�/\�/M�/C�/9�/9�/�/�/�~/*�t/,�p/A�l/`�j/{�k/��n/��t/��s/��x/��}/��/����/$�/2���/��/��/��/��/���
�/��/��/��/��/��/��/��/��/
�/(�/0�/"�/ ��T�*���*���*���*���*���*���*���*���*���*���*���*���*���*���*���*���*��*��*��*��*��*��*
                   7738: ��*��*+��*@�*B�*8�s*!�k*%�Y*2�F*:�9*@�'*:�*2�*4�*E�*d�*`�*j��)n��)h��)h��)b��)d��)f��)`��)]�)Q�r)S�f)_�c)D�O)D�@)M�4)j�')��!)��)��)��)�&)��)��)��)��)v�&)W�7)>�E)4�T))�[))�Z)�R)�I)�L)��L)��=)��.)��&)��){�)z�)��)��)v��(M��,)d�/)|�4)��,)��%)��)��)��)��)���(���(x��(a���(U��(j�)r�)a��%)[�()a�,)d��1�*���*��+��  +��
+��+��+��+��+��+��+��+��+��#+�%+q�+l�+m�+^�+Q�+K�)+Q�)+I�)+;�1+2�8+.�?+"�B+�F+�F+��L+��O+��G+��;+��1+��;+��A+��H+��L+��S+��V+��\+��^+}�e+s�e+b�_+T�S+G�I+9�A+8�;+9��Y+(�j+=�w+6��+.�x+R�+d��+b��+;��W+=�X+0�\+.�[+�`+�f+�k+��n+��n+��h+��c+��Y+��U+��Q+�G+$�O+6�W+=���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���   ])��p)��p)��p)��k)��d)��^)��^)��])����(���(��)��)��
)��)��5)��3)��!)}�+)u�;)o�H)=�K)Z�E)��L)��S)��G)��')��)��
                   7739: )��(
����(Q��(Q��(6��(��(&�)2�
                   7740: )8�)8�
)K�)`�)h�)w�%)}�.)m�5)T�8)K�>)V�J)I�^)�\)9�M)d�O)y�m)��q)��q)��q)��u)��m){�g)`�t)`�})b�{)m�|)���)���)���)w��)X��);��) ��)��)���)���)���)u��)V��)M��)M��)(��)!��)6��)0��)���)���)���)���)��)���)���)���)���)      ��)��)��)8��)C��)I��)^��)���)���)���)���)���)���)���)���)��)4��)Q��)o��)���)���)���)���)���)���)y��)h��)j��)j�*f�*{�       *��*��*��*s�*q�,*M�,*9�%*&�%*
�%*��(*��1*��5*��0*��/*��4*��;*��A*��@*��<*��9*�7*�7**�8*=�7*Z�7*o�;*u�C*h�N*o�Z*}�_*o�W*X�L*=�T*A�]*?�]*&�]*�a*��U*��P*��L*��V*��^*��d*��m*��x*���*��x*��d*��f*��q*��}*���*���*���*��*���*���*���*���*���*���*���*���*���*���*u��*`��*C��*0��*��*���*���*���*���*���*���*���*���*��*6��*$��*2��*C��*=��*!��*��*���*���o*��q*��{*���*���*���*��*   �{*     �t*     �o*�n*�o*��� *��"*��&*��+*�.*��/*��0*��'*��"*��
                   7741: P*�P*�U*�W*�Y*U*O*M*�M*�P*�>*�=*�A*�K*�X*�c*�k*�t*�v*�l*�f*�`*�[*�X*�P*�L*�G*�@*�<*�>*�>*�O*�P*�Q*}W*]*�e*�k*�o*�w*�z*�x*�k*�c*�Z*�Q*�O*�O*�s*fu*`v*lx*yy*�r*�i*�c*xe*li*jo*js*f*�&*.*�1*�-*�'*�$*�$*�*�*�*�*�
*�*�*��)��)��)��)��)��)��)��)��)�*�W)�Y)�X)�U)�P)�H)�B)&;)�/)�$)�)�)&
                   7742: )&)�)�)��(��(��(��(��(�)�)�)�)�)�!)�*)�1)�4)�7)�;)�C)�P)�W)�&&S+�
&�    -�
�,�
�,
�,n
�,d
�,O
�,=
�,6
�,8
-?
-4
-
 -
-�-�"-�-�-�-�-��,��,�,n�,d�,Z�,S�,S�,X&-f-s-u -f-C-#&-       -�   -�-�-�!-�-�-w-Z-C-:+-89-:I-AS-KU-:S-(]-\-�
                   7743: L-�
                   7744: D-�
                   7745: 6-�
                   7746: .-�
                   7747: (-�
                   7748: -�
                   7749: -�
                   7750: %-y
                   7751: .-}
                   7752: /-K
                   7753: 7-C
                   7754: ?-:
                   7755: C-$
                   7756: E-�    ?-�     6-
                   7757: &-4
                   7758: -G
                   7759: -U
                   7760: -K
                   7761: -:
                   7762: -
                   7763: -
                   7764: �,
                   7765: �,
                   7766: �,
                   7767: �,�    �,�     �,�     �,�     �,�     �,�     �,�     �,}     �,o     �,Z     �,`     �,s     r,^     s,G     {,=     f,<     U,G     P,b     A,b     =,o     6,w     /,�     *,�     (,�     ,�     ,�     ,�     ,�     ,�     ,�     �+�     �+�     �+
                   7768: �+*
                   7769: �+<
                   7770: �+Q
                   7771: �+Q
                   7772: �+d
                   7773: �+y
                   7774: �+
                   7775: �+�
                   7776: �+�
                   7777: �+�
                   7778: �+$�+M�+^�+y�+��+��+��+�|+�u+�d+J+OC+{?+�5+�>+�7+�C+
G+C
M+d
S+}
R+�
S+�
y�/!�/:�/I�/\�/l�/��/��/��/��/��/��/��/��/��/��/��/��/��/�/(�/M�/<z/*x/:r/,g/:m/Uu/fo/sq/�l/�g/�\/w^/�_/�Y/�R/{V/�Y/�Q/�O/�N/�L/�@/�</�7/�5/�1/�8/
                   7779: </%1/I//>./%,/&/!/!//8/K/G/Q/j/�/�/w/b/��.��.��.��.��.��.��.��.��.��.��.��.�.%�.,�.8�.C�.^�.j�.r�.��.��.��.��.��.��.��.��.��.��.�.�.#�.%�.&�.:�.W�.W�.p�.��.��.��.��.��.��.��.
                   7780: �.�.�.%�.>�.K�.W�.`�.h�S+�
P+�
Y+�
]+�
m+�
s+
�+:�+w�+��+��+��+��+
�+C�+\�+w�+u�+u�+��+S�+A�+
�+��+��+��+�+��+��+�,�,��+�+$,*,:,=,?(,G1,M4,d0,}+,�2,�5,�4,�0,',!$,E+,U5,S<,Q>,%E,�N,�N,�[,�R,y\,ZV,:V,�^,�u,�r,�c,�h,k,<m,\x,Zz,V�,E�,.�,�,�,��,��,�,�,0�,2�,?�,A�,M�,X�,p�,��,��,��,��,��,��,
                   7781: �,%�,8�,O�,Z�,p�,��,��,��,��,��,O�,4�,Y�,M�,I�,j�,r�,{�,\�,0�,�,��,��,��,��,�,:�,8�,�,.�,6  -E-C�,--&-- --��,��,��,�-��,y�,p�,d�,S�,? -V-S-l-�%-�3-�)-u)-b--V5-h8-s>-{>-�6-�:-�=-�F-�Q-�N-�O-�U-�H-�M-uF-^J-Q2-2.- -�-�-�-�-�-��,��,��,��,��,��,��,��,��,��,��,��,��,��,��,}�,yy,y�,b�,`�,:�,<�,,�,�,       �,�
�,�
�,�
�,�
�,�
-�
-�
-�
-�
   -�
��.h�.}�.��.y�.��.�x.�l.�x.��.��.��.�|.�v.�i.�h.�q.x.,|..{.>v.<q.Ai.2d.(i.?h.Il.\l.{g.�d.�l.�q.�s.��.��.�}.��.��.��.��.��.��.��.��.��.��.�.�.�.�.(�.8�.0�.:�.I�.Y�.U�.:�.(�.�.
�.%x.�s.�g.�d.�T.�P.�F.�K.D.N.,D.C=.A6.U-.h$.�(.�.�.�
.�.��-��-��-��-��-��-��-��-��-�-�-�-0�-4�-(�-%�-<�-8�-G�-E{-Qm-Y|-`p-n�-yq-�d-�Z-�Q-�E-�>-�>-�9-�<-�M-�<-,-�--4-09-KJ-p=-u4-l/-b'-S-`-`-`-}     -��,��,��,��,��,��,�-�-��,��,��,��,�,�,.-C -O-`�,d�,b�,�,d�,j�,{�,��,��,��,��,�&-� -�
-�-�#-�,-u7-W5-�9-�4-�?-�I-�8-�?-�6-�(-�)-�"-�-�-�-
                   7782: -��,��,�,�,�,'�,6�,>�,'�,�,
                   7783: �,�,
                   7784: �,�,�,)�,8�,E�,Q�,b�,t�,\�,u�,��,��,��,��,��,��,��,��,�,�,%�,0�,U�,>�,8�,<�,*z,4�,0�,E�,S�,l�,ULz,4s,Ek,S_,UU,h_,X,�a,�e,�V,�\,�[,�c,
                   7785: R,B,)F,8,1,�,�,��+��+��+�+��+��+��+��+�+.�+K�+B�+�+��+��+��+��+��+��+�x+�u+�|+�+:x+<r+m+�e+�U+�S+�C+�>+�>+�:+�?+;+5+-++++!+8-+[(+^+K+S+f+^  +6�*6�*W&+u+�+�+�&+��*u�*h��*h�*H�*H�*H�*H�*L�*c�*i�*n�*��*��*��*��*��*��*��*��*��*��*��*��*�*)�*/�*�*��*��*��*��*�{*�a*�O*�G*�<*�+*�#*�*�
*�*��)��)��)��)��)�)�)�)�)�)�)�)�)�)!�)'�)/~)3y)3s)5j)9c)9U)5P)5H)DG)UI)_B)kB)�E)�H)�D)�>)�4)�3)v%)i)c)g)c)]&)])])p&)x)�&)�)�)&))))'�(F�(p�(��(��(��(��(�     )�     )�     )�)�")�))�/)�7)�:)�B)�K)�=)�6)�<)�H)�R)�])�])�W)�E)�<)E)N)[)_)%_)'b)+c)-e)+n)|)��)��)��)
                   7786: s)+s)Fj)ai)ll)~s)gy)Uy)n�)@�)!�)�)H�)[�)W�)N�)Y�)n�)��)��)��)��)��)��) �)! �)- �)J �)N �)P �)W �)Y �)U ~)N {)i {)� {)� {)� |)� ~)� })� y)� �)� �)� �)� �)x �)r �)n �)z �)� �)� �)� �)� �)� �)� �)� �)� �)� �)� �)!�)!!�)!�)!�)!!�)8!�)H!�)Q!�)]!�)h!�)6!�)� �)� �)� �)!�)J!�)g!�)r!�)�!�)�!*j!*[!*r!*p! *�!.*�!7*�!A*�!N*_!X*c!]*p!T*�!I*�!I*�!E*�!E*�!O*�!V*�!Y*�!a*�!^*�!i*�!q*�!q*�!q*�!w*�!�*�!�*�!�*
                   7787: "�(k�(a�(c�(t�(��(��(��(��(��(��(��(��(��(��(��(t�(k��*�"�*�"+�"+�"+�"$+�"A+�">+�"J+�"a+#v+�"q+#�+#�+#�+#�+#�+�"�+�"�+�"�+�"�+j"�+6"�+p",�",�",y",K","&,0"",S"0,�",�",�",�"�+#�+:#�+h#�+{#�+�#�+�#�+�#&,�#,�#,{#1,U#5,h#:,h#/,}#A,�#Q,�#V,�#`,�#l,�#q,�#�,�#r,�#�,�#�,�#�,�#�,�#�,�#�,�#�,�#�,�#�,�#�,
                   7788: $�,6$�,!$�,)$�,$�,$�,6$�,:$�,f$&-d$
                   7789: -I$-0$-.$-$-6$-_$-x$/-U$/-}$;-�$M-�$\-x$W-:$`-M$j-f$|-B$�-+$�-)$�-%$�-]$�-�$�-�$�-�$�-�$�-�$�-�$�-�$�-�$�-�$._$.r$.�$".r$#.y$6.v$G.{$M.f$R.M$S.%$a.D$V.$[.�#p..$o.K$p.f$w.M$o.$u.${.�#s.�#s.�#l.�#g.t#c.[#e.'#m.�"g.�"m.�"x.�"�.�"~.�"�.�"�.#�.�"�.�"�.�"�.�"�.%#�.#�.#�.0#�.v#�.�#�.�#�.�#�.$�.
                   7790: $�.$�.$�.�#�.�#�.�#�.]#�.'#�.�"�.�"�.�"�.�"�.�"�.�"�.�"/�"/�"
/�"/�"&/�""/�"/�"/]""/y"./D"@/["1/�">/�"H/�"Y/�"a/�"f/�"w/�"~/}"�/�"�/Q"�/b"�/["�/�"%�/D$�/
                   7791: $�/�#�/�#�/d#�/d#u/d#j/j#V/�#N/�#H/$@/U$</�$>/�$B/�$N/�$W/�$Z/�$V/�$[/v$c/t$\/�$e/�$e/�$s/�$j/�$j/#%s/b%�/h%�/G%�/%�/8%�/l%�/]%�/4%�/�$�/,%�*
                   7792: "�*+"�*6"�*4"�*%"�*"�*+"�*/"�*<"�*D"�*J"�*S"�*Y"�*Y"�*\"�*|"�*�"�/�.�//�/�.�/�.��/�-�/�-�/�-�/�-�/.�/I.�/b.x/�.|/�.z/�.g/�.p/�.f/�.]/�.S/}.a/n.V/8.X/�-U/�-H/�-9/U-./U-$/d-+/�-#/�-"/�-+/'.:/d.,/a.)/z.-/�.,/�.)/�./�. /�./S./0.�.8.&/r.�.x.�._.�.@.�.D.�.'.�._.�.a.�.�.�.�.�.].�..�.�-�.�-�.�-�.x-�.�-�.�-z.�-{.]-�.!-n.-f.'-Z.--U.
                   7793: -H.�,Y.�,[.�,b.K,P.M,I.],=.d,5.W,7.4,;.,4.�+..�+.�+.�+�-�+�-�+�-�+�-�+�-�+�-�+�-�+�-[+�-2+�-+�-�*�-�*�-+�-+�-)+�-+�-�*�-�*�-�*�-d*�-K*�-)*�-*}-�)i-�)Z-�)V-
                   7794: *H-*B-*3-�)(-*(-:*;-�*3-�*--z*-�*-�*-�*-l*-S*�,r*�,�*�,�*�,�*�,�*�,�*�,�*�,�*�,+�,>+�,@+�,0+�,%+�,+�,6+o,B+^,F+Q,M+?,Y+F,r+V,�+f,�+Z,�+z,�+q,�+m,,�,%,�,,�,,�,F,�,],�,l,�,�,�,�,�,�,�,�,�,�,�,�,-�,--#-D-3-z-7-�-C-�-Y-�-[-�-g-�-[-�-K-�-L-�-3-�-3-�-E-.P-0.N-M.@-@[email protected].+-b.$-K.-.-�-�,�-�,�-�,.�,!.�,4.�,M.�,D.�,Q.�,M.�,.�,�-�,�-�,�-�,�-�,�-�,�-~,�-w,�-q,�-c,�-Z,�-H,�-.,z-5,t-E,n-I,U-D,/-E,-/,:-',!--,-4,�,9,�,8,�,(,�,,�,,�,,�,,�,,z,,{,,S,�+I,�+W,�+},�+z,�+d,�+:,�+,�+
                   7795: ,�+,~+,o+�+`+�+E+�+@+,,+�+%+�+8+%,E+I,-+K,"+Q,+@,&+2,�*-,�*,�*!.+!.+B.+Q.+].+h.+t.)+�.2+�.G+�.U+�.s+�.y+�.o+�.g+�.[+�.G+].C+0.S+<.X+.A+�-%+�-+�-+�-�*}-�)�/�)�/�)�/�)�/�)�/�)}/�)j/�)X/})V/u)Z/j)j/`)�/S)�/D)�/7)�/.)�/,)y/ )s/)q/)`/�(T/�(h/�(�/�(�/�(�/�(�/�(�,�(w,�(^,)I,      )E,)G,)A,)8,)*,),)�+)�+
                   7796: ),)�+�(�+�(�+=)�.B)�.)�.)�.&)m.*)T.:)?.P)E.P)h.I)y.=)�.*^,*Z,*X,*I,*=,**,�)#,�)&,�)*,�)?,�)d,�)j,�)y,�)�,�)�,*�,*�,*q,*^,%^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,%�*,�*�+�*�+�*�+�*�+�*�+�*,�**,�*E,�*S,�*M,�*A,�*6,�*2,�**,�*&,�*=,�*M,�*`,�*q,�*o,�*d,�*d,�*,�*�,�*�,�*�,�*�,�*�,�*�,�*�,�*�,�*�,�*�,�*-�*C-�*}-2�*.�*�-�*�-�*�-�*�-�*�-�*�-�*�-�*l-�*O-�*:-~*-q*
-_*-V*-L*-@*  -3*-0*?-9*O-E*l-Z*�-N*�-M*�-O*�-]*.i* .j*?.j*f.t*�.q*�.x*�.�*�.�*�.�*�.�*�.�*/�*2/�*4/�*A/�*V/�*`/�*\/�*X/�*l/�*�/�*�/�*�/�*�/�*�/�.4�.4�.4�.�3�.�3�.�3�.�3~.~3�.Y3m.@3Z.<3=.@3 .43.B3�-r3�-�3�-�3�-4�-@4�-S4�-�4�-�4.�4(.�4@.�4K.�4^.�4s.v4�.U4�./4�.4[.3f.�2h.�2v.�2g.�2`.2Z.f2W.D28.'2-.J26.�24.�2F.�2[.3//�5,/�5&/�5/�5/�5/�5�.�5�.6�.-6/+6
                   7797: /6/
                   7798: 6/�5*/�56/�53/�5//�5//v55/l5>/l5F/l5J/|5K/�5H/�5D/�5</�58/�5//�5    �/�6�/�6�/n6�/[6�/>6�/)6z/16v/W6p/x69+�59+�5=+�5A+z5F+Y5C+15=+5<+5/+�4+�4+�4+5+B5++l59+�5m+�4f+�4b+�4W+_4N+Q4G+O4;+K4;+n4D+�4T+�4a+�4m+�4��*�0�*�0�*�0       +�0+�0"+�0.+1=+1S+%1@+1G+�0_+�0_+�0k+�0p+�0�+1v+1j+!1n+:1{+K1�+K1�+[1�+r1�+�1�+�1�+�1�+�1�+�1�+�1�+�1�+�1�+�1�+�1�+�1�+
                   7799: 2�+2�+2,2,!2,82,H2,Q2,n2,z2,�2,�2,�2',�2,�2),�29,�21,�2,,3,3,�2�+�2,�2�+�2�+�2�+3�+3�+[3�+[3�+e3,v3,�3,�3,�3�+�3�+�3�+�3�+4�+4�+24�+K4�+U4�+f4�+�4�+�4�+�4�+5�+-5,K5(,M5@,H5T,-5h,�4n,�4�,�4�,�4�,�4�,�4�,�4�,h4�,>4�,�3�,�3�,�3�,�3|,f3�,J3�,D3�,-3�,�2�,�2�,�2�,�2�,�2�,r2�,p2�,42�,42�,Q2�,_2�,�2-�2-�2&-�23-�2M-]2X-62]-'2s-2v-�1w-�1|-�1�-�1�-�1�-�1�-�1�-�1�-f1�-W1�-l1�-z1.|1.�18.�1C.�1W.�1s.�1�.�1�.�1�.#2�.@2�.Y2�.l2�.j2�.f2�.�2�.�2�.�2�.�2�.�2�.�2�.3�.3/3/�2
                   7800: /�2/�2
                   7801: //3�.e3�.�3�.�3�.4�.F4�.@4/Q4/#4
                   7802: /�3/�38/�3M/�3^/)4n/O4v/t4x/�4�/t4�/n4�/~4�/�4�/�4�/�4�/�4�/�4�/�4�/�5�/�5�/�5�/6�/S6�/l6�/~6��(&5�(&5�(�4�(�4)�4)�4)�4)�4%)5/)
5B)5N)�4R)5])5_)�4e)�4h)�4h)�4o)      5h)"5k)95x)P5�)P5�)/5�) 5�)5�)
5�)5�)&5�)�4�)�4�)�4*�4*�4*�4*�4*5*(5!*E53*J5B*Z5X*^5j*\5r*X5v*G5{*55�**5�*&5�*5�*�4�*�4�*�4�*�4�*�4�*�4�*o4�*T4�*=4�*"4�*
4�*�3�*�3�*�3�*�3�*�3|*�3o*�3l*�3v*q3x*X3w*=3n*03c*93d*(3b*3d*�2l*&3t*�2{*�2�*�2�*�2�*m2}*�2~*�2�*�2�*w2�*^2�*E2�*2~*�1k*�1h*�1b*�1a*�1X*�1L*�1C*�11*�1$*�1)*�1&*�1,*{1<*{1=*h18*K1,*K1!*K1*41
                   7803: *,1*G1�)A1�)"1*1
                   7804: *1*�0�)�0�)�0�)�0�)1�)1�)1�)�0�)�0�)�0�)�0�)�0�)�0�)�0�){0�)q0�)`0�)V0�)M0�);0�)00�)0�)0�)�/�)�/�)�/�)�/�)�/�(�/�(�/�(�/�(�/�(
0�(?0�(d0�(�0�(�0�(�0�(X0*�6�)�6�)u6*a6*c6"*V66*C6R*-6j*"6v* 6�*=6�*s6
�*�/�*�/�*�/�*�/�*�/�*�/�*0�*0�*&0�*,0�*G0�*h0�*�0
�*m0�*b0�*K0�*00�* 0�*0�*0�*0�**0�*K0�*d0�*s0�*m0�*}2�*�2�*y2�*u2�*�2�*�2�*�2�*�2�*�2�*�2�*�2�*�2�*�2�*}2&�._=�.[=�.U=�.B=�.>=�.D=/D="/=5/=</�<:/�<1/�<%/�</�<&/L<�.'<�.<�.<�.<�.�;�.�;�.<�.#<�.-<�.-<�.<<�.L<s.B<b.N<U.N<;.+<*.<.�;.�;�-�;�-�;�-�;�-�;�-l;�-j;�-a;�-F;�-6;�-+;�-#;�-;.;'.;/.&;8.�:G.�:W.�:h.�:s.�:~.�:�.�:�.�:�.�:�.�:�.�:�.z:�.~:�.l:�.F:�.<:�./:�.!:�.:�.�9�.�9�.�9�.�9�.�9�.:�.&:�.:�.�9/�9
                   7805: /�9/�9/�9/�9/�9 /:!/:-/6:</D:H/B:M/<:U/@:_/H:k/B:{/N:�/H:�/B:�/B:�/1:�/:�/�9�/�9�/�9�/j9�/U9�/L9�/%9}/�8~/�8�/�8|/�8~/v8�/]8{/N8v/L8h/N8_/H8Z/e8Y/L8H/+89/81/8//82/�72/�7*/�7'/�7/x7/�7/�7/�7�.�7�.�7�.�7�.�7�.z7�.j7�.l7�.~7�.�7�.�7�.�7�.�7�.�7�.�7�.�7�.8�.8�.F8�.J8�.U8�.:8�.8�./8�./8�.8�.8v.8}.�7�.�7n.�7Z.�7J.�71.�7.�7.�7&.n7�-l7�-n7�-~7�-~7�-p7�-�7�-�7�-�7�-�7�-�7�-�7�-�7�-�7�-�7-8t-88f-W8e-r8`-�8S-�8L-�8C-�8C-�8I-�8S-�8`-9f-9k-19t-<9z-J9t-Y9s-]9q-_9d-[9N-59=-19&-9-9&-9(-D9/-Q9:-n9@-�9C-�9C-�9+-�9%-�9+-�9--�9+-�95-:/-:=-:W-):d-1:g-L:]-h:W-~:U-�:Y-�:W-�:]-�:a-�:d-�:_-;Z-;W-;P-;M-#;@-;9-�:2-�:0-�:%-�:-�:-�:-�:-�:&-�:�,�:�,�:�,�:�,�:�,&;�,;�,;�,';�,D;�,N;�,Y;�,g;�,�;�,�;�,�;�,�;�,<�,<�,+<�,_<�,z<�,|<�,�<�,�<�,�<�,�<�,�<�,=�,=�,6=;�,|=�,>=�,=�,�<�,�<�,�<�,�<�,[<�,#<|,<�,�;�,�;�,�;~,�;|,W;u,Q;v,@;f,L;Z,Y;N,Y;=,z;$,�;,�;,�;,�;,�;�+�;�+�;�+�;�+�;�+�;�+<�+<�+<�+'<�+<<�+U<�+t<�+�<�+�<�+�<�+�<�+�<�+=�+=�+=�+=�+=�+%=�+<=�+L=�+B=�+B=�+B=�+D=�+@=�+:=�+<=�+L=�+h=�+W=�.;�.;~.;o.;[.&;E.�:3.
                   7806: ;4.!;E.N;V.N;g.Q;u.N;�.J;�.1;�.;�.;�.;��,�:�,v:�,t:�,h:�,W:�,O:�,):�,:�,�9�,:�,:�,�9~,�9�,�9�,�9�,�9�,z9�,_9�,_9x,c9n,@9k,#9l,9j,�8h,�8^,�8S,�8D,�8=,�8-,r8%,L8',/8,8,�7,�7,�7�+�7�+�7�+�7�+�7�+�7�+�7�+�7�+�7�+j7�+a7�+O7�+87�+7�+7�+�6�+�6�+�6�+�6�+�6�+�6�+�6|+�6y+�6l+�6a+&7Z+7R++7K+67G+O7K+h7P+�7Y+�7W+�7]+�7X+�7e+�7k+�7k+�7r+�7k+8n+58w+<8�+-8�+58�+L8�+W8�+r8�+�8�+�8�+�8�+�8�+�8�+�8�+�8�+�8�+�8�+�8�+�8�+9�+9�+9�+9�+9z+9z+9y+9p++9m+89l+B9c+J9Z+[9[+v9L+�9?+�9A+�9=+�91+�9#+�9+�9+:+#:+-:+F:)+_:G+g:d+c:l+l:�+n:�+t:�+�:x+�:p+�:p+�:h+�:i+�:h+�:i+�:k+�:l+�:k+;d+;\+/;X+D;U+_;^+n;l+x;x+n;�+a;�+S;�+:;�+;�+�:�+�:�+�:�+�:�+�:�+�:,�:,�:,�:1,�:F,�:K,�:Z,�:t,�:�,�:�,�:�,�:�,�:�,�:�,�:�,39�,/9�,#9�,9�,9�,9�,�8�,�8�,�8�,�8�,9�,-9�,U9�,]9�,v9-�9-�9-�9
-_9�,<9�,39�/�6�/�6�/�6�/�6
                   7807: p/x6y/�6j/�6\/�6j/�6u/�6�/�6�/�6�/�6�/�6�/~6�/�6�/�6�/�6�/�6�/�7�/�7�/D7�/37�/S7�/|7�/�7�/�7�/�7�/8�/�7�/
                   7808: 8�/8�/8�/H8�/~8�/�8�/�8�/�8�/9�/9�/69�/�9�/�9�/a:�/3:�/Y:�*F8�*J8�*x8�*�8�*�8�*�8�*�8�*9r*$9Y*+9U*9a*�8e*�8f*�8t*�8y*�8}*z8�*|8�*i8�*L8�*98�*8�*8�*�7�*�7�*�7�*        8�*$8�*F8�*�6�*�6�*�6*�6w*�6r*�6d*�6O*�63*�6*�6*�6*�6�*s6�*�6      Zh/Bk/Bp/ B|/4B�/EB�/`B�/XB�/`B�/B�/�B�/�B�/�B�/�B�/�B~/�Bt/Ck/�Be/�Bl/Cl/$Ce/2C`/.CS/0CI/*C@/ C8/7C,/AC+/VC&/kC"/�C"/�C /�C/�C/�C�.�C�.�C�.�C�.�C�.�C�.�C�.qC�.TC�.KC�.4C�.*C�.C�.C�.�B�.�B�.�B�.�B�.�B�.�B�.{B�.\B�.?B�.4B�..B�.$B�.B�.�A�.�A�.�A�.�A�.�A�.�A�.oA�.^A�.AA�.(A�.&A�.A�.�@�.�@�.�@�.A�.,A�.EA/TA/TA"/oA+/yA./�A5/�AA/�AJ/�AQ/�A[/�Ab/
Bh/B     �D.2D>.�CB.�C7.�C1.�C5.�C7.�C0.�C5.eC7.HC7.&C7.CF.5CK.5CV.MCc.WCl.HCl.5Ci.+C\.CT.    CF.     C7.�B3.�B(.�B#.�B.�B.^B*.AB7.ABT.FBT.TBK.YBK.rBT.rB\.�BZ.�BO.�BK.�B@.�BD.�BO.�B\.�Bj.Cu.!Cp. C{.     C�.     C�.+C�.+C�.CC�.MC�.5C�.!C�.C�.C�.�B�.�B�.�B�.�B�.�B�.�B�.�B�.�B�.�B�.�B�.�B�.rB�.rB�.�B�.TB�.AB�.(B�.$B�.B�.$B�.B�.�A�.�A�.�A�.�As.�Al.�Ae.�Aj.�Aa.�Ay.�A�.~A�.yA~.~Ap.yA\.~AK.�A5.�A#.~A.�A.�A�-�A&.~A�-~A�-~A�-oA�-MA�->A�-!A�-!A�-5A�-&A�-A�-�@�-�@&.A.�@$.A0.9A7.9AS.&A\.!Aa.+An.5An.!Ar.An.Ai.�@l.�@n.�@n.�@m.�@h.�@e.�@i.�@w.�@~.t@�._@�.U@�.J@�.H@�.5@�.@�.�?�.�?�.�?�.�?�.�?�.�?/�?/@
/@/!@�.+@�.-@�.@�.
                   7809: @�.@�.1@�.J@�.n@�.�@�.�@�.�@�.�@�.�@&/�@/z@/c@
/W@/J@&/J@!/]@$/]@3/W@F/>@K/!@O/&@S/�?B/@1/@)/@:/�?L/�?U/�?c/�?c/
                   7810: @\/@U/7@W/a@a/n@v/�@|/�@r/�@l/�@t/�@y/�@y/�@z/�@�/�@�/�@�/A�/A�/A�/7A�/TA�/�A�/�A�/�A�/�A�/�A     ;�/�>�/�>�/�>�/�>�/�>�/�>�/�>�/
                   7811: ?�/?�/!?�/<?�/3?�/8?�/?�/�>x/�>i/�>b/�>d/�>e/�>j/z>v/e>w/L>p/J>f/[>i/F>c/<>]/3>a/%>_/>Z/>d/�=c/�=X/�=S/�=F/�=?/
                   7812: >I/'>E/:>H/S>6/->!/>/�=/�=&/�=�.�=�.�=�.�=�.�=�.�=�.�=�.�=�.�=�.�=�.�=�.n=�._=�._=�._=     �,6=�,j=�,|= �+L=�+c=�+g=�+h=     M�+W=}+a=k+n=_+~=`+�=V+�=S+�=W+�=J+�=U+�=Y+�=b+>d+>i++>p+>>w+Q>s+_>�+h>z+�>y+�>x+�>+�>z+�>y+�>y+�>z+�>�+�>�+?�+)?�+J?�+c?�+�?�+�?�+�?�+�?�+�?�+�?�+�?�+�?�+�?�+�?�+�?�+P?�+)?w+?p+?|+?x+�>s+�>k+�>i+�>d+�>Y+�>X+�>d+�>k+�>p+�>k+x>_+n>V+U>Q+J>L+>D+>H+�=B+�=;+�=4+�=-+�=$+�=+�=+�=
                   7813: +�=+�=�*�=�*�=�*�=�*�=       @�*�=�*�=�*�=�*�=�*>�*+>�*@>�*Y>�*z>�*�>�*�>�*�>�*?�*?�*�>�*�>�*�>�*�>�*�>�*�>�*#?�*)?�*1?{*1?e*)?O*!?\*5?l*U?h*k?]*i?T*�?J*�?=*�?7*�?7*�?7*�?7*�?'*�? *�?*�?*�?�)�?�)@�)!@�)D@�)p@�)�@�)]@�):@�)9@�)B@�)H@�)R@})r@p)p@b)p@U)p@F)|@C)�@<)�@1)�@")�@)�@�(�@
                   7814: ��/�D�/�D�/�D�/�D�/�D�/�D�/E�/E�/(E�/(E�/(E�/4E�/=E�/?E�/CE~/ME�/VE�/jE�/sE�/�E�/�E�/�E�/�E�/�E�/�E�/�E�/�E�/�E�/�E�/�E�/�E�/�Ez/�El/�El/�Ek/�Ep/Fp/&Fq/;Fq/IFo/SFj/TF\/CFU/?FN/CFH/CFB/EF:/CFG/4FQ/"FZ/�Ed/�Ed/�Ee/�Ee/�E_/�E]/�E[/EU/�EM/�EE/�E@/�EB/�E:/�E//�E./�E;/�E6/wE3/hE1/CE&/;E/AE/TE/\E/bE
/sE/sE /�E/�E&/�E�.�E�.�E�.F�.F�.&F�.0F�.IF�.fF�.wF�.�F�.�F�.�F�.�F�.�F�.G/"G/=G�.KG�.dG�.�G/�G
                   7815: /�G/�G/�G$/�G!/�G /�G!/�G"/�G)/�G,/
H./&H+/8H./QH./hH//�H:/�HC/}HU/�Ha/�He/�H\/�HS/�HM/�HB/�H9/�H0/�H'/      I/$I/;I       /KI/�I/�I/�I/�I/J/J�.J�."J�.TJ�.�J�.�J�.�J
                   7816: \.KX.�J
                   7817: �O.KK.�JQ.�JF.�J@.�J7.�J7.�J5.�J0.�J7.�J7.mJ5.cJ7.PJ3.PJ,.UJ$.PJ.UJ.FJ.PJ�-<J.<J�-7J.)J#.$J!.J.J.J .J�-J�-�I&.�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-�I�-tI�-WI�-?I�-!I�-5I�-DI�-&I�-+I�-DI�-WI�-fI�-~I�-oI.oI.~I#.~I,.�I7.�IK.�II.�IS.�IV.oIZ.�Ia.~Il.tIl.HIu.!I{.Is.Iw.�H�.�H�.�H�.�H�.�H�.�H�.�H�.rH�.cH�.hH�.<H�.PH�.7H�.7H�.PH�.UH�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.�H�.I�.I�.!I�.+I�.DI�.WI�.aI�.~I�.�I�.�I�.�I�.~I�.~I�.oI�.�Iy.�I{.�I�.�I�.�I}.�I�.�I�.�I�.�I�.J�.J�.3J�.<J�.7J�.J�.J�.�I�.�I�.�I�.�I�.~I�.\I�.5I�.I�.�H�.�H/�H�.�H     /rH/UH�.KH�.2H�.)H�.H�.�G�.H�.H�.�G�.�G�.�G�.�G�.�G�.H�.H�.�G�.�G�.�G�.�G�.�G�.�G�.yG�.kG�.oG}.kGr.kGi.MGj.5Gc.   Gj.�Fe.�Fe.�Fp.�Fj.�Fl.�Fs.�F�.�Fw.rFc.rFQ.AFK.)F7.F7.�E(.�E*.�E5.�E3.�E7.�E5.�E0.tE3.jE*.>E1.E7.E3.�D0.�D7.�DF.mDF.ODD.2D
                   7818: �*K�*�J�*�J�*�J�*�J�*�J�*wJ�*gJ�*bJ�*iJ�*�J�*�J�*�J�*�J�*�J�*�J�*�J�*�J
                   7819: �*K�*�J�*�J�*�JI/�QI/�QH/�Q@/�Q@/dQ=/GQ7/&Q8/
Q3/�P(/�P"/�P/�P/�P/bP/GP/8P/P/�O�.�O�.�O�.�O�.�O&�-�Qce,�Ql,�Qx,�Q�,�Q�,�Q},wQ�,qQ�,�Q�,�Q�,�Q�,�Q�,�Q�,�Q�,�Q�,�Q�,�Q�,�Q�,dQ�,GQ�,0Q�,Q�,Q�,�P�,�P�,�P�,�P�,�P�,�P�,�P�,yP�,qP�,`P�,\P�,oP�,yP�,�P�,�P�,�P�,�P�,�P�,�P�,�P�,P�,�P�,�P�,sP�,hP�,\P�,^P-\P-XP
-QP-?P-4P"-0P#-8P#-GP*-MP/-=P2-6P6-4P>-$PC-PN-PR-PS-PJ-"PF-4PD-APN-EPS-=P[-=P`-*Pc-&Pe-*Pk-*Pl-8Ph-QPg-dP\-�PN-�PJ-�PJ-�P>-�P6-�P3-�P3-�P2-�P+-*Q--8Q3-QQ2-hQ/-Q/-�Q9-�Q:-�Q7-�Q;-�Q=-�Qg-�Ql-�Qp-�Qq-�Qx-�Q}-oQ�-VQ�-UQ�-SQ�-=Q�-,Q�-2Q�-AQ�-MQ�-ZQ�-dQ�-yQ�-}Q�-�Q�-�Q�-�Q�-�Q�-�Q�-�Q�-�Q�-�Q�-�Q=/UN</\N6/dN6/nN8/nN7/{N8/�N6/�N=/�N=/�N?/OD/"OK/<OU/fO[/{Og/{Ok/�Or/�O|/�O�/�O�/�O�/�O�/�O�/P,�.�J�.K�."K�.2K�.GK�.bK�.yK�.�K�.�K�.�K�.�K�.�K�.�K�.�K�.�K�.L�.*L�.ML�.`L�.uL�.�L�.�L�.M�.8M�.2M�.M�.*M�.KM�.dM�.oM�.�M
                   7820: /�M/uM/uM /�M%/�M,/�M3/�M:/�M</�M?/�M?/N>/?N=/UNX�.�O�.�O�.fO�.?O�.O�.O�.0O/IO        /:O/"O/O/�N/�N     /�N     /�N/�N�.�N�.wN�.rN�.UN�.UN�.FN�.3N�.N�.N�.�M�.�M�.�M�.�M�.�M�.�M�.�M�.�M�.�M�.�M�.N�.N�.8N�.rN�.KN~.dN�.�N�.�N{.�Ns.�Nn.�Nc.�NX.�NQ.�NO.�NS.�NK.�NF.�[email protected]=.N5.N5.�M7.�M1.�M3.yM..MM3.M0.M,.�L..�L7.�L7.rL7._L..hL..FL3.ZL=.AL3.7L1.L7.L5.�KI.�KM.�KF.�K7.�K7.�K=.�KS.kK\.IK\."Kg.K\.KX.�JO.KI�*�N�*�N�*�N�*�N�*�N�*�N�*�N�*�N�*�N�*�N�*�N�*�N�*|N�*kN�*WN�*BN�*'N�*N�*N�*�M�*�M�*�M�*�M�*N�*N�*�M�*�M�*�M�*�M�*�M�*�M�*�M�*�M�*�M�*�My*�Mj*�Ma*�M_*�Mb*xMj*pMw*hM�*bM*OMr*MMj*UM^*]MT*YMN*@ML*'MN*MR*�LU*�LY*�Li*�L{*pL�*SL�*GL�*@L�*<L�*(L�*L�*�K�*�K�*�K�*�K�*�K�*yK�*^K�*EK�*4K�*K�*K�*�J�*K�**K�*EK�*^K�*`K�*QK�*;K�* K�*
K�*K�*.K�*CK�*=K�*(K�*K��*�J�*       K�*2K�*IK�*\K�*uK�*�K�*�K�*�K�*�K�*�K*�K{*�Kx*�Kn*�Kf*�K_*
LV*%LX*0LQ*4LG*2L=*6L3*:L&*QL*\L*lL*�L*�L�)�L�)�L�)�L�)�L�)M�)8M�)@M�)SM�)lM�)�M�)�M�)�M�)�M�)�M�)�M�)�M�)�M�)N�)-N�)LN�)rN�)�N~)�Ny)�Ny)�N~)�N{)     Ou)%Ot)@O{)RO�)_O�)oO�)�O�)�O�)�O�)�O�)�O�)�O�)�O�)�O�)P�)P�)"P�)1P�)=P�)FP�)LP�)cP�)mP�)mP�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)�P�)oP�)PP�)7P�)$P�)P�)P�)�O�)�O�)�O�)�O�)�O�)�O�)�O�)iO�)XO�)BO�)'O�)O�)�N�)�N�)�N�)�N�)�N�)�N�)�N�)�N�)�N�)�N�)�N�)�N�)�N*�N*�N*�N"*�N)*�N+*�N)*rN'*_N%*NN$*6N&*!N,*N2*#N9*)N8*BN@*@N>*+N@*NB*NG*NP*NP*5NT*PNW*tN^*lNd*]Nm*WNq*[No*gNm*|Nw*�N�*�N�*�N�*�N�*�N�*�N�*�N�*�N�*O�*'O�* O�*)O�*BO�*PO�*_O�*TO�*;O�*O�*
                   7821: O�*�N�*�N)*M**M/*M0*�L0*�L3*�L7*�L=*�LD*�LD*yL<*yL3*�L-*�L'*�L*�L*�L*�L*�L*�L*�L*�L!*�L&*�L'*M)*M�)cO�)qO�)aO�)VO�)HO�)5O�)3O�)3O�)@O�)TO�)kO�)�O�)�O�)zO�)qO�)eO�)cO�*�K�*�K�*�K�*�K�*�K�*�K�*�K�*K�*sK�*sK�*�K�*�K�*�K�*�K�*�K�*�K�*�K�*�K�*L�*%L�*(L�*L�*L�*�K�*�K�/^X�/lX�/�X�/�X�/�X�/�X�/{X�/ZX�/AX�/#X�/X�/�W�/�W�/�W�/�W�/X�/X�/X�/�W�/�W�/�W�/�W'�/�V�/�V�/�V�/�V�/sVx/^Vq/?Vf/4Vc/.V`/,Va/&VY/VO/�UK/�UK/�UJ/�UN/�UQ/�UQ/bUW/bU[/{UY/�UU/�Ua/�Ub/�Uc/wUg/^Uh/nUp/�Uy/�U�/}U�/SU�/SU�/lU�/lU�/bU�/GU�/,U�/!U�/*U�/AU�/OU�/ZU�/U�/U>�/�T�/�T�/�T�/�T�/�T�/�T�/�T�/�T�/�T�/�T�/�T�/�T|/�Tn/�Ta/�TY/�TQ/�T\/�TQ/�TJ/�TK/�TG/�TF/�TF/�TH/�TO/�TO/yTM/\TI/KTQ/0T[/(Ta/Te/        Tr/T�/�S�/�S�/�S�/�S�/�S�/�S�/�S�/jS�/SS�/QS�/AS�/2S�/!S�/S�/�R�/�R�/�R�/�R�/�Rz/wRu/bRj/OR_/4RW/$RQ/RM/�QK/�QI/�Q��-�Q�-�Q�-�Q�-�Q�-�Q�-�Q�-R�-!R�-0R�-=R�-MR�-^R�-qR�-�R}-�Ry-�Rw-�Rq-�Ri-�Rg-�Re-�Re-�Rg-�Ra-S]-
SY-SZ-(SU-<SS-QSZ-`SW-uST-�SS-�SS-�SS-�SR-�SP-�SJ-�SH-�SJ-�ST-�SW-�SS-�SM-TF-TB-=T;-XT2-pT+-�T+-�T/-�T8-�T9-�T6-�T1-�T.-�T+-�T+-�T+-U(-U*-(U/-<U+-IU -OU-SU
-UU-OU�,MU�,=U�,0U�,&U�,#U�,U�,
U�,U�,�T
-�T-�T-�T-�T-�T-�T
-�T-�T       -�T     -}T-lT
-ST-6T-!T-T-T-T-�S-�S-�S-�S-�S!-�S-�S-�S-�S-�S-}S-jS-QS-4S-$S-S-S-�R-�R&-�R&-�R-�R&-�R�,�R�,�R�,�R�,�R�,S�,S�,<S�,US�,`S�,nS�,S�,�S�,�S�,�S�,�S�,yS�,hS�,ZS�,OS�,SS�,XS�,ZS�,wS�,�S�,�S�,�S�,�S�,�S�,�S�,�S�,�Sx,�Sr,�So,�Sl,�Sl,Tk,Tj,(Tf,0Ta,.T`,!TV,TV,TQ,�SJ,�SF,�SE,�SD,�SE,wSF,fS=,SS?,6SH,SR,SZ,�Rm,�Rx,�R�,�R�,�R�,�R�,�R�,wR�,ZR�,=R�,,R�,!R�,!R�,R,(Rs,4Ri,GRc,ZRb,oRX,{RN,{RJ,�RA,�RA,�R8,�R/,�R%,�R,�R&,�R0,�R6,sR<,^RB,2RT,R_,�Qa,�Qe,�Q=-�Q9-�Q8-�Q>-RF-RH-RJ-�QR-�QZ-R\-�Q_-�Qg-�Q
g~/y_~/d_|/G_s/>_r/#_r/_h/�^]/�^Q/�^@/�^6/�^6/l^1/b^8/Y^./M^"/,^/^/�]
                   7822: /�]/�]/�]&/�]�.]�.l]�.U]�.C]�.:]�.8]�.(]�.]�.]/!]�.]�.�\�.�\�.�\�.�\�.r\�.Q\�.>\�.:\�.(\�.2\�.C\�.U\�.Y\�.^\�.l\�.W\�.?\�.&\�.
                   7823: \�.�[�.�[�.�[�.�[�.�[�.�[�.�[�.y[�.}[�.�[�.�[�.�[�.�[/�[/�[/�[/�[/�[-/�[3/w[9/`[D/M[D/:[K/.[M/[O/�ZT/�Z^/�Zk/�Zv/�Z}/�Zy/�Zz/�Z�/yZ�/fZ�/SZ�/QZ�/?Z�/#Z�/Z�/
                   7824: Z�/Z�/Z�/�Y�/�Y�/�Y�/�Y�/�Y�/�Y�/lY�/UY
;�/�X�/�X�/�X�/�X�/Y�/#Yw/AYm/WYr/nYt/�Yp/�Yl/�Yf/�Y[/ZQ/!ZS/
                   7825: ZK/ZD/<Z:/EZ=/UZ2/fZ'/pZ1/sZ3/�Z/�Z/�Z/�Z /uZ!/bZ&/MZ)/6Z+/%Z4/ZD/�YH/�YN/�YQ/�YW/�YU/�YE/�YI/�YS/�YG/�YJ/�YU/�Y[/�YZ/{Y_/fYW/UYG/WY3/`Y./`Y?/IYN/0YX/%Yj/Yx/�X�/�X�/�X
>N/\M/\L/
\K/\P/�[V/\[/\[/�[U/�[Z/�[U/�[[/�[e/�[a/�[e/�[j/�[r/�[z/�[�/�[�/�[�/�[�/�[�/�[�/�[|/�[r/�[l/�[g/w[n/f[t/W[m/G[a/I[W/Q[M/j[A/[4/�[&/�[/�[/�[/�[/\/\/\/\/\/�[#/�[//�[+/�["/�[&/
                   7826: \./!\>/0\K/4\O/C\U/I\[/A\[/6\V/&\O/\N/\N/\
*:/�\:/�\9/�\3/�\//�\+/�\$/�\!/�\/�\/�\/�\/�\/p\
                   7827: /^\/U\/C\/6\�..\�.!\�.\/
\/\/!\/(\/6\/>\/G\/Q\/Y\ /W\$/Q\&/W\)/d\)/s\,/{\4/�\:/�\=/�\>/�\=/�\:/�\:/�\
�(_�(&_�(4_�(A_�/c�/c�/�b�/�b�/�b�/�b�/�b�/2a�/a�/!a�/a�/�`�/�`�/�`�/�`�/�`�/�`�/y`�/p`~/f`z/Y`�/Q`�/I`�/I`�/G`�/>`�/0`�/'`�/#`�/#`�/!`�/`�/`}/�_|/�_|/�_~/y_�(h`�({`�(�`$�(�`�(�`�(a�('a�(<a�(Ua�(ba�(pa�(�a�(�a�(�a�(�a�(�a�(�a�(b�(b�()b�(:b�(Fb�(Sb�(Mb�(Ob)ab)tb
                   7828: )�b)�b)�b
                   7829: )�b)�b)�b)�b )�b.)�b8)�b=)�b>)�b�(�d�(�d�(�d�(�d�(�d
                   7830: )�d)~d)qd')kd-)gd*)ed%)[d)]d!)Hd)Dd)_d�(ud�(�d�(�d�(�d�(�d�(�d,)d') d+)d6)d>)dB)d=)�c?)�c5)�c5)�c6)�c2)�c,)�c%)�c)�c)�c&)�c))      d')d,)dk>)�b=)�b8)c0)c+)c%)c#)'c)):c1)Jc;)[cB)kcD)vcE)|cG)�cH)~cR)rcZ)kc^)pc])~c])�ca)�cc)�c_)�c[)�cd)�cv)�cy)�cq)�cd)�ce)dg)dj)dn)�cu)�c})�c�)�c�)�c|)�c)d�)d�)d�)d�)d�)�c�)�c�)�c�)$d�)9d�)Vd�)kd�)|d�)�d�)�d�)�d�)�d�)�d�)�d�)�d�)�d�)�d�)&e�)�d�)�d�)�d�)�d�)e�)e�)e�)e�) e�)-e�)Je�)3e�)*e�);e)bet)mer)`eg)bej)Aeb)Aei)-ei)*eZ),eO)HeJ)ie=)ceB)AeB)-eR)eF)&e>)e6) e5)e/) e')1e)Ae)9e),e)&e)e)(e&)=e)Je�(Re�(Xe�(ie�(�e�(�e�(�e�(�e�(�e�(�e�)Mf�)6f�)f�)�e�)�e�)�e�)�e�)�e�)�e�)f�)0f�)Af�)Kf�)?f�).f�)f�)�e�)�e�)�e�),fO-#mP-mQ-�lX-�lb-�lf-�l`-md-)mj-mk-�lo-�lw-�lv-�lx-m�(g�({g�(jg)Qg)Cg4)<gL)>ga)Ggm):gn)2gt)g{)�f�)�f�)�f�)�f�)�f�)�f�)lf�)Mf�)Af�)Zf�)\f�)Kf3�),f�)If�)jf�)�f�)�f�)�f�)�f�)�f*�f*�f(*yf>*ufV*mff*jfs*mfw*}ff*�fX*�fK*�f7*�f%*�f*�f*�f�)�f�)�f�)�f�)�f�)�f�)g�)!g�)Gg�)dg�)�gt)�gh)�g])�gS)�gO)�g/)�g')�g)h)h),h)Fh)[h)ph)Yh   )@h&).h�('h�()h�*0p�*Kp�*Kp�*Dp�*6p�*%p�*p�*
                   7831: p��*�o�*�o�*�o�*�o+vo�*do�*Bo�*'o+o+�n"+�n3+�nD+�nI+�nJ+�nG+�n=+�n7+�n7+�n=+zn@+]n=+>nD+)nC+nG+�mR+�m`+�mn+�mx+�m�+�m�+�m�+�m�+�m�+�m�+�m�+�m�+�m�+�m�+�m�+n�+n�+n�+n�+�m�+�m�+�m�+�m,�m,�m),�m,,�m8,�m?,�m9,�m4,�m*,n(,n-,-n0,In&,Dn",an,�n,�n�+�n�+�n�+�n�+�n�+o�+o,%o,8o,Ko,fo,]o�+Ho�++o�+/o�+6o�+Bo�+]o,�o,�o,�o,�o,�o,�o&,�o,p�+'p�+Bp�+hp�+�p�+�p�+�p�+�p&,q,4q,Kq  ,Sq,Wq,fq,{q",�q3,qB,�qR,�qa,�qs,�q,�qy,�qn,�qi,�q{,�q�,jq�,Oq�,{q�,�q�,�q�,�q�,�q�,�q�,r�,Br�,lr�,�r�,�r�,�r�,�r�,|r�,�r�,�r�,r�,lr�,Wr�,6r�,<r�,<r�,0r�,r�,r�,�q�,�q-�q�,�q -�q-�q-bq -Fq-Bq-4q-q-�p-�p%-�p.-q=-�pD-�pI-�pF-�pL-�pM-�pO-}p]-apg-Kpg-2pg-ph-�om-�om-�oj-�oh-�oh-�oe-�o]-�oR-�oB-�o4-�o.-�o$-�o"-�o#-�o!-�o-�o-�o-no-Io-%o-o-
                   7832: o-�n  -�n-�n -�n
                   7833: -�n-�n-�n
                   7834: -�n-�n-rn�,jn�,Un�,In        -In-:n$-+n0-n/-n+-�m'-�m&-�m-�m-�m%-�m/-�m9-�m@-�mE-%nF-Kn9-[n2-Sn6-lnD-lnR-]n_-nnu-�nn-vn]-bnS-DnP-'nR-nZ-�m\-�mT-�mS-�mM-�mJ-�m@-�m?-�m@-`mB-ImJ-<mO-#m`-m]-mV-'mY-8md-)m`x-mq-mt-4mp->mj-Imh-Qmf-hmd-zmj-�mq-�mp-�mp-�mi-�mk-�mx-�ms-�md-�m]-nd-nl-6n{-On�-_n�-Un�-Kn�--n�-!n�-:n�-Qn�-jn�-xn�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-o�-o�-o�-+o�-Oo�-jo�-�o�-�o�-�o�-�o�-�o�-�o.�o.�o.�o.�o.�o(.p2.>p;._pH.}pR.�p].�pb.�pj.qq.+q~.>q�._q�.}q�.�q�.�q�.�q�.�q�.�q�.�q�.�q�.�q�.�q�.�q�.�q�.�q�.xq�._q�.Kq�.[q�.hq�.dq�.bq�.bq�._q�.[q�.]q-�.]q�.]q�.Qq�.8q�.q�.q�.0q�.q�.�p�.�p�.�p�.pp�.Ip/%p/p
                   7835: /�o/�o/�o$/�o3/to@/]oL/Uo\/IoI/HoO/>ob//oq/%o|/)os/ok/�np/�nw/o�/)o�/%o�/o�/�n�/�n�/�n�/�n�/�n�/�n�/o�/�n�/�n�/�n�/�n�/�n�/n�/]n�/>n�/@n�/bn�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-}n�-vn}-{n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�-�n�*�s�*�s+�s+�sI+�sE+�sB+�s=+�s9+�s1+�s/+�s/+�s,+zs)+ls)+bs.+Ws/+<s*++s)+s"+s+s+s+s+6s+Ms+ds+zs+�s+�s&+�s�*�s�*�s)?r);r)"r)  r)�q)�q!)�q')�q-)�q/)rq-)_q%)Jq#)+q")q )q)�p)�p�(&q�(�p�(�p�(�p�(&r�(r�($r�(/r)1r)?r)?r])�pc)�pg)�pl)�pt)�p~)�pz)gpu)Dpm)p_)pT)pF)p4)>p+)Qp9)epP)tpT)�pZ)�pZ)�p])�p�*
                   7836: p�*�o�*p�*p�*p�*#p�*8p�*Qp�*cp�*np�*xp�*zp�*zp�*xp�*0p�(�n�(�n)�n)�n)�n)�n()�n6)�nL)�nZ)pni)Qnt):n|)&n})&n~)(n|)4n{)Qnt)dnd){nZ)�nS)�nD)�n/)�n&)�n)�n
)�n)�n&)�n�(�nr�(�o�(�o�(�o�(�o�(�o�(
                   7837: p�(p�('p
                   7838: )6p)6p%)/p3)p=)pI)�oU)�oZ)�oa)�od)�oo)�o)�o~)�ox)�ov)�ow)p{)p})1p�)Jp�)Wp�)Fp�):p�)Qp�)ip�)tp�)xp�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)�p�)q�))q�)'q�)q�)�p�)�p�)�p*�p*�p*�p
                   7839: *�p*�p�)�p�)q�)-q�)Fq�)Vq�)aq�)_q*Wq        *Fq
                   7840: *5q*+q*5q*Fq*Nq%*Nq)*Dq'*1q)* q**q2*
                   7841: q8*qA*qK*qT*
                   7842: q[*qb*�pm*�pt*�p}*�p�*�p�*�p�*�p�*�p�*�p�*�p�*�p�*�p�*vp�*pp�*jp�*Wp�*Dp�*/p�*!p�*p�*p�*�o�*�o�*�o�*�o�*�o�*�o�*�o�*�o-�s-�s-�s-�s-�s-�s(+�s+�s+
                   7843: t+#t+:t&+Mt-+_t2+vt5+�t6+�t5+�t-+�t)+�t/+
                   7844: u6+u?++uD+4uL+:uT+4u`++ur+%u|+'uv+um+uk+�td+�t_+�t[+�t^+�td+vte+atl+Qtn+Btl+4ti+!tc+t`+tV+�sN+�sI+�sG)�uI)�uH)�u@)�u;)�u5)�u/)�u/)�u*)�u))�u()�u.)�u4)�u@)�uC)�uC)�uG)�uG)�u��.Q��.�z�.�z�.vz�.lz�.]z�.Bz�.+z�.z�.�y�.�y�.�y�.�y�.�y�.�y�.�y�.�y�.�y�.�y�.�y�.�y�.~y�.ny�.jy�.ry�.ny�.Sy�.1y�.y�.y�.
                   7845: y�.�x}.�xw.�xv.�xo.�xo.�xo.�xd.�x].�x[.�xR.�xN.�xG.xH.]xE.:xC.xB.x;.!x0.#x,.Bx&.Sx#.Dx.2x.x
.�w.�w�-�w�-�w.�w.�w.�w.�w .�w&.�w,.�w2.�w5.�w1.�w-.�w).�w&.�w.�w
                   7846: .�w.lw�-Mw�-8w�-/w�-4w�-:w�-Ow�-Ww�-Jw�-Bw�-8w�-2w�-w�-w�-!w}-ww-�vs-�vk-�v^-�v]-�va-�v^-�vZ-�vV-�vG-�vB-�v9-�vB-�vC-�vP-~v\-~vk-�vp-�vj-�vm-�vx-�v�-�v�-�v�-�v�-�v�-�v�-�v�-�v�-�v�-�v�-�v�-w�-�v�-�v�-�v�-�v�-�v�-�v�-|v�-vv�-zv�-av�-Yv�-Hv�-8v�-#v�->v�-Hv�-6v�-+v�-v�-v�-v�-v�-v�-�u�-�u�-�u�-�u�-�u�-�u�-�u�-�u�-�u�-pu�-Mu�-8u�-u�-u�-
                   7847: u�-�t{-�tm-�t]-�tN-�tE-ft7-Bt1-Dt+-Yt#-It(-Bt2-#t'-t-t-�sT-�s-�s�,t�,0t�,Dt�,It�,Ot�,It�,St�,|t�,�t�,�t�,�t�,�t�,�t�,�t�,�t�,�t�,�t�,u�,0u�,Du�,au�,lu|,eu{,�u{,�ut,�uv,tud,au[,OuP,nuA,�uJ,�uE,�u<,�u7,�u8,�u-,v2,�u),�u!,�u ,�u,�u,�u,�u,�u,�u,�u,�u�+�u�+�u�+�u�+�u�+�u�+�u�+�u�+�u�+�u�+�u�+v�+v�+8v�+!v�+v,-v�+/v�+<v�+Wv�+zv�+tv�+�v�+�v�+�v,�v,�v,�v,�v,w&,+w4,wI,wO,wE,wLK,w9,w/,w2,)w2,>w:,Fw+,Yw&,Kw#,Bw",Qw(,rw*,�w3,�w<,�wJ,�wX,�wg,�wz,�w�,�w�,�w�,�w�,x�,4x�,Dx�,Yx�,ax�,zx�,�x�,�x�,�x�,�x�,y�,+y�,Fy�,fy�,�y�,�y�,�y�,�y�,�y�,�y�,�y�,�y-�y-z-�y-�y-�y!-�y:-�y=-�y<-�y/-�y-�y-z--#z;-+z/-2z9-Mz%-Kz-Hz-lz-z-�z-�z-�z�,�z�,�z�,hz�,Dz�,@z�,[z�,az|,|zn,�z_,�z��/Ћ�/ʋ�/���/���/Y��/0��b0�zf0Y�a0t�Y0��P0��O0��O0…M0օQ0߅N0�N0�J0�R0!�Z00�]06�c0C�m0Q�{0C��0'��0��0���0߅�0̅�0���0���0���0{��0f��0��&0��/��/��/���/d��/Y��/G��/#��1��1��1���0���I�0ə�0���0���0���0i��0H��0H��0=��0��0蘳0Ø�0���0���0���0s��0]��09��0�v0$�j0;�e0c�c0��^0q�]0H�T0)�L0�C0��K0ޗJ0��R0��S0��Q0��T0z�X0m�U0T�X0=�Y0�Y0��U0ܖV0ŖY0��]0��b0��d0��_0X�]0+�]0    �d0�d0͕b0��f0��i0s�j0H�h0"�j0��l0ڔj0��j0��e0[�d07�b0 �b0ړ]0��R0��L0|�B0g�;0[�50F�'0+�"0�0�0�0����/��/��/���F3ϙG3��D3��:3~�63N�53'�33��,3�$3�3�3B��2���2���2����0���0���0���'1��,1��41s�61L�@13�M1�\1�e1�n1��x1ܟ{1Ÿ�1ɟ�1ܟ�1ޟ�1���1���1⟧1ɟ�1���1���1���1~��1c��1H��13��1+��1$��1
��1ܞ�1���1���1o��1N��1$��1���1ѝ�1���1v��1]�}1B�z1)�y1��w1ɜu1��w1��q1��j1e�c1P�b19�c1�_1     �X1��V1�V11�W1]�Z1|�`1��`1��a1ۜe1
�h1B�n1k�l1s�k1��d1��[1��P1��F1��@1��41��.1��,1��,1e�/17�11�51ۜ?1��C1��F1u�L1X�L17�N1�O1�G1�;1 �)1)�1R�       1i�1��1��1��*1��41��;1��11x�*1i�31Z�=1\�@1v�<1��21��)1��1��1��1Ü1ל1� 1�1$�1)��0�&1���0ޜ�0��0���0
��0"��09��01��0+��0$��0��0���0���0��0ۜ�0���0���0���0u�1V�17�1�1�+1�81��@1ܛE1ÛK1��R1��W1��W1i�V1R�W1/�U1�P1�R1�S1&�T1��U1ךV1ÚQ1��M1��G1q�F1a�D1@�>1�81��11��%1ՙ1����0���0Ǚ�0ޙ�0�&1�1�&1-��0@��0V��0i��0i��0X��0@��0'��0��0���0��0ə�N�3���3���3o��3R��3V��3R��3]��3g��3_��3c��3]��3D��33��3"��3��3��3���3���3���3쟪3�3��3��3��3��3���3��3ϟ�3���3���3~��3i��3R��3?��37��3+��3��3���3螓3枋3���3��x3�r3�i3"�a3"�Y3�I3�>3��53ޞ.3͞,3��*3��%3i�3R�3H�3L�3o�3��3��3ޞ3�3�3   �
3�3?�3P�3=�'39�/3X�(3q�3��3��3ܟ3�31�3c��2���H�3���3���3���3s��3\��3?��3��3     ��3���3ٞ�3���3���3m��3R��33��3��33ٝ�3Ý�3���3���3x��3a��3A��3(��3
�3��3�y3ܜy3�y3&�z3�x33�q3?�o3c�l3Z�e3_�Z3_�Q3N�L3]�>3g�83��23��+3ϝ%3�+3
�-3F�13��:3��K3˞Z3�i3��v3�3䞋3ٞ�3ɞ�3ž�3���3ٞ�3䞵3���3��3"��35��3L��3_��3q��3���3���3���3���3����3B��3A�~3/�|3�w3&�p3��l3ۛh3��h3z�k3c�i3B�f3�d3�e3ٚc3��\3��\3ɚW3͚N3�N3ܚP3��O3x�M3a�R3F�R3'�M3     �D3��F3ϙ��2���2י�2��2���2��2&��2-��2P��2��3��3ך3�3 �3?�!3\�"3z�$3��+3��73��B3��N3�^3��h3�s3=�}3H��3J��3H��3B���2柛2⟣2���21��2a��2z��2~��2|�}2v�t2s�j2s�e2\�a29�a2-�e2A�j2H�l27�k2�r2�t2&�v2��y2�2䟂2՟�2ퟌ2��"a2��a2��a2��b2��g2o�g2X�f29�b2�Y2��X2ٞF2��?2��:2v�-2]�!2D�27�27��1)��1(��1H��1a��1���1���1˞�1��1��1D�2\�2��2��2�2/�2\�2���
2��2��2V� 2F�02/�=2�K2�U2 �^2��`2�^2ɟ`2��a2���i1��j1��g1��g1m�g1L�j1/�l1�j1�b1�U1&�L1+�D1;�J1?�T1?�V1?�F1P�?1\�@1u��do0g�v0T�o0E�j05�c05�[0&�V0
�W0��N0�P0˦]0ǦZ0��N0��G0��90��50��20u�B0i�O0J�b0A�i0/��0��0���0���0���0���0���0ۥ�0ĥ�0��&1��
1��1��1|�1y��0o��0c��0P��0C��07��0-��0$��0 ��0�0ݤ�0���0���0|��0e��0E��05��0&��0��0��0��0��0��0��0գ�0���0���0k��0N��0=��0��0��0��0ߢ�0ۢ�0Ǣ�0���0���0m��0P��0D��0)��0)��0��0��0�0ޡ�0���0���0���0���0m��0i��0e��0V��0F��0?��0/��0��0&��0���0��0젻0ˠ�0���0����0���0���0���0���0���0���0��1��1��1��1��'1���}2E�{2E�w2;�s2(�k2�`2 �^2"�`29�m2L�y2s��2���2���2���2���2���2~��2a�|2J�}2E���3a�|3g�x3k�t3w�l3m�e3i�^3y�`3��d3��l3��t3��y3���3���3���3���3���3���3���3���3���3���3y��3_��3J��3P��3Z��3a���3���3���3���^�2���2��3Š3��3��3��3ˠ&3ˠ,3͠+3٠&3��3��3��3&�3�
                   7848: 3���2&��2��23��2P��2i��2���2���2ӡ3��3
�3�3�(3&�'3L�+3g�13w�23��83��G3��P3��Z3ˢ]3Ѣb3��]3��b3k�k3z�i3��m3��p3��p3~�z3���3���3���3���3���3���3���3���3���3���3���3���3���3T��3F��3N��3X��3e��3q��3���3x��3_��3N��33��3��3���3��3ۡ�3ѡ�3¡�3���3���3u��3V��3J��3\��3V��3A��3 ��3&��3��3Ӡ�3͠�3���3Ǡ�3���3���3���2��2��
2��2ɠ2����0���0���0���0w��0c��0X��0?��0��0���00��0��0+��0C��0\��0u��0���0���0Ţ�0���0���0���0���0����0��0ޡ�0͡�0���0���0���0���0���0z��0]��0F��0C��0C��0D��0L��0Z��0k��0���0���0���0���0ס�0ꡥ0���0&��0졻0��0��0��0��0��&i1���@1u�G1��>1��?1Ӡ>1ޠ91�51��;1
�C1 �J1�L1��T1&�Z1��\1�c1�k1�o1Ѡn1��n1��m1��i1����13��1��1���1߭�1���1���1y��1s��1k��1V��15��1��1��1ᬻ1ͬ�1¬�1���1���1���1���1m��1R��1$��1��1���1��1ի�1��1��2�2�2��2�2      �$2��92�H2�M2�G2׫?2ȫ=2��=2��A2��K2��Q2��W2��W2{�S2i�N2T�L2/�K2�G2�F2��I2�A2Ѫ<2ªA2��=2��62��/2��+2��(2��/2w�*2e�-2V�*2J�%2=�'2&�%2�"2 �(2��!2ߩ2ѩ2��2��2��2��2��2��2u�2o�"2a� 2J�2;�29�25�2,�2�2�2��2�2٨2¨2��2��
2��
                   7849: 2��2��2u�2e��1_��1c��1J��1,��1��1��1���1��1ѧ�1���1���1���1���1���1§�1ק�1ѧ�1է�1ѧ�1ħ�1ͧ�1˧�1˧�1�}1�x1קu1ǧs1ϧm1�g1�c1ɧ^1��X1��N1��F1��=1��:1��51Ƨ11ħ21��,1ħ'1� 1�1ߧ1� 1��1�1�1�1*�1?��0;��05��0(��0 ��0(��0��0��0���0���0��0��0��0ߧ�0ߧ�0է�0˧�0���0���0���0���0��z0~�u0o�o0g���D4�G4��J4�N4մO4��L4��K4��J4y�L4Z�M4E�I4E�D4G�@4;�D4*�B4
�=4��84�84�54��34�04˳*4��'4��4��4��4��4��4e�4P�47�4.��35��39��3C��3P��3?��30��3&��3 ��3��3      ��3��3��3��3���3��3ݲ�3ʲ�3���3���3���3���3���3���3���3q��3g��3g��3u��3���3���3���3���3���3���3���3ײ�3첢3��3��39��3R��3Z��3E��3,��3��3&��3��3��3��3���3���3۲�3Ѳ�3ϲ3��{3��z3��{3{�q3w�l3u�o3��k3��d3��c3�[3�T3�O3��H3��A3��=3��:3��03ʲ'3�'3�'3�� 3�3�3 �3�32�3I�3A�3N�3o�3��3��3{�3b�&3y��2���2���2Ƴ�2ij�2���2ij�2ȳ�2ٳ�2��2���2��2.��2A��2I��2L��2m��2y��2���2���2���2���2���2Ĵ�2���2մ�2�2���2�!2�2�%2ٴ*2ʹ.2��22��72m�A2y�G2��K2��D2��?2ϴ72��Zo2&�t2��v2ʹm2��j2��a2w�d2i�k2d�t2L�y2$�z2��t2��h2�p2$�g23�[20�P2"�G2��A2�<2۳>2��<2��<2\�@2(�L2�\2�h2�t2�i2�^2��R2ݲB2ײ>2Ʋ12��%2��2ʲ2ղ2Ʋ�1ϲ�1���1���1���1ղ�1߲�1���1u��1^��15��1��1��1���1ٱ�1��1�2?�2e�2��2�� 2m�&2?�(2&�)2&�%2߱&2ѱ(2˱(2��+2��02g�12`�82`�;2E�=2$�=2     �:2�62İ22��22��-2Z�.27�'2�$2�#2��%2��'2��"2c�!2G�#2$�"2
�2��2��$�2��2��2۲�2���2���2���2���2Ȳ�2Ѳ�2첋2��2��2?��2`��2���2���2Ƴ�2賩2���2���2�2۳�2ij�2���2���2���2���2���2���2q��2V��2?��2*��2��2���2��2�2�2��2��2�2�2(�
2=�2C�2=��1;��1=��1A��1A��1A��1?��1/��1��1���1Ӯ�1���1���1���1o��1Z��1;��11��13��Q6�R6ѻR6��N6���~y5׻z5ͻ}5û�5û�5���5���5���5���5r��5i��5R��5;��5��5%��5H��5H��5J��5D��57��5$��5��5��5��5 ��5��5��5���5��6ں6��
6��6��6��6��6��6|�6[�
                   7850: 6T�6V�6[�"6N�'67�%6'�#6�#6�6޹6ܹ6޹6ٹ6ɹ6��6��6ǹ�5ٹ�5չ�5޹�5ܹ�5���5���5��6��6���5i��5_��5Y��5R��5<��53��5/��5��5��5��5��5��5
                   7851: ��5���5��5��5޸�5ϸ�5Ǹ�5���5���5���5���5a��5H��5;��5"��5��5��5��5#��5�~5�s57�g5T�`5v�d5��b5��b5͸]5��W5�S5D�T5x�Q5��S5��Q5ɹL5ϹH5�L5��S5�Q5/�Q5J�M5o�Q5��N5��N5ӺN5�H5�B5$�A55�85P�55v�05��(5ǻ�i5ջn5ͻ�L5        �J5�I5��E5�H5϶L5��L5��H5��H5��C5��:5��35��75��75ܶ;5 �=5�@5B�A5]�E5R�D57�J5'�K5�L5 ���4ۻ4»4��4��!4k�#4V�(4;�*4 �-4�/4�14�64�?4�C4�>4�=4��<4�?4�C4��G4�M4�O4�Q40�V4=�]4=�^4C�f45�l4&�r4$�r4�x4�|4��4��4�4ߺ�4պ�4ʺ�4º�4���4���4���4���4w��4f��4d��4b��4^��4T��4C��44��4"��4��4 ��4���4��4ӹ�4Ϲ�4ȹ�4���4���4}��4g��4X��4V��4I��43��4(��4��4��4���4��4��4��4Ӹ�4ʸ�4���4���4���4���4m��4T��45��4��4
��4&��4��4��4ݷ�4Ϸ�4���4���4Ϸ�4添4���4���4
��4��49��4`��4s��4���4���4���4ĸy4߸u4�x4׸{4��4���4{��4b��4N��49��4$��4��4���4�4跋4淂4���4���4᷃4ѷ�4���4���4���4���4���4u��4i��4X��4R�}4G�49�47�~4.�{4�z4     �z4��y4�v4�q4�n4նj4նj4�h4�c4�]4&�X4�U4
�Z4��_4�a4۶Z4�Q4��O4�N4(�F43�?4K�44X�*4g�,4u�)4��&4��$4��#4��4��4��4��4e�4K�47�4�4&�4�4ն&4̶'4Ķ$4��(4��04��84��74�84u�@4`�@4e�>4��C4w�K4q�M4g�M4N�P4I�R4G�Q43�N4.�J4;�E4A�G40�K4"�I4�F4�G4��H4ٵK4��J4��J4��L4��Q4y�O4o�K4Z�I4G�D49�F4(�F4"�F4�D4��m�2���2&��2&��2��2
��2��20��2V�2��r2��g2�X2�O2�A2�722�+2E�22X�/2w�/2��.2Ͷ.2��)2��'2�#2     �2&�2�2�
                   7852: 2.��15��1T��1���1���1���1���1���1Ϸ�1߷�1췻1���1&��1��10��1G��1V��1i��1���1���1���1͸�1�~1��v1��u1�{1߸~1��|1��w1��}1���1���1e��1R��1;��1��1���1己1Ϸ�1���1���1q��1P��12��1��1 ��1?��1b��1���1���1���1���1��1I��1&��1��1߶�1���1���1���1e��1K��1*��13��1.��1  ��1��1ĵ2��   2��2��
                   7853: 2��2u�2��!2��!2��2��2}�
2d�
2?�2"�2��
72�82�62$�<27�529�22(�.2;�:2T�F2d�O2b�[2?�c2.�o2&��3�6��6���6���6���6���6c�~6F�{6)�v6$�m69�k6P�g6a�d6k�^6��W6��W6��T6��Q6��T6�S61�O6N�L6m�P6��U6��Y6��\6��]6��[6��X6|�T6g�X6T�Z6H�Y6/�Y6 �]6�a6/�e6L�g6i�j6��k6��m6��o6��p6��u6��z6��}6��~6���6���6���6���6����6俊6���6%��6��6�x6�t6=�q6i�m6i�e6k�f6��b6��_6��[6�W6�W6�V6Ž[6��_6��_6|�`6_�d6L�i6@�n61�s6�w6�y6�}6漃6伉6���6���6���6o���6P��6'��6$�z6�t6&�m6�f6�i6׻b6ڻX6�Q6��eN6��K6�E6�<6�76&�06�.6�'6�6      �6�6�6�67�6X�6t�6��6���5m��5H��5)��5-��5��5��5��5��5     ��5-��5X��5Y��5���5���5ϼ�5�5$��5D��5k��5x��5���5���5Ͻ�5��5��5B��5g��5e��5���5���5���5���5���5���5վ�5��5��57��5H��5Y��5o��5���5��6��
6ſ6ſ6ÿ$6ǿ+6ӿ06ӿ06�/6��+6�16�36$�06?�56L�:6V�86r�36v�.6t�+6��76��96��=6��>6��;6��A6i�G6R�J69�O6 �X6�^6 �`6��a6�b6��h6��l6��p6��y6��}6���6���6���6���x5ܻy5׻�(5ǻ!5ܻ#5��!5�#53�(5/�/5 �65$�25F�;5?�D5;�K5-�Q5�[5�d5�f5ܻi5ջ�n5ͻq5޻v5޻x5ܻ�s3��v3��x3�����3�ˆ3�†3jˆ3R3’333���3���3���3���3���3���3���3���3���3w��3`��3M��3&��3��3��3���3���3���3���3���3X��3I��3E��3K��3I��3V��3b��3`��3d��3q��3w��3���3���3���3���3���3���3���3���3���3y��3f��3m��3h��3=��3��3��3.��3(��3��3��3ѿ�3Ŀ�3���3���3���3���3���3m��3Z��3=��34��3&��3$��3��3��3���3پ�3���3���3���3���3���3���3ξ�3վ�3ʾ�3���3���3w��3Z��3M��3G��3&��3*��3=��3G��3=��3��3��3���3��3ݽ�3ʽ�3ƽ�3ƽ�3ƽ�3���3���3���3��3i��3Z��3\��3f��3}��3o��3b��3I��3?��30��3.��35��3;��30��3��3���3߼�3Ƽ�3���3���3���3}��3u��3y��3���3���3`��3?��35��35��3"��3
��3��3��3��3��3���3���3���3���3
��3,��3I�4G�       4`�
                   7854: 4u�4��4��4��4��4��"4���
"4��#4��"4��!4��4o�4V�4?�4$�4�4�4�4�4ۻ�'&4T�4T��3Z��3Z��3R��3V��3T��3k��3���3���3���3ʾ�3��3��3��3  ��3��3���3���3��3��3��3Ѿ4��&4���3���3���3���3u�4\�&4C��3,��3&��3(��3,��34��37��3G�&4T���4X�}4X�y4i�s4}�n4��l4��g4��h4ƾm4ƾm4��t4��w4��r4��o4վp4�m4�p4�v4�4羀4̾�4���4���4w��4\��4P��4G��4G��4M�~4P�~4R��4X����19��1&��1��1��1��1.��19�2.�&2$��1�2�   2�2��2��2��2��2�2�!2�#2�%2��$2��(2��-2��(2��'2��)2��-2��/2��02q�12^�32K�524�82�82�72��52��72��82��62��42��52u�62K�62(�82��;2��?2��@2��B2{�C2\�I28�H2,�B2&�@2�>2��H2��P2��S2��S2��R2y�X2d�Z2Q�[2;�Z20�[2   �`2��e2��h2��l2�o2��u2��y2��w2��u2��w2��z2��~2�ą2�Ď2�ě2�Ğ2Š2 Š2=Ţ2Qť2dŪ2wų2yŶ2qŷ2^ŷ2QŹ2Rż2Zſ2E��24��2.��2(��2��2��2��2���2��2��2��2���2��2
��2"��26��2Z��2{��2���2���2���2���2��2q��2d��2m�3u�3q�3f�3^��2O��2=��26��2$��2��2��2���2���2���2���2���2���2���2��3��       3��
3��3��3��3��3��3}�3j�3I�$3=�$3T�&3q�%3��)3��+3��03��43��83��83��63Z�53?�036�.30�/3(�23�33�63��<3��?3��F3��K3��Q3��U3��W3��X3��^3��_3w�b3X�g3`�g3q�k3m�k3X�l3G�t32�o3"�k3�i3�n3��s3��s3���x3��z3��}3�ƒ3����4�´4ñ4í4ê4�£4�¢4�›4�–4�š4Õ4 ×40ã49ë40ï4$ò4ô4ô4��� j3��h3��^3��^3��`3�V3�K3�D3�M3"�`3%�\35�b3H�e3[�Z3]�N3T�E3N�M3Y�Z3g�c3p�m3o�s3T�l3P�i3@�n31�r3+�y3�w37�{31�|3
                   7855: �w3��r3��j3����/��0��0��0��0��0���/���/���/���/���/���/���/���/���/���/���/���w91|�01V�(13�#1�1��1��1���0���0���0���0~��0i��0R��05��0��0���0���0���0���0~��0m��0W��05��09��0;��0Vǻ0]ǯ0_Ǩ0gǝ0�Ǔ0�LJ0��|0��k0��\0��M0��>0��70��&0��0��      0���/���/���/���/���/���/���/���/���/r��/Y��/>��/5��/@��/P��/J��/3��/��/&��/��0��0��*0��:0��M0��\0�g0�s05ǀ0/ǐ0;ǟ0$ǰ0 Ǻ0���0���0���0���0
                   7856: ��0��0 ��0;��0[��0|�1��1��1��1��#1��/1��?1��?1��C1�J1'�L1J�L1r�Q1��Y1��a1��j1��t1��|1�ȃ1�ȑ1�Ȝ1�ȡ1�ȧ1�ȭ1�Ȳ1�ȹ1���1���1���1���1���1��1&��1��1��1%��1'��19���1��1-��1'��1��1��1�&2�2��2��2��2s��1|��1���1x��1[��1=��1/��1]��1x��1���1���1���1���1��1��1��1���1i��1_��1D��1��1���1���1
͵1ͩ1ʹ1;Ϳ1e��1i���1�ɾ1�ɹ1�ɲ1�ɟ1�ɑ1�Ɍ1�ɑ1�ɑ1ʛ1@ʤ1Xʲ1Dʻ1)��1��1��1���1���1���n1@�p1/�r1+�{1�z1�u1��s1��i1��]1��V1��I1��D1�C1H�?1]�?1|�I1��X1s�d1Z�n1@���1PЮ1-Ю1а1�ϭ1�ϰ1�ϱ1eϲ15ϯ1$ϧ1ϟ1�Ι1�Θ1�Ε1���.�1�Ε1|Δ1|Ύ1�Έ1|΃1|�y1��s1��a1~�S1s�L1s�:1z�+1��#1��1���0���0���0���0���0���0���0
��0��0Ͽ0ϳ0�Φ0�Ι0�Α0�Ή0��~0��q0��a0x�N0c�90c�)0s�0q�0k��/m��/���/���/���/���/���/�κ/�����/�ͺ/���/���/���/���/~�0c�#0X�-0X�C0t�Z0��j0��|0�͐0�͞0�ͧ0�Ͳ0ν0;��0;��0&��0        ��0���0���0��&1��1��1��1z�1e�1a�1[�(1&�71��E1��X1��q1�̅1�̘1ͣ1 ͪ1�̡1�̗1�̑1�̉1��1��u1z�r1v�m1��\1��P1��C1s�:1|�)1��1��1��
                   7857: 1���0���0���0���0���0�̽0�̷0�̵0�̱0�̪0�̢0�̚0�̔0X̑03̎0̍0�ˋ0�ˊ0�˅0�˄0c˃0F˃0;ˁ0�x0��m0��e0��_0��]0��g0��w0�ʇ0�ʖ0�ʒ0�ʙ0�ʨ0�ʞ0&˛0˙0 ˘0"˟03ˠ0N˭0m˳0�˽0���0���0���0���0
��0�1/�
1�1���0���0���0���0]��0+��0��1��1��1�� 1�1@�115�51�;1��E1��O1��R1��R1T�Q1"�P1��K1��D1��91|����3$��3��3��3���3���3���3���3���3���3���3���3���3~��3c��3T��3k��3v��3v��3v��3a��3V�4e�4$��3��3���3���3���3���3���3m��3T��37��3*��3��3���3��4��4��4z��3s��3i��3L�4=�4(�    4�
                   7858: 4��4��4��4��4��4x�+4g�&4J�(41�/4�74 �C4(�L4�N4�P4��Y4��X4��W4��Y4��]4��b4��k4��i4u�g4c�n43�v4�w4��v4��u4��s4��o4u�m4P�g45�`4(�[4
�T4�N4      �E4��?4��64��14�$4�$4�$4��4��4�4+�4;�
                   7859: 4C�4R��3Z��3g��3x��3o��3a��3z��3���3���3���3���3��3&��3L��3g��3���3���3���3���3��3;ӿ3XӺ3oӲ3vӪ3�ӳ3�Ӧ3�ӝ3Ԕ3Cԋ3vԌ3�ԕ3�ԛ3�Ԙ3�Ԑ3�ԍ3�ԅ3��z3��l3 �l3;�g3m�a3v�Z3��a3��X3��Q3��F3��=3��43
�+3(�(3D�&3c�&3|�!3��'3��&3��+3��3��3��3��3��3���2���2���2���2���2���/A��/���/k��/a��3�/-��/��/+��/3��/�0�%0�30      �D0�E0L�=0e�;0x�80��E0��W0��]0u�d0\�n0L�u0L�~0Lҁ0V�u0k�n0x�p0��u0�҂0�җ0sқ0]Ҥ0Ҷ0���0���0���0c�1V�1J�61A�B1/�W1�k1�}1 ю1�М1�Щ1�а1�и1�й1�й1�н1vл1_д1tЮ1P��$�6�׊6�׉6
؆6؅6؃6؁6؁6�6��}6��z6��w6��v6��z6��{6��z6��x6��u6��s6��p6��q6��q6��r6��t6��t6s�u6k�y6q�z6s�z6e�x6]�y6L�|6D�6N׃6Nׇ6T׊6T����1\��1R��1A��1&��1��1���1��2��2o��1L��1/��1&��1���1���1���1z��1s��1���1���1���1���1���1���1���1���1�ٻ1�ٶ1ڴ1�ٷ1�ٺ1�ٮ1�٦1�ٟ1�ٜ1�ٟ1ڞ1ڛ1 ڕ1&ڗ1�ٌ1�ه1�ـ1��q1�t1�o1&�k1�a1�_11�T1/�H13�;1/�11 �&1"�17�13�1&��0 ��0��0
ھ0ڲ0�ٝ0�ٔ0�و0��v0��g0w�\0T�X0;�L0�G0�?0��@0��60��30��)0��&0��$0��&0�(0*�"0;� 0(�0�0��0�0�0�0,�!0F�(0X�,0i�90`�30��30��-0��&0��#0��&0��0~�0��0��#0��#0��0��0��-0��,0&�,0�20-�&07�*0E�%0L�0N�0a�#0��.0��70��70��<0��>0��;0��90��80��60     �80 �B0/�=0=�A0T�F0Z�O0\�Z0X�a0Z�i0g�l0\�f07�j0/�s0;�o0 �q0��u0��x0�}0
ۂ0"ۄ0;ۂ0Jۅ0^ێ0zۖ0zە0o۟0kۤ0Z۶01۵0Aۭ0\۝0zۖ0�ۥ0�ۮ0�ۺ0���0�ۻ0�۸0�۶0�ۼ0�۲0�۶0�۱0�۾0&��0&��0��0,��05ܸ09ܾ0A��0H��0Xܸ0\ܸ0�ܸ0�ܾ0�ܿ0���0���0���0���0���0��1��1��1��%1��(1�� 1��'1~�(1a�1c�1R�!1F�+1A�.13�;11�C11�D1�K1�T1$�T1�V1�b1�e1��n1��t1��y1��q1��w1�}1�ۃ1�ہ1܇1*ܐ1Eܕ1Aܟ19ܦ1"ܬ1ܱ1�ۭ1�۵1�۵1�ۻ1���1���1���1���1���1���1���1���1i��1\��dJ2i�O2i�K2Z�N23�V2�_2�e2��h2��m2��|2�ڂ2�ډ2uڃ2Pځ2$�x2��t2�ف2�ى2     ڑ2?ژ2sږ2Zژ2 ڡ2ک2Cڭ2`ڳ2Zڶ2(ڶ2�ٹ2���2���2
��2 ��2/��21��2(��2��2���2���2���2���2a��2���2���2���2���2���2��2��2�&3&�
3��3��3��3�� 3�3 �!3"�%35�.3 �23*�;3�:3&�;3��.3��*3��03��33��@3c�M3X�P3;�U3 �S3 �T3��R3��P3��W3��a3��k3��t3��w3��w3��z3x؃3�؎3P،3C؋3/؎3&ؐ3ؕ3؛3إ3ج3�װ3�״3�׸3�׻3�׽3c��3C��3+��3$����2��2-��2J��2x��2q��2J��27��2+��21��2P��2z��2���2���2���2���2���2���2���2�׿2�׻2�׹2�׶2�׶2�׵2�׵2�׽2���2��2H��2Nؽ2$ر2
ب2�ס2�ט2�י2&ؒ2 ؊2
ؑ2 ؐ2(؆2&؂2�~2+؆2H�|2P�v2J�o2F�p2H�m2_�t2o�v2�؂2�؎2�ؚ2�ؐ2�؉2��2��~2��{2��y2��w2��s2��n2��d2��`2��]2��W2��O2��H2��C2��C2��P2��R2��T2��V2-�T2J�N2-�L2��A2��92��.2��(2��&2��!2��(2
�32�62?�'2/�2 �2�2 �2�
2 �2�2"��1,��1?��1A��1F��1V��1o��1���1���1���1���1���1���1��13�2L�
2e�2��
                   7860: 2��2��&2���1���1���1�2�2��2��2��2��!2��'2��/2��.2��32��72q�:2s�@2��:2��72��02��,2��,2�.2-�623�;2F�>2Z�D2c�I2g�J2i���0Vܞ0Vܟ0Hܦ0(ܠ0      ܖ0�ۜ0�ۍ0�ۈ0��}0��p0��l0��a0��U0��S0��i0��w0�ۋ0܌0 ܓ0Jܚ0V���/�׾/���/&��/&��/��/��/���/���/���/��/���/��&0��0���/���/���/���/u��/A���6�߉6�߃6�߄6w߅6k߇6e߉6V��40��*0��&0d�!0R�0o�0T�0"�0�0�0���/���/���/��/.��/K��/i��/����5`��56��5(��5 ��5 ��5���5���5���5���5q��5f�5h�5f�5b�5i�5m�5s�5�5��5��5��5��5��5�5�52�5A�5I�5Z��2�5k�5b�5`�5i�5y�5i�5C�5"�5�5��5���5���5���5��}5��y5��s5��m5��e5��b5��[5��Z5�Z5&�[5;�V5O�R5k�R5��N5��N5��P5��U5��[5��a5��c5��k5��p5��w5��x5�|5&�5=�5.�5�5��5��5��5��5��5��5�5k���_5f�[5^�Y5^�Y5`�W5`�V5^�T5V�R5R�O5N�Q5E�S5;�S55�R55�P5,�O5*�L5&�J5�G5�F5�D5�C5 �C5 �<5 �?5�<5�=5(�>5;�:5A�65E�55K�05K�.5L�*5C�&5?�%55�$5*� 5"�5�5�5��5��5��5��
5��5��5��5��5��5��5y�5k�5Z�5R�5K�5I�5K�5G�59�53�53�&5,�5"�5��4 ��4��4��4��4��4(��4,��43��4?��4N��4\��4m��4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4&��4��4
��4��4��4�4"��40��42��47��4;�4;�4I�4X�4`�4h�4m�4m�4i�4i�4w�4}�4��4��4��4��4��4��4��4��4��4��4��4��4���4���4���4���4���4���4���4u��4u��4o��4i��4o��4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4��4��4$��44��4=��4M��4V��4f��4m��4y��4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4��5u�5u�       5o�5h�5\�5X�5R�5M�5O� 5\�!5k�%5{�&5��'5��,5��.5��.5��15��45��65��75��95��:5��>5��@5��C5��D5��E5��J5o�L5X�M5?�N50�P5(�N5�M5�L5��L5��N5��N5��N5��N5��R5��R5��T5��T5��T5��T5��V5��V5}�V5y�W5s�[5o�_5k�_5f��$�5���5���5���5���5���5���5���5��5��5��5��5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5&�5   �5�5�5&�5&�5�5���5���]�5?��59��59��57��5,�5$�5�5��5     ��5��5���5���5���5���5���5���5���5���5���5���5���5��5��5��5*��55��5?��5A��59��57��5?��5P��5`��5q��5w��5}��5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5��5
��5
��5
��5��5
��5
��5��5��5��5��5��5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5��5m��5\��5T��5L��5E��5?����6��6��6��6��}6��{6��{6��y6��w6y�r6{�o6��l6��k6��k6��k6��i6��f6��e6��_6��\6��[6��[6��Z6��V6��S6��R6�U6�T6�R6�P6�L6 �L6*�O63�N6=�K6A�K6I�J6N�G6^�E6f�?6f�;6d�;6T�76P�66X�36V�16X�06Z�.6\�.6g�/6m�-6s�*6q�(6m�$6s�$6}�!6{� 6{�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6�6
�6�6�6�6*�67�6G�6X�6d�6q�6{�   6{�6{�6}�6�&6���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5��5��5��5��5��5��5(��5*��5*��5,��55��5A��5N��5^��5b��5\��5Z��5f�&6o�6u�6q�6o�6s�6y�6�� 6��6��6��6��6��6��6�� 6��!6��6��6��6��6��6��6��6��!6��!6�� 6��6��6�6�6�6(�60�66�6C�6M�6P� 6P�!6O�#6R�"6\� 6`�6^�6b�6m�!6u�6{�6��6��6��6��6��6��6��6��6��6��6��6��6��6��#6��%6��(6��)6��(6��'6�'6�(6"�(6&�)66�,6A�.6I�16O��]G6i�F6V�F6G�E6=�A6=�A6.�=6&�>6�>6��=6��?6��>6��=6��:6��;6��<6��=6��?6��A6��D6��B6��C6��F6��E6��E6��G6��H6��J6��L6��M6��O6��P6��R6��S6��T6��P6��O6��S6��T6��S6��T6��U6��U6y�T6y�R6s�S6V�R6A�S6,�S6"�U6�V6"�X6 �X6�Y6�X6�Y6�^6�_6�`6�_6�a6$�c6�c6�g6
�i6
�h6�f6�f6(�h62�h6?�e6E�d6O�d6b�d6u�c6{�c6��d6��c6��d6��d6��d6��e6��a6��b6��b6
�a6�a6�_6 �_64�_6C�_6G�_6K�Z6Z���6���6���6���6���6���6����/w�/����/��/��/��/6��/P��/P��/P��/E��/7��/$��/"��/��/��/���/���/���/���/���/���/���/���/���/w��/`��/\��/X��/h��/m��/C��/T���/*��/&��/��/&��/"��/��/���/��0��0��0s�0�#0g�*0;�/0A�80Z�F0m�E0b�@0A�K0=�Z0;�Z0$�T0�a0��Z0��S0��N0��A0��C0��I0��P0��M0{�I0i�90��40��(0��0��0��0��0���/���/���/���/���/&��/�/&��/���/���/���/���/���/��&0��0y�0g�0d�,0E�;0(�I0
�U0��Z0��X0��K0��@0��50��,0��(0��0��
                   7861: 0���/��0��0��0��0��#0��$0q�/0u�80m�B0X�P0I�[0A�c07�u02�p0"�h0�r0��r0��l0��b0��b0��Q0��B0��E0��<0&�10��$0�$0��/0��%0��0��0��0��
                   7862: 0��
                   7863: 0��0��0��    0��0��-0��;0��K0i�N0P�I0;�M0�F0�B0   �80�30�/0     �,0�/0��40��/0��'0��*0��40����/���/���/���/���/��/*��/I��/s��/s��/y��/k��/?��/0�/���/^��/R���/���/���/���/���/���/��/���/���/���/���/��/��/��/����/���/���/���/���/���/���/���/���/}��/q��/`��/^��/f��/{��/���$*0��,0��10��/0��/0��40��20��00��.0��&0��)0��*0{�10y�60{�60h�/0`�,0K�&0A�0C�0T�0X�0f�0}�0��0��0��0��0��0��0��0�� 0��#0��(0��&0��*0����/��/��/��/(��/5��/G��/T��/X��/T�0X�0^�0P�0?�05�0(�0�0     �0��0��0���/���/��0��0��0��#0��30��90��10��20��,0��!0��0��0��0��0���s0d�l0X�i0T�f0K�b0G�^0G�`0T�a0d�\0o�Z0w�]0��[0��\0��\0��]0��\0��a0��e0��k0��l0��i0��p0��q0��o0��v0��{0��u0s�s0d��N]6��Z6��Z6��Z6��X6��U6��S6��P6��L6��H6��D6��?6��96��56��/6��*6��&6��%6��%6��#6�� 6��6��6y�6q�6q�6s��5q��5{��5���5��5u��5q��5f��5X��5K��56��5,��5��5��5 ��5���5���5���5���5���5���5���5��5
��5��5�6�
                   7864: 6(�6,�6.� 64�#66�,66�466�<66�@6=�G6?�M6C�U6C�V6E�U6P�[6R�_6R�e6G�l6G�r6A�q6.�s6�w6�{6$�~6��6��6��M�6��6��6��6��{6��x6��s6��t6��r6��p6��u6��{6��}6q�~6^�{6P�y6=�s6"�n6�i6��c6��]6��W6��R6��P6��J6��D6��>6��:6�56
�76�36��.6��*6��&6�� 6��6�6�6��6�� 6��$6��'6��,6��-6��26��86��<6��@6��C6��F6��@6��@6k�<6b�66R�/6I�)6C�&6;�!62�6(�6*�62�62�6=�&6;��56��5��5��5���5���5���5���5���5���5���5���5y��5`��%�5Z�5i�5}�5��5��5��5��5��~5��~5��y5��y5��v5  �o5�e5�^5�Y5�Y5�V5 �R5�L5�F5�?5�75
�/5�-5�/5,�25C�05V�.5q�*5q�&5k� 5k�5o�5k�5f�5i��4s��4s��4w��4o��4q��4w��4}��4���4���4���4���4���4���4���4���4���4��4��4���4��4��4��4��4��4"��4(��4&��4(��4(��4$��4"��4$�4,�44�4.�~4&�y42�w4(�t4,�m47�i4K�e4Z�`4b�\4\�Z4^�U4f�L4X�F4T�E4^�@4`�:4b�64q�24��14��74��<4��;4��84��34��24��:4��?4��C4��I4��P4��U4�]4G�c4^�j4^�n4P�p4A�q4&�q4�r4��l4��w4��|4��{4��4��4
��4(�}46�4G�|4\�|4u�}4���4���4���4���4���4���4 ��4,��44��4?��4M��4V��4\��4f��4q��4k��4d��4s��4`��4E��4,��4��4��4��4���4���4���4���4���4���4���4���4���4��4b��4E��4��4��4,��4A��4b��4���4���4���4���4���4���4���4���4���4���4q��4^��4M��4;��4*��4(��4�5 �5��5��5��5��5��5��5��5��5��5u�5�5��5�5��5��5��5��5��5��5��5�5$�52�5;�5K�5\�5h�5�5��5��5��5��5��5��5��5��5���4��5��5�5�5��4&��4;�5K�5X��4i��4���4��5��5��5��5��5��5��5��$5��+5��/5��35��55��65��05q�(5f�%5O�*5E�25V�75R�954�:5�<5��:5��;5��F5��G5��M5��O5��V5��U5q�P5X�V5O�`5d�a5X�d5G�i52�i5$�i5
�k5�k5��i5��h5��f5��e5��e5��i5��j5}�l5k�p5`�p5V�q57�u5*�y54�v5O�r5q�q5{�q5{�s5��z5��}5��w5��y5��~5��5��5��5���5���5���5���5���5���5���5���5���5���5��5��5��5�~5,�|5G�x5^�5o��5���5���5���5���5s��5h��5k��5{��5���5���5���5���5���5���5���5���5���5���5��5��5��5��5�|5,�z5�v5�n5��k5
�n5&�m54�n5E�c5V�_5T�V5\�V5m�U5u�V5��N5��O5��R5��O5��N5��T5��Q5��O5��S5��P5�T5�R5�[5.�_5�c5 �k5$�i59�k5G�l5b�o5f�s5i�|5���5��5Z��5C��5(��5��5��5$��5=��5Z��5o��5���5���5���5���5���5���5���5
��5��5���5���5���5���5���5���5��50��5C��5��5     ��5���5���5���5���5���5���5���5���5���5���5
��5��5���5���5���5��6��   6��6��
                   7865: 6��6��6��6�
                   7866: 6.�
                   7867: 6A�6(��5��52��5Q��5b��5d��5l�6m�
6��6��6��6��6��6��6��6�� 6��'6��.6��16��76��86��56��;6�B6��H6��O6��T6��S6��M6��G6w�F6Q�J6K�R6\�X6j�^6h�`6\�^6M�[69�`6*�d60�f60�g6&�i6"�k6�f6�a6��[6��V6��P6��T6��P6��Q6��W6��c6��h6��k6��m6��h6��b6��_6��]6}�]6f�_6R�a66�d6(�g6  �k6��l6��n6��m6��f6��a6��[6��U6��R6��P6��V6��R6��Q6 �L6*�C6R�?6d�?6��96��76��76i�:6R�=6.�>6�?6��=6��96��56��16�*6��#6��6��%6��,6��"6��6��6��&6d��5M�6`�6o�6s� 6�*6��16��86��@6��G6f�K6d�Q6G�Z6?�]69�e6&�c6�a6�]6���8�5���5���5���5���5���5���5���5h��5d��5d��5^��5Z��5O��5E��5M��5A��56��54�}5�w5�w5��s5��q5��k5��d5��a5��]5��Y5��T5��P5��Q5��Q5��T5��[5��`5��e5��i5�j5�n5�s54�v59�z5E�y5R�{5d�5s�5}��5���5���5���5���5���5���5���5���5���5����2 ��2��2��2�2�2�2�2     �2�2 �2�2��2��2��2��2���2���2���2���2���2���2��2��2��2��2��2"��2"��2 ��16O�16`�46m�66q�96w�:6��=6��A6��B6��C6��D6��D6w�F6k�G6i��;Z6Z�Z6i�Z6{�[6��[6��Y6��X6��V6��T6��T6��X6��Z6��X6��Y6��Y6��X6��X6�Y6
�Z6�X6"�X6&�X6.�X60�Z66�\6E�]6?�`69�`6E�c6I�e6G�e6O�b6Z�^6^�c6f�e6q�f6q�i6q�j6{�m6��n6��p6��s6��t6��t6��w6��x6��{6��6y�~6k�6Z�6X�6d�6h�6b�6X�6A�6;�6?�6;��&�/$���/2�/;��/C��/9��/&��/��/��/����/��/����/ �/�/$���/}��/w��/s��/h��/^���/R�/`��/y��/���/���/���/���/���/���/���/���/}�u0�k0�b0�Z0N04I04N0V0 a0�f0�t0w~0s�0m�0y�0�u0�&�5&6�5��5��5��5�5�5�5$�50�5?�5E�5C�50�5&
5555�   5��4�4�4E�4U�4U5<5.5&c6�
g6�
&}6�
�6{
&(�6��6��6u6(m6.b6K_6Z[6�^6�b6
a6
_6$
]66
Q6V
E6\
86f
46f
)6u
$6b
6h
6n
6�
�5�
6h
6\
6*
6
6
�5&
6$
6E
�5\
�5Z
�5h
�5l
�5�
�5�
�5�
�5�
�5�
&
5�
5b
�4
�4��4��4&
�4S
�4�
&�4�
�4y
�48
�46
�4
�4��4��4��4��4��4�4w�4u�4p�4h�4f�4h4h|4h&
|4h|4h|4jt4jl4qf4q^4�X4�X4�_4�c4
g4C
n4w
&�3�
�3�
�3�
�3�
�3�
&
                   7868: �3�
�3�
�3b
�3X
�3X
k3I
R3I
93`
73h
63{
&    �2�
�2�
�2q
�2O
�28
�2
�2
�2(
�2`
&(4�,4�4��3��3��3��3��3��3��3��3�
                   7869: 4�4�4
&4  
/4
24�64�74�H4�O4�B4�54�(4�&"W3AQ3?K3`D3f=3^:3U/3=/37393�+3� 3�33(#3C3l3�3�3�3�.3�73�A3�L3�S3�Z3�]3�^3�U3�Y3qd3ff3QZ3GW3A�6�
�6�
�6�
p6
n6�
g6�
_6�
c6�
g6�
h6�
q6�
}6�
$�5�
�5�
�5�5!�5?�5\�5h�5^�5\�5`�5��5}�5I�5Z�5hr5�\5�H5�B5�?5�85�,5�5�"5�5��4��4��4�5�5s"5Q(5.#55     5�

5�
�4�
�4�
�4�4�4*�4�4�
�4�
�4�
�4�
�4�
�4�4�
�4�
�4�4�
�4�
=n4w
q4�
u4�
v4?u4lv4�v4�r4�q4jm4&j4e4=h4sh4�d4�_4�\4V[46W4fU4�J4�B4�@4�N4�[4W4MO4OH4}>4p54\+4\54?44**4'4�44�4*4Q4j464�4�4�
4�
                   7870: 4��3��3��3��3��3��3j�3�3`�3:�3�36&4Z�38�3�3�
�3�
�3�
�3�
�3�
�3
�3\�3^�3!�3�
�3�
�3�
�3�
#63{
<3�
M3�
Y3�
�3��3��3�x3�q3�r3�s3j3�i3�Z3M3MC36373?/3�3�!3�+3f)3?"3(3*32�2.�28�2Z�2\�2Z�2G�2!�2�
�2�
&�2`
�2�
�2�
�2�
�2
�2?�2�2��2��2�2�2��2#�2b�2!�2�20�2?�2:2My2Qs2x2�n2�j2�g2yf2uc2E^2V2�
O2�
@212      %2     222f2�
2�2��1�1$�1Q�1��1�
2�2012dI2nK2�H2�F2�:2�%2�'2�1242!22�2.
                   7871: 2S�1j�1��1��1��1�1<�1`�1�12�1l�1Q�1#�1��1��1}�18�1�1*�1>�1w�1��1��1�1>�1!�18�1Q�1�1�1�1��1��1f�12�1�x1�j1�c1_1sX1wT1SB1^31n%1n41SH1EV1._1�]1�T1�L1�D1r@1d<1Y51E+1?'1 1�1�1�1�1n�0��0��0��0��0��0��0��0��0��0\�0^�0w�0d�0G�00�0�0!�0:�0h�0j�0Q�0:�0#�0��0��0��0��0��0��0�y0�q0r0�g0�_0�L0�F0�=0�30�,0�!0�0�
                   7872: 0�0�0      0=&0ME0SG0h30q0s0s0�
00E90r[0�s0��0��0��0��0#�0W�0��0��0�0(�0^�0��0��0��0��0��0��0��0��0n�0.�0��0��0{�0u�0��0�u0�k0�_00]0w_0�p0�Z0�a0
^0GU0QB0&&0A0^0�
                   7873: 0�0��/j�/�/�0h&04�/�/I�/��/��/��/�/M�/��/`�/�/��/��/��/A�/�/��/��/^�/K�/*�/
                   7874: �/�/��/��/n�/<�/�/��/��/f�/6�/�/�/�/�/!�2��2��2�2��2��2u�2C�2
�2�
�2�
�2�
�2�
�2�2M�2��2��2�$�1{�1��1E�1�1��1��1n�1I�1�1��1��1��1��1�1W�1��1��1��1��1��1{�1K�1�1��1��1
                   7875: �16&2W2�  2�2�
22:�1U�1j�1{#�1�1&�1*�1�1�1�1.�1K�1d�1y�1{�1��1��1��1��1��1#�1E�1w�1��1��1��1��1{�1<�1�1��1��1��1u�1V�18�1#�1�1)�1��1�{1Gm1(n1Z1[1#a1:a1nW1�O1`D1GB1&:1(*1((1=01`:1b41�A1�P1�\1_18f1\t1sw1�~1��1��1��1��1��1��1��1��1u�1O�1#�1�1��1��1� P0Z@0Y;0Y(0O$0Z0w0� 0�0�0�0�0.0^
0� 0�     0�00#0!0&040�G0�N0�R0UY0g0�p0�h0�`0�Z0fP0Z�/b"�/["��/�"�/�"�/#�/#�/S#�/�#�/$�/j$�/�$0�$00'%B0�$E0�$A0�$=0G$;0$-0�#0y#0:#�/�"�/�"0�"0�"0�"0�" 0�"0�"#0�"%0�".0�"90�"10�"@0�"Q0�"V0�"_02#q0b#d0
                   7876: #l0#t0#�0
                   7877: #~0U#|0�#�0h#�0:#�0t#�0�#�0�#�0�#�0b#�0�#�0!$�0�#�0�#�0]#�0�#�0�#�0�#�0$�08$�04$1$�0K$1l$1�$�0�$�0�$�0�$�0�$�0�$�0�$�0�$�0�$�0.%�0n%�0�%�0�%�0�%�0&�0�%�0�%1�%1_%      1�%1�%!1�%41�%=1t%M1h%T1S%d1`%h1B%w1I%�1M%�1I%�16%�12%�1K%�1�%�1�%�1�%�1�%�1�%�1�%�1�%�1�%2�%
                   7878: 2�%&2�%2�%2�%2�%2�%"2�%$2�%,2&22,&92.&C2)&>2
                   7879: &E2&W2&_2&i2B&t2'&{2<&y2b&�2Y&�2Y&�2M&�2U&�2v&�2�&�2U&�2_&�2�&�2�&�2p&�2Y&�2{&�2�&�2�&�2�&�2�&�2�&3�&      3�&3�&3' 3K'*3{'53�'F3�'U3�'[3�'f3�'\3�'g3�'v3�'~3�'�3�'�3�'�3�'�3�'�3�'�3!(�3:(�3K(�3a(�3�(�3�(�3�(�3�(�3�(�/%�/�$�/�$�/�$�/D$�/,%�/U%�/S%�/+%�/%F0�/I0�/!0�/30�/60�/:0j/60F/,0!/,0/(0�.$0�.0�.0�.�/�.�/�.0�.�/�.�/�.�/!/�/Q/�//�/p/�/J/�///�//�/�.�/�.�/�.�/�.�/�.�/�.�/�.�/|.�/>.�/�-�4/�4/�4/�4�.�4�.�4�.�4�.�4x.�4M.�4%.�4�-�4�-�4�-�4�-�4d-�4O-�4-�4�,�4�,�4-�4K-�4x-�4�-�4�-�40.�4p.�4�.�4�.�4/8�4�/�4�/�4|/�42/�4�.�4�.�4�.�4�.�4�.�4�.�4v.�4U.�4!.�4�-�4�-�4f-�4<-�4-�4-�4�,�4�,�4�,�4�,�4-�4/-�4B-�4I-�4/-�4�,�4�,�4�,�4�,�4�,�4-�4-�4>-�4U-�4l-�4}-�4O-5I-�4j-�4�-�4�-�4.�4!.�4D.�4�.�4�.�4�.�4�.�4�.�4�.�4/�4F/�4|/�4�/�4�/�4x/�4z/�4�/9�5�/�5�/�5p/�5_/�5W/�5</�5/�5/�5/�54/�5H/�5//�5/�5�.�5�.�5t.�5M.�5K.�5%.�5.�5�-�5�-�5�-�5�-�5�-�5�-�5t-�5b-�5W-�50-�5#-�5-�5�,�5�,&6�,6�,6�,6�,6},#6p,+6U,262,766,A66,I6D,R6],W6{,`6r,h6f,e66,h6,o6�+u6�+|6,{64,�6],�6<,�6�,�6�,�6�,�6-E�3�(�3)�3W)�3])�3[)�3])�3a)�3v)�3})�3�)�3�)�3�)�3�)�3*�3@*�3W*�3{*�3�*�3�*4�*4+�3<+�3v+�3�+�3�+&4�+�3�+�3�+�3�+�3,�3>,�3_,�3�,�3�,�3�,�3�,�3�,�3�,�3-�3#-�3D-�3r-�3|-�3�-�3�-�3�-�3j-�34-�3�-�3�-�3�-�3.�3x.�3�.�3�.�3/4@/4h/ 4</14�.14�.;4z.F4v.B4�.A4�.E4�.E41/I4_/Q4�/b4�/p4�/}4|/�4�/s4�/z464�5�4�5�4�5�4�5�46�486�4p6��4�6�4z6�4B6�46�4�5�4�5�4�5�4�5�4�5�4�5�4j5�4O5�4>5�485�4<5�45�45�4+5�4B5�4D5�4<55O55f5
5a55a55j5 5j55B5555�45�45�45�45v45[4 5H4%514)54$5�35�3$5�3*5�3/5�315�365�3;5�3<5�3=5�3@5�3?54B5)4B5B4F5j4H5�4K5�4O5f4Q5U4P5/4P54N5�3K5�3F5�3J5�3N5�3Q5�3Y5|3\5c3_5@3d5:3n5W3t53v5�3x5�3~5�3�54�54�5�3�5�3�53�5[3�543�5#3�53�5�2�53�53�53�5�2�5�2�5�2�5�2�5�2�53�53�5+3�5a3�5�3�5�3�5�3�54�54�5�3�5�3�5�3�5�3�5�3�5�3�54�5/4�5Y4�5�4�5�4�5�4�5�4�55�5�4�5�4�55�55�5�4�5�4�5�4�5r4�5F4�54�5�3�5�3�54�5:4�5n4�5�4�5�4�55�5!5�5�4�5�4�5�4�5e4�5@4�5
                   7880: 4�5�3�5�3�5�3�5�3�5�3�5�3�5p3�5J3�53�5�2�5�2�5�2�5�2�5�2�53�5�2&6�26�26+36l36�36�36�36�36�36/46f46�4&6�4�5�4�5�46�46�46�465656+5656�46�46�46�4 6�4$6�4%6�4"6�46�46v46O46!4646�36�36�3$6�3%64'6S4*6x4*6�416�426�416�426426t4/6O4/6)4+64$6�3$6�36�36v36F3!6/3*683(6!3(63&63&6�2%6�2-6�236�226�276�206n226>2<612D642P6H2W6M2X6�2]6�2^63f6�2h6�2f6�2a6~2_6J2^6#2X6+2Q6#2M62K6�1L6�1M6�1I6�1K6�1N6~1N6U1M621M621R61S6�0Z6�0`6�0i6�0l6�0k6�0r6�0z6�06�0�6�0�6B1�6�1@3�6F3�6T3_6Z3_6e3c6r3c6s3f6t3f6t3~6z3�63�6�36�36�36�36�36�3�5�3�5�3�5�36�326�326�3@6�3U6�3j6�3z6�3p6�3f6�3f6�3U6�3D6�3B6�386�386�3)6�36�363W6
                   7881: 3>63+63F6#3O6(3O6'3f63�63�63r63f63W6�/�4�/�4�/�4�/%5�/M5�/]5�/�5�/�5�/�50606�/D6�/'6�/�5�/�5VU1�6m16]1t6M1v6M1l6I1W6V1-6I1
                   7882: 6>1�5L1�5L1�5Q1t5_1�5s1�5�1r5�1W5�185�1�4�1�4�1[4~14x1�3x1�3n1c3e1n3_1Q3H11381'3(1K3!183"1�21�21�2�0�2�0�2�03�0/3�0�2�0�2�0�2�0�2�0�2�0+2�0%2�0@2�0[2�0v2�0�2�0W2�062�0>2�0%2�0!2�0�1�0�1�0�1�02�0�1�0�1�0�1�0�1�0~1�0v1�0a1�0:1�0�0�0�0�0�0�0x0�0�0s0�0u0�0n0-1i01h0�0\0�0`0�0n0O0l0+0X00?0:020S0&0U0600;0�/F0�/I0�/40�/&0�/00000�/!0�/�3�6�3j6
41646,4�54�5"4�5-4�544H5?4>5R465g4B5u4_5p4�5f4�5[4�5]4�5i4�5l46q4<6v446z46.2�502�522�502Y5(2%52�42�42�42�4�1�4�1c4�1F4�1/4�14�14�14�1�3�14�1@4�1�4�1�4�1#5�1]5�1�5�1�5�1'6�1f692�6/2M6*2�5.2�5
                   7883: 4�0�4�0�4�0�4�0�40�4f0�4<0�4B0�40�4�/�4|/�4�/�4�/3�4�/�4�/�40505�/5�/50
                   7884: 5J05�05�05�05�05�051"51$5:1(5D1)5D105B175O1<5|1B5�1F5�1L5�1O5�1Y5�1^5�1^5l1`5e1c5�1j5�1q5�1w5�1z5�1�5~1�5S1�5#1�51�5�0�5�0�5�0�5�0�5�0�5z0�5h0�5[0�5K0�50�5�/�5�/�5�/Q4�/b4�/s4�/[4�/W40`4O0j4K0p4U0t4z0w4�0y4�0x4�0�4�0��6|;�6n;�6l;�6e;�6n;{6�;x6�;{6[;|6U;y6U;s6a;i6r;^6�;U6�;Q6�;J6�;B6�;C6�;I6�;N6�;N6z;O6l;S6Y;W6B;V63;R6;Q6;I6�:E6�:A6�:;6�:66�:/6�:+6�:'6�:*6�:-6�:26�:56�:96�:>6�:B6�:E6�:E6�:E6�:@6|:76h:/6J:*61:'6-:!6%:6:6:6&:6:6:6:�5-:�5F:�5::�5L:�5|:�5�:�5�:�5;�5#;�5';�5;�5);�5N;�5O;�5S;�5U;�5a;�5g;�5t;�5v;�5t;�5p;�5n;�5�;�5�;�5�;�5�;�5�;�5<�5<�5<�5<�5!<�5%<�5#<�5!<�5<�5<�5<�5!<�5'<�51<�5D<�5D<�5J<�5H<�58<�5<<�51<�5<�5<�5<~5<x5<y5+<x5D<�5Q<�5n<�5~<�5�<�5�<�5�<�5�<~5�<v5�<n5n<k5a<`5g<U5n<J5x<B5�<C5�<K5�<S5�<[5�<b5�<i5�<j5&=j5=l5=r5=t55={5J=�5W=
                   7885: x5j=o5U=h5L=_5)=M5=B5�<>5�<F5=J51=U5L=
4n<�4n<�4]<�4S<�4N<�4L<�4J<�4<<�4/<�4<�4<�4<�4&<�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4x;�4t;�4a;�4Q;�4O;�4N;�4>;�4D;�4a;�4x;�4�;�4�;�4�;�4�;�4j;�4h;�4�;�4�;�4�;�4�;�4n;�4W;�4Y;�4p;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4
                   7886: <�4<�4!<�4<<�4D<�4B<�4@<�4><�4H<�4D<&5H<5H<55<5<5
                   7887: <5�;5�;5�;5�;5�;5�;5�;5c;5F;5);5
                   7888: ;
                   7889: 5�:5�:&5�:�4�:�4�:�4�:�4�:�4�:�4�:�4�:�4�:�4�:�4�:�4v:�4W:�4<:�4!:�4:�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4r9�4U9�4@9�4%9�49�4�8�4�8�49�49�49�49�49�49�4�8�4�8�4�8�4�8�4�8�4�8�4�8�4�8�4�85�8
                   7890: 5v85n85e85_8!5a8'5a8*5Q8-5D8058825@815_8,5t8&5�85~85�85�85�8�4�8�4�8�4�8�4&9�49�4:9�4L9�4e9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�9�4�95�9�4�9�4�9�4�9�4�9�4�9�4:�4:�4#:�4/:�43:�4::�4::55:5-:        5:5:
                   7891: 5':    51:     53:     5D:5Q:5S:5Q:5J:51:5:5:5:5�95�95�95�95�95�95:5-:5H:5[:5l:5|:5�:5�:#5v:'5l:+5S:-5@:+5-:*5:-5�9.5�905:15:35:85:;5:=5:A5:A5�9A5�9C5�9D5�9D5�9B5�9>5n9B5_9G5]9D5t9G5z9H5|9J5�9L5�9K5�9H5�9L5�9Q5�9W5�9\5�9_5�9c5�9h5�9h5�9e5�9f5�9j5�9q5�9x5�9}5�9�5�9�5�9�5�9�5�9�5�9�5�9�5�9z5�9r5�9h5�9`5�9Y5:P5:H5%:?5>::5S:<5Y:=5e:;5|:85�::5�:85�:45�:85�:<5�:A5�:E5�:I5�:Q5�:V5�:]5�:d5�:i5�:g5�:c5�:a5�:_5�:Y5�:P5�:M5�:M5�:N5�:F5&;B5;@5;@5#;<51;=5B;:5[;;5t;;5�;=5�;>5�;>5�;@5�;D5�;I5�;J5p;K5g;L5t;N5�;P5�;M5�;L5�;Q5�;U5�;Z5�;^5�;d5�;g5�;n5�;p5�;s5�;y5�;~5�;�5�;�5�;�5[;�5O;�5_;�5r;�5l;�5g;�5[;�5S;�5@;�51;�5;�5�:�5�:�5�:�5�:�5Y:�5L:�5@:�5<:�5):�5:�5
                   7892: :�5�9�5�9�5�9�5�9�5�9�5]9�5@9�59�5�8�5�8�5�8�5�8�5�8�5�8�5r8�5j8�5L8�5/8�5'8�5<8�5Q8�5@8�5%8�58�5%8�5D8�5_8�5r8�5�8�5�8�5�8�5�8�5�8�5�8�5�8�5�8�5�8�5|8�5U8�518�58�58�58�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�5�7�58�58�58�5'8�5:8�5J8�5N8�5Y8�5t8�5�8�5�8�5�8�5�8�5�8�5&9�59�5<9�5U9�5g9�5x9�5�9�5�9�5�9�5�9�5�9�5�9�5�9�5�9�5�9�5�9�5�9�5�9�5x9�5e9�5Q9�5/9�59�5�8�5�8�5�8�5�8�59�59�59�5#9�5:9�5L9�5_9�5O9�5L9&6J9�5]9�5x9�5�9�5�96�96�9
                   7893: 6�96�96�96�9#6�9)6�906�956�9;6:@6
                   7894: :A6:B6:G6:M6:P63:S6L:W6_:Z6n:Z6v:[6�:`6�:c6�:k6;o6;u6;~6;�6
                   7895: ;�6�:�6�:�6�:6�:z6j:x6N:{6D:}6F:�6g:�6�:�6�:�6�:�6�:E�6�8�6�8|6~8u6_8m6<8i6+8e68\68Z6
                   7896: 8R68M6�7M6�7H6�7B6�7>6�7<6�7=6�7A6�7A6�7>6z796_756B736/746)76617:617>6'7@67@67A6�6D6�6G6�6G6�6K6�6N6�6N6�6O6�6N6�6K6�6H6�6G67E6-7H6D7J6Y7N6g7N6|7Q6�7Q6�7V6�7Z6�7Z6�7^6�7b6�7i6�7p6�7s6�7t6�7v6�7x6�7{6�7}6�7}6�76�7~6�7�6�7�6�7�6&8�68�6>8�4p6�4�6�4�6�4�6�4�6�4�6�4�6�4�6�47�4B7�4�7�4�7�4�7�4�7�4�7�4�7�4�7�4�7�4p7�4p7�4�7�4�7�4�7�4~7�4U7�4'7�4�6�4�6n�2r=�25=�2=�2�<�2�<�2=�2=�2=�2=�2=�2�<&3�<�2�<�2�<�2�<�2�<&3�<�2�<�2�<�2x<�2x<�2�<�2�<�2�<�2�<�2j<�2W<�2<<�2<�2<�2�;�2�;�2�;�2�;�2�;�2�;�2�;�2a;�2@;�2+;�21;�2B;�26;�2;�2�:�2�:�2�:�2�:�2�:�2�:�2l:�2l:�2Y:�2B:�2/:�2%:�2:�2:�2:�2:�2
                   7897: :�2�9�2�9�2�9�2g9�239�29�2�8�2�8�2�8393@9339393�8�2�83�8�2�8�2�8�2�8�2�8�2Y8�2O8�2<8�2/8�28�2�7�2�7�2�7�2v7�2[7�2W7�2:7�27�27�2
                   7898: 7�2�6�2�6�2�6�2�6�2�6�2�6�2�63�63&73�6*3�6-3�653�6@3�6}3�63�6|3�63�6�3�6�3�6�3�6�3�6�3�6�3
                   7899: 7�317�3W7�3p7�3j7�3v7�3�7�3�7�3�7�3�7�3�7�38�388�3Q8�3|8�3�8�3�8�3�8�3�8�3�8�39�39�3)9�319�3J9�3_9�3x9�3�9�3�9�3�9�3�9�3�9�3�9�3:�3!:�35:�3<:�3::~36:z38:~3<:3W:�3c:�3l:3�:�3�:|3�:y3�:y3�:s3�:l3�:h3�:a3x:e3�:d3�:f3�:b3&;_3;^3;\3;Z3>;^3N;b3-;f3;l3+;o3Q;s3t;z3�;�3�;�3�;�3�;}3�;s3�;l3�;q3�;}3�;�3<y3%<s3-<m3><m3N<n3[<w3N<{3S<�3n<�3v<�3x<�3�<�3�<�3�<�3�<�3�<z3�<n3�<c3�<j3�<|3�<�3�<�3=~3=~3!={3+=|3:=~3<=�35=3O=�3L=�3+=�3=�3=�3�<�3=�3=�3%=�3@=�3Q=�3g=�3[=�3Q=�3U=�3�=�3Q=�3%=�3=�3�<�3�<4�<&4=�3'=4+=48=4U='3f6%3�6 3�63�63�63�63�63�63�6&3�63�6�/�6�/�6�/�6�/7�/D7�/�7�/�7�/�7�/�9�/3:�/�:�/a:!�/Y:�/�:�/�:�/
                   7900: ;0;�/+;�/h;�/�;�/�;�/�;�/-<�/<0<<
                   7901: 0t<&0�<C0�<S0=f0�<q0
                   7902: =l0�<k0�<`0e<V0+<X0�;a0�;d0z;n0�;0�;�0<�0n<�0�<�0=�0U=�0r=�0S= 1h=-1H=41'=41W=W1e=c1N=|1L=�1/=�1'=�1!=�1�<�1=�1=�1�<�1�<�1�<�1�<�1�<�1�<�1�<2|<2L<.2<92�;B2�;J2n;R2;S2�:R2�:O2�:N2r:O2L:N2#:E2:�E2:B2�9>2�922:$2B:2l:2�:�1�:�1�:�1�:�1;�1);�1/;l1;V1�:81;1;&1�:�0�:�0�:�0t:�0O:�0:�0:�0�9�0�9�0+:�0L:�0[:�0z:�0�:z0�:l0;h0;f0�:n0�:w0�:~0|:�0S:�0':�0:�0
                   7903: :~0�9u0:b0:[0�9q0�9�0�9�0�9�0�9�0�9�0�9�0�9�0�9�0&:�0D:�0n:�0p:      1�:1�:1�:&1h:11c:>1S:>18:;1:E1�9W1�9\1�9W1:V1%:a1a:q1v:z1h:�1�:�1�:�1v:�1O:�1:�1�9�1�9�1�9�1]9�1�9�1�9�1:�1>:�1_:�1J:�15:�1/:�1�9�1�9�1v9�1>9�189�1�9�1�9�1:�1:2�9�1�9�1�92�92�92r9
2B9&2+9�19     292F9(2932�862�8>2�8=2L8?28@2�7A2�762�7*2z72t72n7�1h7�1~7�1�7�1Q7�17�17�1
                   7904: 7�1)7�1%7�1
                   7905: 7�1�6�1�6�1�6k1�6W1
                   7906: 7H1771/7114721!7&17!17&1:71J71471:717(1�6:1�671�6N1�6U1�6j4`<{4�<z4�<t4�<r4�<j4�<a4=R4=J4=>4=44=.4%=)4=4&=4�<4�<!4�<.4�<4�<4�<+4z<>4�<N4�<W4|<I4r<:4t<14t<4l<4g<4D<4+<      4<4<
4�;4�;+4�;%4�;4�;4�;
4�;
                   7907: 4_;4Q;!4-;44+;+4;4;4';4';        4�:4�:!4-;44+;+4;4;4';4'; 4�:4�:�3�:4�:�3Y:�3O:�3%:�3�9�3�94�94:4:,4#:4�94�9"4�9:4�924~94L9494�8-4�8G4�8O49E4�834�84�84�8
4�84h84-8$482418B4[8<4>8948548(4&84�74�74�7!4z74Y74>7
                   7908: 4<7�3N7�3a7�3O7�3+7�3�6�1f6�1�6�1�6�1�6�1�6�1�6�17�1672472#7.2!7>27@2�672�692�6       1$D1,D     �1.D�1"D�1D �`2=D[2,DU2 DN2
DL2�CJ2�CC2�CA2�C?2�CA2�C>2sCC2MCE2&CJ2CQ2�BS2�BT2�BX2�BZ2�BY2�B[2�B_2oBX2iBQ2RBI2ABG2.B<20B224B+2GB%2RB%2ZB#2}B2�B2}B2�B2�B2�B2}B2qB2XB2RB2RB�1TB�1`B�1�B�1�B�1�B�1�B�1�B�1�B�1�B�1C�1C�1C�1C�1C�1C�1�B�1�B�1�B�1�B�1}B�1mB�1^B�1^B�1^B�1`B�1VB�1PB�1OB�1?B�14B�10B�1=B|1=B}17B�1B�1�A�1�A�1�A�1�A�1�A�1�A}1�At1�Ad1�A[1�AU1�AM1�AK1�AI1�AF1�A>1�A51�A&1�A1�A1�A1�A1�A1�A1�A�0�A�0�A�0�A�0B�0B�04B�0\B�0�B�0�B�0�B�0�B�0�B�0�B�0�B�0�B�0�B�0�B�0�B�0C�0.C�04C�0;C�0KC�0^C�0kC�0�C�0�C�0�C�0�C�0�C�0�C�0�C�0�C�0�C�0
D�0D1$D     �1�A�1�A�1�A�1�A�1�A�1�A�1�A�1�A�1B�1.B�1KB�1EB�1;B�12B�1&B�1B�1�A�1�A�1�A Q2ECQ26CR24CU2(CW2
C]2�Bd2�Bo2�By2�B�2�B�2�B{2Cy2 Cs2ACr2hCi2�Cc2�Ca2�CY2�CV2�CV2�CU2�CR2�CV2�CV2}CL2sCQ2hCS2^CP2TCQ2EC     5�/�A�/�A�/�A�/�A�/�A�/�A�/�A0�A0�A
0�A0�A0�A0�A0�A0�A,0A&0�A00�A?0�AJ0�AT0�Ab0�Al0�Aq0�Aq0�A}0�A�0�A�0�A�0�A�0�A�0�A�0�A�0�A�0sA�0TA�0CA�07A�0,A�0(A�0 A�0(A�0;A�0OA�0TA�0CA�09A�0A�0A�0A�0�@1�@1�@1�@ %�3�A�3�A�3�A�3�A�3�A3�Ay3�Av3�As3�Aq3�Al3�Al3Bj3Bn3'Bu3%By35B�3:B�31B�3B�3B�3�A�3�A�3�A�3�A�3�A�3�A�3�A�3�A�3�A�3~A�3xA�3�A|3�A�3�A�3�A�3�A�3�A U�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3~B�3xB�3~B�3~B}3�Bx3�Bq3xBn3xBu3�B}3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B}3�B�3�B�3�B�3�B~3�B{3�Bx3�Bt3�Bs3�Bo3�Bi3�Bh3�Bn3�Bi3�Ba3C[3&C^3�BZ3�BS3�BN3�BD3�B>3�B;3�B>3�BG3�BJ3�BI3CC3C>3�B:3�B33�B+3�B)3C'3)C'[email protected]+3SC&3eC&3zC*3�C23�C/3�C'3�C(3�C)3�C13�C+3�C'3�C/3�C83�C53�C)3�C"3D }38D}3D�3D �36D�3)D�3&D�3D�3D�3D�3�C�3�C�3�C�3�C�3|C�3�C�3�C�3�C�3�C�3�C�3�C�3�C�3D �3<D�3-D�3D�3&D�3�C�3D�3)D �3>D�3#D     6A43DC4#DD4DD4DA4�C>4�C:4�C54�C34�C34�C34�C/4�C/4�C/4�C(4�C#4�C(4�C(4�C%4jC,4_C64rC:4xC>4lC=4SC<4<CE4/CF4<CF4OCI4cCJ4NCI4)CA4C;4C84�B;4C:4C64C34�B34�B14�B*4�B&4�B4�B4�B
4�B4�B&4�B�3�B�3�B�3�B�3�B�3�B�3�B�3�B     u"5�@"5�@$5�@$5�@ 5A5)A5HA5lA5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A      5�A5&B5B     5@B5JB5@B5-B56B$5NB,5hB05vB35�B95�B>5�BA5�BB5tB?5FB?5BF5�AG5
                   7909: BN5BP5'BV5FBY5eBW5�BX5�B[5�B^5�B^5�B_5�B_5�Bb5�Bh5�Bi5�Bq5�Bx5�B�5�B�5�B�5C�5C�5C�5�B�5�B�5�B�5�B�5�B�5&C�5C�5C�5�B�5&C�5�B�5�B�5�B�5�B�5hB�5DB�5'B�5B�5�A�5�A�5�A�5�A�5�A�5~A�5pA�5zA�5zA�5�A�5nA�5SA�5<A�5!A�5A�5�@�5�@�5�@|5�@z5�@w5�@r5�@m5�@h5�@f5�@c5�@b5�@D5�@D5�@@5�@B5�@?5�@;5�@55�@05�@+5�@&5�@!5�@5�@"5�@ �53D�5'D�5D�5D�5D�5�C�5�C�5D�5D�5D�5)D5%Dz5Dt5!Dn5!Dn5Dk5�C_5�CZ5�CO5�CI5�CA5�C:5�C35�C*5�C"5�C5�C5�C5�C5
                   7910: D5#D �6C�6
                   7911: C�6&C}6�Bu6�Bm6�Bf6�B^6�BV6CN6CH6CK61CQ6>CX6WC^6pCc6jCi6nCn6�Cn6�Cm6�Co6�Cs6�Cz6�C�6�C�6�C �5W=�5e=�5p=�5~=�5�=x5j=     �U5L=Y5r=W5�=V5�=W5�=X5�=X5�=U5�=P5�=N5�=K5~=?5r=:5z=;5�=95�=:5�==5>@5)>@58>A5H>A5c>G5~>H5�>H5�>Q5�>T5�>W5�>Y5�>\5�>`5�>a5�>\5�>[5�>Z5�>\5?a5?a5?e5?i58?q5J?x5J?{5L?z5>?{5)?~5?}5�>~5�>~5�>�5�>�5�>�5�>�5|>�5�>�5�>�5�>�5�>�5�>�5�>�5?�5?�5-?�5<?�5J?�5U?�5a?�5v?�5z?�5r?�5�?�5�?�5�?�5�?�5z?�5U?�55?�5:?�5W?�5k?�5|?�5�?�5�?�5�?�5�?�5�?�5�?�5�?�5�?�5�?�5�?�5x?�5Y?�53?�5?�5?�5�>�5�>�5�>�5~>�5L>�5>�5�=�5�=�5�=6�=6�=6|=6�=6�=6�=6�=63>�5J>6h>6~>�5�>�5�>6�>6�>6�>6�>
                   7912: 6�>6�>6�>
6�>6n>6F>6>6>6>6<>6[>6|>6�>6�>6�>6�>#6�>"6�> 6?6?6?6?63?6<?6W?6e?6S?$6N?)6S?$6a?6k?6x?6�?6�?
6�?6�?6�?
                   7913: 6�?    6�?6�?6�?6�?6�?6�?6�?6�?6�?6�?!6�?!6�?"6@6'@6%@6#@6)@63@6J@6g@6v@
                   7914: 6�@6�@6�@6�@6�@6�@6�@6�@6�@6�@6�@ 6�@6�@6�@6�@"6�@%6A,6A/6
                   7915: A46A86�@86�@46�@26�@26�@66�@76�@96�@:6W@:68@?6@B6@F6@I6�?N6�?P6�?L6@H6@E6+@C63@E6P@H6i@H6~@H6�@F6�@E6�@I6�@I6�@I6�@L6�@P6AW6A\66Ae6FAi6WAk6eAn6[Ap6tAs6�Au6pAu6:Ay61A|68A}6UA6vA�6�A �6�@�6�@     �6S@�6>@�63@�6@�6#@ N5�@�4�@�4�@�4�@&5�@5�@5�@5v@5v@5k@�4N@5@@�43@�4%@�4@�4
                   7916: @�4�?�4�?�4�?5�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4�?�4@�4@�4)@�4D@�4L@�4W@�4i@�4~@�4�@�4�@�4�@�4�@�4�@�4�@�4�@�4�@�4�@�4�@�4&A�4)A�4FA�4_A�4~A�4�A�4�A�4�A�4�A�4lA�4OA53A5+A      5%A     5A5A&5�@�4�@5�@    L�3�@�3�@4�@�3�@�3�@�3e@�3H@�3)@�3@�3�?�3@4@&4&@&4�?�3�?4�?4�?4�?4�?
                   7917: 4�?�3�?�3t?�3Y?�3J?�3L?�3<?�3:?�3?�3�>�3�>�3�>�3�>z3�>c3+?`3?Y3?L3)?B3-?43?93�>83�>/3�>33�>03�>+3�>3�>    3�>�2�>�2�>�2�>�2�>�2�>�2�>�2�>�2�>�2�>�2n>�2S>�2Q>�2B>�2#>&3>�2>�2->�2%>�2>�2>�2�=�2�=�2�=�2�=�2�=�2�=�2�=�2�=�2r=        �3Q=�3g=     .�3U=�3g=�3l=�3~=�3�=�3�=�3�=�3�=�3�=�3�=�3�=�3&>�3>�3>�3:>�3S>�3L>�33>�3->�3@>�3#>�3�=�3�=�3�=�3�=�3>�3>�3>�3>�3>�3'>�3O>�3x>�3�>�3c>�3x>�3x>�3t>�3D>�3>�3�=�3�=�3�=�3�=�3�=�3�=     �4U=4j=4�=4�=4�=4�=
4�=4�=4�=4
                   7918: >4>4'>48>4U>4p>!4x>%4x>$4U>"4@>"4)>'4>!4>4�=4�=4�=#4�=+4�=14�=54�=:4>?4+>A4J>E4]>F4a>I4e>K4�>H4�>G4�>E4�>B4�>94�>64?<4#?64@?74_?94r?84�?14�?+4�?'4�? 4�?4�?4�?4�?4�?#4�?$4�?/4�?64�?>4�?F4�?R4�?T4�?]4�?b4�?n4�?v4�?s4@z4#@s41@p4B@p4N@o4[@w4p@z4�@~4�@�4�@�4�@�3�@4�@
4�@4�@4&A4A4-A4BA84~A74�A74�A<4�AC4�AA4�AE4�AG4�AM4�AO4�AO4BS4#BV4!B_4Bb4B[4�AY4�AW4�AX4�A[4�A\4�A`4�A`4�Ad4�Aj4�Am4
                   7919: Bt4Bx4B~4B~4�A|4�A�4�A�4�A�4�A�4�A�4eA�4HA�4)A�4A�4�@�4�@�4�@     c�3�@�3�@�3�@�3�@�3�@3e@|3H@u3J@u35@l3%@^31@g3@^3�?Y3�?S3�?K3�?F3�?C3�?83�?43�?.3�?&3�?3�?3�?�2�?�2�?�2�?�2�?�2@�2F@�2l@�2�@�2�@�2�@�2�@�2�@�2�@�2�@�2�@�2�@3�@3�@3�@3A3A�2A�2A�2)A&3+A3-A
                   7920: 31A3:A3JA3QA
                   7921: 3cA3jA3~A 3~A(3pA%3|A,3�A!3�A3�A3�A%3�A)3�A83�A@3�AH3�AH3�AK3�AQ3�AS3�AS3�AU3aAW3lAX3�A[3_A_3cA`3�Ae3~Am3lAh3jAj3QAr3QAs3nAk3�Ar3�Aw3vAv3[At3DAx3DA�3OA�3DA�3%A�3A�3&A�3�@�3�@   ��2�@|2�@�2�@�2�@2�@�2n@�2Q@�25@�2�?�2�?�2�?�2a?�2U?�2S?{2D?�2:?�2?t2�>l2�>q2�>w2�>w2�>x2�>w2�>w2�>w2r>u2L>r21>p2>j2�=e2�=c2�=b2�=]2�=Y2�=L2�=>2�=52�=*2�=(2�='2
                   7922: >,2>#2#> 2>2>2>2!>�1/>�13>�1]>�1t>�1U>�1e>�1x>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1&?�1)?�1L?�1v?�1�?�1�?�1�?�1�?�1
                   7923: @�1D@�1[@�1B@�1<@�1@�1@}1�?u1�?g1�?a1�?^1�?U1�?M1�?K1�?D1@:1@41@011@-15@+11@$15@ 1D@1[@1a@1|@1�@1�@1�@1�@1�@1�@1�@1�@1�@1�@1�@$1�@+1�@01�@41�@11�@71�@E1�@P1�@^1�@h1�@p1�@x1�@t1�@s1�@x1�@1A�1A�1 A�10A�16A�1,A�17A�1;A�1=A�1;A�1;A�1;A�1;A�19A�1.A�16A�12A�12A�12A24A27A2=A%2?A,29A229A92=A?2AAE2;AJ2,AP2AL2AK2AG2�@D2�@A2�@A2�@62�@82�@22�@/2�@32�@:2�@;2�@@2�@D2�@E2�@X2�@X2�@X2�@X2�@]2�@`2�@c2Al2At2Ay2    A{2�@2�@�2�@  C1�@1�@
1�@1�@1�@1�@1n@�0t@�0~@�0�@�0~@�0e@�0e@�0c@�0F@�0<@�0@�0@�0�?�0�?�0�?�0�?�0�?�0�?�0�?�0p?�0g?z0]?n0]?e0[?N0_?O0k?E0i?B0D?-0:?/0/?.0?%0�>$0�> 0�>0�>0�>�/�>�/�>�/�>�/�>�/�>�/�>�/�>�/�>�/�>�/�>�/x>�/l>�/n>�/~>�/�>�/�>�/�>�/�>�/�>�/?�/?�/?�/?�/?�/�> �0U=�0c=�0r=�0p=�0r= �0S=�0h=1~= 1h=     41W=W1e=
                   7924: u1Ky1�J
                   7925: �1K�1�J
                   7926: ��1K�1�J�1�J�1�J�1�J�1�J�1�J�1�J�1�J�1�J�1{J�1fJ�1fJ�1KJ�1OJ�1XJ�1SJ�16Jr1Jc1JT1"JJ1JA1J81J)1J1J1�I1�I
1�I�0�I�0�I�0�I�0�I�0�I�0�I�0�I�0�I�0�I�0�I�0�I�0uI�0\I�0XI&1=I1=I1QI1dI#1mI.1lI31{ID1�IP1�IS1�IT1I\1�If1�Im1�Iy1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I�1�I2�I2�I�1�I�1oI�1XI�1TI�14I�1I�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1�H�1hH�1VH�1;H�19H�1.H�1H�1   H�1�G�1�G�1�G�1�G�1�G�1�G�1�G�1�G�1�Gu1�Gp1�Gk1�Gg1�G^1�G]1�GW1�GP1�GF1�G<1�G11�G"1�G1�G1�G
1�G1�G�0�G�0�G�0VG�0AG�06G�00G�06G�0,G�0*G�0*G�00G�0GG�0GG�0CG�0CG�0QGu0EGo00Gk0Ga0
GU0�FL0�FE0�FB0�F@0�F70�F,0�F(0F'0lF&0\F0IF$0;F-0;F000F+0
F%0�E0F0�E0�E0�E�/�E�/jE�/CE�/4E�/9E�/6E�/E�/E�/�D�/�D�/�D�/�D�/�D
                   7927: /�1�G�1�G�1�G�1hG2XG2QG 2OG&2GG.2TG/2lG;2GB2�GG2�GI2�GG2HD2"HE2AHC2dHC2�H>2�H62�H,2�H2�H2�H2�H2�H2�H 2�H2�H�1�H�1oH�1fH�1SH�1=H�1,H�1H�1H�1H�1�G�1�G�1�G�1�G�1�G�1�G�1�G�1�G�1�G
                   7928: D1,D14D1AD1OD 1PD'1dD)1{D&1�D"1�D.1�D:1�D:1�D11�D41�D51*E>14EC16EL1TES1XEX1oEb1�Ej1�Er1�E~1�E�1�E�1�E�1�E�1�E�1�E�1�E�1�E�1yE�1fE�1OE�1KE�1RE�1AE�16E�1E�1
E�1E�1�D�1�D1�D�1�D�1�D�1�D�1�D�1qD�1`D�1MD�1^D�1dD�1XD�1AD�14D�12D�1?D�1MD�1^D�1dD�1uD�1uD�1yD�1sD�1VD�1?D�1.D
                   7929: ,�1D�14D�1ID�1`D�1kD�1qD�1�D�1�D�1�D�1�D2�D2E2E2E2�D2�D2�D
2�D2�D2�D2�D!2�D"2�D#2�D+2�D,2�D22�D72E=2�DD2�DJ2�DM2�DG2�DE2�DD2mDA2\D=2ODC2GDJ2GDL2bDO2oDU2}D\2^D`2=D
                   7930: !"3D"3/D!3SD'3|D.3�D53�D63�D<3�DB3�DI3�DM3�DO3�DL3rDM3WDQ3FDS3aDS3xD]3nD_3jD^3�DZ3�Dc3�De3�Di3�Dl3�Dp3�Ds3�Dt3�Du3xDt3YDx3ND{3[D}38D
                   7931: �3D�38D3[D�3QD�3/D�36D
                   7932: b�3D�31D�3OD�3eD�3lD�3�D�3�D�3�D�3�D�3�D�3�D�3E�35E�3FE�3[E�3gE�3zE�3�E�3�E�3�E�3�E�3�E�3�E�3F�3F�3F�3&F�3F�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3gE�3UE�3DE�38E�3E�3�D�3�D�3�D�3E�3E�3E�33E�3LE�3@E�3%E�3%E�3LE�3rE�3xE�3�E�3�E�3�E�3�E�3�E4�E
                   7933: 4�E4�E4�E4�E 4�E$4rE"4aE"4JE48E41E4#E4E4E4E4E4E4�D4�D
                   7934: 4�D4�D�3�D�3�D�3�D�3�D�3�D�3�D�3�D�3�D�3�D�3rD�3SD�3DD�3<D
                   7935: �3)D�36D�3BD�3WD�3>D
                   7936: �3#D�33D�3OD�3|D4�D4�D4gD 4_D
                   7937: 4DD4[D4tD4�D4�D4�D%4�D(4�D-4�D.4�D:4�D@4�DC4�DC4aDC4HDA43D
                   7938: �56D�5:D�53D
                   7939: �5#D51D5HD5[D5pD5�D5�D&5�D/5�D55�D:5�D@5�DD5�DI5�DN5�DU5�DV5�DR5�DQ5ER5/EX51E]5<E]5WE`5lEb5�Eb5�E]5�E]5�Ec5Fk5#Fq5Fm5:Fk5_Fg5�Fg5�Fa5�F^5�F^5�FY5�FY5�F[5G`55Gc5QGg5eGi5lGm5xGu5�Gx5�G~5�G�5�G�5�G�5�G�5nG�5JG�55G�5G�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5�F�5G�5G�5G�5G�5G�5�F�5�F�5�F�5�F�5G�5G�5)G�5DG�5UG�5]G�5iG�5�G�5�G�5�G�5�G�5�G�5�G�5�G�5zG�5tG�5rG�5�G�5�G�5�G�5�G�5H�5H�5H�5H�5H�5H�5H6H
6�G6�G6�G6�G6tG6SG68G6G6�F6�F6�F 6�F6�F
6�F6zF6nF�5rF�5tF�5zF�5|F�5vF�5gF�5QF�5HF�5DF�5DF�56F�5F�5F�5�E�5�E�5�E�5�E�5|E�5vE�5xE�5[E�5UE�58E�55E�5DE�5FE�5)E�5+E�5#E�5E�5�D�5�D�5�D�5�D�5�D�5�D�5�D�5vD�5eD�5YD�5SD�5aD�5_D�5SD�5DD�5:D�56D
                   7940: $5�E%5�E&5xE(5cE5�D 5�D     5�D5E 5<E5YE5tE5�E
                   7941: 5�E5�E5�E5�E"5�E%5�E%5�E$5�E
                   7942: 1�4�G�4�G�4�G�4�G�4�G�4�G�4nG�4]G�4]G�4LG�4<G�4/G�4'G�43G�4NG�47G�4G�4G�4G�4)G�4>G�4NG�4rG�4�G�4�G�4�G�4�G�4�G�4�G�4�G�4&H�4H�4H�4H�4H�4!H�4)H�4:H�4FH5@H&53H5H5�G�4�G�4�G�4�G�4�G�4�G�4�G
                   7943: ,:4�F94�F94�F?4�F94�F44�F,4�F'4vF$4kF4WF4HF4OF4]F
4rF4�F4�F     4�F
                   7944: 4�F4�F
                   7945: 4G
4G4�F4�F4G4)G4>G45G(41G-41G'4BG)4LG.4LG/4SG24aG74aG;4SG?4HGC4)GF4GF4�F?4�F<4�F<4�F:4�F
                   7946: R4�DR4�DS4�DV4�DR4�DN4�DI4�D@4�D:4�D34E343E44LE64UE<4SEA4-EG4EO4�DQ4�DR4�D
                   7947: !     4>F     48F     48F     4+F     4F4F�3�E�3�E�3&F�3F�3LF�3tF�3�F�3�F�3�F�3�F�3�F�3�F�3&G�3G�31G�38G�3@G�35G�31G�3G�3�F4�F4�F4xF 4aF4OF 4>F
                   7948: �3BF�35F�3+F�3F�3&F�3�E�3�E�3�E�3�E�3
                   7949: F�3:F�3gF�3�F�3�F�3�F�3�F�3�F�3�F�3�F�3�F�3xF�3]F�3BF
                   7950: �3DF�38F�33F�3!F�3
                   7951: F�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3�E�3F�3F�38F�3QF�3rF�3�F�3�F�3kF�3aF�3SF�3DF
                   7952: p3�Fm3�Fl3�Fk3�Fe3�F_3�FT3�FL3�F@3�F43�F/3�F+3
                   7953: G/3:G13]G83~GA3�GO3nGW3aGc3WGm3NGp31Gq3Gp3�F
                   7954: ~)4K*4�J+4�J24�J;4�J@4�JH4�JQ4�JW4�J_4�Jc4tJb4NJf4-Ja4%JY4JR4�IK4&JF4JB4!J94J34J.4
                   7955: J&4J 4J4�I4�I4�I
4�I4�I4�I�3�I�3�I�3�I�3�I�3�I�3�I�3J�3J�3�I�3�I�3�I�3�I�3�I�3�I�3~I�3nI�3]I�3cI�3nI�3�I�3�I�3�I�3�I�3�I�3�I�3iI�3HI�3-I�3I�3I�3I�3�H�3�H�3�H�3�H�3�H�3�H�3�H�3�H�3�H�3�H�3�H�3�H�3zH�3tH�3UH�3/H�3H�3�G�3�G�3�G�3�G�3�G�3�G3Hu3Hi3H\3HT3/HI37H=3BH53QH.3[H/3xH-3�H*3�H)3�H3�H3�H3I3/I3HI$3eI*3vI53rI33|I-3�I#3�I3�I3�I3�I3J 3'J!3J(3J33#J:3#J83+J63<J-3HJ$3aJ 3�J3�J3�J3�J3�J
                   7956: �3
                   7957: K�3�J�3�J�3kJ�3NJ�3HJ�3BJ�3@J�3BJ�3WJ�3nJ�3zJ�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J�3�J
                   7958: >5K;5�J35�J(5�J!5�J
                   7959: 
�5K�5�J�5�J�5�J�5�J�5�J�5�J~5�Jy5�Jp5�Je5�Jb5�J`5�JS?1�QD1�QG1�QJ1�QP1uQT1dQ^1`Qh1ZQp1UQy1KQ�1IQ�1.Q�1Q�1�P�1�P�1�P�1�P�1qP�1CP�1(P�1P�1P�1�O�1�O�1�O�1�O�1O�1UO�14O�1
O2�N2�N     2�N2�N2�N2�N 2�N*2�N/2�N72�N@2�NC2OK2!OY2?Oa2^Ol2�Ou2�O{2�O�2�O�2�O�2�O�2
P�2&P�2MP�2qP�2�P�2�P�2�P�2       Q�2Q�2&Q�2Q�2!Qy2&Qs2IQ~2SQ�2=Q�2?Q�2=Q�2CQ�2\Q�2qQ�2�Q�2�Q�2�Q�2�Q|2�Q�2�Q�2�Q�2�Q�2�Q�2�Q�2�Q
&�/P�/
P�/�O�/�O�/{O�/KO�/O�/�N�/�N�/�N�/wN�/KN�/&N�/     N�/�M�/�M�/yM�/9M�/
M�/�L�/�L�/�L�/�L�/�L�/�L�/�L�/�L�/mL&0sL0�L0�L0�L0�L0�L0
M0$M"0=M)0OM*0lM,0M*0�M/0�M10�M.0�M,0�M,0N,0N&08N$0ON$0hN0�N0�N0�N0�N0�N0�N0O"0,O*0:O&0`O$0�O!0�O(0�O-0�O,0P)0&P/0,P40*P608P90VP?0`PH0yPQ0�P\0�Pl0�Pv0�P�0lP�0OP�0&P�0P�0�O�0�O�0�O�0lO�0IO�0.O�02O�0"O�0�N�0�N�0�N�0O�0$O�0O�0O�0�N�0�N�0�N�0�N�0�N�0O�08O�0OO�0jO�0�O�0�O�0�O�0�O�0�O�0P�0P�0(P�06P�0&P�0(P�0:P�0IP�0VP�0dP�0�P�0�P�0�P�0�P�0�P�0hP�0UP�0VP�0ZP�0ZP�0lP�0�P�0�P�0�P�0�P�0�P�0�P�0Q�0Q�0Q�0*Q�0.Q1Q1�P%1�P*1�P51�P;1�P>1�PD1�PL1�PQ1�PP1�PQ1�PW1�Ph1�Pu1�P�1�P�1nP�1EP�1P�1�O�1�O�1�O�1�O�1nO�1ZO�1*O�1O�1�N�1�N�1N�1UN28N2$N2
N�1N�1�M�1�M�1�M�1�M�1�M�1�M�1�M�1�M�1�M�1�M�1N�1N�1N�1
N�1!N�18N�1<N{1(N�1N�1N�1�M�1�M�1�M�1�M�1�M�1�M�1�M�1uM�1�M�1�M�1sM�1ZM�1VM�1MM�1GM�16M�1M�1�L�1�L�1�L�1�L�1�L�1\L�1CL�1$L�1
L�1L�1�K�1�K|1�Ks1�Kl1Lb1LV1CLQ1ZLM1ZLO1ELP18LQ1,LR1$LZ1La1Le1�Kf1�K`1�K[1�KT1�KS1�KR1�KQ1�KO1�KS1�K[1�Ke1�Kl1�Kn1�Ky1�Kz1Ky1uKx1lKw1hKy1SKw1GKu1CKs1?Kn12Kj1&Kn1Kx1&K{1.K|1$Kx1Ku1Ky1�J�1K�1K�1(K�1*K�1$K�1K�1K�1�J�1K�1K�1K�1K�18K�1MK�1ZK�1\K�1CK�1(K�1K(4K+4K)4K�3�J3K3<K3JK3]K3vK�2pK�2|K�2�K�2�K�2�K�2�K�2�K�2�K�2�K�2�K�2L�27L�2gL�2�L�2�L�2�L�2�L�2%M�2cM�2�M�2�M�2�M�2�M�2�M�2�M�2N�2N�2�M3�M3�M3�M
3xM       3iM
                   7960: 3UM3>M3>M%3M&3�L)3�L+3|L*3WL!3NL!3/L*3L.3L43�K?3�KH3�KP3�KW3�KW3�KE3�KH3#LE3>LB3aL?3�LH3�LQ3�LM3�LH3�LS3�LV3�LE3�L:3�L83#MA3/M63JM33xM+3�M43�M:3�M@3�MG3�MH3�MT3�Mb3�Mj3rMs3WMr3lMk3�Mn3�Mo3�M]3�MO3�ML3�MZ3N]3!NO3#NE3
                   7961: N63N43N13#N,39N$3RN%3zN43�NB3�NA3�N;3�N<3�N,3�N!3�N#3�N*3#O23BO;33O@3LOJ3JOF3tO;3�O>3�O@3�OA3�OH3 PS3@PY3;P_3/Pn3Pz3�O|3�O}3�O{3�O{3YOz3+O}3O�3�N�3�N�3�N�3�N�3�N�3�N�3&O�3-O�3JO�3�O�3�O�3�O�3�O�3�O�3�O�3eO�3LO�3!O�3�N�3�N�3�N�3�N�3xN�3LN�3JN�3pN�3�N�3�N�3�N�3O�3<O�3pO�3�O�3�O�3�O�3�O�3�O�3�O�3�O�3~O�3LO�3O�3�N�3�N�3�N�3�N�3�N�3PN�3@N�3_N�3xN�3�N�3�N�3O4O
4O4�N%4�N%4�N%4�N,4mN*4UN,4/N(4N4�M4�M4�M
                   7962: 4�M&4�M�3�M�3�M�3�M�3lM&4YM4<M4M�3
                   7963: M�3�L�3�L�3�L�3�L�3�L�3�L�3]L�3DL�3[L�3�L�3�L�3eL�3HL�3L�3L�3L�3&L�3L�3L�3�K�3�K�3�K�3�K�3�K�3�K�3�K�3�K�3�K�3pK�3YK�3HK�3
                   7964: K
                   7965: �3�J4!K
4@K4FK4FK!4SK!4BK$4!K'4K(4K�3~P�3�P�3�P�3|P�3iP�3HP�3+P�3-P�3@P�3YP�3]P�3nP�3zP�3�P�3�P~3�P|3�P�3Q�31Q�3YQ�3gQ�3[Q�3-Q�3Q�3�P�3�P�3�P�3�P�3~P��4�Q�4�Q�4�Q�4�Q�4�Q�4|Q�4iQ�4]Q�4YQ�4FQ�4/Q�4Q�4Q�4�P�4�P�4�P�4�P�4�P�4xP�4~P�4tP�4eP�4mP�4aP�4DP�4P�4&P�4P�4�O�4�O�4�O�4�O�4�O�4�O�4�O�4�O�4�O�4�O�4�O�4�O�4|O�4gO�4RO�4FO�4DO�4O�4O�4�N�4�N�4�N�4�N�4�N�4O�4O�43O�4DO�4aO�4mO�4mO�4vO�4zO�4mO�4_O4BO{4-Ow4!On4 On49Ot4TOo4mOe4eOc4JO\4@OY47OJ4'OB4@O>4TO64tO54�O64�O04�O&4�O4�O4�O4�O4P4P4;P  4LP4gP4�P+4�P74xPC4zPU4aP^4]P^4tPW4�PY4�PQ4�PM4�PG4�PC4�P:4�P04�P)4�P34Q44Q/4Q(4-Q"4Q"4Q 4�P4�P4�P4�P�3Q�3#Q�3/Q�37Q�3LQ�3_Q&4xQ4�Q4�Q4�Q4�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Q�3�Ql4�Mm4�Mk4�Mh4�Mh4�Mb4�M]4|MX4~MP4�MP4�MO4�MN4�MP4�MR4NR4NS4>N^4cNd4WNi4Nk4�Ml4�M45lL35gL15WL35WL755L95L;5L;5�K<5�K75�K65�K:5�K=5�K?5kK@5<K>5)K>5KP!5�J 5K 5)K5:K5WK5kK5�K5�K5�K5�K5�K5�K5�K5�K5�K5&L
                   7966: 5L5L5L5L5�K&5�K�4&L�4�K5�K5�K�4�K�4�K5�K
                   7967: 5�K5�K5vK5WK5:K55K�43K�4-K�43K�43K�48K�4JK�4_K�4~K�4�K�4�K�4�K�4�K�4L�4#L�4JL�4lL�4�L�4�L�4�L�4�L�4�L�4M�45M�4LM�4NM�4DM�4NM�4NM5WM    5aM5]M5UM5JM57M5M5�L&5�L*5�L(5�L-5�L15�L25�L05~L25tL45lL##5tN$5nN&5iN&5aN#5RN*5TN/5HN35+N55N15N-5N*5N&5N#5�M5�M5�M5�M5�M
5�M5�M5�M�4�M�4�M�4�M�4N5'N5<N5PN5eN5mN5rN"5�N"5�N$5~N#5tN�5K�5K�5K�5KI`5�Jd5Kb5'K`5HK]5gK_5�Kg5�Km5�Ko5�Ku5�Ks5Lw5Ln5Lf5�Kd5L]5L]5#L\58L[5NLa5]Li5kLj5�Ll5�Lq5�Lp5�Ll5�Lj5�Lk5�Ll5�Li5�Lg5�La5�L\5&M`5M_5M[51M]5HMd5NMd5aMk5WMu5HMx58M~5M{5
                   7968: M|5�L�5�L�5�L�5�L�5�L�5�L�5�L�5nL�5SL�51L�5L�5L�5&L�5�K�5�K�5�K�5�K�5�K�5�K�5zK�5iK�5YK�5WK�5JK�5BK�5+K�5K�5K�5K
                   7969: �/�X�/�X�/�X�/�X�/pX�/hX�/UX�/IX�/UX�/^X�/�W�/W�/�W�/yW�/YW�/>W�/%W�/W�/(W�/AW�/WW�/QW�/OW0WW�/uW0sW0dW0UW00W0
W�/�V�/�V�/�V�/�V�/�V�/!U�/*U�/ZU�/\U�/SU�/IU�/=U�/U�/U�/U�/�T�/�T�/�T�/�T�/U�/U�/�T�/�T�/�T�/�T�/�T�w2�Tk2�Tk2�Te2�T\2}TT2�TP2�TB2�T62�T.2�T&2�T!2�T2�T2�T2�T�1�T�1
U�1U�1U�1U�1&U�18U�10U�1U�1U�1�T�1�T�1U�1U�1.U�1CU�1\U�1`U�1ZU�1SU�1SU�1MU�1OU�1ZU�1IU1EU|1ZUt1nUn1VUj1fUn1}Ug1�Ub1�U]1�UV1�UR1�UL1�UI1�UE1�UD1�UB1�UA1�U?1�U<1�U51�U61�U.1�U'1�U$1�U 1�U1�U1�U
                   7970: 1�U1�U1�U1�U1fU1KU
                   7971: 1CU
1`U1`U1EU�0&U�0U�0U&1U�0�T�0�T�0�T�0�T�0�T�0�T�0�T�0T�0qT�0\T�0MT�0=T�0.T�0Ty0T{0�S�0�S�0�S�0�S�0{S�0ZS�0:S�0S�0S�0S�0�R�0�R�0�R�0�R�0�R�0�R�0�R�0�R�0�R�0�R�0nR�0IR�02R�00R�0(R�00R�00R1.R16R1*R&1R,1R81RE1�QG1�QC1�Q?1�Q;�2�Q�2�Q�2�Q�2R�20R�2GR�2^R�2oR�2wR�2�R�2�R�2�R�2�R�2�R�2S�2S�2S�2,S�2?S�2ZS�2qS�2�S�2�S�2�S�2�S�2�S�2�S�2�S�2�S�2�S�2�S�2�S�2�S�2T�2  T�2T�2$T�2.T�26T�2QT�2fT�2fT�2}T�2�T�2�T�2�T�2�T�2�T�2U�2�T�2�T�2�T�2�T�2�T�2�T�2�T�2�T}2�Tw2�T�4�Q4�Q�4�Q�4�QG�3�Q�3�Q�3�Q�3&R�3R�3R�3+R�3/R�3/R�3HR�3cR�3WR�3[R�3cR�3�R�3�R�3�R�3�R�3�R�3�R�3�R�3S�3S�3S�3S�3S�3S�3-S�3BS�3YS�3rS�3tS�3�S�3�S�3�S�3�S�3�S�3�S�3�S�3�S�3�S�3�S&4�S4�S4xS4pS 4TS 49S4S4S4�R!4�R.4�R44�R:4�R?4�RK4�RF4�RG4�RK4~RM4pRR4eRS4NRX4;Ra4#Rd4�Qg4Rr4Rv4�Q}4�Q�4�Q
                   7972: �/UY�/OY�/AY�/%Y�/Y�/Y�/�X�/�X�/�X�/�X 0`f0.f0f0�e0�e
                   7973: 0�e0�e0\e0Me�/Ie�/*e�/e�/�d�/�d�/�d�/�d�/�d�/�d�/wd�/Ud�/:d�/d�/�c�/�c�/�c�/�c�/pc�/Qc�/@c�/%c�/c�/c�/�b�/�b�/�b�/�b�/rb�/pb�/nb�/lb�/Yb�/:b�/b�/b�/�a�/�a�/�a�/�a�/�a�/�a�/�a�/�a�/ha�/Ua�/2a�/!m�/m�/m�/m0
                   7974: m
0m0�l0�l0�l0�l0�l#0m�+0)m.0m30m;0mG0�lP0�lU0�lX0llR0xlL0�lI0�lD0�l>0�l90�l60�l.0�l;0�l;0�l@0ylE0�lD0fl@0GlC0lE0�kK0�kK0�kK0�kQ0�kZ0�k_0pke0_ki0Wkr0Ikw0>ky06k00k�0'k}0k�0k�0k�0k�0k�0k�0�j�0�j�0�j�0�j�0�j�0�j�0�j�0�j�0�j�0rj�0nj�0jj�0Ij�0,j�0j�0jx0jq0jl0jh02ja0Gj_0`j[0nj_0�jX0�jL0�jO0�jN0xjH0djE0Sj@0<jN04jA0%jJ0jB0j90�i80�iE0�iL0�iY0�ih0�io0�in0�iy0�ir0�i{0�iz0�iu0�id0ni[0`iS0piN0YiL08iF0%iF0iQ0�hV0�hM0�hQ0�hS0�hS0�hZ0�h]0yh\0]hP0IhG0BhA0@hF0)hA0hQ0'hQ0hQ0�gM0�gI0�g=0�g-0�g&0�g&0�g0�g0�g0�g0�g0�g0{g0Ug0Yg  0tg0Yg0g0�f
                   7975: 0�f
0�f0�f0f0lf0df0}f�/�f0`f�/�n�/�n�/�n$�/bn�/zn�/�n�/�n�/�n�/rn�/an�/Qn�/]n�/bn�/bn�/dn�/pn�/[n�/On�/0n�/n�/�m�/�m�/�m0�m0{m0rm0�m        0�m0rm0Wm0@m00m0!m0m0.m�/+m�/>m�/#m�/!m#0m%0m+0)m+�0�z�0�z�0�z�0�z�0�z�0�z�0zz�0ez�0[z�0Hz�04z�0!z�0z�0z�0z�0�y�0�y�0�y�0�y�0~y�0py�0zy�0xy�0hy�0Sy�0>y�0y�0y{0!ys0Bym0ayh0�ye0�yd0�yc0�y^0�y]0zV0!zX0<zZ0_z`0rza0�zb0�z�0f��0�z��6���6���6���6���6���6���6���6���6���6���6���6���6o��6a��6H��6-��6���6���6���a7�a7&�_7��]7��\7��Y7��U7��N7��I7��F7��C7��A7��B7�B7;�C7]�F7~�J7���W7��[7��[7k�\7D�]7"�_7�a7��AK7R�L7L�P79�T7)�X7/�^79�`7�b7�e7پ`7Ǿ]7��X7��Q7��I7z�E7i�B7X�;7N�47D�.75�+7&�$7� 7��7�7ս7��7��7��7��7��7��7v�7c�7V��6m��6���6���6ɽ�6׽�6ս�6ٽ�6ڽ�6��6׽�6���6���6���6���6���6���6���6ͽ�6콷6��6/��6Y��6|��6���6׾�6�6��6P��6e��6���6���6��<�6��6$��6F��6Y��6v��6���6���6���6���6��69��6)��6��6@��6_��6���6���6���6���6���6���6z��6R��6D��6e��6m��6V��61��6��6���6���6���6���6���6���6���6���6��7��7��7��7��7��#7��)7��*7q�*7X�,77�/7�47��87�87ſ77��77��77o�<7X�?7R�F7Y�K7T�K7R���6P��6J��6@��6H��6H��6/��6��6���6&��6依6˾�6���6���6r��6[��6@��6       ��6潣6���6���6���6���6���6x��6k��6_��6@��6%��
                   7976: �6༌6�6�66޼�6ϼ�6���6���6���6����6o��6P���6���6v��6a��6T��6P��!7x�$7m�&7Z�%7B�#7/�7�7��7��7��7��7��7��7��7��7��7��
7��
                   7977: 7�    7F�7i��J7��P7��W7���7��7��!7x��       7i�   7��
7��7��7��7��7��7��7���7��7��7��7��7��7��7��7��X�6$��6��6��6���6���6���6���6���6���6���6���6���6���6���6���6���6v��6k��6]��6N��69��67��6+��6��6��6��6��6��6��6��6��6 ��6$��6*��6;��6F��6L��6J��6F��6D��6=��6*�7"�7�7��&7���6��7��&7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��7��!7��"7��$7��%7��$7�� 7��7��7�7�7$�71�7=�7D�7V�7e�7q�7~�7��7��7��7��7��7��7���+F7m�F7m�F7o�C7q�@7q�A7z�?7��>7��=7��>7��=7��;7��87��37��.7�-7��*7��'7��'7��$7��#7��$7�� 7~�!7k�#7T�&75�*7 �-7�/7�27
�57�671�871�:75�;75�:7*�<7�>7�?77�A7P�E7_�F7g�F7m��rl7��l7��l7��i7��f7��c7��`7��\7       �W7�T7(�S71�O7=�L7J�J7N�L7H�K7=�I7;�G7;�F77�C7*�@7(�>7/�973�37F�27X�.7g�+7k�)7c�&7N�$7/� 7(�7�7��7��7��7��7��7��7��7��7��7��7��7��!7��#7u�$7g�'7g�*7Z�-7R�.7H�179�27$�27�37��27��57��57��57��47��37��17��17��37��37��27x�27m�37e�27Z�37V�57a�97m�<7x�>7��A7��D7��H7��K7��K7��K7��O7��P7��S7��S7��U7��X7��[7��^7��`7��c7��f7��j7��l7��n7��r7��t7��v7��y7��z7��y7��{7��}7��}7�|7�|7(�}75�|7D�x7R�t7m�q7��n7��l7��k7��l7���,�7�Գ7�Ա7�ԭ7�ԫ7�Ԩ7�ԥ7�ԧ7�Ԥ7�ԥ7�Ԩ7�ԩ7լ7&հ7-հ7?խ7Rծ7_ծ7kկ7sձ7qղ7qմ7vն7sշ7qշ7iչ7Zն7Rմ7Lճ7Dյ7;ո73շ7(շ7չ7ջ7ս7&ռ7�Ժ7�Ժ7�Լ7�Ժ7�Է7�Ե7�Բ7���#7V�#7X�"7c�7q�7��7��7��!7��$7��&7��#7��"7��!7��#7��!7�� 7��� 7��"7���7��7��7��7��7��
                   7978: 7����6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���D�6���6���6���6���6���6���6���6���6���6���6o��6g��6Z��6N��6=��63��63��6(��6��6��6���6���6���6���6���6���6���6���6��7��7��7��7��7��
                   7979: 7��7�7�    7�     7/�
                   7980: 7A�7L�7V�7`�7o�7��&7��&7��7��7��7��7��7��7��7��7y�7m�7Z�7L�7N�7N� 7F�"7A�$7?�%7A�%7A�%7N�$7R�#7V��>�6���6���6���6���6���6���6���6�۽6�۹6z۶6z۵6o۲6aۭ6gۨ6kۨ6s۩6|۩6�ۧ6�ۤ6�۞6�۟6�ۡ6�ۡ6�۟6�۞6�۟6�ۢ6�ۢ6�۠6�۝6�۞6�۠6�۠6ܟ6ܡ6ܤ6ܣ6ܣ6-ܧ65ܩ6Aܫ6Jܭ6Lܯ6Pܰ6Nܯ6;ܳ6,ܴ6ܵ6&ܹ6�۽6�ۿ6�ۿ6��6��6���6���6���6���6���6���6���6���G�6L��6N��6R��6m��6kپ6cپ6eټ6wٽ6�پ6�ٽ6�ټ6�پ6�پ6�ٽ6�ټ6�ٻ6�ٷ6�ٴ6�ٯ6�٭6�٫6�٩6�٧6�٠6�ٞ6�ٛ6�٘6�ٕ6�ٖ6�ٗ6�ٗ6�ٕ6�ٔ6�ٖ6�ٗ6�ٖ6�ٓ6�ْ6�ْ6|ٔ6sٕ6mٔ6kّ6eّ6Vْ6Jّ67ْ6/ٕ6,ٗ63ٜ6;ٟ6=١6F٢69٤63٩6/٬6(ٯ6$ٰ6&ٱ6"ٱ6ٵ6ٸ6ٻ6ٿ6��6��6/��69��6A��6F��6L��Z�6c��6e��6o��6z��6���6���6���6���6���6���6���6���6���6���6���6���6��6��6��6��6
��6���6���6���6���6���6���6���6�ػ6�ظ6�ش6�س6�ز6�خ6�ت6�ة6�ب6٥6٣6٢6  ٠6�؝6�؜6�ؚ6�ؕ6�ؔ6�ؕ6�ؔ6�ؔ6�ؕ6�ؘ6�؜6�؞6�آ6�إ6�ث6�ث6�ج6�د6zز6oش6Xط6Pػ6Dؼ63ؼ6$ؽ6ؼ6ؽ6�׽6�׽6�׻6�׹6�׼6�׽6�׿6���6���6���6���6���6���6���6��6$��69��6=��6J��6Z��6_��6c���6�ד6�ד6�׏6�א6�׎6�׋6����6T׌6_׍6qא6~ג6�ג6�ד6���"7�7�7$�79�7J�7R�7P�7R�7X�
                   7981: 7_�7_�&7]��6g��6s��6���6���6���6���6���6���6���6���6���6���6q��6i��6k��6i��6_��6R��6C��67��6-��6$��'�7+��7+��7-��75��7?��7H��7X��7a��7s��7�ؽ7�غ7�ظ7�ض7�ش7�ر7�د7xت7oب7Zة7Dج71ث7"ت7ت7ج7&ج7�׭7�ױ7�״7�׶7�׺7�׼7���7���7���7���7���7��7��7+��7�7�ؖ7�ؖ7�ؗ7�ؕ7�ؕ7�ؕ7�ؓ7
ّ7ّ7&ُ79ٌ7=ي7Fى7Vن7Tل7Vق7Xف7Jق73ف7&�~7�}7�~7      �7&�7��|7��|7��{7��|7��z7��x7��y7��x7��v7��t7��w7��x7x�x7k�z7\�}7T�}7L�7D�7=؁75؃71؆79؅7P؈7V؊7a؎7mؐ7�ؓ7�ؕ7�ؗ7�ؖ7���\z7u�{7u�{7��y7��v7��u7��s7��r7��p7��n7��k7��k7��i7y�h7��h7��e7��b7��_7��_7��_7��b7��d7��b7��a7��b7��d7��b7��b7��b7��c7��e7��f7��h7��i7�h7�g7 �g75�d79�a77�^73�[7&�Z7�Y7 �U7&�T7��V7��V7��W7��X7��X7��T7��S7��U7��U7|�V7u�V7s�Y7|�[7w�[7a�\7R�^79�`7,�^7,�^7�_7&�`7��b7��c7��f7��g7��i7��h7��g7��g7��g7��i7��m7��o7��p7��q7��n7��m7��n7��n7��p7��r7��s7�t7,�y79�{7F�{7Z�z7u��# 7��!7�� 7��7��7��7��7��7��7&�
                   7982: 7�7(�77�
                   7983: 79�
                   7984: 7D�7P�
                   7985: 7a�7k�7x�7��7��7��7��7~�7k�7e�7V�7H�7C�7=�7-� 7 � 7� 7� 7�� 7���37��        7��7��7��7��7��7&�7�7�&7-�7;��65��6$��6��6(��6*��6&��6(��6 ��6��6��6���6���6���6���6���6���6���6���6s��6i��6i��6e��6V��6A��67��61��61�73�&7?�7L�7H�7L�7^�7o� 7u�     7|�     7��     7��7��7���=!7��!7��!7�� 7�� 7��7�7�7-�7-�7$�7$�7$�7&�7�7�7��7��7��7��7��
                   7986: 7��7��7��7��7��7��7��7z�7e�7V�7P�7H�        77�
                   7987: 7 �7�
7&�7��7��7�7�7�7"�75�7J�7T�7P�7C�7C�7L�7\�7q�7��7��7��7��7��!7��7��7��!7��!7���b47��57��57��77��;7�;7�;7/�>7=�>7P�>7\�@7g�B7~�A7��B7��A7��A7��@7��>7��;7��87��57��47��27��17��17��07��/7��.7��+7��+7��+7��,7q�+7X�+7H�)7=�%7A�$7=�"7-�#7�%7�#7  �7��7��7��7��7��7��7��7��7y�7m�7`�7V�7V�   7V�7R� 7A�     79�79�79�77�7,�&7$��6$��6(��6��6
�7��&7��7��7��7��7��7��7��7��7��7��7� 7�"7 �#73�%7?�'7L�)7Z�*7c�*7i�*7s�+7��-7��.7��/7��27��67��87��67��47��47���6A7C�A7C�A7X�A7q�C7w�F7��C7��C7��E7��G7��D7��B7��>7��<7��87��57s�17V�/7F�.7C�-79�-7/�*7*�%7�7��7��7��7��7��7��7��7��7��7��7��7��7~�7z�7u�!7s�#7q�$7q�%7~�%7��)7��-7��.7��27��57��87��:7   �<7�>7&�A77�A7C���!7J�7k�7��7��7��7��7��7��7��7��7��7&�7 �
7�7�
7"�
                   7988: 7.�77�        7C�     7N�7^�7k�7o�7{�7��7��7��7���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6~��6e��6X��6I��6=��6=��6A��69��6*��6"��6��6��6��6   ��6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6|��6y��6���6���6���6���6���6���6���6���6���6���6���6���6���6���6��&7��&7~�&7s�7q�7q�   7u�7i�7^�
                   7989: 7V�7P�7E�
77�
7,�7�7��7��7��7��
7��    7��7w�7m�7\��6V��6P��6F��6=��6-��6"��6��6��6���6���6���6��7��7��7��7��7��7��7��7��7�7�73�7F�7V�7c�7m�7��7��7��7��7��7�� 7��7��7��7�� 7��7��7&�7�7�71� 7?�!7J�� 7�� 7���"7��$7��#7��"7��!7�!7"�7*�7"�7�7"�7-�7,�7 �7�7�7����
                   7990: 7��
                   7991: 7��7��7
�    7�7"�
                   7992: 73�    7?�7E�7F�7C�7C�7F�7P�7Z�7^�&7g��6k��6c��6g��6i��6o��6u��6y��6z��6o��6e��6g��6s��6y��6~��6���6���6���6���6���6���6���6���6���6���6���6��6��6��6,��67��6E��6P��6\��6^��6`��6k��6q��6z��6���6���6���6���6���6���6���6���6���6��6��6��6-��61��6-��65��6;��6E��6F��6A��67��6(��6��6��6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6��6
��6��6��6��6"�6-�6*�6*�67�69�61�6$�6�6�6
�6�ߧ6�ߤ6�6�6�ߟ6&��6�ߠ6�ߠ6�ߡ6�ߠ6�ߡ6�ߢ6�ߤ6�ߦ6�ߨ6�ߪ6|ߨ6wߥ6wߢ6yߠ6|ߡ6sߣ6gߡ6`ߝ6Zߚ6Zߙ6^ߘ6kߖ6zߓ6�ߐ6�ߌ6���G�6Vߍ6Hߏ6Eߒ6Fߔ6Cߕ67ߒ6-ߎ6-ߍ6 ߎ6ߒ6ߓ6ߕ6   ߘ6ߛ6ߠ6ߡ6
ߠ6�ޝ6�ޜ6�ޝ6�ޚ6�ޜ6�ޞ6�ޢ6�ޢ6�ޤ6�ޠ6�ޠ6�ޣ6�ާ6�ީ6�ު6�ޫ6�ޯ6�޳6�޲6�ް6�޳6�޶6�޹6�޼6�޾6�޾6�޿6���6���6���6���6���6���6���6���6���6���6|��6z��6e��6\��6V��6P��6F��6=��6;��65��6,��6 ��6��6��6��6���6����6���6���6���6���6���6���6���Q�60�6*�6*�6*�6"�6(�67�6C�6K�6^�6k�6}�6��6��6��6��6��6��6��6��6��6��6&�6
�6�6 �6 �6$�6(�6(�6.�63�65�67�6E�6N�6d�6m�6s�6}�6��6��6��6��6��6��6��6��6��6��6}�6i�6\�6N�6;�6$�6�6�6&�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6w�6m�6b�6V�6I�67�62�60����6y��6{��6{��6s��6o��6b��6L��6?��62��6,��6*��6.��6.��62��6C��6E��6=��69��65��6.��6(��6.�62�63�65�6A�6K�6L�6L�6P�6X�6Z�6^�6`�6\�6V�6N�6G�6E�6E�6?�67�67�67�62�6(�6&�6$�6 �6 �6�6�6�6�6�6�6�6�6��6��6�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6�6�6��6��6��6��6}�6o�6b�6Z�6P�6G�6?�6;�62�6*�6$�6��6��6��6��6��6     ��6��6�6     �6
�6
�6
�6
�6�6$�60�67�67�67�6;�6C�6G�6N�6N�6G�69�6*�6$�6�6�6�6�6&�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6{�6u�6o�6k�6i�6f�6g�6g�6g�6k�6k�6`�6X�6R�6K�6C�6A�6(�6�6�6���6���6���6���6���6���6���6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6���:�6f��6X��6G��67��6(��6(��6&��6��6��6��6�6�6
�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6}�6y�6m�6`�6X�6K�6?�6,�6*�6*�6&�6�6�6�6�6�6�6.�64�6P�6I�67�6$�6�6�6�6���6���-�6���6���6��6��6��6��6��6��6��6��6��6��6��6��6��6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6w��6w��6u��6y��6w��6q��6s��6w��6w��6{��6{��6}��6{��6y���6��6��6���6���6���6��6��6�����6;�6.�6$�6"�6,�6=�6K�6Z�6d�6f�6k�6q�6w�6y�6�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6s�6h�6Z�6I�6A�6=�62�6&�6�6�6�6�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6�6�6�6��6��6��6���6���6��6��6���6��6��6��6��6��6��6��6��6��6��6��6}�6{�6w�6w�6w�6}�6}�6��6��6��6��6���6}��6���6���6}��6y��6y��6���6���6���6���6y��6s��6u��6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6f��6`��6h��6f�&�7A
�7#
�7��7��7��7��7��7��7��7��7$
�7A
&�6\
�6M
�6&
�6
�6
�68
�6s
�6�
�6�
�6�
�6y
�6\
&_�7�
�7�
�7�
�7\
�7.
�7
�7��7��7��7��7n�7l�7{�7f�7C�7O�7$�7<�7Q�7A�7Q�7X�7S�7�7��7�7�7�7��7��7��7��7��7j�72�7�7�
                   7993: �7�
                   7994: �7�
                   7995: �7^
                   7996: �7
                   7997: �7�    �7�     �7�     �7�     �7V     �70     �7     �7��7��7��7l�7b�7��7�}7�t7     m7     j7V     `7`     [7q     V7�     P7�     L7�     L7�     M7�     M7
                   7998: N74
                   7999: H7O
                   8000: B7O
                   8001: <7G
                   8002: 57!
                   8003: )7
                   8004:  7,
                   8005: 7o
                   8006: 7�
                   8007: 7�
                   8008: 7�
                   8009: 7�
                   8010: 
                   8011: 7�
                   8012: 7#7f       7�7�
77:7V7`7}�6��6��6��6

�6E
�6u
&�6�
�6o
�6M
�6#
�6��6��6j�6*�6�6��6��6V�6�6�6*�6M�6d�6y�6d�6y�6��6��6�6G�6��6��6��6.
�6Q
�6�
&�6{
�6f
�6?
�6
�6��6��6��6u�6I�6�6��6�8f8Q�7?�76�7�7�7�
�7�
�7�
�7�
�7�
�7�7,�7Q�7u�7��7�8fD�7��7��7s�7`�7\�7U�7X�7\�7Z�7^�7n�7{}7�t7�m7�j7�b7*`7d7�e7�Y7�O7�@777:,7d7u
7��6��6��6��6��6�6��6��6��6��6��6u7K
                   8013: 7O767%7> 7<#7*7�07�97�B7�N7w[7=d7m7�v7��7��7��7}�7I�7(�7�
�7�
�7�
�7�7�
�7�
�7�
�7�
�7�
�6u
&7�
�6�6�6��6}�6O�6=�6
�6�
�6�
�6�
�6�
�6�
�6�
�6�6�
�6�
�8��8r�8`�8}�8A�8*�8��8�8?�8,�8�8��8`�8��8��8^�8A�8S�8��8��8��8S�8��8��8<Y�8��8f�8,�8,�8:�8
                   8014: �8��8��8W�8�8��8��8f�8�8��8��8��8��8��8��8��8��8��8�8�{8|8�u8�q8l8Sh8�g8lj84l8�q8�w8�~8U}8�8�|8�y8�t8�n8�h8�o8�v8�w8wr8\n8?k8*k8�o8�p8�j8�i8�d8w\8?W8P8�J8E8    E8D8(=8O78�28�*8�"8�8�848w8�8�8.8\8��7��7��7��7&�7K�7y�7�8�88W8�8�8:'�7��7b�7
�7��7u�72�7��7��7,�7!�7��7��7��7d�7��7��7.�7C�70�7�7��7��7�7��7��7E�7��7��7��7��7��7��7��7��7��7I�7��7��7��8O�84z8So84k8u8u8,|8B�8Q�8�8��8��8O�8M�8y�8��8��8)�8.�8��8��8p�8%�8�8K�8{�8��8��8��8��8�84�8>�8I�8<�8>�8Q�80C�8E�8>�8�8��8��8��8��8��8��8��8��8l�8`�8B�8�8��8��8��8��8��8��8��8��8��8��8��8��8��8W�8C�8%�8�8��8��8��8�8`�8b�8G�8(�8�8��8�8�8�9�9�&9d&989�8�8��8��8��8s�8h�8C�8�8��8{�8>�8�8��8��8��8��8��8`�8}�8��8��8��8}?�8<�8��8��8G�8��8��8��8.�8d�8��8��8�8<�8S�8��8��8��8��8W�8!�8�8O�8��8��8��8�8p�8��8��8�8�|8�t8�t8�{8��8��8j�8^�8.�8
                   8015: {8q8t8�{8��8��8��8��8}�8E�8�8��8��8��8��8r�8f�82�8��8��8��8A�8��8�(8:�7��7��7A�7\8�8�8�88n&8A&8�8��7��7l�7d�7��7��72�7Y�7��7��7��76�7E�7?�76�7��7��7��7Q�7
                   8016: �7��7p�7>�7�7�7��7��7�0T8!U8� W8� Y8� X8� V8r Y8n ]8f ]8I ]8% Y8�U8�Q8�L8�G8{E8_@8B98838!.8�(8�!8�88888E
                   8017: 8Q8G�72�7�7#�7>�7_�7n8�8�8�8
                   8018:  80 8B #8_ (8} 08� ;8� E8� M8� R8� T8!�8� �8 �8h �8@ �8��8 �8% �8: �8_ �8h �8Q �8# �8 �8��8��8��8��8��8d�8[{8Q{8p}8�}8�{8�|8 |80 �8Y �8t �8� �8�8��8��8��8��8r�8I�8!�8�8��8�8G�8u�8��8��8��8��8�8b�8d�8Q�8�8��8��8��8��8��8��8��8��8�8G�8b    �8^�8O�8>�8�8��8��8��8r�8O�84�8E�8{�8��8��8��8�8M�8h�8t�8b�8^�>8.":8
                   8019: "28�!(8�!8�!8M!8!8!8� �7� �7E �7 �7��7��7��7��7f�70�7��7��7��7��7��7��7��7�7�7%�74�7�7�7��7��7��7W�7p�7��7��7��7��78#88
                   8020: 8�8�8�8:8�  8�8�8�8�8�8�848W!8�+8r,8n/8�68�;8�@8�F8L8!P8>W8U^8�e8�h8�n8�o8o8Gm8l8�m8�o8<o8�n8�g8l]8ES8CD8@886;8?8G8O8U8'_8*f8>j8)e8�]8�W8�P8I8^F80<838,8�48�<8�@8�H8�N8�S8�Y8�Y8�[8
                   8021: _8d8Qd8{h8�l8�o8�o8�r8w8'x8U{8�{8�{8{8Ey8py8�z8�8'�8>�8)�8�8��8`�84�8I�8h�8��8��8��8�8.�8U�8{�8n�8��8��8��8��8��8l�8[�8O�84�8�8�8*�8�8��8��8d�8Q�8d�8#�8��8�8G�8y�8��8l�8.�8�8�8*�8�8��8��8��8U�8:�86�8O�8Y�82�8��8��8��8��8Y�8!�8�8��8��8{z8S|8B�8S�8n�8h�8Q�8>�8K�8I�8>�8I�8Q�80�8E8�$8�$8�$8`$8D$8D$88$8$�7�#�7�#�7�#�7l#�7S#�7W#�7�#�7�#�7�#�7�#�7$�7%$�7G$�7f$�7�$�7�$8�$8�$8�$8�$8�$8�$!�7
                   8022: )�7�(�7�(�7�(�7}(�7z(�7p(�7M(�7'(�7(�7�'�7�'�7�'�7{'�7f'�7f'}7O'�7@'�7O'�7]'�7�'�7�'�7�'�7�'�7�'�7(�7(�7)(�78(�7Y(�7�(�7�(�7�(]�7�(�7�(�7�(�7�(�7S(�74(�7�'�7�'8�'8_'80'8�&8�&8�&  8�&8�&8&8p&8K&8&80&8M&8Q&8#&8&%8�%$8�%!8}%8d%8K%88%8'%�7
                   8023: %�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7�$�7y$�7r$�7y$�7}$�7Q$�7'$�7�#�7�#�7�#�7�#�7�#�7[#�7)#�7#�7�"�7�"�7�"�7�"�7�"�7�"�7�"�7#�78#�7�"�7�"�7�"�7b"�7<"�7I"�7�"�7�"�7�"�7�"8#8#8!#8!#"8##)8)#-86#48I#<8]#?8W#@8Q#A8O#    A8O#A8:#A8#B8�"@8�"@8y">8I">82">8.":�6�/�6�/�6~/�6e/�6Q/�6K/�6//�6/�6�.7�.7�.
7}.7r.7_.7H. 7/."7.$7.'7.*7�-07�-97�-<7�-B7h-J7[-S74-]7-]7-_7�,i7�,q7d,v7@,|7%,�7,�7
                   8024: ,�7,�7
                   8025: ,�7',�7@,�7U,�7�,�7�,�7-�7F-|7p-w7�-u7�-r7�-q7'.m7_.g7�.b7�.^7�.X7/V7</W7l/P7�/I7�/iX7�/^7�/c7�/d7�/b7�/_7p/`7F/d7/i7�.p7�.w7�.{7p.�7M.�7!.�7�-�7�-�7�-�7�-�7�-�7�-�7.�7I.�7r.�7�.�7�.�7�.�7/�7%/�7)/�7'/�7/�7�.�7�.�7�.�7/�72/�7J/�7Y/�74/�7/�7�.�7�.�7�.�7�.�7x.�7�.�7�.�7b.�7S.�7/.�7�-�7�-�7�-�7}-�7U-�7#-�7-�7�,�7�,�7�,�7�,�7�,�7-�7�,�7�,�7�,�7�,�7Y,�7I,�76,�7,�7,�7�+�7�+�7�+�7�+�7�+�7�+�7�+�7�+�7{+�7a+�7<+�7�*�7�*�7�*�7�*�7_*�7D*�78*�7*8�)8�)8�)8�)8�)8�)$8�))8�)38�)78*882*:8p*=8�*?8�*R?8�*@8�*@8�*98�*>8�*88+188+88#+>8+D8+J8�*L8+Q8O+X8]+]8_+d8�+h8�+l8x+t8n+~8+{8�+}8�+z8�+t8�+q8,u8),v8H,|8I,�8K,�8_,�8W,�8Y,�8�,�8�,8�,|8�,u8�,r8�,m8�,h8�,p8�,u8�,|8�,|8-t8n-k8�-h8�-f8�-d8�-c8.c8.a8+.]8F.Y8j.Y8�.U8�.R8/]8�.a8�.i8d.r8.w8�-8�-�8�-�8�-�8�-�8�-�8�-�8.�8B.�8_.�8}.�8�.�8�.�8�.�8�.�8/�88/�8_/�8x/�8z/�8�/�6<,�6,�6�+�6�+�6�+�6�+�6v+�6�+�6�+�6�+�6�+�6�+�6�+�6�+�6�+�6,�6@,�6d,�6�,�6�,�6�,[�6-�6+-�6O-�6h-�6�-�6�-�6�-�6�-�6�-�6�-�6.�6.�6!.�6.�6.�6).�6#.�6�-�6�-�6�-�6�-�6�-�6�-�6|-�6-�6�-�6z-�6Y-�6D-�6+-�6-�6�,�6�,�6�,�6�,�6�,7�,7�,
7�,7�,7j,7l,#7O,*7<,17D,87+,;7�+A7�+E7�+E7�+J7�+Q7�+S7�+Q7�+U7�+]7[+\74+[7+Y7�*U7�*N7�*K7�*F7U*K7<*M7*U7�)[7�)d7*k7*o7*x7*7�)�7�)�7�)�7�)�7*�7*�7*�7*�7/*�7/*�70*�7<*�78*�7/*�7*�7�)�7�)�7�)�7�)�7n)�7n)�7j)�7W)�76)�7
                   8026: )�7�(�7�(�6�6�6�6�6h6�6<6�66�6�5�6�5�6�5�6�5�6t5�6v5�6�5�6�5�6�5�66�6<6�6a6�6x6��6�6�6�6�6n67K67167
                   8027: 67�57�57�57�57�57W571575757575757�47�47�47�47�47p47a47H4724724784 7D4"7>4$7-4%74!7�3 7�3%7�3'7�3*7�3+7�3+7�3.7�3.7z317z317�3/7�3.7�3-7�3+7
                   8028: 4)7%4(784&7Q4&7n4$7�4$7�4%7�4%7�4&7�4(7�4(7�4(75'75)75)7#5'7>5(7Q5'7l5'7~5&7�5$7�5#7�5!7�5 7�5!7�576767'6 726%746*76617<677+6>76D7�5K7�5P7�5V7�5Y7�5`7�5c7�5d7�5f7�5i7�5k7�5n75r7t5t7a5v7F5x7B5z715}7!575�75�7�4�7�4�7�4�75�7%57F5{7a5x7�5u7�5q7�5k7�5d7�5_7�5Z76R76N7%6M7'6L76J7!6H7-6F7:6H7F6K7S6L7[6L7]6L7h6P7x6
O7�6K7�6H7t6C7a6;7p6.7~6,7t607p6.7]6*7]6%7h6 7676�6�0�6W0�6S0�6�0�6�0�6B1�6�1�6n1�6_1�6B1�6�0�6�0�6z0�610�6�/�6�/�60�6F0�6Q0�6F0�660�610�610�6'0�6�/I7�/E7�/B7�/E7�/M7�/M7�/K7
                   8029: 0K7S0O7n0R7r0R7Y0Q7>0P70R7�/X7�/S�8�/�8�/�8�/�80�8#0�8/0�8]0�8�0�8)1�8/1�861�8<1�8l1�8[1�8j1�8�1�8�1�8@2�8D2�8U2�8a2�8n2�8�2�8�2�8�2|8�2r8z2j8Q2o8�2w8�28�2�8�2�8�2�83�8F3�8�3�8�3�8�3�8)4�8c4�8�4�8�4�8�4�8�4�8�4�85�825�8_5�8]5�8H5�85~8�4v8�4o8�4n8|4j8�4`8r4W844N8�3H8�3A8�368+418Y4:8_4C8@4N8S4W8�4a8�4j8�4u8
                   8030: 58%5�8h5�8�5�8�5�8�58�5{8�5z86�8%6�826�8Y6�8r6�8�6@�6c=�6:=�6=�6!=�6=�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6�<�6x<�6c<�6H<�6@<�6+<�6<�6<�6<�6%<�6#<�61<�6L<�6a<�6c<�6c<�6a<�6H<�6<�6&<�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6|;�6�:�6�:�6;�6#;�6#;�6!;�6!;�6;�6;�6;�6�:�6�:�6�:�6�:�6�:�6O:�6%:�6:�6�9�6�9�6�9�6h9�6J9�6-9�69�6�8�6�8'�6>8�6J8�6J8�6c8�6~8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6r8�6U8�6-8�68�6�7�6�7�6�7�6�7�6�7�6�7�6W7�6>7�67�67�6�6�6�6�6�6�6�6�6�6�67�67�6�6�6�6�6�6�6�6�6x6�6�6�6�6�6�6�6�6�6�6�6�6�6�6P7x6R7�6X7�6W7�6S7�6O7�6�767�67�67�6
                   8031: 7�6    7�6     7�677&7#7�6@7�6c7�6�7�6�7�6�7�6�7�6�7�6�7�68�6!8�668�6W8�6j8�6|8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6�8�6j8�6]8�6[8&7L87@87#8787�77�77�77�778787878787878!78&78#787/87B87W87U87:87887H8
                   8032: 7[87v87�8�6�8�6�8�6�8�6�8�6�8�6�8�6&9�69�69�6%9�6+9�689�6:9�669&7/97979797
                   8033: 9797#9739�6L9�6g9�6j9�6h9�6[9�6Y9�6e9�6g9�6p9�6r9�6�9�6�9�6�9�6�9�6�9�6�9�6
                   8034: :�6:�61:�6<:�65:�6%:�6:�6:�6/:�6<:�6J:�6U:�6Y:�6a:�6g:�6�:�6�:�6�:�6�:�6�:�6�:�6�:�6�:�6�:�6�:�6�:7�:7�:
                   8035: 7�:
7�:7�:7�:7�:7�:7�:7~: 7j:#7n:%7e:(7Y:*7O:,7O:,73:.7%:17:37:47�977�987�967�977�987e997J9<739<79<79:7
                   8036: 9=7�8?7�8B7�8C7�8C7~8C7U8G7:8I78K7�7L7�7K78K738H7O8H7t8F7�8F7�8F7�8D7�8C7�8C79B7/9B7H9C7N9C7_9B7|9@7�9?7�9?7�9=7�9;7�9:7:<7:<75:;7B:87Y:47h:17�:,7�:%7�:7�:7�:
7�:7
                   8037: ;&7#;�61;�61;�65;�6F;�6W;�6h;�6|;�6�;�6�;�6�;�6�;�6�;�6�;�6�;�6<�6<�6<7/<7H<7g<7�<7�<7�<7�<7�< 7�<"7�<��8�6�8�6�8�6�8�6�87�8Y7�8a7{8>7z87x87o8!7g87d8�6`8�6a8�6b87[87X87a8B7m8r7q8�7s8�7s88n8%8f8�7^8�7W8�7Q8�7O8�7I8�7D8~7;8j788�7?8�7G8�7O88T8]8U8�8R8�8L8�8G8�8@8�8>8S8:8<898n8;8�8;8�8;8�868�8.8�8%8�88�88�88n8  8>88#88�7�7�7�7�7�7�7�7�7�7z7�7e7�7�7�7�7�7!8�7Y88�8
8�88�8898)98+98989�7�8�7�8�7�8�7�8�79�719&8)9
                   8038: 8898[98h98�98�9 8�9#8�9#8�98�9%8:)88:.8<:38%:48Q:48n:58�:48�:28�:-8;)8�:%8�: 8�:8�:8�:8�:8�:8);8Y;8�;
                   8039: 8�;8�;�7[;�7%;�7�:�7�:�7�:�7N:�7!:�7@:�78:�7n:�7�:�7�:�7�:�7�:�7�:�7+;�7[;�7�;�7�;�7�;�7~;�7�;�7�;�7�;�7�;�7�;�7�;�7�;�7&<�7<�75<�7h<�7�<�7�<�7�<�7=�7=�7�<�7�<�7=�7!=�7!=�7=�78=�7S=�7c=�7B=�76=�7&=�7�<�7=�7W=Tx7g=|7L=�7=�7�<�7�<�7�<�7n<�7-<�7<�7&<�7�;�7�;�7�;�7S;�7;�7�:�7;�7);�7N;�7�;�7�;�7�;�7<�7S<�7n<�7�<t7�<p71=k71=h7=d7�<b7�<c7�<\7�<\7�<[7)=Y7J=R7S=J7N=C7O=<75=87=67�<;7�<=7�<=7W<=71<?7<?7�;?7�;>7z;?7e;B7:;F7;H7�:O7�:U7�:Z7�:[7l:^7-:d7�9g7�9h7�9b7�9\7�9V7:N7L:E7|:A7z:<7�:47&;176;07g;/7�;/7�;37�;37<37H<.7e<-7�<*7�<%7�<#7�<"7�<       �6�C�6�C�6�C�6�C�6vC�6nC�6aC�6OC�6>C�6#C�6C �6�C�6�C�6�C�6�C�6�C�6�C     ��6�@�6�@�6�@�6�@�6�@�6�@�6p@�6W@�63@�6@�6�?�6�?�6�?�6�?�6�?�6�?�6@�6)@�6/@�61@�6:@�6<@�6D@�6/@�6@�6�?7�?&7�?7�?7�?7�?7�?7@7!@77@7W@7i@7|@
                   8040: 7�@
7�@7�@7e@7e@7�@7�@7�@7�@7�@7�@7�@ 7�@ 7�@"7�@&7�@*7�@.7�@27�@67�@67�@87�@<7~@97t@87W@775@375@[email protected]@.7%@/7@27@37@27�?47�?67�?87�?67�?97�?;7�?;7�?>7�?@7@E7@A7&@?7�?B7�?B7�?A7�?A7�?A7�?@7|?A7l?A7i?C7_?F7F?F7<?I7:?L73?O7+?Q7/?U7)?V71?S7@?S7N?V7[?X7[?Y7a?Y7|?Z7�?W7�?U7�?S7�?S7�?S7�?V7�?S7@U7#@V7@@X7Q@\7[@_7e@b7c@d7c@g7[@i7]@i7g@i7r@j7�@m7�@q7p@s7W@u7B@q7-@n7@i7�?j7�?r7�?v7�?t7�?v7�?s7z?r7_?p7U?p7P?l7<?i7?f7�>b7�>[7�>W7�>O7~>L7j>F7l>@7j>?7t>=7p>:7c>47Q>-7H>'7D>"75>7/>7>7>7>7>7>
7>7>7�=7�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6�=�6c=   �6�A�6zA�6SA�6@A�6cA�6�A�6�A�6�A�6�A�6�A�6�A�6jA�6OA�65A�6A�6A�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@     �6�@�6~@�6i@�6S@     e�6#@�68@�6J@�6J@�65@�6@�6@�6�?�6�?�6�?�6�?�6�?�6@�6@�6%@�65@�6H@�6Y@�6v@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6A�6-A�6-A�6@A�6]A�6~A�6�A�6~A�6�A�6�A�6�A�6�A�6�A�6hA�6WA�6>A�6A�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6�@�6A�6�@�6�@�6�@�6�@�6A�6!A�6>A�6OA�6JA�6<A�6<A�6:A�68A�6FA�6<A�6)A�6A�6A�6&A�6�@�6�@ !�7S=�7a=�7~=�7�=�7�=�7�=�7>�7)>�7>>�7Y>�7x>�7�>�7�>�7�>�7�>�7�>�7�>�7�>�7c>�7O>�7O>�7F>�7>�7�=�7�=�7�=�7�=�7�=�7�=�7�=�7x=�7c=�7c= �7W=�7�=�7�=}7�=y7�=t7�=x7g=0707070035050414531004640000030000040000011762430330024250700002000000007625mapdata/world.x-8 -18 0
                   8041: -8 -17 72
                   8042: -8 -4 564
                   8043: -8 -3 580
                   8044: -8 -2 692
                   8045: -8 -1 748
                   8046: -8 0 888
                   8047: -8 1 1016
                   8048: -8 2 1184
                   8049: -8 3 1324
                   8050: -8 4 1400
                   8051: -8 5 1512
                   8052: -8 6 1628
                   8053: -8 7 1800
                   8054: -8 8 2212
                   8055: -8 9 2292
                   8056: -8 10 2520
                   8057: -8 11 2864
                   8058: -8 12 2964
                   8059: -8 13 3068
                   8060: -8 14 3152
                   8061: -8 15 3288
                   8062: -8 16 3376
                   8063: -8 17 3428
                   8064: -7 -17 3472
                   8065: -7 -16 3532
                   8066: -7 -15 3648
                   8067: -7 -14 3824
                   8068: -7 -13 3968
                   8069: -7 -12 4172
                   8070: -7 -11 4320
                   8071: -7 -10 4504
                   8072: -7 -9 4656
                   8073: -7 -8 4796
                   8074: -7 -7 4972
                   8075: -7 -6 5080
                   8076: -7 -5 5324
                   8077: -7 -4 5532
                   8078: -7 -3 5728
                   8079: -7 -2 5780
                   8080: -7 -1 5904
                   8081: -7 0 6004
                   8082: -7 4 6096
                   8083: -7 5 6192
                   8084: -7 6 6716
                   8085: -7 7 7832
                   8086: -7 9 8044
                   8087: -6 -17 8096
                   8088: -6 2 8196
                   8089: -6 3 8244
                   8090: -6 5 8572
                   8091: -6 6 9000
                   8092: -6 7 10720
                   8093: -5 -18 13308
                   8094: -5 -17 14172
                   8095: -5 -15 14764
                   8096: -5 -8 15224
                   8097: -5 -7 15340
                   8098: -5 -4 15564
                   8099: -5 6 15608
                   8100: -5 7 16172
                   8101: -5 17 18260
                   8102: -4 -18 18340
                   8103: -4 -16 19248
                   8104: -4 -15 19544
                   8105: -4 -14 19956
                   8106: -4 -13 20640
                   8107: -4 -12 20836
                   8108: -4 -4 21108
                   8109: -4 -3 21140
                   8110: -4 -2 21392
                   8111: -4 5 21612
                   8112: -4 6 22368
                   8113: -4 7 22456
                   8114: -3 -17 22772
                   8115: -3 -16 23200
                   8116: -3 -15 23572
                   8117: -3 -12 23708
                   8118: -3 -6 24212
                   8119: -3 -5 24328
                   8120: -3 -4 24556
                   8121: -3 -2 24872
                   8122: -3 4 25184
                   8123: -3 5 25652
                   8124: -3 7 25668
                   8125: -3 10 25960
                   8126: -3 12 25996
                   8127: -3 13 26024
                   8128: -3 14 26112
                   8129: -3 17 26148
                   8130: -2 -18 26196
                   8131: -2 -17 26508
                   8132: -2 -16 27216
                   8133: -2 -15 27344
                   8134: -2 -14 27936
                   8135: -2 -13 29000
                   8136: -2 -12 29804
                   8137: -2 -6 29836
                   8138: -2 -5 29884
                   8139: -2 -4 30668
                   8140: -2 -2 31180
                   8141: -2 3 31532
                   8142: -2 4 31824
                   8143: -2 6 31844
                   8144: -2 7 31968
                   8145: -2 14 32344
                   8146: -2 15 32656
                   8147: -2 16 32716
                   8148: -2 17 32752
                   8149: -1 -18 32948
                   8150: -1 -17 33012
                   8151: -1 -16 33288
                   8152: -1 -15 34468
                   8153: -1 -14 35472
                   8154: -1 -13 37056
                   8155: -1 -12 39304
                   8156: -1 -11 40872
                   8157: -1 -10 41988
                   8158: -1 -6 42076
                   8159: -1 -5 42096
                   8160: -1 -4 42248
                   8161: -1 -3 43072
                   8162: -1 -2 43240
                   8163: -1 -1 43460
                   8164: -1 1 43532
                   8165: -1 3 43560
                   8166: -1 4 43720
                   8167: -1 5 44188
                   8168: -1 7 44288
                   8169: -1 8 44448
                   8170: -1 9 44768
                   8171: -1 13 45004
                   8172: -1 14 45072
                   8173: -1 15 45120
                   8174: -1 17 45160
                   8175: 0 -18 45236
                   8176: 0 -17 45400
                   8177: 0 -16 45584
                   8178: 0 -14 45684
                   8179: 0 -13 45764
                   8180: 0 -12 47296
                   8181: 0 -11 48400
                   8182: 0 -10 49476
                   8183: 0 -9 50196
                   8184: 0 -8 50356
                   8185: 0 -6 50536
                   8186: 0 -5 50580
                   8187: 0 -4 50792
                   8188: 0 -1 50972
                   8189: 0 0 51620
                   8190: 0 1 51812
                   8191: 0 4 52072
                   8192: 0 5 52120
                   8193: 0 6 52580
                   8194: 0 7 52708
                   8195: 0 8 53308
                   8196: 0 9 53764
                   8197: 0 15 53796
                   8198: 0 16 53892
                   8199: 0 17 53916
                   8200: 1 -17 53948
                   8201: 1 -15 54056
                   8202: 1 -13 54224
                   8203: 1 -12 56128
                   8204: 1 -11 56416
                   8205: 1 -10 57192
                   8206: 1 -9 57828
                   8207: 1 -8 58072
                   8208: 1 -6 58492
                   8209: 1 -5 58936
                   8210: 1 -4 59768
                   8211: 1 -2 59928
                   8212: 1 1 60120
                   8213: 1 2 60576
                   8214: 1 6 60820
                   8215: 1 7 62072
                   8216: 1 8 62932
                   8217: 1 9 63672
                   8218: 1 10 64228
                   8219: 1 11 64484
                   8220: 1 15 64508
                   8221: 2 -16 64648
                   8222: 2 -15 64692
                   8223: 2 -13 64720
                   8224: 2 -12 65464
                   8225: 2 -11 66204
                   8226: 2 -10 66360
                   8227: 2 -9 66548
                   8228: 2 -8 66764
                   8229: 2 -7 67064
                   8230: 2 -6 67468
                   8231: 2 -5 68372
                   8232: 2 -4 68616
                   8233: 2 0 69452
                   8234: 2 1 69488
                   8235: 2 7 70016
                   8236: 2 8 71176
                   8237: 2 9 72104
                   8238: 2 10 73332
                   8239: 2 11 73816
                   8240: 2 15 75180
                   8241: 2 17 75572
                   8242: 3 -15 75580
                   8243: 3 -14 75752
                   8244: 3 -13 77028
                   8245: 3 -12 78536
                   8246: 3 -6 78716
                   8247: 3 -5 78928
                   8248: 3 -4 79136
                   8249: 3 -3 80084
                   8250: 3 -2 81932
                   8251: 3 -1 83004
                   8252: 3 0 83644
                   8253: 3 1 84380
                   8254: 3 2 84452
                   8255: 3 3 84680
                   8256: 3 6 84708
                   8257: 3 7 84760
                   8258: 3 8 85976
                   8259: 3 9 86392
                   8260: 3 11 86424
                   8261: 3 12 87160
                   8262: 4 -16 87612
                   8263: 4 -15 87784
                   8264: 4 -14 88960
                   8265: 4 -13 89368
                   8266: 4 -8 89532
                   8267: 4 -7 89788
                   8268: 4 -6 89980
                   8269: 4 -5 90648
                   8270: 4 -4 91008
                   8271: 4 -3 92300
                   8272: 4 -2 93132
                   8273: 4 -1 94424
                   8274: 4 0 95264
                   8275: 4 5 95992
                   8276: 4 6 96796
                   8277: 4 7 98656
                   8278: 4 8 99936
                   8279: 4 9 102112
                   8280: 4 11 102220
                   8281: 4 12 102448
                   8282: 5 -18 103816
                   8283: 5 -17 104144
                   8284: 5 -16 104952
                   8285: 5 -15 105704
                   8286: 5 -14 106472
                   8287: 5 -11 106988
                   8288: 5 -4 107300
                   8289: 5 -3 107340
                   8290: 5 -2 108440
                   8291: 5 -1 110524
                   8292: 5 0 112336
                   8293: 5 1 116136
                   8294: 5 4 116192
                   8295: 5 5 116280
                   8296: 5 6 117148
                   8297: 5 7 118412
                   8298: 5 8 119224
                   8299: 5 9 119808
                   8300: 5 10 120788
                   8301: 5 11 121132
                   8302: 5 12 121268
                   8303: 5 13 122476
                   8304: 5 14 127280
                   8305: 5 15 127484
                   8306: 5 16 129660
                   8307: 5 17 131300
                   8308: 6 -18 131844
                   8309: 6 -17 133124
                   8310: 6 -16 134228
                   8311: 6 -8 134456
                   8312: 6 -7 135420
                   8313: 6 -6 135880
                   8314: 6 -5 136460
                   8315: 6 -4 137344
                   8316: 6 -3 138756
                   8317: 6 -2 140292
                   8318: 6 -1 142892
                   8319: 6 0 144212
                   8320: 6 1 144724
                   8321: 6 2 145316
                   8322: 6 3 146636
                   8323: 6 4 147524
                   8324: 6 5 148892
                   8325: 6 6 149884
                   8326: 6 7 151804
                   8327: 6 8 153892
                   8328: 6 9 156468
                   8329: 6 10 158512
                   8330: 6 11 160036
                   8331: 6 12 162656
                   8332: 6 13 164080
                   8333: 6 14 165180
                   8334: 6 15 166240
                   8335: 6 16 166612
                   8336: 6 17 169336
                   8337: 7 -18 170928
                   8338: 7 -17 171072
                   8339: 7 -16 171116
                   8340: 7 -15 171508
                   8341: 7 -14 173468
                   8342: 7 -13 174860
                   8343: 7 -12 175564
                   8344: 7 -11 176844
                   8345: 7 -10 178844
                   8346: 7 -9 180760
                   8347: 7 -8 182292
                   8348: 7 -7 183388
                   8349: 7 -6 184268
                   8350: 7 -5 186512
                   8351: 7 -4 186544
                   8352: 7 -3 186616
                   8353: 7 -2 190928
                   8354: 7 0 194552
                   8355: 7 1 194620
                   8356: 7 2 195448
                   8357: 7 5 197896
                   8358: 7 6 198656
                   8359: 7 7 199736
                   8360: 7 8 202044
                   8361: 7 9 207688
                   8362: 7 10 214092
                   8363: 7 11 218616
                   8364: 7 12 222772
                   8365: 7 13 224100
                   8366: 7 14 224144
                   8367: 7 15 224376
                   8368: 7 16 225000
                   8369: 7 17 225180
                   8370: 8 -10 225368
                   8371: 8 -9 226260
                   8372: 8 -8 226360
                   8373: 8 -7 226416
                   8374: 8 -6 227624
                   8375: 8 -5 231152
                   8376: 8 -4 232856
                   8377: 8 -3 233184
                   8378: 8 -2 234484
                   8379: 8 1 235188
                   8380: 8 2 235852
                   8381: 8 3 236912
                   8382: 8 4 237804
                   8383: 8 5 239208
                   8384: 8 6 239884
                   8385: 8 7 241368
                   8386: 8 8 242528
                   8387: 8 9 245064
                   8388: 0707070035050173021006640000030000040000010336260457156657500000700000020634plot.5.TH PLOT 5
                   8389: .CT 1  graphics
                   8390: .SH NAME
                   8391: plot \- graphics interface
                   8392: .SH DESCRIPTION
                   8393: Files of this format are produced by routines
                   8394: described in
                   8395: .IR  plot (3),
                   8396: and are interpreted for various devices
                   8397: by commands described in
                   8398: .IR  plot (1).
                   8399: A graphics file is an ASCII stream of
                   8400: instruction lines.
                   8401: Arguments are delimited by spaces, tabs, or commas.
                   8402: Numbers may be floating point.
                   8403: Punctuation marks (except 
                   8404: .LR : )
                   8405: ,
                   8406: spaces, and tabs at the beginning of lines are ignored.
                   8407: Comments run from  
                   8408: .L :
                   8409: to newline.
                   8410: Extra letters appended to a valid instruction are ignored.
                   8411: Thus
                   8412: .LR ...line ,
                   8413: .LR line , and 
                   8414: .L li
                   8415: all mean the same thing.
                   8416: Arguments are interpreted as follows:
                   8417: .TP
                   8418: 1.
                   8419: If an instruction requires no arguments, the rest of the line is ignored.
                   8420: .TP
                   8421: 2.
                   8422: If it requires a string argument, then all the line
                   8423: after the first field separator is passed as argument.
                   8424: Quote marks may be used to preserve leading blanks.
                   8425: Strings may include newlines represented as
                   8426: .LR \en .
                   8427: .TP
                   8428: 3.
                   8429: Between numeric arguments alphabetic characters and
                   8430: punctuation marks are ignored.
                   8431: Thus
                   8432: .L
                   8433: line from 5 6 to 7 8
                   8434: draws a line from (5, 6) to (7, 8).
                   8435: .TP
                   8436: 4.
                   8437: Instructions with numeric arguments remain in effect until
                   8438: a new instruction is read.
                   8439: Such commands may spill over many lines. Thus
                   8440: the following sequence will draw a polygon
                   8441: with vertices
                   8442: (4.5, 6.77), (5.8, 5.6), (7.8, 4.55), and (10.0, 3.6).
                   8443: .IP
                   8444: .EX
                   8445: move 4.5 6.77
                   8446: vec 5.8, 5.6 7.8
                   8447: 4.55 10.0, 3.6 4.5, 6.77
                   8448: .EE
                   8449: .PP
                   8450: The instructions are executed in order.
                   8451: The last designated point in a
                   8452: .BR line ", " move ", " rmove ,
                   8453: .BR vec ", " rvec ", " arc ,
                   8454: or
                   8455: .B point
                   8456: command becomes the `current point'
                   8457: .RI ( X,Y )
                   8458: for the next command.
                   8459: Each of the following descriptions
                   8460: corresponds to a routine in
                   8461: .IR  plot (3).
                   8462: .SS "Open & Close"
                   8463: .PD0
                   8464: .TP 10
                   8465: .BI o " string"
                   8466: Open plotting device.
                   8467: For 
                   8468: .I troff,
                   8469: .I string
                   8470: specifies the size of the plot
                   8471: (default is
                   8472: .LR 6i. )
                   8473: .TP 10
                   8474: .B cl
                   8475: Close plotting device.
                   8476: .PD
                   8477: .SS "Basic Plotting Commands"
                   8478: .PD0
                   8479: .TP 10
                   8480: .B e
                   8481: Start another frame of output
                   8482: or erase the screen on CRT terminals without scroll.
                   8483: .TP 10
                   8484: .BI m " x y"
                   8485: (move) Current point becomes
                   8486: .I "x y."
                   8487: .TP 10
                   8488: .BI rm " dx dy"
                   8489: Current point becomes
                   8490: .I "X+dx Y+dy."
                   8491: .TP 10
                   8492: .BI poi " x y"
                   8493: Plot the point
                   8494: .I "x y"
                   8495: and make it the current point.
                   8496: .TP 10
                   8497: .BI v " x y"
                   8498: Draw a vector from the current point to
                   8499: .I "x y."
                   8500: .TP 10
                   8501: .BI rv " dx dy"
                   8502: Draw vector from current point to
                   8503: .RI X + dx
                   8504: .RI Y + dy
                   8505: .TP 10
                   8506: .BI li " x1 y1 x2 y2"
                   8507: Draw a line from
                   8508: .I "x1 y1"
                   8509: to
                   8510: .I "x2 y2."
                   8511: Make the current point
                   8512: .I "x2 y2."
                   8513: .TP 10
                   8514: .BI t " string"
                   8515: Place the
                   8516: .I string
                   8517: so that its
                   8518: first character is centered on the current point (default).
                   8519: If
                   8520: .I string
                   8521: begins with
                   8522: .L \eC
                   8523: .RL ( \eR ),
                   8524: it is centered (right-adjusted) on the current point.
                   8525: A backslash at the beginning of the string may
                   8526: be escaped with another backslash.
                   8527: .TP 10
                   8528: .BI a " x1 y1 x2 y2 xc yc r"
                   8529: Draw a circular arc from
                   8530: .I "x1 y1"
                   8531: to
                   8532: .I "x2 y2"
                   8533: with center
                   8534: .I "xc yc"
                   8535: and radius
                   8536: .I r.
                   8537: If the radius is positive, the arc is drawn counterclockwise;
                   8538: negative, clockwise.
                   8539: The starting point is exact but the ending point is approximate.
                   8540: .TP 10
                   8541: .BI ci " xc yc r"
                   8542: Draw a circle centered at
                   8543: .I "xc yc"
                   8544: with radius
                   8545: .I r.
                   8546: If the range and frame parameters do not specify a square,
                   8547: the `circle' will be elliptical.
                   8548: .TP 10
                   8549: .BI di " xc yc r"
                   8550: Draw a disc centered at
                   8551: .I "xc yc"
                   8552: with radius
                   8553: .I r
                   8554: using the filling color (see 
                   8555: .B cfill
                   8556: below).
                   8557: Only works on the 5620; on other devices
                   8558: is the same as
                   8559: .BR circle .
                   8560: .TP 10
                   8561: .BI bo " x1 y1 x2 y2"
                   8562: Draw a box with lower left corner at
                   8563: .I "x1 y1"
                   8564: and upper right corner at
                   8565: .I "x2 y2."
                   8566: .TP 10
                   8567: .BI sb " x1 y1 x2 y2"
                   8568: Draw a solid box with lower left corner at
                   8569: .I "x1 y1"
                   8570: and upper right corner at
                   8571: .I "x2 y2"
                   8572: using the filling color (see 
                   8573: .B cfill
                   8574: below).
                   8575: .TP 10
                   8576: .BI par " x1 y1 x2 y2 xg yg"
                   8577: Draw a parabola from
                   8578: .I "x1 y1"
                   8579: to
                   8580: .I "x2 y2"
                   8581: `guided' by
                   8582: .I "xg yg."
                   8583: The parabola passes through the midpoint of the line joining
                   8584: .I "xg yg"
                   8585: with the midpoint of the line
                   8586: joining
                   8587: .I "x1 y1"
                   8588: and
                   8589: .I "x2 y2"
                   8590: and is tangent to the lines from
                   8591: .I "xg yg"
                   8592: to the endpoints.
                   8593: .TP 10
                   8594: .BI "pol { {" "x1 y1 ... xn yn" } " ... " { "X1 Y1 ... Xm Ym\fP} }\fI"
                   8595: Draw polygons with vertices
                   8596: .I "x1 y1 ... xn yn"
                   8597: and
                   8598: .I "X1 Y1 ... Xm Ym."
                   8599: If only one polygon is specified, the inner brackets are
                   8600: not needed.
                   8601: .TP 10
                   8602: .BI "fi { {" "x1 y1 ... xn yn" } " ... " { "X1 Y1 ... Xm Ym\fP} }\fI"
                   8603: Fill a polygon.
                   8604: The arguments are the same as those for
                   8605: .B pol
                   8606: except that the first vertex is automatically repeated to
                   8607: close each polygon.
                   8608: The polygons do not have to be connected.
                   8609: Enclosed polygons appear as holes.
                   8610: .TP 10
                   8611: .BI "sp { {" "x1 y1 ... xn yn" } " ... " { "X1 Y1 ... Xm Ym\f5} }\fI"
                   8612: Draw a parabolic spline guided by
                   8613: .I "x1 y1 ... xn yn"
                   8614: with simple endpoints.
                   8615: .TP 10
                   8616: .BI "fsp { {" "x1 y1 ... xn yn" } " ... " { "X1 Y1 ... Xm Ym\f5} }\fI"
                   8617: Draw a parabolic spline guided by
                   8618: .I "x1 y1 ... xn yn"
                   8619: with double first endpoint.
                   8620: .TP 10
                   8621: .BI "lsp { {" "x1 y1 ... xn yn" } " ... " { "X1 Y1 ... Xm Ym\f5} }\fI"
                   8622: Draw a parabolic spline guided by
                   8623: .I "x1 y1 ... xn yn"
                   8624: with double last endpoint.
                   8625: .TP 10
                   8626: .BI "dsp { {" "x1 y1 ... xn yn" } " ... " { "X1 Y1 ... Xm Ym\f5} }\fI"
                   8627: Draw a parabolic spline guided by
                   8628: .I "x1 y1 ... xn yn"
                   8629: with double endpoints.
                   8630: .TP 10
                   8631: .BI "csp { {" "x1 y1 ... xn yn" } " ... " { "X1 Y1 ... Xm Ym\f5} }\fI"
                   8632: .TP 10
                   8633: .BI in " filename"
                   8634: (include) Take commands from
                   8635: .I filename.
                   8636: .TP 10
                   8637: .BI de " string " { " commands " }
                   8638: Define
                   8639: .I string
                   8640: as
                   8641: .I commands.
                   8642: .TP 10
                   8643: .BI ca " string scale"
                   8644: Invoke commands defined as
                   8645: .I string
                   8646: applying
                   8647: .I scale
                   8648: to all coordinates.
                   8649: .PD
                   8650: .SS "Commands Controlling the Environment"
                   8651: .PD0
                   8652: .TP 10
                   8653: .BI co " string"
                   8654: Draw lines with color
                   8655: .I string.
                   8656: Available colors depend on the device.
                   8657: .I String
                   8658: may contain definitions for several devices separated by 
                   8659: .LR / .
                   8660: Colors possible for the various devices are:
                   8661: .RS
                   8662: .IP pen
                   8663: .BR black ,
                   8664: .BR red ,
                   8665: .BR green ,
                   8666: .BR blue ,
                   8667: .BR Tblack ,
                   8668: .BR Tred ,
                   8669: .BR Tgreen ,
                   8670: .B Tblue
                   8671: (assumes default carousel, 
                   8672: .BR T =thick)
                   8673: .br
                   8674: .BR 1 -  8
                   8675: (pen number)
                   8676: .br
                   8677: .BI S number
                   8678: character size as % of plotting area
                   8679: .IP troff
                   8680: .BI F font
                   8681: .br
                   8682: .BI P "point size"
                   8683: .IP 2621
                   8684: .BI H character
                   8685: for plotting
                   8686: .RE
                   8687: .PD
                   8688: .TP 10
                   8689: .BI pe " string"
                   8690: Use
                   8691: .I string
                   8692: as the style for drawing lines.
                   8693: Not all pen styles are implemented for all devices.
                   8694: .I String
                   8695: may contain definitions for several devices separated by
                   8696: .LR / .
                   8697: The available pen styles are:
                   8698: .RS
                   8699: .IP pen
                   8700: .BR solid ,
                   8701: .BR  dott [ed],
                   8702: .BR short ,
                   8703: .BR long ,
                   8704: .BR dotd [ashed] ,
                   8705: .BR cdash ,
                   8706: .BR ddash
                   8707: .PD0
                   8708: .IP 4014
                   8709: solid ,
                   8710: .BR dott [ed] ,
                   8711: .BR short ,
                   8712: .BR long ,
                   8713: .BR dotd [ashed] ,
                   8714: .BR ddash
                   8715: .IP troff
                   8716: .BR solid ,
                   8717: .BR dash
                   8718: only straight lines will be dashed
                   8719: .IP 5620
                   8720: .BI B number
                   8721: line thickness
                   8722: .IP 2621
                   8723: .BI H character
                   8724: for plotting
                   8725: .fi
                   8726: .PD
                   8727: .RE
                   8728: .TP 10
                   8729: .BI cf " string"
                   8730: Color for filling;
                   8731: may contain the definitions for several devices.
                   8732: separated by 
                   8733: .LR / .
                   8734: The following colors are available on the specified devices:
                   8735: .RS
                   8736: .IP pen
                   8737: .BR black ,
                   8738: .BR red ,
                   8739: .BR green ,
                   8740: .BR blue ,
                   8741: .BR Tblack ,
                   8742: .BR Tred ,
                   8743: .BR Tgreen ,
                   8744: .BR Tblue
                   8745: .br
                   8746: .BR 1 - 8
                   8747: pen number
                   8748: .PD0
                   8749: .IP 5620
                   8750: .BI B texture
                   8751: string with octal numbers for texture; see
                   8752: .IR types (9.5).
                   8753: The 16 words of texture should be followed by one word for the mode used by
                   8754: .IR texture() ;
                   8755: see
                   8756: .IR bitblt (9.3).
                   8757: .IP 2621
                   8758: .BI H character
                   8759: for filling
                   8760: .IP All devices
                   8761: .BI /A degrees
                   8762: slant of shading lines
                   8763: .br
                   8764: .BI /G number
                   8765: gap between shading lines (in user units)
                   8766: .RE
                   8767: .PD
                   8768: .TP 10
                   8769: .BI ra " x1 y1 x2 y2"
                   8770: The data will fall between
                   8771: .I "x1 y1"
                   8772: and
                   8773: .I "x2 y2."
                   8774: The plot will be magnified or reduced to fit
                   8775: the device as closely as possible.
                   8776: .IP
                   8777: Range settings that exactly fill the plotting area
                   8778: with unity scaling appear below for
                   8779: devices supported by the filters of
                   8780: .IR  plot (1).
                   8781: The upper limit is just outside the plotting area.
                   8782: In every case the plotting area is taken to be square;
                   8783: points outside may be displayable on
                   8784: devices with nonsquare faces.
                   8785: .RS
                   8786: .TP 10n
                   8787: 4014
                   8788: .L range 0. 0. 3120. 3120.
                   8789: .br
                   8790: .ns
                   8791: .TP 10n
                   8792: troff
                   8793: .L range 0. 0. 6144. 6144.
                   8794: .br
                   8795: .ns
                   8796: .TP 10n
                   8797: 2621
                   8798: .L range 0. 0. 22. 22.
                   8799: .br
                   8800: .ns
                   8801: .TP 10n
                   8802: 5620
                   8803: range dependent on layer size
                   8804: .br
                   8805: .ns
                   8806: .TP 10n
                   8807: pen
                   8808: range dependent on paper size
                   8809: .RE
                   8810: .TP 10
                   8811: .BI fr " px1 py1 px2 py2"
                   8812: Plot the data in the fraction of the display
                   8813: specified by
                   8814: .I "px1 py1"
                   8815: for lower left corner
                   8816: and
                   8817: .I "px2 py2"
                   8818: for upper right corner.
                   8819: Thus  
                   8820: .L frame .5 0 1. .5
                   8821: plots in the lower right
                   8822: quadrant of the display;
                   8823: .L frame 0. 1. 1. 0.
                   8824: uses the whole display but
                   8825: inverts the
                   8826: .I y
                   8827: coordinates.
                   8828: .TP 10
                   8829: .B sa
                   8830: Save the current environment, and move to a new one.
                   8831: The new environment inherits the old one.
                   8832: There are 7 levels.
                   8833: .TP 10
                   8834: .B re
                   8835: Restore previous environment.
                   8836: .PD
                   8837: .SH "SEE ALSO"
                   8838: .IR plot (1), 
                   8839: .IR plot (3), 
                   8840: .IR graph (1)
                   8841: 0707070035051032751006640000030000040000021550310533551430300000700000001733plot.h/* Plotting functions for Sys V and BSD systems */
                   8842: 
                   8843: /* open the plotting output */
                   8844: extern void openpl(void);
                   8845: 
                   8846: /* close the plotting output */
                   8847: extern void closepl(void);
                   8848: 
                   8849: /* make sure the page or screen is clear */
                   8850: extern void erase(void);
                   8851: 
                   8852: /* plot a point at _x,_y, which becomes current */
                   8853: extern void point(int, int);   /* point(_x,_y) */
                   8854: 
                   8855: /* coordinates to be assigned to lower left and upper right
                   8856:    corners of (square) plotting area */
                   8857: extern void space(int, int, int, int);
                   8858: #define range(_x,_y,_X,_Y)  space(_x,_y,_X,_Y)
                   8859: 
                   8860: /* place text, first letter at current point, which does not change */
                   8861: extern void label(char*);
                   8862: #define text(_s) label(_s);
                   8863: 
                   8864: /* draw line from current point to _x,_y, which becomes current */
                   8865: extern void cont(int, int);
                   8866: #define vec(_x,_y)  cont(_x,_y)
                   8867: 
                   8868: /* _x,_y becomes current point */
                   8869: extern void move(int, int);    /* move(_x,_y) */
                   8870: 
                   8871: /* specify style for drawing lines: "dotted", "solid", "dotdash" */
                   8872: extern void linemod(char*);
                   8873: #define pen(_s)  linemod(_s)
                   8874: 0707070035050431611006640000100000040000021211120533557327600001100000004405plotPS.c/* Map-plotting functions for PostScript */
                   8875: #include "plot.h"
                   8876: 
                   8877: static double _a,_b,_c,_d, _ox, _oy; 
                   8878: static int anystroke = 0;
                   8879: static char *fontname = "/Times-Roman";
                   8880: static int fontsize = 10;
                   8881: 
                   8882: #define xs(_x) (_ox = _a*(_x)+_b)
                   8883: #define ys(_y) (_oy = _c*(_y)+_d)
                   8884: 
                   8885: void
                   8886: space(int xmin, int ymin, int xmax, int ymax)
                   8887: {
                   8888:        _a = 6.5*72/(xmax-xmin);
                   8889:        _b = -_a*xmin + 1.0*72;
                   8890:        _c = 6.5*72/(ymax-ymin);
                   8891:        _d = -_c*ymin + 3.5*72;
                   8892: }
                   8893: 
                   8894: 
                   8895: /* open the plotting output */
                   8896: void
                   8897: erase(void)
                   8898: {
                   8899:        printf("%%!PS\n"
                   8900:                "%%Creator: map\n"
                   8901:                "%%BoundingBox: 72 252 540 720\n"
                   8902:                "%%EndComments\n"
                   8903:                "/m /moveto load def\n"
                   8904:                "/s /stroke load def\n"
                   8905:                "/t {moveto show} bind def\n"
                   8906:                "/v /lineto load def\n"
                   8907:                "%%EndProlog\n"
                   8908:                "gsave\n"
                   8909:                "/Helvetica findfont 10 scalefont setfont\n"
                   8910:                "1 setlinecap\n"
                   8911:                "1 setlinejoin\n"
                   8912:                ".5 setlinewidth\n");
                   8913:        printf("%s findfont\n"
                   8914:                "/scale %d def\n"
                   8915:                "scale scalefont\n"
                   8916:                "setfont\n", fontname, fontsize);
                   8917:        printf("newpath\n"
                   8918:                "72 72 m\n");
                   8919:        anystroke = 1;
                   8920: }
                   8921: 
                   8922: /* close the plotting output */
                   8923: void
                   8924: closepl(void)
                   8925: {
                   8926:        printf("showpage\ngrestore\n");
                   8927: }
                   8928: 
                   8929: /* make sure the page or screen is clear */
                   8930: void
                   8931: openpl(void)
                   8932: {
                   8933:        anystroke = 0;
                   8934: }
                   8935: 
                   8936: /* plot a point at _x,_y, which becomes current */
                   8937: void
                   8938: point(int _x, int _y)
                   8939: {
                   8940:        move(_x, _y);
                   8941:        cont(_x, _y);
                   8942: }
                   8943: 
                   8944: /* place text, first letter at current point, which does not change */
                   8945: void
                   8946: label(char *_s)
                   8947: {
                   8948:        if(anystroke)
                   8949:                printf("s\n");
                   8950:        printf("(%s) %.1f %.1f scale .3 mul sub t\n",_s,_ox,_oy);
                   8951:        anystroke = 0;
                   8952: }
                   8953: 
                   8954: /* draw line from current point to _x,_y, which becomes current */
                   8955: void
                   8956: cont(int _x, int _y)
                   8957: {
                   8958:        printf("%.1f %.1f v\n", xs(_x),ys(_y));
                   8959:        anystroke = 1;
                   8960: }
                   8961: 
                   8962: /* _x,_y becomes current point */
                   8963: void
                   8964: move(int _x, int _y)
                   8965: {
                   8966:        if(anystroke)
                   8967:                printf("s\n");
                   8968:        printf("%.1f %.1f m\n", xs(_x), ys(_y));
                   8969:        anystroke = 1;
                   8970: }
                   8971: 
                   8972: struct dashpat {
                   8973:        char *name;
                   8974:        char *pat;
                   8975:        double width;
                   8976: } pattern[] = {
                   8977:        "solid", "[] 0", 0.5,
                   8978:        "dotted", "[3 6] 0", 0,
                   8979:        "dotdash", "[18 6 3 6] 0", .5,
                   8980: };
                   8981: 
                   8982: /* specify style for drawing lines: "dotted", "solid", "dotdash" */
                   8983: void
                   8984: linemod(char *s)
                   8985: {
                   8986:        int i;
                   8987:        for(i=0; i<sizeof(pattern)/sizeof(*pattern); i++)
                   8988:                if(strcmp(s,pattern[i].name) == 0)
                   8989:                        break;
                   8990:        if(i >= sizeof(pattern)/sizeof(*pattern))
                   8991:                i = 0;
                   8992:        if(anystroke)
                   8993:                printf("s\n");
                   8994:        printf("%f setlinewidth\n%s setdash\n",
                   8995:                pattern[i].width, pattern[i].pat);
                   8996:        anystroke = 0;
                   8997: }
                   8998: 
                   8999: 0707070035050171211006640000030000040000010334600533473043100000700000017275proj.3.TH PROJ 3X bowell
                   9000: .CT 2 graphics math
                   9001: .br
                   9002: .SH NAME
                   9003: orient, normalize \- map projections
                   9004: .SH SYNOPSIS
                   9005: .B orient(lat, lon, rot)
                   9006: .br
                   9007: .B double lat, lon, rot;
                   9008: .PP
                   9009: .B normalize(p)
                   9010: .br
                   9011: .B struct place *p;
                   9012: .SH DESCRIPTION
                   9013: Users of
                   9014: .IR map (7)
                   9015: may skip to the description of `Projection generators'
                   9016: below.
                   9017: .PP
                   9018: The functions
                   9019: .I orient
                   9020: and
                   9021: .I normalize
                   9022: plus a collection of map projection generators
                   9023: are loaded by
                   9024: option
                   9025: .BR -lmap 
                   9026: of
                   9027: .IR ld (1).
                   9028: Most of them
                   9029: calculate maps for a spherical earth.
                   9030: Each map projection is available in one standard
                   9031: form, into which data must be normalized
                   9032: for transverse
                   9033: or nonpolar projections.
                   9034: .PP
                   9035: Each standard projection is displayed with the Prime
                   9036: Meridian (longitude 0) being a straight vertical line, along which North
                   9037: is up.
                   9038: The orientation of nonstandard projections is specified by
                   9039: .I orient.
                   9040: Imagine a transparent gridded sphere around the globe.
                   9041: First turn the overlay about the North Pole
                   9042: so that the Prime Meridian (longitude 0)
                   9043: of the overlay coincides with meridian
                   9044: .I lon
                   9045: on the globe.
                   9046: Then tilt the North Pole of the
                   9047: overlay along its Prime Meridian to latitude
                   9048: .I lat
                   9049: on the globe.
                   9050: Finally again turn the
                   9051: overlay about its `North Pole' so
                   9052: that its Prime Meridian coincides with the previous position
                   9053: of (the overlay's) meridian
                   9054: .I rot.
                   9055: Project the desired map in
                   9056: the standard form appropriate to the overlay, but presenting
                   9057: information from the underlying globe.
                   9058: It is not useful to use
                   9059: .I orient
                   9060: without using
                   9061: .IR normalize .
                   9062: .PP
                   9063: .I Normalize
                   9064: converts latitude-longitude coordinates on the globe
                   9065: to coordinates on the overlaid grid.
                   9066: The coordinates and their sines and cosines
                   9067: are input to
                   9068: .I normalize
                   9069: in a
                   9070: .B place
                   9071: structure.
                   9072: Transformed coordinates and their sines and cosines
                   9073: are returned in the same structure.
                   9074: .PP
                   9075: .EX
                   9076: .nr xx \w'12345678'
                   9077: .ta \n(xxu +\n(xxu +\n(xxu +\n(xxu +\n(xxu +\n(xxu
                   9078:        struct place {
                   9079:                double radianlat, sinlat, coslat;
                   9080:                double radianlon, sinlon, coslon;
                   9081:        };
                   9082: .EE
                   9083: .PP
                   9084: The projection generators
                   9085: return a pointer to a function that converts normalized coordinates
                   9086: to 
                   9087: .I x-y
                   9088: coordinates for the desired map, or
                   9089: 0 if the required projection
                   9090: is not available.
                   9091: The returned function is exemplified by
                   9092: .I proj 
                   9093: in this example:
                   9094: .PP
                   9095: .EX
                   9096: .ta \n(xxu +\n(xxu +\n(xxu +\n(xxu +\n(xxu +\n(xxu
                   9097:        struct place pt;
                   9098:        int (*proj)() = mercator();
                   9099:        double x, y;
                   9100: .EE
                   9101: .PP
                   9102: .EX
                   9103:        orient(45.0, 30.0, 180.0);      /* set coordinate rotation */
                   9104: .EE
                   9105: .PP
                   9106: .EX
                   9107:        . . .                           /* fill in the pt structure */
                   9108:        normalize(&pt);                 /* rotate coordinates */
                   9109:        if((*proj)(&pt, &x, &y) > 0)    /* project onto x,y plane */
                   9110:                plot(x, y);
                   9111: .EE
                   9112: .PP
                   9113: The projection function
                   9114: .B (*proj)()
                   9115: returns 1 for a good point,
                   9116: 0 for a point on a wrong
                   9117: sheet (e.g. the back of the world in a perspective
                   9118: projection), and \-1 for a point that is deemed
                   9119: unplottable (e.g. points near the poles on a Mercator projection).
                   9120: .PP
                   9121: Scaling may be determined from the
                   9122: .I x-y
                   9123: coordinates of
                   9124: selected points.
                   9125: Latitudes and longitudes are measured in degrees for
                   9126: ease of specification for
                   9127: .I orient 
                   9128: and the projection generators
                   9129: but in radians for ease of calculation 
                   9130: for
                   9131: .I normalize
                   9132: and
                   9133: .I proj.
                   9134: In either case
                   9135: latitude is measured positive north of the equator,
                   9136: and longitude positive west of Greenwich.
                   9137: Radian longitude should be limited to the range
                   9138: .if t .I \-\(*p\(<=lon<\(*p.
                   9139: .if n .I -pi <= lon < pi.
                   9140: .SS Projection generators
                   9141: Equatorial projections centered on the Prime Meridian
                   9142: (longitude 0).
                   9143: Parallels are straight horizontal lines.
                   9144: .br
                   9145: .ns
                   9146: .IP
                   9147: .B mercator()
                   9148: equally spaced straight meridians, conformal,
                   9149: straight compass courses
                   9150: .br
                   9151: .B sinusoidal()
                   9152: equally spaced parallels,
                   9153: equal-area, same as
                   9154: .I bonne(0)
                   9155: .br
                   9156: .B cylequalarea(lat0)
                   9157: equally spaced straight meridians, equal-area,
                   9158: true scale on
                   9159: .I lat0
                   9160: .br
                   9161: .B cylindrical()
                   9162: central projection on tangent cylinder
                   9163: .br
                   9164: .B rectangular(lat0)
                   9165: equally spaced parallels, equally spaced straight meridians, true scale on
                   9166: .I lat0
                   9167: .br
                   9168: .B gall(lat0)
                   9169: parallels spaced stereographically on prime meridian, equally spaced straight
                   9170: meridians, true scale on
                   9171: .I lat0
                   9172: .br
                   9173: .B mollweide()
                   9174: (homalographic) equal-area, hemisphere is a circle
                   9175: .PP
                   9176: Azimuthal projections centered on the North Pole.
                   9177: Parallels are concentric circles.
                   9178: Meridians are equally spaced radial lines.
                   9179: .br
                   9180: .ns
                   9181: .IP
                   9182: .B azequidistant()
                   9183: equally spaced parallels,
                   9184: true distances from pole
                   9185: .br
                   9186: .B azequalarea()
                   9187: equal-area
                   9188: .br
                   9189: .B gnomonic()
                   9190: central projection on tangent plane,
                   9191: straight great circles
                   9192: .br
                   9193: .B perspective(dist)
                   9194: viewed along earth's axis
                   9195: .I dist
                   9196: earth radii from center of earth
                   9197: .br
                   9198: .B orthographic()
                   9199: viewed from infinity
                   9200: .br
                   9201: .B stereographic()
                   9202: conformal, projected from opposite pole
                   9203: .br
                   9204: .B laue()
                   9205: .IR radius " = tan(2\(mu" colatitude ),
                   9206: used in xray crystallography
                   9207: .br
                   9208: .B fisheye(n)
                   9209: stereographic seen from just inside medium with refractive index n
                   9210: .br
                   9211: .B newyorker(r)
                   9212: .IR radius " = log(" colatitude / r ):
                   9213: extreme `fisheye' view from pedestal of radius
                   9214: .I r
                   9215: degrees
                   9216: .PP
                   9217: Polar conic projections symmetric about the Prime Meridian.
                   9218: Parallels are segments of concentric circles.
                   9219: Except in the Bonne projection,
                   9220: meridians are equally spaced radial
                   9221: lines orthogonal to the parallels.
                   9222: .br
                   9223: .ns
                   9224: .IP
                   9225: .B conic(lat0)
                   9226: central projection on cone tangent at
                   9227: .I lat0
                   9228: .br
                   9229: .B simpleconic(lat0,lat1)
                   9230: equally spaced parallels, true scale on
                   9231: .I lat0
                   9232: and
                   9233: .I lat1
                   9234: .br
                   9235: .B lambert(lat0,lat1)
                   9236: conformal, true scale on 
                   9237: .I lat0
                   9238: and 
                   9239: .I lat1
                   9240: .br
                   9241: .B albers(lat0,lat1)
                   9242: equal-area, true scale on
                   9243: .I lat0
                   9244: and 
                   9245: .I lat1
                   9246: .br
                   9247: .B bonne(lat0)
                   9248: equally spaced parallels, equal-area,
                   9249: parallel
                   9250: .I lat0
                   9251: developed from tangent cone
                   9252: .PP
                   9253: Projections with bilateral symmetry about
                   9254: the Prime Meridian
                   9255: and the equator.
                   9256: .br
                   9257: .ns
                   9258: .IP
                   9259: .B polyconic()
                   9260: parallels developed from tangent cones,
                   9261: equally spaced along Prime Meridian
                   9262: .br
                   9263: .B aitoff()
                   9264: equal-area projection of globe onto 2-to-1
                   9265: ellipse, based on 
                   9266: .I azequalarea
                   9267: .br
                   9268: .B lagrange()
                   9269: conformal, maps whole sphere into a circle
                   9270: .br
                   9271: .B bicentric(lon0)
                   9272: points plotted at true azimuth from two
                   9273: centers on the equator at longitudes
                   9274: .I \(+-lon0,
                   9275: great circles are straight lines
                   9276: (a stretched gnomonic projection)
                   9277: .br
                   9278: .B elliptic(lon0)
                   9279: points are plotted at true distance from
                   9280: two centers on the equator at longitudes
                   9281: .I \(+-lon0
                   9282: .br
                   9283: .B globular()
                   9284: hemisphere is circle,
                   9285: circular arc meridians equally spaced on equator,
                   9286: circular arc parallels equally spaced on 0- and 90-degree meridians
                   9287: .br
                   9288: .B vandergrinten()
                   9289: sphere is circle,
                   9290: meridians as in
                   9291: .I globular,
                   9292: circular arc parallels resemble 
                   9293: .I mercator
                   9294: .PP
                   9295: Doubly periodic conformal projections.
                   9296: .br
                   9297: .ns
                   9298: .IP
                   9299: .B guyou()
                   9300: W and E hemispheres are square
                   9301: .br
                   9302: .B square()
                   9303: world is square with Poles
                   9304: at diagonally opposite corners
                   9305: .br
                   9306: .B tetra()
                   9307: map on tetrahedron with edge
                   9308: tangent to Prime Meridian at S Pole,
                   9309: unfolded into equilateral triangle
                   9310: .br
                   9311: .B hex()
                   9312: world is hexagon centered
                   9313: on N Pole, N and S hemispheres are equilateral
                   9314: triangles
                   9315: .PP
                   9316: Miscellaneous projections.
                   9317: .br
                   9318: .ns
                   9319: .IP
                   9320: .B harrison(dist,angle)
                   9321: oblique perspective from above the North Pole,
                   9322: .I dist
                   9323: earth radii from center of earth, looking
                   9324: along the Date Line
                   9325: .I angle
                   9326: degrees off vertical
                   9327: .br
                   9328: .B trapezoidal(lat0,lat1)
                   9329: equally spaced parallels,
                   9330: straight meridians equally spaced along parallels,
                   9331: true scale at
                   9332: .I lat0
                   9333: and
                   9334: .I lat1
                   9335: on Prime Meridian
                   9336: .PP
                   9337: Retroazimuthal projections.
                   9338: At every point the angle between vertical and a straight line to
                   9339: `Mecca', latitude
                   9340: .I lat0
                   9341: on the prime meridian,
                   9342: is the true bearing of Mecca.
                   9343: .br
                   9344: .ns
                   9345: .IP
                   9346: .B mecca(lat0)
                   9347: equally spaced vertical meridians
                   9348: .br
                   9349: .B homing(lat0)
                   9350: distances to `Mecca' are true
                   9351: .PP
                   9352: Maps based on the spheroid.
                   9353: Of geodetic quality, these projections do not make sense
                   9354: for tilted orientations.
                   9355: For descriptions, see corresponding maps above.
                   9356: .br
                   9357: .ns
                   9358: .IP
                   9359: .B sp_mercator()
                   9360: .br
                   9361: .B sp_albers(lat0,lat1)
                   9362: .SH "SEE ALSO
                   9363: .IR map (7), 
                   9364: .IR map (5), 
                   9365: .IR plot (3)
                   9366: .SH BUGS
                   9367: Only one projection and one orientation can be active at a time.
                   9368: .br
                   9369: The west-longitude-positive convention
                   9370: betrays Yankee chauvinism.
                   9371: 0707070035051032301006640000030000040000010037270465016156700001000000003573route.1.TH ROUTE 1
                   9372: .SH NAME
                   9373: route \- map orientations and great circle paths
                   9374: .SH SYNOPSIS
                   9375: .B route
                   9376: [ 
                   9377: .B -t
                   9378: ]
                   9379: .SH DESCRIPTION
                   9380: .I Route
                   9381: without an option
                   9382: reads from the standard input a sequence of points, expressed 
                   9383: as latitude-longitude pairs.
                   9384: For each pair of points, say A and B,
                   9385: .I route
                   9386: prints on the standard output
                   9387: .IP \-
                   9388: A
                   9389: .IR map (7)
                   9390: orientation, expressed as a
                   9391: .B -o
                   9392: option, that transforms the great circle from A to B into the equator.
                   9393: The transformed locations of A and B are located on the equator
                   9394: at equal distances west and east of the Prime Meridian.
                   9395: .IP \-
                   9396: The transformed coordinates of the two points.
                   9397: .IP \-
                   9398: The same information for a map orientation in which point A
                   9399: appears to the east and B to the west of the Prime Meridian.
                   9400: .PP
                   9401: Under option
                   9402: .B -t
                   9403: .I route
                   9404: produces coordinates along the great circle from A to B
                   9405: in the form of a track for use with 
                   9406: .I map
                   9407: option
                   9408: .BR -t .
                   9409: .PP
                   9410: Coordinates are expressed in degrees, with latitude
                   9411: positive north of the equator and longitude positive
                   9412: west of Greenwich.
                   9413: .SH EXAMPLES
                   9414: .HP
                   9415: .B "echo 40.75 74 52 0 | route -t | map mercator -l 30 70 -10 80 -t - | plot
                   9416: .br
                   9417: Produce a map of the North Atlantic with a great circle plotted
                   9418: from New York to London.
                   9419: .TP
                   9420: .B route
                   9421: .br
                   9422: .ns
                   9423: .TP
                   9424: .B 40.75 74 52 0
                   9425: Produces the output
                   9426: .RS
                   9427: .IP
                   9428: .nf
                   9429: .ft L
                   9430: -o 35.8283 -157.5308 -168.6148
                   9431: A -0.0000 24.9943
                   9432: B -0.0000 -24.9943
                   9433: -o -35.8283 22.4692 168.6149
                   9434: A -0.0000 -24.9943
                   9435: B 0.0000 24.9943
                   9436: .ft
                   9437: .fi
                   9438: .RE
                   9439: .IP
                   9440: From this we derive the following command to draw a strip map 
                   9441: 20 degrees wide along the great circle from New York to London.
                   9442: The
                   9443: .B -w
                   9444: option windows the map in the new coordinate system, where
                   9445: the equator runs along the great circle and the two cities
                   9446: sit at 25W and 25E on that `equator'.
                   9447: The
                   9448: .B -l
                   9449: option avoids surveying the whole rest of the world for
                   9450: plottable points.
                   9451: .IP
                   9452: .B
                   9453: map mercator -o 35.83 -157.53 -168.61 -w -10 10 -30 30 -l 30 75 -10 80
                   9454: .SH SEE ALSO
                   9455: .IR map (7)
                   9456: 0707070035051032271006640000030000040000011405470533474071100001000000004141route.c#include "map.h"
                   9457: 
                   9458: /* Given two lat-lon pairs, find an orientation for the
                   9459:    -o option of "map" that will place those two points
                   9460:    on the equator of a standard projection, equally spaced
                   9461:    about the prime meridian.   Both an erect and an inverted
                   9462:    orientation are found.
                   9463: 
                   9464:    Option -t prints out a series of
                   9465:    coordinates that follows the (great circle) track
                   9466:    in the original coordinate system,
                   9467:    followed by ".
                   9468:    This data is just right for map -t.
                   9469: */
                   9470: struct place pole;
                   9471: struct coord twist;
                   9472: int track;
                   9473: 
                   9474: extern void doroute(double, double, double, double, double);
                   9475: 
                   9476: void
                   9477: dorot(double a, double b, double *x, double *y, void (*f)(struct place *))
                   9478: {
                   9479:        struct place g;
                   9480:        deg2rad(a,&g.nlat);
                   9481:        deg2rad(b,&g.wlon);
                   9482:        (*f)(&g);
                   9483:        *x = g.nlat.l/RAD;
                   9484:        *y = g.wlon.l/RAD;
                   9485: }
                   9486: 
                   9487: void
                   9488: rotate(double a, double b, double *x, double *y)
                   9489: {
                   9490:        dorot(a,b,x,y,normalize);
                   9491: }
                   9492: 
                   9493: void
                   9494: rinvert(double a, double b, double *x, double *y)
                   9495: {
                   9496:        dorot(a,b,x,y,invert);
                   9497: }
                   9498: 
                   9499: main(int argc, char **argv)
                   9500: {
                   9501: #pragma ref argv
                   9502:        double an,aw,bn,bw;
                   9503:        track = argc>1;
                   9504:        for(;;){
                   9505:                if(scanf("%f%f%f%f",&an,&aw,&bn,&bw)!=4)
                   9506:                        break;
                   9507:                doroute(-90.,an,aw,bn,bw);
                   9508:                if(!track)
                   9509:                        doroute(90.,an,aw,bn,bw);
                   9510:        }
                   9511:        return 0;
                   9512: }
                   9513: 
                   9514: void
                   9515: doroute(double dir, double an, double aw, double bn, double bw)
                   9516: {
                   9517:        double an1,aw1,bn1,bw1,pn,pw;
                   9518:        double theta;
                   9519:        double cn,cw,cn1,cw1;
                   9520:        int i,n;
                   9521:        orient(an,aw,0.);
                   9522:        rotate(bn,bw,&bn1,&bw1);
                   9523: /*     printf("b %f %f\n",bn1,bw1);*/
                   9524:        orient(an,aw,bw1);
                   9525:        rinvert(0.,dir,&pn,&pw);
                   9526: /*     printf("p %f %f\n",pn,pw);*/
                   9527:        orient(pn,pw,0.);
                   9528:        rotate(an,aw,&an1,&aw1);
                   9529:        rotate(bn,bw,&bn1,&bw1);
                   9530:        theta = (aw1+bw1)/2;
                   9531: /*     printf("a %f %f \n",an1,aw1);*/
                   9532:        orient(pn,pw,theta);
                   9533:        rotate(an,aw,&an1,&aw1);
                   9534:        rotate(bn,bw,&bn1,&bw1);
                   9535:        if(fabs(aw1-bw1)>180)
                   9536:                if(theta<0.) theta+=180;
                   9537:                else theta -= 180;
                   9538:        orient(pn,pw,theta);
                   9539:        rotate(an,aw,&an1,&aw1);
                   9540:        rotate(bn,bw,&bn1,&bw1);
                   9541:        if(!track) {
                   9542:                printf("-o %.4f %.4f %.4f\n",pn,pw,theta);
                   9543:                printf("A %.4f %.4f\n",an1,aw1);
                   9544:                printf("B %.4f %.4f\n",bn1,bw1);
                   9545:        } else {
                   9546:                cn1 = 0;
                   9547:                n = 1 + fabs(bw1-aw1)/.2;
                   9548:                for(i=0;i<=n;i++) {
                   9549:                        cw1 = aw1 + i*(bw1-aw1)/n;
                   9550:                        rinvert(cn1,cw1,&cn,&cw);
                   9551:                        printf("%f %f\n",cn,cw);
                   9552:                }
                   9553:                printf("\"\n");
                   9554:        }
                   9555: }
                   9556: 0707070035051032661006640000030000040000020636230533472754200001100000006203symbol.c#include "map.h"
                   9557: 
                   9558: #define NSYMBOL 20
                   9559: 
                   9560: enum flag { POINT,ENDSEG,ENDSYM };
                   9561: struct symb {
                   9562:        double x, y;
                   9563:        char name[10+1];
                   9564:        enum flag flag;
                   9565: } *symbol[NSYMBOL];
                   9566: 
                   9567: static int nsymbol;
                   9568: static double halfrange = 1;
                   9569: extern int halfwidth;
                   9570: 
                   9571: static int     getrange(FILE *);
                   9572: static int     getsymbol(FILE *, int);
                   9573: static void    setrot(struct place *, double, int);
                   9574: static void    dorot(struct symb *, double *, double *);
                   9575: 
                   9576: 
                   9577: void
                   9578: getsyms(char *file)
                   9579: {
                   9580:        FILE *sf = fopen(file,"r");
                   9581:        if(sf==0)
                   9582:                filerror("cannot open", file);
                   9583:        while(nsymbol<NSYMBOL-1 && getsymbol(sf,nsymbol))
                   9584:                nsymbol++;
                   9585:        fclose(sf);
                   9586: }
                   9587: 
                   9588: static int
                   9589: getsymbol(FILE *sf, int n)
                   9590: {
                   9591:        double x,y;
                   9592:        char s[2];
                   9593:        int i;
                   9594:        struct symb *sp;
                   9595:        for(;;) {
                   9596:                if(fscanf(sf,"%1s",s)==EOF)
                   9597:                        return 0;
                   9598:                switch(s[0]) {
                   9599:                case ':':
                   9600:                        break;
                   9601:                case 'o':
                   9602:                case 'c':       /* cl */
                   9603:                        fscanf(sf,"%*[^\n]");
                   9604:                        continue;
                   9605:                case 'r':
                   9606:                        if(getrange(sf))
                   9607:                                continue;
                   9608:                default:
                   9609:                        error("-y file syntax error");
                   9610:                }
                   9611:                break;
                   9612:        }
                   9613:        sp = (struct symb*)malloc(sizeof(struct symb));
                   9614:        symbol[n] = sp;
                   9615:        if(fscanf(sf,"%10s",sp->name)!=1)
                   9616:                return 0;
                   9617:        i = 0;
                   9618:        while(fscanf(sf,"%1s",s)!=EOF) {
                   9619:                switch(s[0]) {
                   9620:                case 'r':
                   9621:                        if(!getrange(sf))
                   9622:                                break;
                   9623:                        continue;
                   9624:                case 'm':
                   9625:                        if(i>0)
                   9626:                                symbol[n][i-1].flag = ENDSEG;
                   9627:                        continue;
                   9628:                case ':':
                   9629:                        ungetc(s[0],sf);
                   9630:                        break;
                   9631:                default:
                   9632:                        ungetc(s[0],sf);
                   9633:                case 'v':
                   9634:                        if(fscanf(sf,"%f %f",&x,&y)!=2)
                   9635:                                break;
                   9636:                        sp->x = x*halfwidth/halfrange;
                   9637:                        sp->y = y*halfwidth/halfrange;
                   9638:                        sp->flag = POINT;
                   9639:                        i++;
                   9640:                        symbol[n] = (struct symb*)realloc(symbol[n],
                   9641:                                        (i+1)*sizeof(struct symb));
                   9642:                        sp++;
                   9643:                        continue;
                   9644:                }
                   9645:                break;
                   9646:        }
                   9647:        if(i>0)
                   9648:                symbol[n][i-1].flag = ENDSYM;
                   9649:        else
                   9650:                symbol[n] = 0;
                   9651:        return 1;
                   9652: }
                   9653: 
                   9654: static int
                   9655: getrange(FILE *sf)
                   9656: {
                   9657:        double x,y,xmin,ymin;
                   9658:        if(fscanf(sf,"%*s %f %f %f %f",
                   9659:                &xmin,&ymin,&x,&y)!=4)
                   9660:                return 0;
                   9661:        x -= xmin;
                   9662:        y -= ymin;
                   9663:        halfrange = (x>y? x: y)/2;
                   9664:        if(halfrange<=0)
                   9665:                error("bad ra command in -y file");
                   9666:        return 1;
                   9667: }
                   9668: 
                   9669: /* r=0 upright;=1 normal;=-1 reverse*/
                   9670: int
                   9671: putsym(struct place *p, char *name, double s, int r)
                   9672: {
                   9673:        int x,y,n;
                   9674:        struct symb *sp;
                   9675:        double dx,dy;
                   9676:        int conn = 0;
                   9677:        for(n=0; symbol[n]; n++)
                   9678:                if(strcmp(name,symbol[n]->name)==0)
                   9679:                        break;
                   9680:        sp = symbol[n];
                   9681:        if(sp==0)
                   9682:                return 0;
                   9683:        if(!doproj(p,&x,&y))
                   9684:                return 1;
                   9685:        setrot(p,s,r);
                   9686:        for(;;) {
                   9687:                dorot(sp,&dx,&dy);
                   9688:                conn = cpoint(x+(int)dx,y+(int)dy,conn);
                   9689:                switch(sp->flag) {
                   9690:                case ENDSEG:
                   9691:                        conn = 0;
                   9692:                case POINT:
                   9693:                        sp++;
                   9694:                        continue;
                   9695:                case ENDSYM:
                   9696:                        break;
                   9697:                }
                   9698:                break;
                   9699:        }
                   9700:        return 1;
                   9701: }
                   9702: 
                   9703: static double rot[2][2];
                   9704: 
                   9705: static void
                   9706: setrot(struct place *p, double s, int r)
                   9707: {
                   9708:        double x0,y0,x1,y1;
                   9709:        struct place up;
                   9710:        up = *p;
                   9711:        up.nlat.l += .5*RAD;
                   9712:        sincos(&up.nlat);
                   9713:        if(r&&(*projection)(p,&x0,&y0)) {
                   9714:                if((*projection)(&up,&x1,&y1)<=0) {
                   9715:                        up.nlat.l -= RAD;
                   9716:                        sincos(&up.nlat);
                   9717:                        if((*projection)(&up,&x1,&y1)<=0)
                   9718:                                goto unit;
                   9719:                        x1 = x0 - x1;
                   9720:                        y1 = y0 - y1;
                   9721:                } else {
                   9722:                        x1 -= x0;
                   9723:                        y1 -= y0;
                   9724:                }
                   9725:                x1 = r*x1;
                   9726:                s /= hypot(x1,y1);
                   9727:                rot[0][0] = y1*s;
                   9728:                rot[0][1] = x1*s;
                   9729:                rot[1][0] = -x1*s;
                   9730:                rot[1][1] = y1*s;
                   9731:        } else {
                   9732: unit:
                   9733:                rot[0][0] = rot[1][1] = s;
                   9734:                rot[0][1] = rot[1][0] = 0;
                   9735:        }
                   9736: }
                   9737: 
                   9738: static void
                   9739: dorot(struct symb *sp, double *px, double *py)
                   9740: {
                   9741:        *px = rot[0][0]*sp->x + rot[0][1]*sp->y;
                   9742:        *py = rot[1][0]*sp->x + rot[1][1]*sp->y;
                   9743: }
                   9744: 0707070035051032311006640000030000040000011550260533561634700001500000001130test.resultso
                   9745: e
                   9746: ra -8192 -8192 8192 8192
                   9747: pe dotted
                   9748: pe solid
                   9749: pe solid
                   9750: m 7167 726
                   9751: v 6764 498
                   9752: v 6377 253
                   9753: v 6041 194
                   9754: v 5486 59
                   9755: v 5259 -17
                   9756: v 5049 -219
                   9757: v 4788 -363
                   9758: v 4503 -489
                   9759: v 4116 -346
                   9760: v 3805 -219
                   9761: v 3528 -135
                   9762: v 3267 -101
                   9763: m 3267 -101
                   9764: v 3141 -84
                   9765: v 2931 -68
                   9766: v 2494 42
                   9767: v 2040 127
                   9768: v 1720 236
                   9769: v 1124 211
                   9770: v 476 127
                   9771: v -289 25
                   9772: v -499 -17
                   9773: v -625 -8
                   9774: v -852 -51
                   9775: v -1238 -152
                   9776: v -1583 -329
                   9777: v -1793 -397
                   9778: v -2113 -506
                   9779: v -2407 -624
                   9780: v -2617 -700
                   9781: v -2743 -784
                   9782: v -3088 -928
                   9783: v -3357 -1096
                   9784: v -3651 -1130
                   9785: m -3651 -1130
                   9786: v -3701 -1139
                   9787: v -4004 -1012
                   9788: v -4634 -784
                   9789: v -5105 -641
                   9790: v -5626 -312
                   9791: v -6030 -17
                   9792: v -6551 464
                   9793: v -7047 971
                   9794: m 8192 -8192
                   9795: cl
                   9796: 0707070035051032311006640000030000040000011550260533561634700001300000000000TRAILER!!!51
                   9797: v -1238 -152
                   9798: v -1583 -329
                   9799: v -1793 -397
                   9800: v -2113 -506
                   9801: v -2407 -624
                   9802: v -2617 -700
                   9803: v -2743 -784
                   9804: v -3088 -928
                   9805: v -3357 -1096
                   9806: v -3651 -1130
                   9807: m -3651 -1130
                   9808: v -3701 

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.